Merge branch 'master' into docker
5
.gitignore
vendored
@ -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
|
||||
|
||||
37
Gruntfile.js
@ -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');
|
||||
});
|
||||
|
||||
};
|
||||
|
||||
@ -14,6 +14,7 @@ section {
|
||||
--primary-dark: #928c1b;
|
||||
--secondary: #bbd6ec;
|
||||
--secondary-dark: #3f5d75;
|
||||
--secondary-light: #eaf2f9;
|
||||
--margin: 0.1; }
|
||||
|
||||
/* basic layout */
|
||||
@ -30,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;
|
||||
@ -69,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;
|
||||
@ -89,13 +122,22 @@ body {
|
||||
max-height: calc(.9 * var(--square));
|
||||
box-shadow: 0.2em 0.2em 0.5em 0 rgba(0, 0, 0, 0.3);
|
||||
object-fit: cover;
|
||||
margin: calc(.05 * var(--square)); }
|
||||
margin: calc(.05 * var(--square));
|
||||
background-color: white;
|
||||
box-sizing: border-box; }
|
||||
body .layout-preview img.thin-padding {
|
||||
padding: .5em; }
|
||||
body .layout-preview img.large {
|
||||
width: 60%;
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
box-sizing: border-box; }
|
||||
body .layout-preview img[src$="-crop.svg"] {
|
||||
box-sizing: border-box;
|
||||
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; }
|
||||
@ -183,29 +225,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;
|
||||
@ -214,26 +264,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;
|
||||
@ -244,10 +302,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'; }
|
||||
|
||||
@ -259,7 +319,7 @@ body {
|
||||
.layout-two-columns .layout-column-one,
|
||||
.layout-two-columns .layout-column-two {
|
||||
padding: calc(var(--margin) * var(--square));
|
||||
padding-top: 0; }
|
||||
padding-top: calc(var(--margin) * var(--square)); }
|
||||
.layout-two-columns .layout-column-one *:first-child,
|
||||
.layout-two-columns .layout-column-two *:first-child {
|
||||
margin-top: 0; }
|
||||
@ -314,19 +374,27 @@ 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; }
|
||||
|
||||
h2[data-category]::before {
|
||||
p[data-category]::before,
|
||||
h2[data-category]::before,
|
||||
h3[data-category]::before {
|
||||
content: attr(data-category);
|
||||
font-size: .7em;
|
||||
font-variant: small-caps;
|
||||
@ -342,6 +410,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%; }
|
||||
@ -428,9 +522,58 @@ 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
|
||||
* ============
|
||||
*/
|
||||
@font-face {
|
||||
font-family: 'Twemoji';
|
||||
src: url("../../lib/font/twemoji/TwitterColorEmoji-SVGinOT.ttf"); }
|
||||
|
||||
.emoji {
|
||||
font-family: "Twemoji"; }
|
||||
|
||||
/*
|
||||
* Links
|
||||
* ============
|
||||
*/
|
||||
p, li {
|
||||
z-index: 1; }
|
||||
|
||||
p a:link, p a:hover, p a:active, p a:visited, li a:link, li a:hover, li a:active, li a:visited, h2 a:link, h2 a:hover, h2 a:active, h2 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, li a:link::before, li a:hover::before, li a:active::before, li a:visited::before, h2 a:link::before, h2 a:hover::before, h2 a:active::before, h2 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, li a:hover::before, h2 a:hover::before {
|
||||
height: 110%; }
|
||||
|
||||
/*
|
||||
* Code Listings
|
||||
* =============
|
||||
*/
|
||||
pre.small-text {
|
||||
font-size: 80%; }
|
||||
|
||||
pre.scroll-one-half {
|
||||
max-height: calc(.5 * var(--square));
|
||||
overflow: auto !important; }
|
||||
|
||||
@ -14,6 +14,7 @@ section {
|
||||
--primary-dark: #928c1b;
|
||||
--secondary: #bbd6ec;
|
||||
--secondary-dark: #3f5d75;
|
||||
--secondary-light: #eaf2f9;
|
||||
--margin: 0.1;
|
||||
}
|
||||
|
||||
@ -33,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;
|
||||
@ -101,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 {
|
||||
@ -125,12 +178,28 @@ body {
|
||||
box-shadow: .2em .2em .5em 0 rgba(0, 0, 0, .3);
|
||||
object-fit: cover;
|
||||
margin: calc(.05 * var(--square));
|
||||
&[src$="-crop.svg"] {
|
||||
background-color: white;
|
||||
box-sizing: border-box;
|
||||
|
||||
&.thin-padding {
|
||||
padding: .5em;
|
||||
}
|
||||
|
||||
&.large {
|
||||
width: 60%;
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
box-sizing: border-box;
|
||||
background: white;
|
||||
}
|
||||
|
||||
&[src$="-crop.svg"] {
|
||||
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;
|
||||
@ -249,9 +318,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 {
|
||||
@ -332,7 +402,7 @@ body {
|
||||
.layout-column-one,
|
||||
.layout-column-two {
|
||||
padding: calc(var(--margin) * var(--square));
|
||||
padding-top: 0;
|
||||
padding-top: calc(var(--margin) * var(--square));
|
||||
|
||||
*:first-child {
|
||||
margin-top: 0;
|
||||
@ -396,21 +466,31 @@ 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;
|
||||
}
|
||||
|
||||
h2[data-category]::before {
|
||||
p[data-category]::before,
|
||||
h2[data-category]::before,
|
||||
h3[data-category]::before {
|
||||
content: attr(data-category);
|
||||
font-size: .7em;
|
||||
font-variant: small-caps;
|
||||
@ -422,12 +502,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;
|
||||
@ -537,10 +640,74 @@ 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
|
||||
* ============
|
||||
*/
|
||||
@font-face {
|
||||
font-family: 'Twemoji';
|
||||
src: url('../../lib/font/twemoji/TwitterColorEmoji-SVGinOT.ttf');
|
||||
}
|
||||
|
||||
.emoji {
|
||||
font-family: "Twemoji";
|
||||
}
|
||||
|
||||
/*
|
||||
* Links
|
||||
* ============
|
||||
*/
|
||||
p, li {
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
p a, li a, h2 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%;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Code Listings
|
||||
* =============
|
||||
*/
|
||||
pre.small-text {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
pre.scroll-one-half {
|
||||
max-height: calc(.5 * var(--square));
|
||||
overflow: auto !important;
|
||||
}
|
||||
|
||||
BIN
images/logo-fachschaft.png
Normal file
|
After Width: | Height: | Size: 294 KiB |
11
index.html
@ -75,7 +75,7 @@
|
||||
transition: 'none',
|
||||
math: {
|
||||
mathjax: 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js',
|
||||
config: 'TeX-AMS_HTML-full' // See http://docs.mathjax.org/en/latest/config-files.html
|
||||
config: 'TeX-AMS_HTML-full', // See http://docs.mathjax.org/en/latest/config-files.html
|
||||
},
|
||||
history: true,
|
||||
fragmentInURL: true,
|
||||
@ -89,6 +89,15 @@
|
||||
{ src: 'plugin/math/math.js', async: true }
|
||||
]
|
||||
});
|
||||
|
||||
window.onload = function () {
|
||||
MathJax.Hub.Config({
|
||||
"HTML-CSS": {
|
||||
availableFonts: ["Latin Modern"],
|
||||
preferredFont: "Latin Modern"
|
||||
}
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
BIN
lib/font/twemoji/TwitterColorEmoji-SVGinOT.ttf
Normal 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"
|
||||
}
|
||||
|
||||
@ -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>
|
||||
|
||||
@ -115,17 +115,18 @@
|
||||
<li>einfache Versionierung</li>
|
||||
<li>unabhängig von proprietären Programmen</li>
|
||||
<li>Quelltext und Ausgabe langfristig lesbar</li>
|
||||
<li>einfache Zusammenarbeit anderen Programmen</li>
|
||||
<li>einfache Zusammenarbeit mit anderen Programmen</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2>Ablauf des Workshops</h2>
|
||||
<p><strong>Ziel:</strong> Ihr baut eure eigene LaTeX-Referenz</li>
|
||||
<p><strong>Ziel:</strong> Ihr baut eure eigene LaTeX-Referenz<br>
|
||||
auf Basis von [l2kurz](https://www.ctan.org/tex-archive/info/lshort/german).</li>
|
||||
<ul>
|
||||
<li>Learning by Doing</li>
|
||||
<li>Verstehen, wie LaTeX funktioniert</li>
|
||||
@ -144,6 +145,9 @@
|
||||
</ol>
|
||||
</div>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/01/l2kurz-orig.svg">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="layout-content-and-preview">
|
||||
|
||||
1630
sections/german/01/l2kurz-orig.svg
Normal file
|
After Width: | Height: | Size: 242 KiB |
@ -12,8 +12,7 @@
|
||||
</div>
|
||||
<div class="layout-column-one">
|
||||
<div class="fragment">
|
||||
<blockquote>Word</blockquote>
|
||||
<h3>What You See Is What You Get</h3>
|
||||
<h3 data-category="Word">What You See Is What You Get</h3>
|
||||
<ul>
|
||||
<li>Formatierung mit unmittelbarem optischen Feedback</li>
|
||||
</ul>
|
||||
@ -21,8 +20,7 @@
|
||||
</div>
|
||||
<div class="layout-column-two">
|
||||
<div class="fragment">
|
||||
<blockquote>LaTeX</blockquote>
|
||||
<h3>What You See Is What You Mean</h3>
|
||||
<h3 data-category="LaTeX">What You See Is What You Mean</h3>
|
||||
<ul>
|
||||
<li>Trennung von Inhalt und Struktur</li>
|
||||
<li>Formatierung erst am Ende ersichtlich</li>
|
||||
@ -36,7 +34,7 @@
|
||||
<div class="layout-preview-only">
|
||||
<div class="layout-preview">
|
||||
<figure>
|
||||
<img src="sections/german/02/wysiwyg.svg">
|
||||
<img src="sections/german/02/wysiwyg.svg" class="large">
|
||||
<figcaption>Der Weg zum fertigen Dokument</figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
@ -45,16 +43,16 @@
|
||||
---
|
||||
|
||||
<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>
|
||||
<p style="text-align:left;"><i>TeXstudio, TeXMaker</i></p>
|
||||
<h3>Editor</h3>
|
||||
<p>enthält unseren Quelltext mit allen Befehlen zur semantischen Gliederung</p>
|
||||
<p><i>TeXstudio, TeXMaker</i></p>
|
||||
</div>
|
||||
<div class="layout-column-two">
|
||||
<blockquote>Compiler</blockquote>
|
||||
<p style="text-align:left;">erstellt aus dem Quelltext ein fertig formatiertes PDF-Dokument</p>
|
||||
<p style="text-align:left;"><i>MiKTeX, TeX Live, MacTeX</i></p>
|
||||
<h3>Compiler</h3>
|
||||
<p>erstellt aus dem Quelltext ein fertig formatiertes PDF-Dokument</p>
|
||||
<p><i>MiKTeX, TeX Live, MacTeX</i></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -63,13 +61,13 @@
|
||||
<div class="layout-wide-content">
|
||||
<div class="layout-content">
|
||||
<h2>Befehle</h2>
|
||||
Allgemeiner Aufbau eine Befehls:
|
||||
<pre class="lang-tex hljs"><code>\usepackage[optionale_parameter]{obligatorische_parameter}</code></pre>
|
||||
<p>Allgemeiner Aufbau eine Befehls:</p>
|
||||
<pre class="lang-tex hljs"><code>\usepackage[<optionale_parameter>]{<obligatorische_parameter>}</code></pre>
|
||||
<p class="fragment">Ein paar Beispiele:</p>
|
||||
<pre class="lang-tex hljs fragment"><code>\newpage % fügt eine neue Seite ein
|
||||
\textbf{Text} % schreibt den übergebenen Text fett
|
||||
\textbf{<text>} % schreibt den übergebenen Text fett
|
||||
\usepackage[utf8]{inputenc} % setzt die Textkodierung
|
||||
\frac{zähler}{nenner} % Brüche</code></pre>
|
||||
\frac{<zähler>}{<nenner>} % fügt den mathematischen Bruch ein</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -90,7 +88,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 +105,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
|
||||
@ -115,7 +113,7 @@ Geburtsort: Milwaukee, Wisconsin
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<figure>
|
||||
<img src="sections/german/02/comments.png">
|
||||
<img src="sections/german/02/comments-crop.svg">
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
@ -125,7 +123,7 @@ Geburtsort: Milwaukee, Wisconsin
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Software-Installation</h2>
|
||||
Bitte installiert zuerst den Compiler, also MikTeX (windows), MacTeX (MacOS) bzw. TeX Live (Linux) und danach den Editor. In diesem Workshop verwenden wir TeXstudio.
|
||||
<p>Bitte installiert **zuerst den Compiler**, also MikTeX (Windows), MacTeX (MacOS) bzw. TeX Live (Linux) und **danach den Editor**. In diesem Workshop verwenden wir TeXstudio.</p>
|
||||
|
||||
<ul>
|
||||
<li>MikTeX (Windows): https://miktex.org/ </li>
|
||||
@ -138,14 +136,14 @@ 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 im Umgang 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>
|
||||
<li class="fragment">Öffnet die Datei in TeXstudio.</li>
|
||||
<li class="fragment">Kompiliert die Datei durch Druck auf ⏩.</li>
|
||||
<li class="fragment">Kompiliert die Datei durch Druck auf <span class="emoji">⏩</span>.</li>
|
||||
<li class="fragment">Was ist in dem Ordner passiert, in dem die Datei liegt?</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
166
sections/german/02/comments-crop.svg
Normal file
@ -0,0 +1,166 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="151pt" height="34pt" viewBox="0 0 151 34" 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.8125 L 0.328125 -6.515625 C 0.46875 -6.515625 0.625 -6.515625 0.78125 -6.515625 C 1.09375 -6.515625 1.359375 -6.484375 1.359375 -6.34375 L 1.359375 -1.0625 C 1.359375 -0.375 0.78125 -0.3125 0.328125 -0.3125 L 0.328125 -0.015625 L 2.65625 -0.015625 L 2.65625 -0.3125 C 2.234375 -0.3125 1.625 -0.375 1.625 -1.046875 C 1.625 -1.140625 1.640625 -1.234375 1.640625 -1.3125 L 1.640625 -6.234375 C 1.796875 -6.0625 1.921875 -5.84375 2.046875 -5.640625 C 3.28125 -3.859375 4.46875 -2.046875 5.703125 -0.265625 C 5.765625 -0.171875 5.84375 -0.015625 5.984375 -0.015625 C 6.078125 -0.015625 6.109375 -0.078125 6.109375 -0.171875 L 6.109375 -5.796875 C 6.109375 -6.453125 6.703125 -6.515625 7.140625 -6.515625 L 7.140625 -6.8125 L 4.8125 -6.8125 L 4.8125 -6.515625 C 5.234375 -6.515625 5.828125 -6.453125 5.828125 -5.796875 L 5.828125 -1.53125 L 2.21875 -6.796875 L 2.046875 -6.8125 Z M 0.328125 -6.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<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-3">
|
||||
<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-4">
|
||||
<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-5">
|
||||
<path style="stroke:none;" d="M 1.3125 -4.28125 C 1.0625 -4.25 0.859375 -4.03125 0.859375 -3.78125 C 0.859375 -3.53125 1.0625 -3.234375 1.359375 -3.234375 C 1.640625 -3.234375 1.90625 -3.453125 1.90625 -3.765625 C 1.90625 -4.015625 1.71875 -4.296875 1.390625 -4.296875 C 1.359375 -4.296875 1.328125 -4.28125 1.3125 -4.28125 Z 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="glyph0-6">
|
||||
<path style="stroke:none;" d="M 0.34375 -6.8125 L 0.34375 -6.515625 C 0.46875 -6.515625 0.59375 -6.515625 0.71875 -6.515625 C 1.078125 -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.703125 -0.3125 C 0.5625 -0.3125 0.453125 -0.3125 0.34375 -0.3125 L 0.34375 -0.015625 L 3.796875 -0.015625 C 5.078125 -0.015625 6.265625 -0.625 6.84375 -2.078125 C 6.984375 -2.5 7.0625 -2.921875 7.0625 -3.359375 C 7.0625 -4.921875 6.078125 -6.59375 4.296875 -6.8125 C 4.140625 -6.8125 3.96875 -6.8125 3.8125 -6.8125 Z M 6.046875 -3.109375 L 6.046875 -2.90625 C 5.96875 -1.84375 5.625 -0.734375 4.375 -0.40625 C 4.078125 -0.3125 3.78125 -0.3125 3.484375 -0.3125 L 2.625 -0.3125 C 2.390625 -0.3125 2.21875 -0.375 2.21875 -0.671875 C 2.21875 -0.75 2.21875 -0.8125 2.21875 -0.875 L 2.21875 -5.796875 C 2.21875 -5.875 2.21875 -5.984375 2.21875 -6.078125 C 2.21875 -6.453125 2.359375 -6.515625 2.640625 -6.515625 C 2.71875 -6.515625 2.796875 -6.515625 2.859375 -6.515625 L 3.515625 -6.515625 C 4.21875 -6.515625 4.90625 -6.359375 5.40625 -5.75 C 5.9375 -5.109375 6.0625 -4.265625 6.0625 -3.4375 L 6.0625 -3.34375 C 6.0625 -3.265625 6.0625 -3.1875 6.046875 -3.109375 Z M 6.046875 -3.109375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<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-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="glyph0-9">
|
||||
<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-10">
|
||||
<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-11">
|
||||
<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-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="glyph0-13">
|
||||
<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-14">
|
||||
<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-15">
|
||||
<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-16">
|
||||
<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-17">
|
||||
<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-18">
|
||||
<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-19">
|
||||
<path style="stroke:none;" d="M 0.375 -6.8125 L 0.375 -6.515625 C 0.5 -6.515625 0.625 -6.515625 0.75 -6.515625 C 1.109375 -6.515625 1.390625 -6.46875 1.390625 -6.078125 L 1.390625 -1.03125 C 1.390625 -0.375 0.796875 -0.3125 0.375 -0.3125 L 0.375 -0.015625 L 2.703125 -0.015625 L 2.703125 -0.3125 C 2.25 -0.3125 1.671875 -0.375 1.671875 -1.0625 C 1.671875 -1.15625 1.671875 -1.25 1.671875 -1.34375 L 1.6875 -6.453125 C 1.734375 -6.234375 1.828125 -6.046875 1.90625 -5.84375 C 2.609375 -4 3.328125 -2.15625 4.046875 -0.34375 C 4.09375 -0.234375 4.140625 -0.015625 4.28125 -0.015625 L 4.296875 -0.015625 C 4.453125 -0.03125 4.484375 -0.265625 4.53125 -0.375 C 5.25 -2.25 6 -4.125 6.703125 -6 C 6.78125 -6.171875 6.859375 -6.34375 6.90625 -6.515625 L 6.921875 -0.765625 C 6.921875 -0.375 6.59375 -0.3125 6.28125 -0.3125 C 6.140625 -0.3125 6.015625 -0.3125 5.890625 -0.3125 L 5.890625 -0.015625 L 8.75 -0.015625 L 8.75 -0.3125 C 8.640625 -0.3125 8.5 -0.3125 8.390625 -0.3125 C 8.03125 -0.3125 7.71875 -0.359375 7.71875 -0.75 L 7.71875 -6.078125 C 7.71875 -6.453125 8.046875 -6.515625 8.390625 -6.515625 C 8.515625 -6.515625 8.640625 -6.515625 8.75 -6.515625 L 8.75 -6.8125 L 7.015625 -6.8125 L 6.828125 -6.78125 L 6.734375 -6.625 L 4.5625 -1.015625 L 2.390625 -6.625 L 2.296875 -6.78125 L 2.109375 -6.8125 Z M 0.375 -6.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-20">
|
||||
<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-21">
|
||||
<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-22">
|
||||
<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.46875 1.046875 -5.984375 L 1.046875 -0.953125 C 1.046875 -0.890625 1.0625 -0.8125 1.0625 -0.734375 C 1.0625 -0.359375 0.78125 -0.3125 0.515625 -0.3125 L 0.265625 -0.3125 L 0.265625 -0.015625 L 2.46875 -0.015625 L 2.46875 -0.3125 L 2.234375 -0.3125 C 1.9375 -0.3125 1.6875 -0.359375 1.6875 -0.734375 L 1.6875 -1.671875 C 1.6875 -1.875 2.078125 -2.15625 2.328125 -2.328125 C 2.40625 -2.15625 2.546875 -2.015625 2.65625 -1.859375 C 2.890625 -1.53125 3.125 -1.203125 3.34375 -0.875 C 3.40625 -0.78125 3.484375 -0.65625 3.484375 -0.53125 C 3.484375 -0.359375 3.296875 -0.3125 3.140625 -0.3125 L 3.140625 -0.015625 L 5.09375 -0.015625 L 5.09375 -0.3125 C 4.921875 -0.3125 4.734375 -0.3125 4.578125 -0.40625 C 4.34375 -0.53125 4.1875 -0.765625 4.046875 -0.984375 C 3.796875 -1.328125 3.546875 -1.6875 3.296875 -2.03125 L 2.9375 -2.546875 C 2.890625 -2.59375 2.828125 -2.6875 2.828125 -2.71875 L 2.828125 -2.734375 C 2.828125 -2.8125 3.125 -3.03125 3.265625 -3.140625 C 3.71875 -3.53125 4.234375 -3.984375 4.875 -3.984375 L 4.875 -4.296875 L 3.0625 -4.296875 L 3.0625 -3.984375 C 3.203125 -3.984375 3.34375 -3.875 3.34375 -3.734375 C 3.34375 -3.4375 2.875 -3.140625 2.609375 -2.921875 C 2.296875 -2.65625 2.015625 -2.40625 1.71875 -2.15625 L 1.71875 -6.921875 Z M 0.265625 -6.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-23">
|
||||
<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-24">
|
||||
<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-25">
|
||||
<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>
|
||||
</g>
|
||||
</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="7.271957" y="7.871"/>
|
||||
<use xlink:href="#glyph0-3" x="12.252261" y="7.871"/>
|
||||
<use xlink:href="#glyph0-4" x="20.552103" y="7.871"/>
|
||||
<use xlink:href="#glyph0-5" x="24.978486" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="32.168495" y="7.871"/>
|
||||
<use xlink:href="#glyph0-7" x="39.776932" y="7.871"/>
|
||||
<use xlink:href="#glyph0-8" x="44.757236" y="7.871"/>
|
||||
<use xlink:href="#glyph0-2" x="50.290464" y="7.871"/>
|
||||
<use xlink:href="#glyph0-9" x="55.270768" y="7.871"/>
|
||||
<use xlink:href="#glyph0-10" x="58.037382" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-11" x="66.898118" y="7.871"/>
|
||||
<use xlink:href="#glyph0-8" x="74.645036" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-12" x="79.899311" y="7.871"/>
|
||||
<use xlink:href="#glyph0-13" x="85.43254" y="7.871"/>
|
||||
<use xlink:href="#glyph0-14" x="89.305998" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-15" x="-0.198" y="19.826"/>
|
||||
<use xlink:href="#glyph0-4" x="7.61766" y="19.826"/>
|
||||
<use xlink:href="#glyph0-16" x="12.044043" y="19.826"/>
|
||||
<use xlink:href="#glyph0-12" x="17.577271" y="19.826"/>
|
||||
<use xlink:href="#glyph0-17" x="23.110499" y="19.826"/>
|
||||
<use xlink:href="#glyph0-13" x="27.011853" y="19.826"/>
|
||||
<use xlink:href="#glyph0-18" x="30.885312" y="19.826"/>
|
||||
<use xlink:href="#glyph0-10" x="34.813565" y="19.826"/>
|
||||
<use xlink:href="#glyph0-2" x="40.346793" y="19.826"/>
|
||||
<use xlink:href="#glyph0-13" x="45.327097" y="19.826"/>
|
||||
<use xlink:href="#glyph0-12" x="49.200556" y="19.826"/>
|
||||
<use xlink:href="#glyph0-3" x="54.733784" y="19.826"/>
|
||||
<use xlink:href="#glyph0-5" x="63.033626" y="19.826"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-15" x="-0.198" y="31.781"/>
|
||||
<use xlink:href="#glyph0-4" x="7.61766" y="31.781"/>
|
||||
<use xlink:href="#glyph0-16" x="12.044043" y="31.781"/>
|
||||
<use xlink:href="#glyph0-12" x="17.577271" y="31.781"/>
|
||||
<use xlink:href="#glyph0-17" x="23.110499" y="31.781"/>
|
||||
<use xlink:href="#glyph0-13" x="27.011853" y="31.781"/>
|
||||
<use xlink:href="#glyph0-18" x="30.885312" y="31.781"/>
|
||||
<use xlink:href="#glyph0-7" x="34.813565" y="31.781"/>
|
||||
<use xlink:href="#glyph0-17" x="39.793869" y="31.781"/>
|
||||
<use xlink:href="#glyph0-13" x="43.695223" y="31.781"/>
|
||||
<use xlink:href="#glyph0-5" x="47.568682" y="31.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-19" x="54.75869" y="31.781"/>
|
||||
<use xlink:href="#glyph0-20" x="63.888417" y="31.781"/>
|
||||
<use xlink:href="#glyph0-9" x="66.655031" y="31.781"/>
|
||||
<use xlink:href="#glyph0-21" x="69.421645" y="31.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="76.345652" y="31.781"/>
|
||||
<use xlink:href="#glyph0-12" x="81.325956" y="31.781"/>
|
||||
<use xlink:href="#glyph0-22" x="86.859184" y="31.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-4" x="91.837495" y="31.781"/>
|
||||
<use xlink:href="#glyph0-4" x="96.263878" y="31.781"/>
|
||||
<use xlink:href="#glyph0-23" x="100.690261" y="31.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-24" x="106.774421" y="31.781"/>
|
||||
<use xlink:href="#glyph0-20" x="117.010993" y="31.781"/>
|
||||
<use xlink:href="#glyph0-18" x="119.777607" y="31.781"/>
|
||||
<use xlink:href="#glyph0-25" x="123.70586" y="31.781"/>
|
||||
<use xlink:href="#glyph0-7" x="128.132243" y="31.781"/>
|
||||
<use xlink:href="#glyph0-8" x="133.112547" y="31.781"/>
|
||||
<use xlink:href="#glyph0-18" x="138.645775" y="31.781"/>
|
||||
<use xlink:href="#glyph0-20" x="142.574028" y="31.781"/>
|
||||
<use xlink:href="#glyph0-8" x="145.340642" y="31.781"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 32 KiB |
166
sections/german/02/comments-orig.svg
Normal file
@ -0,0 +1,166 @@
|
||||
<?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.8125 L 0.328125 -6.515625 C 0.46875 -6.515625 0.625 -6.515625 0.78125 -6.515625 C 1.09375 -6.515625 1.359375 -6.484375 1.359375 -6.34375 L 1.359375 -1.0625 C 1.359375 -0.375 0.78125 -0.3125 0.328125 -0.3125 L 0.328125 -0.015625 L 2.65625 -0.015625 L 2.65625 -0.3125 C 2.234375 -0.3125 1.625 -0.375 1.625 -1.046875 C 1.625 -1.140625 1.640625 -1.234375 1.640625 -1.3125 L 1.640625 -6.234375 C 1.796875 -6.0625 1.921875 -5.84375 2.046875 -5.640625 C 3.28125 -3.859375 4.46875 -2.046875 5.703125 -0.265625 C 5.765625 -0.171875 5.84375 -0.015625 5.984375 -0.015625 C 6.078125 -0.015625 6.109375 -0.078125 6.109375 -0.171875 L 6.109375 -5.796875 C 6.109375 -6.453125 6.703125 -6.515625 7.140625 -6.515625 L 7.140625 -6.8125 L 4.8125 -6.8125 L 4.8125 -6.515625 C 5.234375 -6.515625 5.828125 -6.453125 5.828125 -5.796875 L 5.828125 -1.53125 L 2.21875 -6.796875 L 2.046875 -6.8125 Z M 0.328125 -6.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<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-3">
|
||||
<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-4">
|
||||
<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-5">
|
||||
<path style="stroke:none;" d="M 1.3125 -4.28125 C 1.0625 -4.25 0.859375 -4.03125 0.859375 -3.78125 C 0.859375 -3.53125 1.0625 -3.234375 1.359375 -3.234375 C 1.640625 -3.234375 1.90625 -3.453125 1.90625 -3.765625 C 1.90625 -4.015625 1.71875 -4.296875 1.390625 -4.296875 C 1.359375 -4.296875 1.328125 -4.28125 1.3125 -4.28125 Z 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="glyph0-6">
|
||||
<path style="stroke:none;" d="M 0.34375 -6.8125 L 0.34375 -6.515625 C 0.46875 -6.515625 0.59375 -6.515625 0.71875 -6.515625 C 1.078125 -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.703125 -0.3125 C 0.5625 -0.3125 0.453125 -0.3125 0.34375 -0.3125 L 0.34375 -0.015625 L 3.796875 -0.015625 C 5.078125 -0.015625 6.265625 -0.625 6.84375 -2.078125 C 6.984375 -2.5 7.0625 -2.921875 7.0625 -3.359375 C 7.0625 -4.921875 6.078125 -6.59375 4.296875 -6.8125 C 4.140625 -6.8125 3.96875 -6.8125 3.8125 -6.8125 Z M 6.046875 -3.109375 L 6.046875 -2.90625 C 5.96875 -1.84375 5.625 -0.734375 4.375 -0.40625 C 4.078125 -0.3125 3.78125 -0.3125 3.484375 -0.3125 L 2.625 -0.3125 C 2.390625 -0.3125 2.21875 -0.375 2.21875 -0.671875 C 2.21875 -0.75 2.21875 -0.8125 2.21875 -0.875 L 2.21875 -5.796875 C 2.21875 -5.875 2.21875 -5.984375 2.21875 -6.078125 C 2.21875 -6.453125 2.359375 -6.515625 2.640625 -6.515625 C 2.71875 -6.515625 2.796875 -6.515625 2.859375 -6.515625 L 3.515625 -6.515625 C 4.21875 -6.515625 4.90625 -6.359375 5.40625 -5.75 C 5.9375 -5.109375 6.0625 -4.265625 6.0625 -3.4375 L 6.0625 -3.34375 C 6.0625 -3.265625 6.0625 -3.1875 6.046875 -3.109375 Z M 6.046875 -3.109375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<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-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="glyph0-9">
|
||||
<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-10">
|
||||
<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-11">
|
||||
<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-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="glyph0-13">
|
||||
<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-14">
|
||||
<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-15">
|
||||
<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-16">
|
||||
<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-17">
|
||||
<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-18">
|
||||
<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-19">
|
||||
<path style="stroke:none;" d="M 0.375 -6.8125 L 0.375 -6.515625 C 0.5 -6.515625 0.625 -6.515625 0.75 -6.515625 C 1.109375 -6.515625 1.390625 -6.46875 1.390625 -6.078125 L 1.390625 -1.03125 C 1.390625 -0.375 0.796875 -0.3125 0.375 -0.3125 L 0.375 -0.015625 L 2.703125 -0.015625 L 2.703125 -0.3125 C 2.25 -0.3125 1.671875 -0.375 1.671875 -1.0625 C 1.671875 -1.15625 1.671875 -1.25 1.671875 -1.34375 L 1.6875 -6.453125 C 1.734375 -6.234375 1.828125 -6.046875 1.90625 -5.84375 C 2.609375 -4 3.328125 -2.15625 4.046875 -0.34375 C 4.09375 -0.234375 4.140625 -0.015625 4.28125 -0.015625 L 4.296875 -0.015625 C 4.453125 -0.03125 4.484375 -0.265625 4.53125 -0.375 C 5.25 -2.25 6 -4.125 6.703125 -6 C 6.78125 -6.171875 6.859375 -6.34375 6.90625 -6.515625 L 6.921875 -0.765625 C 6.921875 -0.375 6.59375 -0.3125 6.28125 -0.3125 C 6.140625 -0.3125 6.015625 -0.3125 5.890625 -0.3125 L 5.890625 -0.015625 L 8.75 -0.015625 L 8.75 -0.3125 C 8.640625 -0.3125 8.5 -0.3125 8.390625 -0.3125 C 8.03125 -0.3125 7.71875 -0.359375 7.71875 -0.75 L 7.71875 -6.078125 C 7.71875 -6.453125 8.046875 -6.515625 8.390625 -6.515625 C 8.515625 -6.515625 8.640625 -6.515625 8.75 -6.515625 L 8.75 -6.8125 L 7.015625 -6.8125 L 6.828125 -6.78125 L 6.734375 -6.625 L 4.5625 -1.015625 L 2.390625 -6.625 L 2.296875 -6.78125 L 2.109375 -6.8125 Z M 0.375 -6.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-20">
|
||||
<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-21">
|
||||
<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-22">
|
||||
<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.46875 1.046875 -5.984375 L 1.046875 -0.953125 C 1.046875 -0.890625 1.0625 -0.8125 1.0625 -0.734375 C 1.0625 -0.359375 0.78125 -0.3125 0.515625 -0.3125 L 0.265625 -0.3125 L 0.265625 -0.015625 L 2.46875 -0.015625 L 2.46875 -0.3125 L 2.234375 -0.3125 C 1.9375 -0.3125 1.6875 -0.359375 1.6875 -0.734375 L 1.6875 -1.671875 C 1.6875 -1.875 2.078125 -2.15625 2.328125 -2.328125 C 2.40625 -2.15625 2.546875 -2.015625 2.65625 -1.859375 C 2.890625 -1.53125 3.125 -1.203125 3.34375 -0.875 C 3.40625 -0.78125 3.484375 -0.65625 3.484375 -0.53125 C 3.484375 -0.359375 3.296875 -0.3125 3.140625 -0.3125 L 3.140625 -0.015625 L 5.09375 -0.015625 L 5.09375 -0.3125 C 4.921875 -0.3125 4.734375 -0.3125 4.578125 -0.40625 C 4.34375 -0.53125 4.1875 -0.765625 4.046875 -0.984375 C 3.796875 -1.328125 3.546875 -1.6875 3.296875 -2.03125 L 2.9375 -2.546875 C 2.890625 -2.59375 2.828125 -2.6875 2.828125 -2.71875 L 2.828125 -2.734375 C 2.828125 -2.8125 3.125 -3.03125 3.265625 -3.140625 C 3.71875 -3.53125 4.234375 -3.984375 4.875 -3.984375 L 4.875 -4.296875 L 3.0625 -4.296875 L 3.0625 -3.984375 C 3.203125 -3.984375 3.34375 -3.875 3.34375 -3.734375 C 3.34375 -3.4375 2.875 -3.140625 2.609375 -2.921875 C 2.296875 -2.65625 2.015625 -2.40625 1.71875 -2.15625 L 1.71875 -6.921875 Z M 0.265625 -6.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-23">
|
||||
<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-24">
|
||||
<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-25">
|
||||
<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>
|
||||
</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="132.271957" y="135.761"/>
|
||||
<use xlink:href="#glyph0-3" x="137.252261" y="135.761"/>
|
||||
<use xlink:href="#glyph0-4" x="145.552103" y="135.761"/>
|
||||
<use xlink:href="#glyph0-5" x="149.978486" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="157.168495" y="135.761"/>
|
||||
<use xlink:href="#glyph0-7" x="164.776932" y="135.761"/>
|
||||
<use xlink:href="#glyph0-8" x="169.757236" y="135.761"/>
|
||||
<use xlink:href="#glyph0-2" x="175.290464" y="135.761"/>
|
||||
<use xlink:href="#glyph0-9" x="180.270768" y="135.761"/>
|
||||
<use xlink:href="#glyph0-10" x="183.037382" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-11" x="191.898118" y="135.761"/>
|
||||
<use xlink:href="#glyph0-8" x="199.645036" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-12" x="204.899311" y="135.761"/>
|
||||
<use xlink:href="#glyph0-13" x="210.43254" y="135.761"/>
|
||||
<use xlink:href="#glyph0-14" x="214.305998" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-15" x="124.802" y="147.716"/>
|
||||
<use xlink:href="#glyph0-4" x="132.61766" y="147.716"/>
|
||||
<use xlink:href="#glyph0-16" x="137.044043" y="147.716"/>
|
||||
<use xlink:href="#glyph0-12" x="142.577271" y="147.716"/>
|
||||
<use xlink:href="#glyph0-17" x="148.110499" y="147.716"/>
|
||||
<use xlink:href="#glyph0-13" x="152.011853" y="147.716"/>
|
||||
<use xlink:href="#glyph0-18" x="155.885312" y="147.716"/>
|
||||
<use xlink:href="#glyph0-10" x="159.813565" y="147.716"/>
|
||||
<use xlink:href="#glyph0-2" x="165.346793" y="147.716"/>
|
||||
<use xlink:href="#glyph0-13" x="170.327097" y="147.716"/>
|
||||
<use xlink:href="#glyph0-12" x="174.200556" y="147.716"/>
|
||||
<use xlink:href="#glyph0-3" x="179.733784" y="147.716"/>
|
||||
<use xlink:href="#glyph0-5" x="188.033626" y="147.716"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-15" x="124.802" y="159.671"/>
|
||||
<use xlink:href="#glyph0-4" x="132.61766" y="159.671"/>
|
||||
<use xlink:href="#glyph0-16" x="137.044043" y="159.671"/>
|
||||
<use xlink:href="#glyph0-12" x="142.577271" y="159.671"/>
|
||||
<use xlink:href="#glyph0-17" x="148.110499" y="159.671"/>
|
||||
<use xlink:href="#glyph0-13" x="152.011853" y="159.671"/>
|
||||
<use xlink:href="#glyph0-18" x="155.885312" y="159.671"/>
|
||||
<use xlink:href="#glyph0-7" x="159.813565" y="159.671"/>
|
||||
<use xlink:href="#glyph0-17" x="164.793869" y="159.671"/>
|
||||
<use xlink:href="#glyph0-13" x="168.695223" y="159.671"/>
|
||||
<use xlink:href="#glyph0-5" x="172.568682" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-19" x="179.75869" y="159.671"/>
|
||||
<use xlink:href="#glyph0-20" x="188.888417" y="159.671"/>
|
||||
<use xlink:href="#glyph0-9" x="191.655031" y="159.671"/>
|
||||
<use xlink:href="#glyph0-21" x="194.421645" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="201.345652" y="159.671"/>
|
||||
<use xlink:href="#glyph0-12" x="206.325956" y="159.671"/>
|
||||
<use xlink:href="#glyph0-22" x="211.859184" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-4" x="216.837495" y="159.671"/>
|
||||
<use xlink:href="#glyph0-4" x="221.263878" y="159.671"/>
|
||||
<use xlink:href="#glyph0-23" x="225.690261" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-24" x="231.774421" y="159.671"/>
|
||||
<use xlink:href="#glyph0-20" x="242.010993" y="159.671"/>
|
||||
<use xlink:href="#glyph0-18" x="244.777607" y="159.671"/>
|
||||
<use xlink:href="#glyph0-25" x="248.70586" y="159.671"/>
|
||||
<use xlink:href="#glyph0-7" x="253.132243" y="159.671"/>
|
||||
<use xlink:href="#glyph0-8" x="258.112547" y="159.671"/>
|
||||
<use xlink:href="#glyph0-18" x="263.645775" y="159.671"/>
|
||||
<use xlink:href="#glyph0-20" x="267.574028" y="159.671"/>
|
||||
<use xlink:href="#glyph0-8" x="270.340642" y="159.671"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 32 KiB |
|
Before Width: | Height: | Size: 41 KiB |
13
sections/german/02/comments.tex
Normal file
@ -0,0 +1,13 @@
|
||||
\documentclass[a4paper]{article}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\begin{document}
|
||||
\thispagestyle{empty}
|
||||
|
||||
% Beginn Steckbrief
|
||||
\noindent Name: Donald Knuth \\
|
||||
Geburtsdatum: \\ % TODO: einfügen
|
||||
Geburtsort: Milwaukee, Wisconsin
|
||||
% Ende Steckbrief
|
||||
|
||||
\end{document}
|
||||
@ -8,27 +8,26 @@
|
||||
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h3>Präambel und Dokumentumgebung</h3>
|
||||
<p>👁 Ein mit LaTeX gesetztes Dokument besteht aus zwei Teilen.</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-preview">
|
||||
<pre class="lang-tex hljs" data-sourcefile="hallo.tex"><code>\documentclass{scrartcl}
|
||||
<h2>Präambel & Dokumentumgebung</h2>
|
||||
<p style="text-indent: -1.3em"><span class="emoji">👁</span> Ein mit LaTeX gesetztes Dokument besteht aus:</p>
|
||||
<ul class="fragment">
|
||||
<li><strong>Präambel:</strong> globale Einstellungen (Dokumentklasse, Encoding, Sprache, Seitenformat, zusäzliche Pakete, ...) und</li>
|
||||
<li><strong>Dokumentumgebung:</strong> textueller Inhalt des Dokuments.</li>
|
||||
</ul>
|
||||
<pre class="lang-tex hljs fragment"><code>\documentclass{scrartcl}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[ngerman]{babel}
|
||||
|
||||
\begin{document}
|
||||
Hallo, Welt!
|
||||
Hallo, Welt!
|
||||
\end{document}</code></pre>
|
||||
<figure>
|
||||
<img src="sections/german/03/hallo-crop.svg">
|
||||
</figure>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<figure>
|
||||
<img src="sections/german/03/hallo-crop.svg">
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
@ -36,19 +35,15 @@
|
||||
<div class="layout-wide-content">
|
||||
<div class="layout-content">
|
||||
<h2>Dokumentklasse</h2>
|
||||
<p><pre class="lang-tex hljs"><code>\documentclass[parameter]{dokumentklasse}</code></pre>
|
||||
</p>
|
||||
<p>Konkret zum Beispiel
|
||||
<pre class="lang-tex hljs"><code>\documentclass[<parameter>]{<dokumentklasse>}</code></pre>
|
||||
<p>Konkret zum Beispiel</p>
|
||||
<pre class="lang-tex hljs"><code>\documentclass[10pt,a5paper,landscape]{scrartcl}</code></pre>
|
||||
</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>beamer</b></code> für Präsentationen</li>
|
||||
</ul>
|
||||
</div>
|
||||
<ul class="fragment">
|
||||
<li><strong><code>scrartcl</code>, <code>article</strong></code> für einfache Dokumente</li>
|
||||
<li><strong><code>scrreport</code>, <code>report</strong></code> für komplexere Dokumente</li>
|
||||
<li><strong><code>scrbook</code>, <code>book</strong></code> für Bücher</li>
|
||||
<li><strong><code>beamer</strong></code> für Präsentationen</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -58,13 +53,13 @@
|
||||
<div class="layout-content">
|
||||
<h2>Pakete</h2>
|
||||
</p>
|
||||
<pre class="lang-tex hljs"><code>\usepackage[optionen]{paketname}</code></pre>
|
||||
<pre class="lang-tex hljs"><code>\usepackage[<optionen>]{<paketname>}</code></pre>
|
||||
<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. B. Formelsatz, Listen, ...).
|
||||
</li>
|
||||
<li>Sie müssen vor der Nutzung in der Präambel eingebunden werden.
|
||||
<li>Sie müssen vor der Nutzung **in der Präambel** eingebunden werden.
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
@ -80,8 +75,8 @@
|
||||
<p class="fragment">
|
||||
<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><strong>ASCII</strong> enthält kaum Sonderzeichen wie deutsche Umlaute.</li>
|
||||
<li><strong>UTF-8</strong> ist eine universelle Kodierung.</li>
|
||||
</ul>
|
||||
</p>
|
||||
</div>
|
||||
@ -95,8 +90,8 @@
|
||||
<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><b><code>ngerman</code></b> steht für die neue deutsche Rechschreibung.</li>
|
||||
<li>Das Paket <strong><code>babel</code></strong> stellt sprachspezifische Informationen (z. B. Silbentrennung, Sonderzeichen, Wechsel zwischen Fonts, Übersetzung von Labels wie ›Kapitel‹, ›Inhaltsverzeichnis‹ oder ›Abbildung‹) bereit.</li>
|
||||
<li><strong><code>ngerman</code></strong> steht für die neue deutsche Rechschreibung.</li>
|
||||
</ul>
|
||||
</p>
|
||||
</div>
|
||||
@ -104,21 +99,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}
|
||||
\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>Umschalten zwischen Sprachen:</p>
|
||||
<pre class="lang-tex hljs"><code>\selectlanguage{<sprache a>}
|
||||
\selectlanguage{<sprache b>}</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>
|
||||
|
||||
@ -126,25 +119,19 @@ Text in Sprache B innerhalb eines Textes
|
||||
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2>Sprachen – Ein Beispiel</h2>
|
||||
<pre class="lang-tex hljs"><code>\today
|
||||
|
||||
<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>
|
||||
</code></pre>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/03/languages-crop.svg">
|
||||
@ -155,14 +142,14 @@ Text in Sprache B innerhalb eines Textes
|
||||
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2>Absätze</h2>
|
||||
<h2>Fließtext</h2>
|
||||
<pre class="lang-tex hljs"><code>Fließtext kann direkt in den Quelltext ↲
|
||||
geschrieben werden. ↲
|
||||
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, ↲
|
||||
@ -182,9 +169,9 @@ nichts verloren.</code></pre>
|
||||
<p>Bestimmte Zeichen lösen in LaTeX Dinge aus:</p>
|
||||
<p>`# $ % ^ & _ { } ~ \`</p>
|
||||
<pre class="lang-tex hljs"><code>50% sind die Hälfte.</code></pre>
|
||||
<p>Lösung: `\` voranstellen:</p>
|
||||
<p>Lösung: »`\`« voranstellen:</p>
|
||||
<pre class="lang-tex hljs"><code>50\% sind die Hälfte.</code></pre>
|
||||
<p>Funktioniert nicht mit `\\`, Lösung dafür später.</p>
|
||||
<p>Funktioniert nicht mit »`\\`«, Lösung dafür später.</p>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/03/reservierte-zeichen-crop.svg">
|
||||
@ -216,7 +203,7 @@ nichts verloren.</code></pre>
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2>Abschnitte und Kapitel</h2>
|
||||
<p>Mit Sternchen fällt bei allen diesen Befehlen die Nummerierung und der Eintrag im Inhaltsverzeichnis weg:</p>
|
||||
<p>Mit Sternchen fallen bei allen diesen Befehlen die Nummerierung und der Eintrag im Inhaltsverzeichnis weg:</p>
|
||||
<pre class="lang-tex hljs"><code>\section*{Kein Verzeichniseintrag}</code></pre>
|
||||
<p>Außerdem kann für das Inhaltsverzeichnis ein alternativer Titel angegeben werden:</p>
|
||||
<pre class="lang-tex hljs"><code>\section[Titel im Verzeichnis]
|
||||
@ -229,13 +216,37 @@ nichts verloren.</code></pre>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-wide-content">
|
||||
<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}
|
||||
\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. Ein abweichendes Datum kann mit <code>\date{}</code> definiert werden.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2>Titelei</h2>
|
||||
<pre class="lang-tex hljs" data-source="title.tex"><code>\documentclass[ngerman]{scrartcl}
|
||||
\usepackage{babel}
|
||||
\author{Fooboar Rüssel}
|
||||
\title{Die Welt der Trüffel}
|
||||
\author{Fooboar Rüssel \\\\ Fachschaft
|
||||
WIAI\thanks{WIe AIn Profi},
|
||||
Otto-Friedrich-Universität Bamberg}
|
||||
\date{\today}
|
||||
\begin{document}
|
||||
\maketitle
|
||||
@ -248,7 +259,7 @@ Mein Lieblingsrezept
|
||||
\end{document}</code></pre>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/03/title-orig.svg">
|
||||
<img src="sections/german/03/title-orig.svg">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -257,11 +268,11 @@ Mein Lieblingsrezept
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Inhaltsverzeichnis</h2>
|
||||
<p>automatisch generiert mit <pre class="lang-tex hljs"><code>\tableofcontents</code></pre>
|
||||
<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 und -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>Am besten zweimal kompilieren</li>
|
||||
</ul>
|
||||
</p>
|
||||
@ -283,14 +294,15 @@ Der erste Abschnitt.
|
||||
Ein Unterabschnitt.
|
||||
\subsection{Suche ohne Schwein}
|
||||
Ein weiterer Unterabschitt.
|
||||
\subsubsection[But why?]{Wer macht denn sowas?}
|
||||
\subsubsection[But why?]{Wer macht denn
|
||||
sowas?}
|
||||
Unter-Unterabschnitt.
|
||||
\section{Trüffelrezepte}
|
||||
Mein Lieblingsrezept
|
||||
\end{document}</code></pre>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/03/contents-orig.svg">
|
||||
<img src="sections/german/03/contents-orig.svg">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -302,36 +314,34 @@ Mein Lieblingsrezept
|
||||
<p>Abbildungsverzeichnis und Tabellenverzeichnis
|
||||
<pre class="lang-tex hljs"><code>\listoffigures
|
||||
\listoftables</code></pre>
|
||||
<ul>
|
||||
<li>Fügt das gewählte Verzeichnis an der entsprechenden Stelle ins Dokument ein.</li>
|
||||
<li>Es wird die jeweilige Bild- bzw. Tabellenunterschrift aufgeführt. Es kann aber auch ein Kurztitel angegeben werden, der dann für das Verzeichnis verwendet wird. </li>
|
||||
</ul>
|
||||
</p>
|
||||
<ul>
|
||||
<li>Fügt das gewählte Verzeichnis an der entsprechenden Stelle ins Dokument ein.</li>
|
||||
<li>Es wird die jeweilige Bild- bzw. Tabellenunterschrift aufgeführt. Es kann aber auch ein Kurztitel angegeben werden, der dann für das Verzeichnis verwendet wird. </li>
|
||||
</ul>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Spielwiese</h2>
|
||||
<p>TODO:</p>
|
||||
<ul>
|
||||
<li>Was passiert, wenn man verschiedene Dinge ändert?</li>
|
||||
<li>Umgang mit Fehlermeldungen</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-only">
|
||||
<div class="layout-wide-content">
|
||||
<div class="layout-content">
|
||||
<h2 data-category="Aufgabe">2. Grundstruktur des Skripts anpassen</h2>
|
||||
<h2 data-category="Aufgabe" data-task="2">Dokument und Text gliedern</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>
|
||||
<li class="fragment">Provoziere absichtlich einen Fehler, indem du einen dir bereits bekannten Befehl wie <code>\begin{document}</code> falsch schreibst. Sieh dir an, welche Informationen dir die Fehlermeldung liefert und behebe den Fehler wieder.</li>
|
||||
<li>Ladet das Skript l2kurz aus dem VC herunter, entpackt es und öffnet die Datei `allgemeines.tex` in TeXStudio.</li>
|
||||
<li class="fragment">Packt den gesamten Text (einschließlich Kommentare) in allgemeines.tex in eine **Document**-Umgebung und schreibt darüber folgende **Präambel**, damit das Dokument kompiliert werden kann:
|
||||
</li>
|
||||
</ul>
|
||||
<pre class="lang-tex hljs fragment"><code>\documentclass{scrartcl}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[ngerman]{babel}
|
||||
\usepackage{hyperref}
|
||||
\usepackage{csquotes}</code></pre>
|
||||
<ul class="fragment">
|
||||
<li>Im nicht auskommentierten Abschnitt wurden **Absätze** durch `//` markiert. Verwendet stattdessen echte Absätze.</li>
|
||||
<li class="fragment">Kommentiert den restlichen Text ein. Verwendet für alle **Überschriften** passende LaTeX-Befehle (`\section` bis `\subsubsection`).
|
||||
<li class="fragment">Fügt ein **Inhaltsverzeichnis** ein.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
Before Width: | Height: | Size: 90 KiB After Width: | Height: | Size: 124 KiB |
|
Before Width: | Height: | Size: 90 KiB After Width: | Height: | Size: 124 KiB |
@ -1,56 +1,56 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="57pt" height="11pt" viewBox="0 0 57 11" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="52pt" height="10pt" viewBox="0 0 52 10" 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 7.8125 0 L 7.8125 -0.34375 L 7.546875 -0.34375 C 6.703125 -0.34375 6.6875 -0.453125 6.6875 -0.84375 L 6.6875 -6.59375 C 6.6875 -6.984375 6.703125 -7.109375 7.546875 -7.109375 L 7.8125 -7.109375 L 7.8125 -7.453125 C 7.421875 -7.421875 6.625 -7.421875 6.203125 -7.421875 C 5.796875 -7.421875 4.96875 -7.421875 4.59375 -7.453125 L 4.59375 -7.109375 L 4.859375 -7.109375 C 5.6875 -7.109375 5.71875 -6.984375 5.71875 -6.59375 L 5.71875 -4.046875 L 2.453125 -4.046875 L 2.453125 -6.59375 C 2.453125 -6.984375 2.46875 -7.109375 3.3125 -7.109375 L 3.578125 -7.109375 L 3.578125 -7.453125 C 3.203125 -7.421875 2.390625 -7.421875 1.96875 -7.421875 C 1.5625 -7.421875 0.734375 -7.421875 0.359375 -7.453125 L 0.359375 -7.109375 L 0.625 -7.109375 C 1.46875 -7.109375 1.484375 -6.984375 1.484375 -6.59375 L 1.484375 -0.84375 C 1.484375 -0.453125 1.46875 -0.34375 0.625 -0.34375 L 0.359375 -0.34375 L 0.359375 0 C 0.734375 -0.03125 1.546875 -0.03125 1.96875 -0.03125 C 2.375 -0.03125 3.203125 -0.03125 3.578125 0 L 3.578125 -0.34375 L 3.3125 -0.34375 C 2.46875 -0.34375 2.453125 -0.453125 2.453125 -0.84375 L 2.453125 -3.703125 L 5.71875 -3.703125 L 5.71875 -0.84375 C 5.71875 -0.453125 5.6875 -0.34375 4.859375 -0.34375 L 4.59375 -0.34375 L 4.59375 0 C 4.96875 -0.03125 5.78125 -0.03125 6.1875 -0.03125 C 6.609375 -0.03125 7.421875 -0.03125 7.8125 0 Z M 7.8125 0 "/>
|
||||
<path style="stroke:none;" d="M 7.140625 0 L 7.140625 -0.3125 L 6.890625 -0.3125 C 6.125 -0.3125 6.109375 -0.421875 6.109375 -0.78125 L 6.109375 -6.03125 C 6.109375 -6.390625 6.125 -6.5 6.890625 -6.5 L 7.140625 -6.5 L 7.140625 -6.8125 C 6.78125 -6.78125 6.046875 -6.78125 5.671875 -6.78125 C 5.296875 -6.78125 4.546875 -6.78125 4.203125 -6.8125 L 4.203125 -6.5 L 4.4375 -6.5 C 5.203125 -6.5 5.21875 -6.390625 5.21875 -6.03125 L 5.21875 -3.703125 L 2.25 -3.703125 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 -3.390625 L 5.21875 -3.390625 L 5.21875 -0.78125 C 5.21875 -0.421875 5.203125 -0.3125 4.4375 -0.3125 L 4.203125 -0.3125 L 4.203125 0 C 4.546875 -0.03125 5.28125 -0.03125 5.65625 -0.03125 C 6.046875 -0.03125 6.78125 -0.03125 7.140625 0 Z M 7.140625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 5.265625 -0.96875 L 5.265625 -1.578125 L 5 -1.578125 L 5 -0.96875 C 5 -0.34375 4.71875 -0.265625 4.609375 -0.265625 C 4.25 -0.265625 4.203125 -0.765625 4.203125 -0.8125 L 4.203125 -3 C 4.203125 -3.453125 4.203125 -3.875 3.8125 -4.28125 C 3.375 -4.71875 2.828125 -4.890625 2.3125 -4.890625 C 1.421875 -4.890625 0.671875 -4.375 0.671875 -3.65625 C 0.671875 -3.328125 0.890625 -3.140625 1.171875 -3.140625 C 1.46875 -3.140625 1.671875 -3.359375 1.671875 -3.640625 C 1.671875 -3.78125 1.609375 -4.140625 1.109375 -4.140625 C 1.40625 -4.53125 1.9375 -4.640625 2.296875 -4.640625 C 2.828125 -4.640625 3.453125 -4.21875 3.453125 -3.25 L 3.453125 -2.84375 C 2.890625 -2.8125 2.125 -2.78125 1.4375 -2.453125 C 0.625 -2.078125 0.34375 -1.515625 0.34375 -1.03125 C 0.34375 -0.15625 1.40625 0.125 2.09375 0.125 C 2.8125 0.125 3.3125 -0.3125 3.515625 -0.828125 C 3.5625 -0.390625 3.859375 0.0625 4.375 0.0625 C 4.609375 0.0625 5.265625 -0.09375 5.265625 -0.96875 Z M 3.453125 -1.53125 C 3.453125 -0.484375 2.65625 -0.125 2.171875 -0.125 C 1.640625 -0.125 1.1875 -0.5 1.1875 -1.046875 C 1.1875 -1.640625 1.640625 -2.546875 3.453125 -2.625 Z M 3.453125 -1.53125 "/>
|
||||
<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-3">
|
||||
<path style="stroke:none;" d="M 2.78125 0 L 2.78125 -0.34375 C 2.046875 -0.34375 1.9375 -0.34375 1.9375 -0.828125 L 1.9375 -7.5625 L 0.359375 -7.453125 L 0.359375 -7.109375 C 1.125 -7.109375 1.203125 -7.03125 1.203125 -6.5 L 1.203125 -0.828125 C 1.203125 -0.34375 1.09375 -0.34375 0.359375 -0.34375 L 0.359375 0 L 1.578125 -0.03125 Z M 2.78125 0 "/>
|
||||
<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-4">
|
||||
<path style="stroke:none;" d="M 5.140625 -2.328125 C 5.140625 -3.734375 4.046875 -4.890625 2.71875 -4.890625 C 1.359375 -4.890625 0.3125 -3.703125 0.3125 -2.328125 C 0.3125 -0.921875 1.4375 0.125 2.71875 0.125 C 4.03125 0.125 5.140625 -0.953125 5.140625 -2.328125 Z M 4.234375 -2.421875 C 4.234375 -2.03125 4.234375 -1.4375 3.984375 -0.953125 C 3.75 -0.46875 3.265625 -0.15625 2.71875 -0.15625 C 2.25 -0.15625 1.78125 -0.375 1.484375 -0.890625 C 1.203125 -1.359375 1.203125 -2.03125 1.203125 -2.421875 C 1.203125 -2.84375 1.203125 -3.4375 1.46875 -3.921875 C 1.765625 -4.421875 2.28125 -4.640625 2.71875 -4.640625 C 3.203125 -4.640625 3.671875 -4.40625 3.953125 -3.9375 C 4.234375 -3.46875 4.234375 -2.828125 4.234375 -2.421875 Z M 4.234375 -2.421875 "/>
|
||||
<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-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 "/>
|
||||
<path style="stroke:none;" d="M 2.03125 -0.015625 C 2.03125 -0.640625 1.78125 -1.0625 1.390625 -1.0625 C 1.03125 -1.0625 0.859375 -0.78125 0.859375 -0.53125 C 0.859375 -0.265625 1.03125 0 1.390625 0 C 1.53125 0 1.671875 -0.0625 1.78125 -0.15625 C 1.796875 0.625 1.53125 1.234375 1.09375 1.703125 C 1.03125 1.765625 1.015625 1.78125 1.015625 1.8125 C 1.015625 1.890625 1.0625 1.921875 1.109375 1.921875 C 1.234375 1.921875 2.03125 1.140625 2.03125 -0.015625 Z M 2.03125 -0.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 11 -7.109375 L 11 -7.453125 C 10.671875 -7.421875 10.34375 -7.421875 10.015625 -7.421875 L 8.71875 -7.453125 L 8.71875 -7.109375 C 9.4375 -7.09375 9.65625 -6.734375 9.65625 -6.53125 C 9.65625 -6.46875 9.625 -6.375 9.609375 -6.3125 L 7.96875 -1.28125 L 6.234375 -6.625 C 6.21875 -6.65625 6.1875 -6.734375 6.1875 -6.78125 C 6.1875 -7.109375 6.828125 -7.109375 7.109375 -7.109375 L 7.109375 -7.453125 C 6.71875 -7.421875 5.984375 -7.421875 5.5625 -7.421875 L 4.234375 -7.453125 L 4.234375 -7.109375 C 4.859375 -7.109375 5.078125 -7.109375 5.21875 -6.71875 L 5.453125 -5.953125 L 3.9375 -1.28125 L 2.1875 -6.640625 C 2.171875 -6.671875 2.15625 -6.75 2.15625 -6.78125 C 2.15625 -7.109375 2.796875 -7.109375 3.078125 -7.109375 L 3.078125 -7.453125 C 2.6875 -7.421875 1.9375 -7.421875 1.53125 -7.421875 L 0.203125 -7.453125 L 0.203125 -7.109375 C 1.015625 -7.109375 1.0625 -7.0625 1.1875 -6.65625 L 3.375 0.03125 C 3.40625 0.125 3.4375 0.234375 3.578125 0.234375 C 3.734375 0.234375 3.75 0.15625 3.796875 0.015625 L 5.59375 -5.515625 L 7.40625 0.03125 C 7.4375 0.125 7.46875 0.234375 7.609375 0.234375 C 7.765625 0.234375 7.78125 0.15625 7.828125 0.015625 L 9.90625 -6.375 C 10.109375 -7 10.578125 -7.109375 11 -7.109375 Z M 11 -7.109375 "/>
|
||||
<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-7">
|
||||
<path style="stroke:none;" d="M 4.53125 -1.296875 C 4.53125 -1.40625 4.4375 -1.421875 4.390625 -1.421875 C 4.28125 -1.421875 4.265625 -1.359375 4.25 -1.28125 C 3.859375 -0.15625 2.875 -0.15625 2.765625 -0.15625 C 2.21875 -0.15625 1.78125 -0.484375 1.53125 -0.890625 C 1.203125 -1.40625 1.203125 -2.125 1.203125 -2.515625 L 4.25 -2.515625 C 4.5 -2.515625 4.53125 -2.515625 4.53125 -2.75 C 4.53125 -3.828125 3.9375 -4.890625 2.578125 -4.890625 C 1.3125 -4.890625 0.3125 -3.765625 0.3125 -2.40625 C 0.3125 -0.9375 1.453125 0.125 2.703125 0.125 C 4.03125 0.125 4.53125 -1.09375 4.53125 -1.296875 Z M 3.8125 -2.75 L 1.21875 -2.75 C 1.28125 -4.375 2.203125 -4.640625 2.578125 -4.640625 C 3.703125 -4.640625 3.8125 -3.171875 3.8125 -2.75 Z M 3.8125 -2.75 "/>
|
||||
<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 3.625 -1.359375 L 3.625 -1.96875 L 3.34375 -1.96875 L 3.34375 -1.375 C 3.34375 -0.5625 3.015625 -0.15625 2.625 -0.15625 C 1.890625 -0.15625 1.890625 -1.140625 1.890625 -1.328125 L 1.890625 -4.359375 L 3.453125 -4.359375 L 3.453125 -4.703125 L 1.890625 -4.703125 L 1.890625 -6.703125 L 1.609375 -6.703125 C 1.609375 -5.8125 1.28125 -4.640625 0.203125 -4.609375 L 0.203125 -4.359375 L 1.140625 -4.359375 L 1.140625 -1.359375 C 1.140625 -0.015625 2.15625 0.125 2.546875 0.125 C 3.3125 0.125 3.625 -0.65625 3.625 -1.359375 Z M 3.625 -1.359375 "/>
|
||||
<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-9">
|
||||
<path style="stroke:none;" d="M 2.09375 -7.25 C 2.09375 -7.609375 1.796875 -7.8125 1.515625 -7.8125 C 1.234375 -7.8125 0.9375 -7.609375 0.9375 -7.25 L 1.359375 -2.296875 C 1.375 -2.125 1.390625 -2.046875 1.515625 -2.046875 C 1.625 -2.046875 1.65625 -2.09375 1.671875 -2.28125 Z M 2.09375 -0.578125 C 2.09375 -0.890625 1.828125 -1.15625 1.515625 -1.15625 C 1.203125 -1.15625 0.9375 -0.890625 0.9375 -0.578125 C 0.9375 -0.265625 1.203125 0 1.515625 0 C 1.828125 0 2.09375 -0.265625 2.09375 -0.578125 Z M 2.09375 -0.578125 "/>
|
||||
<path style="stroke:none;" d="M 1.90625 -6.625 C 1.90625 -6.953125 1.640625 -7.140625 1.390625 -7.140625 C 1.125 -7.140625 0.859375 -6.953125 0.859375 -6.625 L 1.25 -2.09375 C 1.25 -1.9375 1.265625 -1.859375 1.390625 -1.859375 C 1.484375 -1.859375 1.515625 -1.90625 1.53125 -2.078125 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>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="0.2" y="8.258"/>
|
||||
<use xlink:href="#glyph0-2" x="8.381825" y="8.258"/>
|
||||
<use xlink:href="#glyph0-3" x="13.836375" y="8.258"/>
|
||||
<use xlink:href="#glyph0-3" x="16.866923" y="8.258"/>
|
||||
<use xlink:href="#glyph0-4" x="19.897471" y="8.258"/>
|
||||
<use xlink:href="#glyph0-5" x="25.352021" y="8.258"/>
|
||||
<use xlink:href="#glyph0-1" x="-0.254" y="7.871"/>
|
||||
<use xlink:href="#glyph0-2" x="7.21795" y="7.871"/>
|
||||
<use xlink:href="#glyph0-3" x="12.19925" y="7.871"/>
|
||||
<use xlink:href="#glyph0-3" x="14.96686" y="7.871"/>
|
||||
<use xlink:href="#glyph0-4" x="17.734471" y="7.871"/>
|
||||
<use xlink:href="#glyph0-5" x="22.715771" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="32.015299" y="8.258"/>
|
||||
<use xlink:href="#glyph0-6" x="28.800927" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="42.322217" y="8.258"/>
|
||||
<use xlink:href="#glyph0-3" x="47.171312" y="8.258"/>
|
||||
<use xlink:href="#glyph0-8" x="50.20186" y="8.258"/>
|
||||
<use xlink:href="#glyph0-9" x="54.444409" y="8.258"/>
|
||||
<use xlink:href="#glyph0-7" x="38.213591" y="7.871"/>
|
||||
<use xlink:href="#glyph0-3" x="42.641967" y="7.871"/>
|
||||
<use xlink:href="#glyph0-8" x="45.409577" y="7.871"/>
|
||||
<use xlink:href="#glyph0-9" x="49.284032" y="7.871"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 8.6 KiB After Width: | Height: | Size: 8.4 KiB |
@ -6,51 +6,51 @@
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<path style="stroke:none;" d="M 7.8125 0 L 7.8125 -0.34375 L 7.546875 -0.34375 C 6.703125 -0.34375 6.6875 -0.453125 6.6875 -0.84375 L 6.6875 -6.59375 C 6.6875 -6.984375 6.703125 -7.109375 7.546875 -7.109375 L 7.8125 -7.109375 L 7.8125 -7.453125 C 7.421875 -7.421875 6.625 -7.421875 6.203125 -7.421875 C 5.796875 -7.421875 4.96875 -7.421875 4.59375 -7.453125 L 4.59375 -7.109375 L 4.859375 -7.109375 C 5.6875 -7.109375 5.71875 -6.984375 5.71875 -6.59375 L 5.71875 -4.046875 L 2.453125 -4.046875 L 2.453125 -6.59375 C 2.453125 -6.984375 2.46875 -7.109375 3.3125 -7.109375 L 3.578125 -7.109375 L 3.578125 -7.453125 C 3.203125 -7.421875 2.390625 -7.421875 1.96875 -7.421875 C 1.5625 -7.421875 0.734375 -7.421875 0.359375 -7.453125 L 0.359375 -7.109375 L 0.625 -7.109375 C 1.46875 -7.109375 1.484375 -6.984375 1.484375 -6.59375 L 1.484375 -0.84375 C 1.484375 -0.453125 1.46875 -0.34375 0.625 -0.34375 L 0.359375 -0.34375 L 0.359375 0 C 0.734375 -0.03125 1.546875 -0.03125 1.96875 -0.03125 C 2.375 -0.03125 3.203125 -0.03125 3.578125 0 L 3.578125 -0.34375 L 3.3125 -0.34375 C 2.46875 -0.34375 2.453125 -0.453125 2.453125 -0.84375 L 2.453125 -3.703125 L 5.71875 -3.703125 L 5.71875 -0.84375 C 5.71875 -0.453125 5.6875 -0.34375 4.859375 -0.34375 L 4.59375 -0.34375 L 4.59375 0 C 4.96875 -0.03125 5.78125 -0.03125 6.1875 -0.03125 C 6.609375 -0.03125 7.421875 -0.03125 7.8125 0 Z M 7.8125 0 "/>
|
||||
<path style="stroke:none;" d="M 7.140625 0 L 7.140625 -0.3125 L 6.890625 -0.3125 C 6.125 -0.3125 6.109375 -0.421875 6.109375 -0.78125 L 6.109375 -6.03125 C 6.109375 -6.390625 6.125 -6.5 6.890625 -6.5 L 7.140625 -6.5 L 7.140625 -6.8125 C 6.78125 -6.78125 6.046875 -6.78125 5.671875 -6.78125 C 5.296875 -6.78125 4.546875 -6.78125 4.203125 -6.8125 L 4.203125 -6.5 L 4.4375 -6.5 C 5.203125 -6.5 5.21875 -6.390625 5.21875 -6.03125 L 5.21875 -3.703125 L 2.25 -3.703125 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 -3.390625 L 5.21875 -3.390625 L 5.21875 -0.78125 C 5.21875 -0.421875 5.203125 -0.3125 4.4375 -0.3125 L 4.203125 -0.3125 L 4.203125 0 C 4.546875 -0.03125 5.28125 -0.03125 5.65625 -0.03125 C 6.046875 -0.03125 6.78125 -0.03125 7.140625 0 Z M 7.140625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 5.265625 -0.96875 L 5.265625 -1.578125 L 5 -1.578125 L 5 -0.96875 C 5 -0.34375 4.71875 -0.265625 4.609375 -0.265625 C 4.25 -0.265625 4.203125 -0.765625 4.203125 -0.8125 L 4.203125 -3 C 4.203125 -3.453125 4.203125 -3.875 3.8125 -4.28125 C 3.375 -4.71875 2.828125 -4.890625 2.3125 -4.890625 C 1.421875 -4.890625 0.671875 -4.375 0.671875 -3.65625 C 0.671875 -3.328125 0.890625 -3.140625 1.171875 -3.140625 C 1.46875 -3.140625 1.671875 -3.359375 1.671875 -3.640625 C 1.671875 -3.78125 1.609375 -4.140625 1.109375 -4.140625 C 1.40625 -4.53125 1.9375 -4.640625 2.296875 -4.640625 C 2.828125 -4.640625 3.453125 -4.21875 3.453125 -3.25 L 3.453125 -2.84375 C 2.890625 -2.8125 2.125 -2.78125 1.4375 -2.453125 C 0.625 -2.078125 0.34375 -1.515625 0.34375 -1.03125 C 0.34375 -0.15625 1.40625 0.125 2.09375 0.125 C 2.8125 0.125 3.3125 -0.3125 3.515625 -0.828125 C 3.5625 -0.390625 3.859375 0.0625 4.375 0.0625 C 4.609375 0.0625 5.265625 -0.09375 5.265625 -0.96875 Z M 3.453125 -1.53125 C 3.453125 -0.484375 2.65625 -0.125 2.171875 -0.125 C 1.640625 -0.125 1.1875 -0.5 1.1875 -1.046875 C 1.1875 -1.640625 1.640625 -2.546875 3.453125 -2.625 Z M 3.453125 -1.53125 "/>
|
||||
<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-3">
|
||||
<path style="stroke:none;" d="M 2.78125 0 L 2.78125 -0.34375 C 2.046875 -0.34375 1.9375 -0.34375 1.9375 -0.828125 L 1.9375 -7.5625 L 0.359375 -7.453125 L 0.359375 -7.109375 C 1.125 -7.109375 1.203125 -7.03125 1.203125 -6.5 L 1.203125 -0.828125 C 1.203125 -0.34375 1.09375 -0.34375 0.359375 -0.34375 L 0.359375 0 L 1.578125 -0.03125 Z M 2.78125 0 "/>
|
||||
<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-4">
|
||||
<path style="stroke:none;" d="M 5.140625 -2.328125 C 5.140625 -3.734375 4.046875 -4.890625 2.71875 -4.890625 C 1.359375 -4.890625 0.3125 -3.703125 0.3125 -2.328125 C 0.3125 -0.921875 1.4375 0.125 2.71875 0.125 C 4.03125 0.125 5.140625 -0.953125 5.140625 -2.328125 Z M 4.234375 -2.421875 C 4.234375 -2.03125 4.234375 -1.4375 3.984375 -0.953125 C 3.75 -0.46875 3.265625 -0.15625 2.71875 -0.15625 C 2.25 -0.15625 1.78125 -0.375 1.484375 -0.890625 C 1.203125 -1.359375 1.203125 -2.03125 1.203125 -2.421875 C 1.203125 -2.84375 1.203125 -3.4375 1.46875 -3.921875 C 1.765625 -4.421875 2.28125 -4.640625 2.71875 -4.640625 C 3.203125 -4.640625 3.671875 -4.40625 3.953125 -3.9375 C 4.234375 -3.46875 4.234375 -2.828125 4.234375 -2.421875 Z M 4.234375 -2.421875 "/>
|
||||
<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-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 "/>
|
||||
<path style="stroke:none;" d="M 2.03125 -0.015625 C 2.03125 -0.640625 1.78125 -1.0625 1.390625 -1.0625 C 1.03125 -1.0625 0.859375 -0.78125 0.859375 -0.53125 C 0.859375 -0.265625 1.03125 0 1.390625 0 C 1.53125 0 1.671875 -0.0625 1.78125 -0.15625 C 1.796875 0.625 1.53125 1.234375 1.09375 1.703125 C 1.03125 1.765625 1.015625 1.78125 1.015625 1.8125 C 1.015625 1.890625 1.0625 1.921875 1.109375 1.921875 C 1.234375 1.921875 2.03125 1.140625 2.03125 -0.015625 Z M 2.03125 -0.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 11 -7.109375 L 11 -7.453125 C 10.671875 -7.421875 10.34375 -7.421875 10.015625 -7.421875 L 8.71875 -7.453125 L 8.71875 -7.109375 C 9.4375 -7.09375 9.65625 -6.734375 9.65625 -6.53125 C 9.65625 -6.46875 9.625 -6.375 9.609375 -6.3125 L 7.96875 -1.28125 L 6.234375 -6.625 C 6.21875 -6.65625 6.1875 -6.734375 6.1875 -6.78125 C 6.1875 -7.109375 6.828125 -7.109375 7.109375 -7.109375 L 7.109375 -7.453125 C 6.71875 -7.421875 5.984375 -7.421875 5.5625 -7.421875 L 4.234375 -7.453125 L 4.234375 -7.109375 C 4.859375 -7.109375 5.078125 -7.109375 5.21875 -6.71875 L 5.453125 -5.953125 L 3.9375 -1.28125 L 2.1875 -6.640625 C 2.171875 -6.671875 2.15625 -6.75 2.15625 -6.78125 C 2.15625 -7.109375 2.796875 -7.109375 3.078125 -7.109375 L 3.078125 -7.453125 C 2.6875 -7.421875 1.9375 -7.421875 1.53125 -7.421875 L 0.203125 -7.453125 L 0.203125 -7.109375 C 1.015625 -7.109375 1.0625 -7.0625 1.1875 -6.65625 L 3.375 0.03125 C 3.40625 0.125 3.4375 0.234375 3.578125 0.234375 C 3.734375 0.234375 3.75 0.15625 3.796875 0.015625 L 5.59375 -5.515625 L 7.40625 0.03125 C 7.4375 0.125 7.46875 0.234375 7.609375 0.234375 C 7.765625 0.234375 7.78125 0.15625 7.828125 0.015625 L 9.90625 -6.375 C 10.109375 -7 10.578125 -7.109375 11 -7.109375 Z M 11 -7.109375 "/>
|
||||
<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-7">
|
||||
<path style="stroke:none;" d="M 4.53125 -1.296875 C 4.53125 -1.40625 4.4375 -1.421875 4.390625 -1.421875 C 4.28125 -1.421875 4.265625 -1.359375 4.25 -1.28125 C 3.859375 -0.15625 2.875 -0.15625 2.765625 -0.15625 C 2.21875 -0.15625 1.78125 -0.484375 1.53125 -0.890625 C 1.203125 -1.40625 1.203125 -2.125 1.203125 -2.515625 L 4.25 -2.515625 C 4.5 -2.515625 4.53125 -2.515625 4.53125 -2.75 C 4.53125 -3.828125 3.9375 -4.890625 2.578125 -4.890625 C 1.3125 -4.890625 0.3125 -3.765625 0.3125 -2.40625 C 0.3125 -0.9375 1.453125 0.125 2.703125 0.125 C 4.03125 0.125 4.53125 -1.09375 4.53125 -1.296875 Z M 3.8125 -2.75 L 1.21875 -2.75 C 1.28125 -4.375 2.203125 -4.640625 2.578125 -4.640625 C 3.703125 -4.640625 3.8125 -3.171875 3.8125 -2.75 Z M 3.8125 -2.75 "/>
|
||||
<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 3.625 -1.359375 L 3.625 -1.96875 L 3.34375 -1.96875 L 3.34375 -1.375 C 3.34375 -0.5625 3.015625 -0.15625 2.625 -0.15625 C 1.890625 -0.15625 1.890625 -1.140625 1.890625 -1.328125 L 1.890625 -4.359375 L 3.453125 -4.359375 L 3.453125 -4.703125 L 1.890625 -4.703125 L 1.890625 -6.703125 L 1.609375 -6.703125 C 1.609375 -5.8125 1.28125 -4.640625 0.203125 -4.609375 L 0.203125 -4.359375 L 1.140625 -4.359375 L 1.140625 -1.359375 C 1.140625 -0.015625 2.15625 0.125 2.546875 0.125 C 3.3125 0.125 3.625 -0.65625 3.625 -1.359375 Z M 3.625 -1.359375 "/>
|
||||
<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-9">
|
||||
<path style="stroke:none;" d="M 2.09375 -7.25 C 2.09375 -7.609375 1.796875 -7.8125 1.515625 -7.8125 C 1.234375 -7.8125 0.9375 -7.609375 0.9375 -7.25 L 1.359375 -2.296875 C 1.375 -2.125 1.390625 -2.046875 1.515625 -2.046875 C 1.625 -2.046875 1.65625 -2.09375 1.671875 -2.28125 Z M 2.09375 -0.578125 C 2.09375 -0.890625 1.828125 -1.15625 1.515625 -1.15625 C 1.203125 -1.15625 0.9375 -0.890625 0.9375 -0.578125 C 0.9375 -0.265625 1.203125 0 1.515625 0 C 1.828125 0 2.09375 -0.265625 2.09375 -0.578125 Z M 2.09375 -0.578125 "/>
|
||||
<path style="stroke:none;" d="M 1.90625 -6.625 C 1.90625 -6.953125 1.640625 -7.140625 1.390625 -7.140625 C 1.125 -7.140625 0.859375 -6.953125 0.859375 -6.625 L 1.25 -2.09375 C 1.25 -1.9375 1.265625 -1.859375 1.390625 -1.859375 C 1.484375 -1.859375 1.515625 -1.90625 1.53125 -2.078125 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>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="100.2" y="95.148"/>
|
||||
<use xlink:href="#glyph0-2" x="108.381825" y="95.148"/>
|
||||
<use xlink:href="#glyph0-3" x="113.836375" y="95.148"/>
|
||||
<use xlink:href="#glyph0-3" x="116.866923" y="95.148"/>
|
||||
<use xlink:href="#glyph0-4" x="119.897471" y="95.148"/>
|
||||
<use xlink:href="#glyph0-5" x="125.352021" y="95.148"/>
|
||||
<use xlink:href="#glyph0-1" x="139.746" y="135.761"/>
|
||||
<use xlink:href="#glyph0-2" x="147.21795" y="135.761"/>
|
||||
<use xlink:href="#glyph0-3" x="152.19925" y="135.761"/>
|
||||
<use xlink:href="#glyph0-3" x="154.96686" y="135.761"/>
|
||||
<use xlink:href="#glyph0-4" x="157.734471" y="135.761"/>
|
||||
<use xlink:href="#glyph0-5" x="162.715771" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="132.015299" y="95.148"/>
|
||||
<use xlink:href="#glyph0-6" x="168.800927" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="142.322217" y="95.148"/>
|
||||
<use xlink:href="#glyph0-3" x="147.171312" y="95.148"/>
|
||||
<use xlink:href="#glyph0-8" x="150.20186" y="95.148"/>
|
||||
<use xlink:href="#glyph0-9" x="154.444409" y="95.148"/>
|
||||
<use xlink:href="#glyph0-7" x="178.213591" y="135.761"/>
|
||||
<use xlink:href="#glyph0-3" x="182.641967" y="135.761"/>
|
||||
<use xlink:href="#glyph0-8" x="185.409577" y="135.761"/>
|
||||
<use xlink:href="#glyph0-9" x="189.284032" y="135.761"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 8.7 KiB After Width: | Height: | Size: 8.4 KiB |
@ -1,11 +1,11 @@
|
||||
\documentclass{scrartcl}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\documentclass[a4paper,ngerman]{article}
|
||||
\usepackage{babel}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[ngerman]{babel}
|
||||
\usepackage[utf8]{inputenc}
|
||||
|
||||
\usepackage{lmodern}
|
||||
|
||||
\begin{document}
|
||||
\thispagestyle{empty}
|
||||
Hallo, Welt!
|
||||
Hallo, Welt!
|
||||
\end{document}
|
||||
|
||||
@ -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 |
@ -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 |
@ -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="309pt" height="257pt" viewBox="0 0 309 257" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="316pt" height="552pt" viewBox="0 0 316 552" version="1.1">
|
||||
<defs>
|
||||
<g>
|
||||
<symbol overflow="visible" id="glyph0-0">
|
||||
@ -72,191 +72,284 @@
|
||||
<path style="stroke:none;" d="M 0.546875 -9.8125 L 0.546875 -9.40625 L 0.734375 -9.40625 C 1.203125 -9.40625 1.546875 -9.359375 1.546875 -8.65625 L 1.546875 -0.96875 C 1.546875 -0.453125 1.171875 -0.421875 0.78125 -0.421875 L 0.546875 -0.421875 L 0.546875 -0.015625 L 3.34375 -0.015625 L 3.34375 -0.421875 L 3.03125 -0.421875 C 2.65625 -0.421875 2.34375 -0.453125 2.34375 -0.953125 L 2.34375 -9.96875 Z M 0.546875 -9.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-11">
|
||||
<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 5.109375 -5.1875 C 5.0625 -5.203125 5 -5.203125 4.96875 -5.203125 C 4.625 -5.203125 4.390625 -4.953125 4.390625 -4.640625 C 4.390625 -4.3125 4.640625 -4.078125 4.9375 -4.078125 C 5.25 -4.078125 5.515625 -4.296875 5.515625 -4.65625 C 5.515625 -5.796875 4.34375 -6.390625 3.375 -6.390625 C 1.625 -6.390625 0.515625 -4.671875 0.515625 -3.09375 C 0.515625 -1.578125 1.5625 0.109375 3.40625 0.109375 C 4.359375 0.109375 5.265625 -0.4375 5.578125 -1.40625 C 5.625 -1.484375 5.671875 -1.59375 5.671875 -1.6875 L 5.671875 -1.75 C 5.65625 -1.8125 5.609375 -1.84375 5.546875 -1.84375 C 5.34375 -1.84375 5.34375 -1.59375 5.3125 -1.46875 C 4.96875 -0.703125 4.34375 -0.171875 3.53125 -0.171875 C 2.015625 -0.171875 1.515625 -1.890625 1.515625 -3.046875 C 1.515625 -4.21875 1.84375 -6.078125 3.484375 -6.078125 C 4.125 -6.078125 4.796875 -5.75 5.109375 -5.1875 Z M 5.109375 -5.1875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-12">
|
||||
<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 "/>
|
||||
<path style="stroke:none;" d="M 0.546875 -9.8125 L 0.546875 -9.40625 L 0.734375 -9.40625 C 1.203125 -9.40625 1.546875 -9.359375 1.546875 -8.65625 L 1.546875 -0.984375 C 1.546875 -0.4375 1.140625 -0.421875 0.609375 -0.421875 L 0.546875 -0.421875 L 0.546875 -0.015625 L 3.375 -0.015625 L 3.375 -0.421875 L 3.125 -0.421875 C 2.71875 -0.421875 2.359375 -0.453125 2.359375 -0.921875 L 2.359375 -3.6875 C 2.359375 -4.65625 2.84375 -6.046875 4.21875 -6.046875 C 5.046875 -6.046875 5.328125 -5.328125 5.328125 -4.359375 L 5.328125 -0.953125 C 5.328125 -0.453125 4.953125 -0.421875 4.546875 -0.421875 L 4.3125 -0.421875 L 4.3125 -0.015625 L 7.140625 -0.015625 L 7.140625 -0.421875 L 6.859375 -0.421875 C 6.5 -0.421875 6.140625 -0.453125 6.140625 -0.96875 L 6.140625 -4.296875 C 6.140625 -5.578125 5.546875 -6.3125 4.265625 -6.3125 C 3.421875 -6.3125 2.5625 -5.703125 2.359375 -4.90625 L 2.34375 -9.96875 Z M 0.546875 -9.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-13">
|
||||
<path style="stroke:none;" d="M 0.71875 -9.8125 L 0.71875 -9.40625 L 1.125 -9.40625 C 1.578125 -9.40625 2 -9.359375 2 -8.8125 C 2 -8.703125 1.984375 -8.625 1.984375 -8.53125 L 1.984375 -1.4375 C 1.984375 -0.546875 1.328125 -0.421875 0.71875 -0.421875 L 0.71875 -0.015625 L 3.5625 -0.015625 L 3.5625 -0.421875 C 2.984375 -0.421875 2.296875 -0.5 2.296875 -1.453125 L 2.3125 -9.359375 C 2.34375 -9.25 2.375 -9.140625 2.421875 -9.015625 L 2.625 -8.484375 C 3.625 -5.84375 4.578125 -3.171875 5.59375 -0.53125 L 5.71875 -0.1875 C 5.75 -0.09375 5.8125 -0.03125 5.90625 -0.015625 C 6.109375 -0.015625 6.171875 -0.34375 6.234375 -0.515625 C 7.21875 -3.25 8.328125 -5.953125 9.28125 -8.703125 C 9.375 -8.953125 9.5 -9.1875 9.546875 -9.453125 L 9.5625 -1 C 9.5625 -0.46875 9.140625 -0.421875 8.65625 -0.421875 L 8.3125 -0.421875 L 8.3125 -0.015625 L 11.796875 -0.015625 L 11.796875 -0.421875 L 11.4375 -0.421875 C 10.953125 -0.421875 10.515625 -0.46875 10.515625 -1 C 10.515625 -1.109375 10.53125 -1.203125 10.53125 -1.296875 L 10.53125 -8.515625 C 10.53125 -8.609375 10.515625 -8.71875 10.515625 -8.828125 C 10.515625 -9.359375 10.9375 -9.421875 11.359375 -9.421875 C 11.515625 -9.421875 11.65625 -9.40625 11.796875 -9.40625 L 11.796875 -9.8125 L 9.671875 -9.8125 L 9.453125 -9.765625 L 9.34375 -9.5625 L 6.265625 -1.296875 L 6.234375 -1.296875 L 3.171875 -9.5625 L 3.0625 -9.765625 L 2.84375 -9.8125 Z M 0.71875 -9.8125 "/>
|
||||
<path style="stroke:none;" d="M 1.546875 -6.1875 L 0.421875 -6.1875 L 0.421875 -5.78125 L 1.546875 -5.78125 L 1.546875 -0.953125 C 1.546875 -0.4375 1.15625 -0.421875 0.625 -0.421875 L 0.546875 -0.421875 L 0.546875 -0.015625 L 3.578125 -0.015625 L 3.578125 -0.421875 C 3.4375 -0.421875 3.28125 -0.40625 3.125 -0.40625 C 2.71875 -0.40625 2.34375 -0.46875 2.34375 -0.96875 L 2.34375 -5.78125 L 3.953125 -5.78125 L 3.953125 -6.1875 L 2.3125 -6.1875 L 2.3125 -7.546875 C 2.3125 -8.359375 2.453125 -9.78125 3.53125 -9.84375 L 3.578125 -9.84375 C 3.765625 -9.84375 3.9375 -9.765625 4.109375 -9.703125 C 3.875 -9.609375 3.65625 -9.515625 3.65625 -9.1875 C 3.65625 -8.859375 3.890625 -8.640625 4.1875 -8.640625 C 4.546875 -8.640625 4.734375 -8.90625 4.734375 -9.1875 C 4.734375 -9.796875 4.078125 -10.09375 3.578125 -10.09375 C 2.34375 -10.09375 1.546875 -9.015625 1.546875 -7.828125 Z M 1.546875 -6.1875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-14">
|
||||
<path style="stroke:none;" d="M 0.609375 -6.15625 L 0.609375 -5.75 L 0.765625 -5.75 C 1.203125 -5.75 1.546875 -5.6875 1.546875 -5.03125 L 1.546875 -0.90625 C 1.546875 -0.4375 1.15625 -0.421875 0.75 -0.421875 L 0.546875 -0.421875 L 0.546875 -0.015625 L 3.234375 -0.015625 L 3.234375 -0.421875 L 3 -0.421875 C 2.671875 -0.421875 2.34375 -0.453125 2.34375 -0.921875 L 2.34375 -6.3125 Z M 1.640625 -9.46875 C 1.296875 -9.40625 1.109375 -9.125 1.109375 -8.828125 C 1.109375 -8.546875 1.328125 -8.203125 1.71875 -8.203125 C 2.109375 -8.203125 2.375 -8.5 2.375 -8.828125 C 2.375 -9.15625 2.125 -9.484375 1.765625 -9.484375 C 1.71875 -9.484375 1.671875 -9.46875 1.640625 -9.46875 Z M 1.640625 -9.46875 "/>
|
||||
<path style="stroke:none;" d="M 2.015625 -8.828125 C 2.015625 -7.9375 1.703125 -6.03125 0.265625 -6.03125 L 0.265625 -5.78125 L 1.484375 -5.78125 L 1.484375 -2.53125 C 1.484375 -2.34375 1.46875 -2.140625 1.46875 -1.9375 C 1.46875 -0.796875 1.984375 0.109375 3.171875 0.109375 C 4.3125 0.109375 4.53125 -1.171875 4.53125 -2.0625 L 4.53125 -2.609375 L 4.25 -2.609375 C 4.25 -2.390625 4.265625 -2.1875 4.265625 -1.96875 C 4.265625 -1.328125 4.125 -0.171875 3.265625 -0.171875 C 2.421875 -0.171875 2.296875 -1.171875 2.296875 -1.859375 L 2.296875 -5.78125 L 4.296875 -5.78125 L 4.296875 -6.1875 L 2.296875 -6.1875 L 2.296875 -8.828125 Z M 2.015625 -8.828125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-15">
|
||||
<path style="stroke:none;" d="M 1.09375 -7.4375 C 1.375 -8.296875 1.96875 -9.109375 3.0625 -9.109375 C 4.28125 -9.109375 5.046875 -8.015625 5.046875 -6.84375 L 5.046875 -6.65625 C 4.875 -4.71875 3.265625 -3.34375 2.109375 -1.984375 C 1.640625 -1.484375 0.671875 -0.53125 0.671875 -0.171875 L 0.671875 -0.015625 L 5.78125 -0.015625 L 6.140625 -2.3125 L 5.859375 -2.3125 C 5.734375 -1.65625 5.765625 -0.953125 5.171875 -0.953125 C 4.78125 -0.953125 4.375 -0.921875 3.96875 -0.921875 L 1.515625 -0.921875 C 2.28125 -1.671875 3.046875 -2.46875 3.828125 -3.21875 C 4.8125 -4.125 6.140625 -5.203125 6.140625 -6.71875 C 6.140625 -8.5625 4.734375 -9.515625 3.171875 -9.515625 L 3.03125 -9.515625 C 1.75 -9.375 0.671875 -8.25 0.671875 -6.90625 C 0.671875 -6.5625 0.796875 -6.1875 1.3125 -6.1875 C 1.671875 -6.1875 1.96875 -6.4375 1.96875 -6.796875 C 1.96875 -7.125 1.71875 -7.453125 1.3125 -7.453125 C 1.25 -7.453125 1.15625 -7.4375 1.09375 -7.4375 Z M 1.09375 -7.4375 "/>
|
||||
<path style="stroke:none;" d="M 0.234375 -9.8125 L 0.234375 -9.40625 L 0.390625 -9.40625 C 0.640625 -9.40625 0.953125 -9.390625 1.109375 -9.296875 C 1.28125 -9.171875 1.328125 -8.9375 1.40625 -8.75 C 2.234375 -5.9375 3.1875 -3.109375 4.0625 -0.296875 L 4.109375 -0.140625 C 4.171875 0.015625 4.203125 0.25 4.40625 0.25 L 4.4375 0.25 C 4.546875 0.234375 4.578125 0.140625 4.609375 0.046875 L 4.75 -0.390625 C 5.359375 -2.40625 6.03125 -4.453125 6.65625 -6.46875 C 6.765625 -6.84375 6.875 -7.21875 7.015625 -7.578125 C 7.15625 -7.21875 7.265625 -6.84375 7.375 -6.46875 C 8.0625 -4.296875 8.78125 -2.140625 9.421875 0.046875 C 9.453125 0.125 9.484375 0.21875 9.578125 0.25 L 9.625 0.25 C 9.859375 0.25 9.890625 -0.09375 9.953125 -0.265625 C 10.75 -2.734375 11.53125 -5.21875 12.296875 -7.703125 C 12.5 -8.40625 12.65625 -9.40625 13.796875 -9.40625 L 13.796875 -9.8125 L 11.25 -9.8125 L 11.25 -9.40625 C 11.671875 -9.40625 12.28125 -9.1875 12.28125 -8.671875 C 12.25 -8.28125 12.015625 -7.8125 11.90625 -7.4375 C 11.34375 -5.6875 10.765625 -3.9375 10.25 -2.1875 C 10.1875 -1.953125 10.078125 -1.703125 10.03125 -1.46875 L 10.015625 -1.46875 C 9.96875 -1.671875 9.890625 -1.890625 9.828125 -2.09375 L 9.484375 -3.171875 C 8.890625 -5.046875 8.328125 -6.921875 7.703125 -8.8125 C 7.6875 -8.859375 7.671875 -8.9375 7.671875 -9.015625 L 7.671875 -9.046875 C 7.75 -9.40625 8.3125 -9.40625 8.671875 -9.40625 L 8.671875 -9.8125 L 5.484375 -9.8125 L 5.484375 -9.40625 L 5.671875 -9.40625 C 6.203125 -9.40625 6.546875 -9.359375 6.75 -8.390625 C 6.796875 -8.3125 6.84375 -8.1875 6.84375 -8.09375 L 6.84375 -8.046875 C 6.796875 -7.8125 6.71875 -7.609375 6.640625 -7.40625 C 6.5 -6.890625 6.328125 -6.375 6.15625 -5.859375 L 4.78125 -1.46875 C 4.6875 -1.671875 4.640625 -1.890625 4.578125 -2.109375 L 4.234375 -3.203125 C 3.671875 -4.9375 3.078125 -6.6875 2.578125 -8.4375 C 2.515625 -8.625 2.421875 -8.828125 2.421875 -9.015625 L 2.421875 -9.046875 C 2.5 -9.390625 3.078125 -9.40625 3.421875 -9.40625 L 3.421875 -9.8125 Z M 0.234375 -9.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-16">
|
||||
<path style="stroke:none;" d="M 3.234375 -9.515625 C 0.65625 -9.234375 0.609375 -6.03125 0.609375 -4.65625 L 0.609375 -4.5 C 0.609375 -3.1875 0.703125 -1.609375 1.578125 -0.609375 C 2.015625 -0.09375 2.71875 0.25 3.40625 0.25 L 3.578125 0.25 C 6.03125 0.015625 6.203125 -2.9375 6.203125 -4.765625 C 6.203125 -6.0625 6.078125 -7.578125 5.296875 -8.59375 C 4.84375 -9.15625 4.125 -9.53125 3.40625 -9.53125 C 3.359375 -9.53125 3.28125 -9.515625 3.234375 -9.515625 Z M 1.609375 -3.765625 C 1.5625 -4.15625 1.578125 -4.71875 1.578125 -5.359375 C 1.578125 -7.078125 1.75 -9.25 3.40625 -9.25 C 5.109375 -9.25 5.203125 -6.984375 5.203125 -5.546875 L 5.203125 -5.03125 C 5.203125 -4.421875 5.203125 -3.796875 5.171875 -3.1875 C 5.15625 -2.0625 5.046875 -0.5625 3.875 -0.09375 C 3.71875 -0.046875 3.5625 -0.015625 3.40625 -0.015625 C 1.640625 -0.015625 1.71875 -2.5625 1.609375 -3.765625 Z M 1.609375 -3.765625 "/>
|
||||
<path style="stroke:none;" d="M 0.609375 -9.8125 L 0.609375 -9.40625 C 0.765625 -9.40625 0.921875 -9.421875 1.078125 -9.421875 C 1.53125 -9.421875 1.953125 -9.359375 1.953125 -8.84375 C 1.953125 -8.75 1.9375 -8.65625 1.9375 -8.5625 L 1.9375 -1.28125 C 1.9375 -1.1875 1.953125 -1.109375 1.953125 -1 C 1.953125 -0.46875 1.515625 -0.40625 1.078125 -0.40625 C 0.921875 -0.40625 0.765625 -0.421875 0.609375 -0.421875 L 0.609375 -0.015625 L 4.296875 -0.015625 L 4.296875 -0.421875 C 4.15625 -0.421875 4 -0.40625 3.84375 -0.40625 C 3.390625 -0.40625 2.96875 -0.46875 2.96875 -0.96875 C 2.96875 -1.078125 2.984375 -1.171875 2.984375 -1.265625 L 2.984375 -8.546875 C 2.984375 -8.640625 2.96875 -8.71875 2.96875 -8.828125 C 2.96875 -9.359375 3.40625 -9.421875 3.84375 -9.421875 C 4 -9.421875 4.15625 -9.40625 4.296875 -9.40625 L 4.296875 -9.8125 Z M 0.609375 -9.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-17">
|
||||
<path style="stroke:none;" d="M 1.3125 -8.59375 L 1.3125 -8.1875 C 1.921875 -8.1875 2.53125 -8.296875 3.078125 -8.59375 L 3.078125 -1.03125 C 3.078125 -0.484375 2.546875 -0.40625 2.015625 -0.40625 C 1.796875 -0.40625 1.5625 -0.421875 1.375 -0.421875 L 1.375 -0.015625 L 5.671875 -0.015625 L 5.671875 -0.421875 C 5.453125 -0.421875 5.21875 -0.40625 4.984375 -0.40625 C 4.453125 -0.40625 3.953125 -0.484375 3.953125 -1.015625 L 3.953125 -9.3125 C 3.953125 -9.375 3.9375 -9.515625 3.8125 -9.515625 C 3.765625 -9.515625 3.734375 -9.5 3.703125 -9.484375 L 3.5625 -9.34375 C 2.90625 -8.78125 2.125 -8.59375 1.3125 -8.59375 Z M 1.3125 -8.59375 "/>
|
||||
<path style="stroke:none;" d="M 0.421875 -0.421875 L 0.421875 -0.015625 L 3.046875 -0.015625 L 3.046875 -0.421875 C 2.640625 -0.421875 2.171875 -0.640625 2.171875 -1.09375 L 2.171875 -1.140625 C 2.1875 -1.359375 2.296875 -1.578125 2.359375 -1.78125 C 2.546875 -2.328125 2.796875 -2.859375 2.921875 -3.40625 L 6.421875 -3.40625 C 6.6875 -3.40625 6.828125 -2.6875 6.96875 -2.296875 C 7.078125 -1.921875 7.234375 -1.546875 7.359375 -1.171875 C 7.40625 -1.0625 7.453125 -0.9375 7.453125 -0.8125 C 7.453125 -0.4375 6.828125 -0.421875 6.46875 -0.421875 L 6.46875 -0.015625 L 9.8125 -0.015625 L 9.8125 -0.421875 L 9.484375 -0.421875 C 8.71875 -0.421875 8.5625 -0.734375 8.375 -1.375 L 7.90625 -2.71875 C 7.078125 -5 6.28125 -7.296875 5.515625 -9.609375 L 5.375 -9.953125 C 5.34375 -10.109375 5.265625 -10.203125 5.109375 -10.203125 C 4.84375 -10.203125 4.8125 -9.828125 4.734375 -9.625 C 3.890625 -7.15625 2.984375 -4.703125 2.15625 -2.21875 C 1.890625 -1.453125 1.75 -0.421875 0.421875 -0.421875 Z M 3.0625 -3.8125 L 4.75 -8.65625 L 6.4375 -3.8125 Z M 3.0625 -3.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-18">
|
||||
<path style="stroke:none;" d="M 5.0625 -10.0625 C 4.03125 -9.953125 3.078125 -9.5625 2.3125 -8.796875 C 1.28125 -7.78125 0.765625 -6.34375 0.765625 -4.90625 C 0.765625 -2.453125 2.421875 0.25 5.359375 0.25 C 8.140625 0.25 9.859375 -2.46875 9.859375 -4.90625 C 9.859375 -7.4375 8.0625 -10.0625 5.265625 -10.0625 Z M 1.984375 -4.71875 L 1.984375 -4.96875 C 1.984375 -6.59375 2.359375 -8.578125 4.015625 -9.4375 C 4.40625 -9.65625 4.828125 -9.78125 5.28125 -9.78125 C 6.546875 -9.78125 7.5625 -8.90625 8.125 -7.75 C 8.5 -6.9375 8.640625 -6.03125 8.640625 -5.15625 C 8.640625 -3.296875 8.140625 -0.75 5.9375 -0.140625 C 5.734375 -0.09375 5.515625 -0.0625 5.328125 -0.0625 C 3.234375 -0.0625 2.21875 -2.359375 2.015625 -4.109375 C 2.015625 -4.296875 2.015625 -4.515625 1.984375 -4.71875 Z M 1.984375 -4.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-19">
|
||||
<path style="stroke:none;" d="M 0.15625 -3.4375 L 0.15625 -2.75 L 3.765625 -2.75 L 3.765625 -3.4375 Z M 0.15625 -3.4375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-20">
|
||||
<path style="stroke:none;" d="M 0.609375 -6.15625 L 0.609375 -5.75 L 0.765625 -5.75 C 1.203125 -5.75 1.546875 -5.6875 1.546875 -5.03125 L 1.546875 -0.90625 C 1.546875 -0.4375 1.15625 -0.421875 0.75 -0.421875 L 0.546875 -0.421875 L 0.546875 -0.015625 L 3.234375 -0.015625 L 3.234375 -0.421875 L 3 -0.421875 C 2.671875 -0.421875 2.34375 -0.453125 2.34375 -0.921875 L 2.34375 -6.3125 Z M 1.640625 -9.46875 C 1.296875 -9.40625 1.109375 -9.125 1.109375 -8.828125 C 1.109375 -8.546875 1.328125 -8.203125 1.71875 -8.203125 C 2.109375 -8.203125 2.375 -8.5 2.375 -8.828125 C 2.375 -9.15625 2.125 -9.484375 1.765625 -9.484375 C 1.71875 -9.484375 1.671875 -9.46875 1.640625 -9.46875 Z M 1.640625 -9.46875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-21">
|
||||
<path style="stroke:none;" d="M 4.28125 -9.8125 L 4.28125 -9.40625 L 4.484375 -9.40625 C 4.96875 -9.40625 5.28125 -9.359375 5.28125 -8.5 L 5.265625 -5.34375 C 4.9375 -6.03125 4.09375 -6.3125 3.453125 -6.3125 C 1.765625 -6.3125 0.515625 -4.75 0.515625 -3.078125 C 0.515625 -1.46875 1.703125 0.109375 3.359375 0.109375 C 4.15625 0.109375 4.6875 -0.265625 5.25 -0.90625 L 5.25 0.109375 L 7.078125 -0.015625 L 7.078125 -0.421875 L 6.859375 -0.421875 C 6.46875 -0.421875 6.0625 -0.453125 6.0625 -1.109375 L 6.0625 -9.96875 Z M 1.515625 -2.75 L 1.515625 -2.96875 C 1.515625 -3.984375 1.65625 -5.125 2.578125 -5.734375 C 2.890625 -5.9375 3.234375 -6.046875 3.578125 -6.046875 C 4.28125 -6.046875 5.140625 -5.46875 5.25 -4.796875 L 5.25 -1.65625 C 5.25 -0.859375 4.15625 -0.140625 3.40625 -0.140625 C 2.3125 -0.140625 1.703125 -1.234375 1.5625 -2.25 C 1.546875 -2.421875 1.546875 -2.578125 1.515625 -2.75 Z M 1.515625 -2.75 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-22">
|
||||
<path style="stroke:none;" d="M 0.671875 -9.8125 L 0.671875 -9.40625 L 1.125 -9.40625 C 1.5625 -9.40625 1.953125 -9.359375 1.953125 -8.8125 C 1.953125 -8.671875 1.9375 -8.5625 1.9375 -8.46875 L 1.9375 -4.25 C 1.9375 -3.984375 1.921875 -3.75 1.921875 -3.484375 C 1.921875 -1.703125 3.015625 0.25 5.359375 0.25 C 6.671875 0.25 7.71875 -0.859375 8.109375 -2.015625 C 8.28125 -2.53125 8.296875 -3.0625 8.296875 -3.609375 L 8.296875 -8.390625 C 8.296875 -9.28125 8.953125 -9.40625 9.546875 -9.40625 L 9.546875 -9.8125 L 6.6875 -9.8125 L 6.6875 -9.40625 C 7.28125 -9.40625 7.953125 -9.28125 7.953125 -8.390625 L 7.953125 -3.640625 C 7.953125 -2.6875 7.796875 -1.6875 7.09375 -0.96875 C 6.625 -0.453125 5.953125 -0.15625 5.265625 -0.15625 C 4.265625 -0.15625 3.4375 -0.9375 3.171875 -1.859375 C 3 -2.421875 2.984375 -3 2.984375 -3.578125 L 2.984375 -8.828125 C 2.984375 -9.359375 3.40625 -9.40625 3.828125 -9.40625 L 4.25 -9.40625 L 4.25 -9.8125 Z M 0.671875 -9.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-23">
|
||||
<path style="stroke:none;" d="M 0.546875 -6.15625 L 0.546875 -5.75 L 0.765625 -5.75 C 1.15625 -5.75 1.546875 -5.703125 1.546875 -5.03125 L 1.546875 -0.90625 C 1.546875 -0.453125 1.171875 -0.421875 0.8125 -0.421875 L 0.546875 -0.421875 L 0.546875 -0.015625 L 3.375 -0.015625 L 3.375 -0.421875 L 3.125 -0.421875 C 2.71875 -0.421875 2.359375 -0.453125 2.359375 -0.921875 L 2.359375 -3.6875 C 2.359375 -4.65625 2.84375 -6.046875 4.21875 -6.046875 C 5.046875 -6.046875 5.328125 -5.328125 5.328125 -4.359375 L 5.328125 -0.953125 C 5.328125 -0.453125 4.953125 -0.421875 4.546875 -0.421875 L 4.3125 -0.421875 L 4.3125 -0.015625 L 7.140625 -0.015625 L 7.140625 -0.421875 L 6.8125 -0.421875 C 6.5 -0.421875 6.203125 -0.453125 6.140625 -0.796875 L 6.140625 -4.1875 C 6.140625 -4.671875 6.125 -5.171875 5.859375 -5.59375 C 5.53125 -6.15625 4.875 -6.3125 4.265625 -6.3125 C 3.390625 -6.3125 2.515625 -5.640625 2.328125 -4.8125 L 2.3125 -6.3125 L 1.546875 -6.234375 Z M 0.546875 -6.15625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-24">
|
||||
<path style="stroke:none;" d="M 0.25 -6.1875 L 0.25 -5.78125 L 0.453125 -5.78125 C 1.203125 -5.78125 1.25 -5.375 1.65625 -4.40625 C 2.21875 -3.03125 2.6875 -1.59375 3.296875 -0.25 C 3.359375 -0.09375 3.40625 0.109375 3.59375 0.109375 C 3.859375 0.109375 4.15625 -0.921875 4.359375 -1.421875 C 4.78125 -2.484375 5.203125 -3.546875 5.625 -4.609375 C 5.875 -5.296875 6.234375 -5.78125 6.9375 -5.78125 L 6.9375 -6.1875 L 4.890625 -6.1875 L 4.890625 -5.78125 C 5.203125 -5.78125 5.484375 -5.53125 5.484375 -5.21875 C 5.484375 -5 5.359375 -4.78125 5.296875 -4.578125 C 4.875 -3.53125 4.5 -2.46875 4.046875 -1.4375 C 3.984375 -1.28125 3.921875 -1.125 3.875 -0.96875 L 3.859375 -0.96875 C 3.75 -1.3125 3.578125 -1.640625 3.453125 -1.984375 L 2.25 -5.03125 C 2.1875 -5.15625 2.125 -5.3125 2.125 -5.453125 L 2.125 -5.484375 C 2.1875 -5.78125 2.59375 -5.78125 2.828125 -5.78125 L 2.828125 -6.1875 Z M 0.25 -6.1875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-25">
|
||||
<path style="stroke:none;" d="M 1.421875 -5.140625 C 1.671875 -5.71875 2.359375 -6.125 3 -6.125 C 4.0625 -6.125 4.515625 -5.109375 4.515625 -4.171875 L 4.515625 -3.6875 C 3.03125 -3.6875 1.140625 -3.328125 0.671875 -1.734375 C 0.640625 -1.609375 0.625 -1.484375 0.625 -1.328125 L 0.625 -1.234375 C 0.71875 -0.265625 1.875 0.109375 2.671875 0.109375 C 3.453125 0.109375 4.28125 -0.265625 4.59375 -1.140625 L 4.609375 -1.140625 C 4.609375 -0.53125 5.03125 0.0625 5.671875 0.0625 C 6.234375 0.0625 6.6875 -0.4375 6.734375 -1.046875 L 6.734375 -2.09375 L 6.453125 -2.09375 L 6.453125 -1.359375 C 6.453125 -0.953125 6.375 -0.3125 5.890625 -0.3125 C 5.421875 -0.3125 5.328125 -0.9375 5.328125 -1.3125 C 5.328125 -1.484375 5.328125 -1.625 5.328125 -1.765625 L 5.328125 -4.203125 C 5.328125 -5.59375 4.25 -6.390625 3.0625 -6.390625 C 2.265625 -6.390625 1.46875 -5.984375 1.125 -5.171875 C 1.0625 -5.015625 1 -4.8125 1 -4.640625 C 1 -4.28125 1.28125 -4.015625 1.59375 -4.015625 C 1.890625 -4.015625 2.15625 -4.28125 2.15625 -4.578125 C 2.15625 -4.890625 1.921875 -5.15625 1.5625 -5.15625 C 1.5 -5.15625 1.46875 -5.15625 1.421875 -5.140625 Z M 4.515625 -3.4375 L 4.515625 -2.015625 C 4.515625 -1.09375 3.90625 -0.171875 2.890625 -0.140625 L 2.84375 -0.140625 C 2.203125 -0.140625 1.578125 -0.625 1.578125 -1.34375 C 1.578125 -2.84375 3.25 -3.4375 4.515625 -3.4375 Z M 1.984375 -9.203125 C 1.65625 -9.15625 1.453125 -8.90625 1.453125 -8.59375 C 1.453125 -8.265625 1.71875 -7.953125 2.078125 -7.953125 C 2.4375 -7.953125 2.71875 -8.25 2.71875 -8.59375 C 2.71875 -8.90625 2.46875 -9.21875 2.09375 -9.21875 C 2.046875 -9.21875 2.015625 -9.203125 1.984375 -9.203125 Z M 4.640625 -9.203125 C 4.3125 -9.203125 4.09375 -8.859375 4.09375 -8.59375 C 4.09375 -8.265625 4.34375 -7.953125 4.8125 -7.953125 C 5.15625 -8 5.359375 -8.296875 5.359375 -8.578125 C 5.359375 -8.90625 5.09375 -9.21875 4.734375 -9.21875 C 4.703125 -9.21875 4.65625 -9.203125 4.640625 -9.203125 Z M 4.640625 -9.203125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-26">
|
||||
<path style="stroke:none;" d="M 0.703125 -9.8125 L 0.703125 -9.40625 L 1.0625 -9.40625 C 1.53125 -9.40625 1.984375 -9.359375 1.984375 -8.828125 C 1.984375 -8.71875 1.96875 -8.625 1.96875 -8.53125 L 1.96875 -1.3125 C 1.96875 -1.21875 1.984375 -1.109375 1.984375 -1 C 1.984375 -0.46875 1.53125 -0.421875 1.09375 -0.421875 L 0.703125 -0.421875 L 0.703125 -0.015625 L 4.84375 -0.015625 C 5.109375 -0.015625 5.375 0 5.65625 0 C 7.03125 0 8.890625 -0.671875 8.890625 -2.734375 C 8.890625 -4.09375 7.375 -5.125 6.203125 -5.125 C 6.390625 -5.1875 6.578125 -5.21875 6.765625 -5.296875 C 7.640625 -5.609375 8.515625 -6.3125 8.515625 -7.40625 C 8.515625 -8.375 7.75 -9.1875 6.890625 -9.53125 C 6.296875 -9.78125 5.6875 -9.8125 5.0625 -9.8125 Z M 2.953125 -4.984375 L 4.890625 -4.984375 C 5.09375 -4.984375 5.28125 -4.984375 5.484375 -4.984375 C 6.8125 -4.984375 7.703125 -3.921875 7.703125 -2.671875 L 7.703125 -2.53125 C 7.625 -1.203125 6.53125 -0.40625 5.1875 -0.40625 C 4.984375 -0.40625 4.796875 -0.421875 4.59375 -0.421875 L 3.5 -0.421875 C 3.171875 -0.421875 2.953125 -0.46875 2.953125 -0.921875 Z M 2.953125 -5.234375 L 2.953125 -8.90625 C 2.953125 -9.359375 3.171875 -9.40625 3.46875 -9.40625 L 5.25 -9.40625 C 6.21875 -9.40625 7.34375 -8.90625 7.34375 -7.375 C 7.34375 -5.96875 6.125 -5.234375 4.859375 -5.234375 Z M 2.953125 -5.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-27">
|
||||
<path style="stroke:none;" d="M 0.546875 -6.15625 L 0.546875 -5.75 L 0.765625 -5.75 C 1.15625 -5.75 1.546875 -5.703125 1.546875 -5.03125 L 1.546875 -0.90625 C 1.546875 -0.4375 1.140625 -0.421875 0.75 -0.421875 L 0.546875 -0.421875 L 0.546875 -0.015625 L 3.375 -0.015625 L 3.375 -0.421875 L 3.125 -0.421875 C 2.734375 -0.421875 2.359375 -0.453125 2.359375 -0.921875 L 2.359375 -3.6875 C 2.359375 -4.59375 2.6875 -5.515625 3.609375 -5.9375 C 3.8125 -6.015625 4.015625 -6.046875 4.234375 -6.046875 C 5.0625 -6.046875 5.328125 -5.328125 5.328125 -4.34375 L 5.328125 -0.953125 C 5.328125 -0.4375 4.921875 -0.421875 4.421875 -0.421875 L 4.328125 -0.421875 L 4.328125 -0.015625 L 7.15625 -0.015625 L 7.15625 -0.421875 L 6.90625 -0.421875 C 6.53125 -0.421875 6.15625 -0.453125 6.15625 -0.921875 L 6.15625 -3.6875 C 6.15625 -4.59375 6.46875 -5.515625 7.40625 -5.9375 C 7.609375 -6.015625 7.796875 -6.046875 8.015625 -6.046875 C 8.84375 -6.046875 9.125 -5.328125 9.125 -4.34375 L 9.125 -0.953125 C 9.125 -0.4375 8.703125 -0.421875 8.203125 -0.421875 L 8.125 -0.421875 L 8.125 -0.015625 L 10.9375 -0.015625 L 10.9375 -0.421875 L 10.6875 -0.421875 C 10.3125 -0.421875 9.9375 -0.453125 9.9375 -0.953125 L 9.9375 -4.296875 C 9.9375 -5.296875 9.609375 -6.3125 8.109375 -6.3125 C 7.125 -6.3125 6.484375 -5.6875 6.125 -4.890625 C 5.90625 -5.84375 5.359375 -6.3125 4.25 -6.3125 C 3.390625 -6.3125 2.515625 -5.625 2.328125 -4.8125 L 2.3125 -6.3125 L 1.546875 -6.234375 Z M 0.546875 -6.15625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-28">
|
||||
<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 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 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-31">
|
||||
<path style="stroke:none;" d="M 0.71875 -9.8125 L 0.71875 -9.40625 L 1.125 -9.40625 C 1.578125 -9.40625 2 -9.359375 2 -8.8125 C 2 -8.703125 1.984375 -8.625 1.984375 -8.53125 L 1.984375 -1.4375 C 1.984375 -0.546875 1.328125 -0.421875 0.71875 -0.421875 L 0.71875 -0.015625 L 3.5625 -0.015625 L 3.5625 -0.421875 C 2.984375 -0.421875 2.296875 -0.5 2.296875 -1.453125 L 2.3125 -9.359375 C 2.34375 -9.25 2.375 -9.140625 2.421875 -9.015625 L 2.625 -8.484375 C 3.625 -5.84375 4.578125 -3.171875 5.59375 -0.53125 L 5.71875 -0.1875 C 5.75 -0.09375 5.8125 -0.03125 5.90625 -0.015625 C 6.109375 -0.015625 6.171875 -0.34375 6.234375 -0.515625 C 7.21875 -3.25 8.328125 -5.953125 9.28125 -8.703125 C 9.375 -8.953125 9.5 -9.1875 9.546875 -9.453125 L 9.5625 -1 C 9.5625 -0.46875 9.140625 -0.421875 8.65625 -0.421875 L 8.3125 -0.421875 L 8.3125 -0.015625 L 11.796875 -0.015625 L 11.796875 -0.421875 L 11.4375 -0.421875 C 10.953125 -0.421875 10.515625 -0.46875 10.515625 -1 C 10.515625 -1.109375 10.53125 -1.203125 10.53125 -1.296875 L 10.53125 -8.515625 C 10.53125 -8.609375 10.515625 -8.71875 10.515625 -8.828125 C 10.515625 -9.359375 10.9375 -9.421875 11.359375 -9.421875 C 11.515625 -9.421875 11.65625 -9.40625 11.796875 -9.40625 L 11.796875 -9.8125 L 9.671875 -9.8125 L 9.453125 -9.765625 L 9.34375 -9.5625 L 6.265625 -1.296875 L 6.234375 -1.296875 L 3.171875 -9.5625 L 3.0625 -9.765625 L 2.84375 -9.8125 Z M 0.71875 -9.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-32">
|
||||
<path style="stroke:none;" d="M 1.09375 -7.4375 C 1.375 -8.296875 1.96875 -9.109375 3.0625 -9.109375 C 4.28125 -9.109375 5.046875 -8.015625 5.046875 -6.84375 L 5.046875 -6.65625 C 4.875 -4.71875 3.265625 -3.34375 2.109375 -1.984375 C 1.640625 -1.484375 0.671875 -0.53125 0.671875 -0.171875 L 0.671875 -0.015625 L 5.78125 -0.015625 L 6.140625 -2.3125 L 5.859375 -2.3125 C 5.734375 -1.65625 5.765625 -0.953125 5.171875 -0.953125 C 4.78125 -0.953125 4.375 -0.921875 3.96875 -0.921875 L 1.515625 -0.921875 C 2.28125 -1.671875 3.046875 -2.46875 3.828125 -3.21875 C 4.8125 -4.125 6.140625 -5.203125 6.140625 -6.71875 C 6.140625 -8.5625 4.734375 -9.515625 3.171875 -9.515625 L 3.03125 -9.515625 C 1.75 -9.375 0.671875 -8.25 0.671875 -6.90625 C 0.671875 -6.5625 0.796875 -6.1875 1.3125 -6.1875 C 1.671875 -6.1875 1.96875 -6.4375 1.96875 -6.796875 C 1.96875 -7.125 1.71875 -7.453125 1.3125 -7.453125 C 1.25 -7.453125 1.15625 -7.4375 1.09375 -7.4375 Z M 1.09375 -7.4375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-33">
|
||||
<path style="stroke:none;" d="M 3.234375 -9.515625 C 0.65625 -9.234375 0.609375 -6.03125 0.609375 -4.65625 L 0.609375 -4.5 C 0.609375 -3.1875 0.703125 -1.609375 1.578125 -0.609375 C 2.015625 -0.09375 2.71875 0.25 3.40625 0.25 L 3.578125 0.25 C 6.03125 0.015625 6.203125 -2.9375 6.203125 -4.765625 C 6.203125 -6.0625 6.078125 -7.578125 5.296875 -8.59375 C 4.84375 -9.15625 4.125 -9.53125 3.40625 -9.53125 C 3.359375 -9.53125 3.28125 -9.515625 3.234375 -9.515625 Z M 1.609375 -3.765625 C 1.5625 -4.15625 1.578125 -4.71875 1.578125 -5.359375 C 1.578125 -7.078125 1.75 -9.25 3.40625 -9.25 C 5.109375 -9.25 5.203125 -6.984375 5.203125 -5.546875 L 5.203125 -5.03125 C 5.203125 -4.421875 5.203125 -3.796875 5.171875 -3.1875 C 5.15625 -2.0625 5.046875 -0.5625 3.875 -0.09375 C 3.71875 -0.046875 3.5625 -0.015625 3.40625 -0.015625 C 1.640625 -0.015625 1.71875 -2.5625 1.609375 -3.765625 Z M 1.609375 -3.765625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-34">
|
||||
<path style="stroke:none;" d="M 1.3125 -8.59375 L 1.3125 -8.1875 C 1.921875 -8.1875 2.53125 -8.296875 3.078125 -8.59375 L 3.078125 -1.03125 C 3.078125 -0.484375 2.546875 -0.40625 2.015625 -0.40625 C 1.796875 -0.40625 1.5625 -0.421875 1.375 -0.421875 L 1.375 -0.015625 L 5.671875 -0.015625 L 5.671875 -0.421875 C 5.453125 -0.421875 5.21875 -0.40625 4.984375 -0.40625 C 4.453125 -0.40625 3.953125 -0.484375 3.953125 -1.015625 L 3.953125 -9.3125 C 3.953125 -9.375 3.9375 -9.515625 3.8125 -9.515625 C 3.765625 -9.515625 3.734375 -9.5 3.703125 -9.484375 L 3.5625 -9.34375 C 2.90625 -8.78125 2.125 -8.59375 1.3125 -8.59375 Z M 1.3125 -8.59375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-35">
|
||||
<path style="stroke:none;" d="M 5.125 -4.71875 L 5.140625 -4.71875 C 5.140625 -3.234375 5.125 -1.265625 3.71875 -0.40625 C 3.40625 -0.203125 3.078125 -0.125 2.734375 -0.125 C 2.234375 -0.125 1.65625 -0.265625 1.34375 -0.6875 L 1.4375 -0.6875 C 1.765625 -0.6875 2.03125 -0.875 2.03125 -1.234375 C 2.03125 -1.515625 1.8125 -1.828125 1.484375 -1.828125 C 1.1875 -1.828125 0.9375 -1.609375 0.90625 -1.296875 L 0.90625 -1.203125 C 0.90625 -0.203125 1.90625 0.25 2.765625 0.25 C 5.1875 0.25 6.203125 -2.609375 6.203125 -4.8125 C 6.203125 -6.40625 5.984375 -8.625 4.25 -9.359375 C 3.984375 -9.46875 3.71875 -9.53125 3.421875 -9.53125 C 1.734375 -9.53125 0.609375 -7.890625 0.609375 -6.3125 C 0.609375 -4.875 1.53125 -3.203125 3.234375 -3.203125 C 4.109375 -3.203125 4.921875 -3.828125 5.125 -4.71875 Z M 5.09375 -6.375 C 5.09375 -6.203125 5.109375 -6.03125 5.109375 -5.875 C 5.046875 -4.890625 4.625 -3.453125 3.328125 -3.453125 C 2.75 -3.453125 2.359375 -3.765625 2.046875 -4.21875 C 1.6875 -4.796875 1.671875 -5.5 1.671875 -6.140625 L 1.671875 -6.296875 C 1.671875 -7.25 1.703125 -8.453125 2.6875 -8.984375 C 2.890625 -9.09375 3.171875 -9.171875 3.421875 -9.171875 C 4.890625 -9.171875 5.09375 -7.203125 5.09375 -6.484375 Z M 5.09375 -6.375 "/>
|
||||
</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 3.4375 -8.5 L 3.4375 -0.890625 L 1.859375 -0.890625 C 1.546875 -0.890625 1.375 -0.734375 1.375 -0.4375 C 1.375 -0.171875 1.546875 -0.015625 1.859375 -0.015625 L 6.734375 -0.015625 C 6.984375 -0.046875 7.078125 -0.25 7.078125 -0.46875 C 7.078125 -0.71875 6.921875 -0.90625 6.59375 -0.90625 C 6.5 -0.90625 6.40625 -0.890625 6.328125 -0.890625 L 5.1875 -0.890625 L 5.1875 -9.703125 C 5.1875 -10.0625 4.9375 -10.109375 4.6875 -10.109375 C 4.265625 -10.109375 4.046875 -9.734375 3.703125 -9.546875 C 3.140625 -9.25 2.5 -9.15625 1.859375 -9.140625 C 1.59375 -9.140625 1.296875 -9.109375 1.296875 -8.671875 C 1.296875 -8.390625 1.484375 -8.25 1.796875 -8.25 C 2.359375 -8.296875 2.890625 -8.328125 3.4375 -8.5 Z M 3.4375 -8.5 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<path style="stroke:none;" d="M 4.65625 -8.609375 L 4.65625 -0.4375 C 4.65625 -0.171875 4.8125 -0.015625 5.109375 -0.015625 L 6 -0.015625 C 6.4375 -0.015625 6.46875 -0.265625 6.46875 -0.5 L 6.46875 -8.609375 C 7.609375 -8.609375 8.765625 -8.546875 9.90625 -8.546875 L 10.078125 -8.546875 C 10.5 -8.546875 10.546875 -8.796875 10.546875 -9.015625 L 10.546875 -9.3125 C 10.546875 -9.5 10.515625 -9.78125 10.125 -9.78125 L 1.34375 -9.78125 C 1.265625 -9.78125 1.171875 -9.796875 1.078125 -9.796875 C 0.765625 -9.796875 0.59375 -9.625 0.59375 -9.328125 L 0.59375 -9.03125 C 0.59375 -8.75 0.640625 -8.53125 1.140625 -8.53125 C 1.265625 -8.53125 1.40625 -8.546875 1.53125 -8.5625 L 1.984375 -8.5625 C 2.125 -8.5625 2.28125 -8.5625 2.4375 -8.578125 L 3.1875 -8.578125 C 3.671875 -8.59375 4.171875 -8.609375 4.65625 -8.609375 Z M 4.65625 -8.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-3">
|
||||
<path style="stroke:none;" d="M 2.765625 -5.21875 C 2.75 -5.328125 2.75 -5.421875 2.75 -5.515625 L 2.75 -6.09375 C 2.75 -6.484375 2.515625 -6.546875 2.25 -6.546875 L 1.5 -6.546875 C 1.265625 -6.546875 1.0625 -6.40625 1.0625 -6.0625 C 1.0625 -5.984375 1.078125 -5.90625 1.078125 -5.84375 L 1.078125 -0.546875 C 1.078125 -0.296875 1.109375 -0.015625 1.5 -0.015625 L 2.3125 -0.015625 C 2.546875 -0.015625 2.8125 -0.078125 2.8125 -0.4375 L 2.8125 -2.765625 C 2.8125 -3.25 2.8125 -3.71875 3.0625 -4.140625 C 3.46875 -4.859375 4.265625 -5.234375 5.0625 -5.3125 L 5.15625 -5.3125 C 5.3125 -5.3125 5.359375 -5.34375 5.359375 -5.515625 L 5.359375 -6.375 C 5.359375 -6.546875 5.3125 -6.609375 5.140625 -6.609375 C 4.21875 -6.609375 3.0625 -5.921875 2.765625 -5.21875 Z M 2.765625 -5.21875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-4">
|
||||
<path style="stroke:none;" d="M 5.671875 -0.765625 C 5.671875 -0.671875 5.65625 -0.59375 5.65625 -0.484375 C 5.65625 -0.140625 5.859375 -0.015625 6.171875 -0.015625 L 6.9375 -0.015625 C 7.1875 -0.015625 7.40625 -0.09375 7.40625 -0.46875 L 7.40625 -6.046875 C 7.40625 -6.453125 7.125 -6.484375 6.90625 -6.484375 L 6.09375 -6.484375 C 5.734375 -6.484375 5.640625 -6.28125 5.640625 -6.03125 L 5.640625 -2.9375 C 5.640625 -2.765625 5.65625 -2.59375 5.65625 -2.421875 C 5.65625 -1.359375 4.9375 -0.6875 3.84375 -0.6875 C 3.25 -0.6875 2.828125 -0.6875 2.828125 -1.71875 L 2.828125 -5.953125 C 2.828125 -6.21875 2.796875 -6.484375 2.359375 -6.484375 L 1.546875 -6.484375 C 1.203125 -6.484375 1.046875 -6.328125 1.046875 -5.984375 C 1.046875 -5.875 1.0625 -5.78125 1.0625 -5.6875 L 1.0625 -1.90625 C 1.0625 -1.46875 1.078125 -1.03125 1.296875 -0.625 C 1.703125 0.109375 2.71875 0.109375 3.40625 0.109375 C 4.265625 0.109375 5.0625 -0.15625 5.671875 -0.765625 Z M 2.015625 -9.828125 C 1.8125 -9.78125 1.71875 -9.609375 1.71875 -9.375 L 1.71875 -8.5 C 1.71875 -8.265625 1.828125 -8.03125 2.109375 -8.03125 L 3.03125 -8.03125 C 3.296875 -8.03125 3.53125 -8.109375 3.53125 -8.453125 L 3.53125 -9.40625 C 3.53125 -9.765625 3.296875 -9.84375 3.0625 -9.84375 L 2.203125 -9.84375 C 2.140625 -9.84375 2.078125 -9.84375 2.015625 -9.828125 Z M 5.21875 -9.828125 C 5 -9.78125 4.9375 -9.625 4.9375 -9.40625 L 4.9375 -8.46875 C 4.9375 -8.1875 5.078125 -8.03125 5.359375 -8.03125 L 6.25 -8.03125 C 6.515625 -8.03125 6.734375 -8.125 6.734375 -8.5 L 6.734375 -9.296875 C 6.734375 -9.625 6.640625 -9.84375 6.28125 -9.84375 L 5.40625 -9.84375 C 5.328125 -9.84375 5.28125 -9.84375 5.21875 -9.828125 Z M 5.21875 -9.828125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-5">
|
||||
<path style="stroke:none;" d="M 1.421875 -6.484375 L 0.953125 -6.484375 C 0.640625 -6.484375 0.4375 -6.359375 0.4375 -6.03125 C 0.4375 -5.75 0.609375 -5.609375 0.953125 -5.609375 L 1.421875 -5.609375 L 1.421875 -0.84375 C 1.421875 -0.75 1.40625 -0.640625 1.40625 -0.53125 C 1.40625 -0.265625 1.484375 -0.015625 1.84375 -0.015625 L 2.65625 -0.015625 C 3.0625 -0.015625 3.15625 -0.234375 3.15625 -0.546875 L 3.15625 -5.609375 L 4.078125 -5.609375 C 4.140625 -5.609375 4.234375 -5.59375 4.296875 -5.59375 C 4.59375 -5.59375 4.75 -5.796875 4.75 -6.046875 C 4.75 -6.328125 4.59375 -6.484375 4.28125 -6.484375 L 3.125 -6.484375 L 3.125 -8.234375 C 3.125 -8.875 3.265625 -9.46875 4.265625 -9.46875 C 4.6875 -9.46875 5.078125 -9.34375 5.390625 -9.0625 C 5.453125 -9.015625 5.515625 -8.984375 5.578125 -8.984375 L 5.609375 -8.984375 C 5.6875 -9.015625 5.703125 -9.109375 5.703125 -9.1875 L 5.703125 -10.125 C 5.65625 -10.40625 4.515625 -10.40625 4.21875 -10.40625 C 3.40625 -10.40625 2.578125 -10.234375 2.015625 -9.65625 C 1.625 -9.234375 1.46875 -8.65625 1.421875 -8.109375 Z M 7.71875 -5.609375 L 8.640625 -5.609375 C 8.703125 -5.609375 8.796875 -5.59375 8.859375 -5.59375 C 9.15625 -5.59375 9.3125 -5.796875 9.3125 -6.046875 C 9.3125 -6.328125 9.15625 -6.484375 8.84375 -6.484375 L 7.6875 -6.484375 L 7.6875 -7.875 C 7.6875 -8.015625 7.671875 -8.15625 7.671875 -8.3125 C 7.671875 -8.921875 7.90625 -9.484375 8.828125 -9.484375 C 9.171875 -9.484375 9.515625 -9.375 9.765625 -9.203125 C 9.875 -9.15625 10.015625 -8.984375 10.140625 -8.984375 C 10.28125 -8.984375 10.28125 -9.125 10.28125 -9.203125 L 10.28125 -10.046875 C 10.28125 -10.390625 9.53125 -10.34375 9.1875 -10.390625 L 8.96875 -10.390625 C 7.953125 -10.390625 6.78125 -10.25 6.25 -9.1875 C 6.015625 -8.6875 5.984375 -8.15625 5.984375 -7.625 L 5.984375 -0.484375 C 5.984375 -0.1875 6.09375 0 6.515625 0 C 6.65625 0 6.8125 -0.015625 6.953125 -0.015625 C 7.046875 -0.015625 7.140625 0 7.234375 0 C 7.46875 0 7.71875 -0.09375 7.71875 -0.421875 Z M 7.71875 -5.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-6">
|
||||
<path style="stroke:none;" d="M 2.15625 -3 L 6.5625 -3 C 6.9375 -3 7.0625 -3.203125 7.0625 -3.484375 C 7.0625 -5.140625 6.375 -6.6875 3.9375 -6.6875 C 3 -6.6875 2 -6.46875 1.3125 -5.796875 C 0.65625 -5.140625 0.453125 -4.171875 0.453125 -3.28125 C 0.453125 -2.5 0.609375 -1.671875 1.125 -1.0625 C 1.84375 -0.140625 3.0625 0.109375 4.15625 0.109375 C 4.984375 0.109375 5.828125 -0.0625 6.5625 -0.40625 C 6.6875 -0.453125 6.921875 -0.53125 6.953125 -0.671875 L 6.953125 -0.734375 C 6.953125 -1.03125 6.9375 -1.65625 6.78125 -1.703125 L 6.75 -1.703125 C 6.625 -1.703125 6.484375 -1.5625 6.390625 -1.484375 C 5.78125 -1.046875 4.984375 -0.796875 4.21875 -0.796875 C 3.234375 -0.796875 2.15625 -1.3125 2.15625 -2.890625 Z M 2.171875 -3.796875 C 2.171875 -4.859375 2.828125 -5.765625 3.9375 -5.765625 C 5.28125 -5.765625 5.4375 -4.6875 5.515625 -3.796875 Z M 2.171875 -3.796875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-7">
|
||||
<path style="stroke:none;" d="M 1.375 -10.234375 C 1.125 -10.234375 1.078125 -9.90625 1.078125 -9.734375 L 1.078125 -0.78125 C 1.078125 -0.703125 1.0625 -0.609375 1.0625 -0.5 C 1.0625 -0.265625 1.171875 -0.046875 1.40625 -0.015625 L 2.265625 -0.015625 C 2.75 -0.015625 2.8125 -0.21875 2.8125 -0.484375 L 2.8125 -9.484375 C 2.8125 -9.5625 2.828125 -9.65625 2.828125 -9.75 C 2.828125 -10 2.734375 -10.234375 2.46875 -10.25 L 1.59375 -10.25 C 1.515625 -10.25 1.453125 -10.25 1.375 -10.234375 Z M 1.375 -10.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-8">
|
||||
<path style="stroke:none;" d="M 2.84375 -6.6875 C 1.84375 -6.578125 0.546875 -6.34375 0.546875 -4.703125 C 0.546875 -3.59375 1.5 -2.9375 2.5 -2.71875 C 3.25 -2.5625 4.640625 -2.53125 4.640625 -1.703125 C 4.640625 -0.96875 3.796875 -0.890625 3.328125 -0.890625 C 2.4375 -0.890625 1.671875 -1.1875 0.984375 -1.828125 C 0.953125 -1.859375 0.859375 -1.9375 0.78125 -1.9375 C 0.609375 -1.9375 0.625 -1.65625 0.609375 -1.5 C 0.578125 -1.25 0.453125 -0.96875 0.453125 -0.703125 C 0.453125 -0.5625 0.578125 -0.53125 0.6875 -0.453125 C 1.515625 -0.09375 2.421875 0.125 3.328125 0.125 C 4.484375 0.125 5.9375 -0.21875 5.9375 -2 C 5.9375 -3.015625 5.109375 -3.75 4.171875 -4.015625 C 3.734375 -4.125 3.265625 -4.1875 2.828125 -4.265625 C 2.4375 -4.34375 1.84375 -4.515625 1.84375 -5 L 1.84375 -5.078125 C 1.96875 -5.71875 2.625 -5.75 3.140625 -5.75 C 3.90625 -5.75 4.5625 -5.53125 5.15625 -5.09375 C 5.203125 -5.0625 5.265625 -5 5.328125 -5 C 5.53125 -5 5.640625 -5.875 5.640625 -6.0625 C 5.640625 -6.265625 5.21875 -6.359375 4.984375 -6.421875 C 4.453125 -6.609375 3.890625 -6.6875 3.3125 -6.6875 Z M 2.84375 -6.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-9">
|
||||
<path style="stroke:none;" d="M 5.671875 -0.765625 C 5.671875 -0.671875 5.65625 -0.59375 5.65625 -0.484375 C 5.65625 -0.140625 5.859375 -0.015625 6.171875 -0.015625 L 6.9375 -0.015625 C 7.1875 -0.015625 7.40625 -0.09375 7.40625 -0.46875 L 7.40625 -6.046875 C 7.40625 -6.453125 7.125 -6.484375 6.90625 -6.484375 L 6.09375 -6.484375 C 5.734375 -6.484375 5.640625 -6.28125 5.640625 -6.03125 L 5.640625 -2.9375 C 5.640625 -2.765625 5.65625 -2.59375 5.65625 -2.421875 C 5.65625 -1.359375 4.9375 -0.6875 3.84375 -0.6875 C 3.25 -0.6875 2.828125 -0.6875 2.828125 -1.71875 L 2.828125 -5.953125 C 2.828125 -6.21875 2.796875 -6.484375 2.359375 -6.484375 L 1.546875 -6.484375 C 1.203125 -6.484375 1.046875 -6.328125 1.046875 -5.984375 C 1.046875 -5.875 1.0625 -5.78125 1.0625 -5.6875 L 1.0625 -1.90625 C 1.0625 -1.46875 1.078125 -1.03125 1.296875 -0.625 C 1.703125 0.109375 2.71875 0.109375 3.40625 0.109375 C 4.265625 0.109375 5.0625 -0.15625 5.671875 -0.765625 Z M 5.671875 -0.765625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-10">
|
||||
<path style="stroke:none;" d="M 3.78125 -6.6875 C 3.578125 -6.65625 3.359375 -6.640625 3.140625 -6.609375 C 2.515625 -6.5 1.890625 -6.25 1.421875 -5.8125 C 0.765625 -5.171875 0.546875 -4.21875 0.546875 -3.3125 C 0.546875 -2.4375 0.703125 -1.53125 1.3125 -0.859375 C 2.015625 -0.09375 3.109375 0.109375 4.109375 0.109375 C 5.015625 0.109375 5.9375 -0.078125 6.734375 -0.5 C 6.828125 -0.546875 6.859375 -0.609375 6.859375 -0.6875 C 6.859375 -1.03125 6.8125 -1.71875 6.65625 -1.734375 L 6.640625 -1.734375 C 6.484375 -1.734375 6.171875 -1.4375 5.953125 -1.3125 C 5.40625 -1 4.78125 -0.859375 4.15625 -0.859375 C 2.53125 -0.859375 2.3125 -2.15625 2.3125 -3.234375 C 2.3125 -4.375 2.484375 -5.703125 4.15625 -5.703125 C 4.953125 -5.703125 5.5 -5.5625 6.203125 -5.015625 C 6.28125 -4.96875 6.375 -4.859375 6.46875 -4.859375 C 6.625 -4.859375 6.625 -5.09375 6.640625 -5.171875 L 6.734375 -5.6875 C 6.734375 -5.765625 6.765625 -5.84375 6.765625 -5.90625 C 6.765625 -6.203125 5.703125 -6.53125 5.296875 -6.59375 C 4.953125 -6.671875 4.609375 -6.6875 4.265625 -6.6875 Z M 3.78125 -6.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-11">
|
||||
<path style="stroke:none;" d="M 2.796875 -5.515625 L 2.796875 -9.765625 C 2.796875 -10.078125 2.703125 -10.265625 2.25 -10.265625 C 2.09375 -10.265625 1.9375 -10.25 1.78125 -10.25 C 1.6875 -10.25 1.609375 -10.265625 1.515625 -10.265625 C 1.296875 -10.265625 1.0625 -10.140625 1.0625 -9.859375 L 1.0625 -0.53125 C 1.0625 -0.296875 1.078125 -0.109375 1.375 -0.015625 L 2.3125 -0.015625 C 2.671875 -0.015625 2.828125 -0.171875 2.828125 -0.53125 L 2.828125 -3.5625 C 2.828125 -4.515625 3.3125 -5.6875 4.53125 -5.6875 C 5.5 -5.6875 5.640625 -5.125 5.640625 -4.484375 L 5.640625 -0.515625 C 5.640625 -0.1875 5.75 -0.015625 6.078125 -0.015625 L 6.90625 -0.015625 C 7.21875 -0.015625 7.421875 -0.15625 7.421875 -0.5 C 7.421875 -0.609375 7.40625 -0.703125 7.40625 -0.78125 L 7.40625 -4.21875 C 7.40625 -4.765625 7.40625 -5.328125 7.125 -5.828125 C 6.734375 -6.53125 5.859375 -6.609375 5.15625 -6.609375 C 4.1875 -6.609375 3.390625 -6.203125 2.796875 -5.515625 Z M 2.796875 -5.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-12">
|
||||
<path style="stroke:none;" d="M 2.40625 -1.25 C 3.34375 -2.0625 4.265625 -2.921875 5.234375 -3.703125 C 6.203125 -4.46875 7.359375 -5.4375 7.40625 -6.8125 L 7.40625 -6.921875 C 7.40625 -8.875 5.765625 -10.109375 3.90625 -10.109375 C 2.6875 -10.109375 1.5625 -9.609375 0.96875 -8.515625 C 0.859375 -8.34375 0.703125 -8.09375 0.703125 -7.953125 L 0.703125 -7.921875 C 0.703125 -7.71875 1.3125 -7.125 1.4375 -6.96875 C 1.46875 -6.9375 1.515625 -6.90625 1.578125 -6.90625 L 1.609375 -6.90625 C 1.734375 -6.953125 1.84375 -7.46875 1.9375 -7.703125 C 2.234375 -8.390625 2.78125 -8.953125 3.640625 -8.953125 C 4.703125 -8.953125 5.625 -8.140625 5.625 -6.90625 C 5.625 -5.65625 4.671875 -4.65625 3.8125 -3.859375 C 2.90625 -3 2.015625 -2.140625 1.140625 -1.25 C 0.984375 -1.109375 0.796875 -0.984375 0.796875 -0.78125 C 0.796875 -0.703125 0.8125 -0.640625 0.8125 -0.59375 L 0.8125 -0.484375 C 0.8125 -0.140625 0.984375 -0.015625 1.296875 -0.015625 L 6.9375 -0.015625 C 7.171875 -0.015625 7.40625 -0.09375 7.40625 -0.4375 L 7.40625 -0.78125 C 7.40625 -1.015625 7.359375 -1.28125 6.984375 -1.28125 L 6.78125 -1.28125 C 6.484375 -1.28125 6.1875 -1.265625 5.875 -1.265625 L 4.546875 -1.265625 C 3.828125 -1.265625 3.125 -1.25 2.40625 -1.25 Z M 2.40625 -1.25 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-13">
|
||||
<path style="stroke:none;" d="M 4.5625 -5.609375 C 4.15625 -5.09375 3.71875 -4.609375 3.28125 -4.109375 C 2.453125 -3.109375 1.640625 -2.140625 0.796875 -1.171875 C 0.65625 -1 0.453125 -0.84375 0.453125 -0.59375 L 0.453125 -0.46875 C 0.453125 -0.171875 0.578125 -0.015625 0.953125 -0.015625 L 5.921875 -0.015625 C 6 -0.015625 6.0625 0 6.15625 0 C 6.578125 0 6.625 -0.265625 6.625 -0.53125 C 6.625 -0.75 6.5625 -1 6.203125 -1 L 6.09375 -1 C 4.890625 -1 3.703125 -0.953125 2.5 -0.953125 C 2.84375 -1.375 3.21875 -1.796875 3.578125 -2.203125 L 6.234375 -5.359375 C 6.40625 -5.546875 6.59375 -5.703125 6.59375 -6.015625 C 6.59375 -6.40625 6.375 -6.484375 6.109375 -6.484375 L 1.171875 -6.484375 C 0.78125 -6.484375 0.6875 -6.28125 0.6875 -6.03125 C 0.6875 -5.78125 0.78125 -5.5625 1.109375 -5.5625 L 1.21875 -5.5625 C 1.390625 -5.5625 1.578125 -5.5625 1.75 -5.578125 L 1.921875 -5.578125 C 2.140625 -5.578125 2.359375 -5.5625 2.5625 -5.5625 C 2.796875 -5.5625 3.015625 -5.59375 3.234375 -5.59375 L 3.625 -5.59375 C 3.9375 -5.59375 4.25 -5.609375 4.5625 -5.609375 Z M 4.5625 -5.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-14">
|
||||
<path style="stroke:none;" d="M 2.8125 -5.875 L 2.8125 -6.03125 C 2.8125 -6.46875 2.53125 -6.484375 2.265625 -6.484375 L 1.59375 -6.484375 C 1.34375 -6.484375 1.078125 -6.421875 1.078125 -6.046875 L 1.078125 2.421875 C 1.109375 2.671875 1.3125 2.765625 1.53125 2.765625 L 2.34375 2.765625 C 2.5625 2.765625 2.84375 2.734375 2.84375 2.359375 L 2.84375 -0.59375 C 3.328125 -0.140625 3.984375 0.109375 4.640625 0.109375 C 5.609375 0.109375 6.703125 -0.125 7.296875 -0.96875 C 7.78125 -1.609375 7.921875 -2.5 7.921875 -3.265625 C 7.921875 -4.75 7.484375 -6.609375 5.09375 -6.609375 C 4.28125 -6.609375 3.453125 -6.390625 2.8125 -5.875 Z M 6.140625 -2.953125 C 6.03125 -1.9375 5.734375 -0.796875 4.203125 -0.796875 C 3.703125 -0.796875 2.84375 -1.15625 2.84375 -1.703125 L 2.84375 -4.921875 C 2.890625 -5.3125 3.78125 -5.640625 4.359375 -5.640625 C 5.84375 -5.640625 6.15625 -4.3125 6.15625 -3.234375 C 6.15625 -3.140625 6.15625 -3.046875 6.140625 -2.953125 Z M 6.140625 -2.953125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-15">
|
||||
<path style="stroke:none;" d="M 1.46875 -6.484375 L 0.75 -6.484375 C 0.46875 -6.484375 0.28125 -6.3125 0.28125 -6.03125 C 0.28125 -5.765625 0.453125 -5.609375 0.71875 -5.609375 L 1.4375 -5.609375 L 1.4375 -1.828125 C 1.4375 -0.890625 1.671875 0.109375 2.890625 0.109375 C 3.703125 0.109375 4.5625 -0.046875 5.265625 -0.421875 C 5.34375 -0.453125 5.46875 -0.5 5.46875 -0.609375 L 5.46875 -0.640625 C 5.46875 -0.828125 5.328125 -1.34375 5.171875 -1.34375 C 5.046875 -1.34375 4.875 -1.1875 4.734375 -1.109375 C 4.453125 -0.953125 4.109375 -0.859375 3.796875 -0.859375 C 3.234375 -0.859375 3.140625 -1.390625 3.140625 -2.140625 L 3.140625 -5.609375 L 4.734375 -5.609375 C 5 -5.609375 5.21875 -5.75 5.21875 -6.03125 C 5.21875 -6.34375 5.03125 -6.484375 4.71875 -6.484375 L 3.140625 -6.484375 L 3.140625 -7.84375 C 3.140625 -8.1875 3.015625 -8.34375 2.609375 -8.34375 C 2.515625 -8.34375 2.390625 -8.328125 2.296875 -8.328125 C 2.1875 -8.328125 2.09375 -8.34375 2 -8.34375 C 1.71875 -8.34375 1.46875 -8.28125 1.46875 -7.84375 Z M 1.46875 -6.484375 "/>
|
||||
<path style="stroke:none;" d="M 2.734375 -4.25 C 2.75 -4.390625 2.75 -4.640625 2.5 -4.640625 C 2.328125 -4.640625 2.203125 -4.5 2.234375 -4.375 L 2.234375 -4.25 L 2.375 -2.703125 L 1.09375 -3.625 C 1 -3.671875 0.984375 -3.703125 0.921875 -3.703125 C 0.78125 -3.703125 0.640625 -3.5625 0.640625 -3.421875 C 0.640625 -3.265625 0.75 -3.21875 0.84375 -3.171875 L 2.265625 -2.5 L 0.890625 -1.828125 C 0.734375 -1.75 0.640625 -1.703125 0.640625 -1.5625 C 0.640625 -1.40625 0.78125 -1.28125 0.921875 -1.28125 C 0.984375 -1.28125 1 -1.28125 1.25 -1.46875 L 2.375 -2.265625 L 2.21875 -0.59375 C 2.21875 -0.390625 2.40625 -0.34375 2.484375 -0.34375 C 2.609375 -0.34375 2.75 -0.40625 2.75 -0.59375 L 2.609375 -2.265625 L 3.875 -1.34375 C 3.96875 -1.296875 3.984375 -1.28125 4.0625 -1.28125 C 4.203125 -1.28125 4.328125 -1.421875 4.328125 -1.5625 C 4.328125 -1.703125 4.234375 -1.75 4.109375 -1.8125 C 3.515625 -2.109375 3.5 -2.109375 2.71875 -2.484375 L 4.09375 -3.15625 C 4.25 -3.234375 4.328125 -3.265625 4.328125 -3.421875 C 4.328125 -3.5625 4.203125 -3.703125 4.0625 -3.703125 C 3.984375 -3.703125 3.96875 -3.703125 3.71875 -3.515625 L 2.609375 -2.703125 Z M 2.734375 -4.25 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-1">
|
||||
<path style="stroke:none;" d="M 2.8125 -6.75 L 2.8125 -0.765625 L 1.84375 -0.765625 C 1.75 -0.765625 1.671875 -0.78125 1.578125 -0.78125 C 1.28125 -0.78125 1.140625 -0.59375 1.140625 -0.375 C 1.140625 -0.15625 1.296875 -0.015625 1.578125 -0.015625 L 5.34375 -0.015625 C 5.609375 -0.015625 5.765625 -0.15625 5.765625 -0.375 C 5.765625 -0.625 5.59375 -0.765625 5.328125 -0.765625 L 4.21875 -0.765625 L 4.21875 -7.703125 C 4.21875 -8.015625 4 -8.09375 3.78125 -8.09375 C 3.515625 -8.09375 3.46875 -7.984375 3.3125 -7.875 C 2.8125 -7.421875 2.109375 -7.34375 1.46875 -7.3125 C 1.25 -7.296875 1.0625 -7.203125 1.0625 -6.9375 C 1.0625 -6.734375 1.1875 -6.5625 1.40625 -6.546875 C 1.875 -6.546875 2.359375 -6.625 2.8125 -6.75 Z M 2.8125 -6.75 "/>
|
||||
<path style="stroke:none;" d="M 3.4375 -8.5 L 3.4375 -0.890625 L 1.859375 -0.890625 C 1.546875 -0.890625 1.375 -0.734375 1.375 -0.4375 C 1.375 -0.171875 1.546875 -0.015625 1.859375 -0.015625 L 6.734375 -0.015625 C 6.984375 -0.046875 7.078125 -0.25 7.078125 -0.46875 C 7.078125 -0.71875 6.921875 -0.90625 6.59375 -0.90625 C 6.5 -0.90625 6.40625 -0.890625 6.328125 -0.890625 L 5.1875 -0.890625 L 5.1875 -9.703125 C 5.1875 -10.0625 4.9375 -10.109375 4.6875 -10.109375 C 4.265625 -10.109375 4.046875 -9.734375 3.703125 -9.546875 C 3.140625 -9.25 2.5 -9.15625 1.859375 -9.140625 C 1.59375 -9.140625 1.296875 -9.109375 1.296875 -8.671875 C 1.296875 -8.390625 1.484375 -8.25 1.796875 -8.25 C 2.359375 -8.296875 2.890625 -8.328125 3.4375 -8.5 Z M 3.4375 -8.5 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-2">
|
||||
<path style="stroke:none;" d="M 1.28125 -1.328125 C 1.203125 -1.296875 1.1875 -1.21875 1.1875 -1.140625 L 1.1875 -0.21875 C 1.1875 -0.0625 1.25 -0.015625 1.40625 -0.015625 L 2.140625 -0.015625 C 2.203125 -0.015625 2.265625 0 2.3125 0 C 2.46875 0 2.515625 -0.078125 2.515625 -0.203125 L 2.515625 -1.140625 C 2.515625 -1.296875 2.46875 -1.34375 2.3125 -1.34375 L 1.578125 -1.34375 C 1.515625 -1.34375 1.453125 -1.34375 1.40625 -1.34375 C 1.34375 -1.34375 1.3125 -1.34375 1.28125 -1.328125 Z M 1.28125 -1.328125 "/>
|
||||
<path style="stroke:none;" d="M 4.65625 -8.609375 L 4.65625 -0.4375 C 4.65625 -0.171875 4.8125 -0.015625 5.109375 -0.015625 L 6 -0.015625 C 6.4375 -0.015625 6.46875 -0.265625 6.46875 -0.5 L 6.46875 -8.609375 C 7.609375 -8.609375 8.765625 -8.546875 9.90625 -8.546875 L 10.078125 -8.546875 C 10.5 -8.546875 10.546875 -8.796875 10.546875 -9.015625 L 10.546875 -9.3125 C 10.546875 -9.5 10.515625 -9.78125 10.125 -9.78125 L 1.34375 -9.78125 C 1.265625 -9.78125 1.171875 -9.796875 1.078125 -9.796875 C 0.765625 -9.796875 0.59375 -9.625 0.59375 -9.328125 L 0.59375 -9.03125 C 0.59375 -8.75 0.640625 -8.53125 1.140625 -8.53125 C 1.265625 -8.53125 1.40625 -8.546875 1.53125 -8.5625 L 1.984375 -8.5625 C 2.125 -8.5625 2.28125 -8.5625 2.4375 -8.578125 L 3.1875 -8.578125 C 3.671875 -8.59375 4.171875 -8.609375 4.65625 -8.609375 Z M 4.65625 -8.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-3">
|
||||
<path style="stroke:none;" d="M 3.40625 -8.5625 C 2.703125 -8.46875 2.046875 -8.40625 1.484375 -7.9375 C 0.953125 -7.5 0.734375 -6.796875 0.734375 -6.140625 C 0.734375 -4.921875 1.75 -4.0625 2.875 -3.78125 C 3.859375 -3.53125 5.4375 -3.484375 5.4375 -2.203125 C 5.4375 -1.140625 4.546875 -0.890625 3.734375 -0.890625 C 2.8125 -0.890625 1.859375 -1.21875 1.15625 -1.765625 C 1.09375 -1.8125 1.015625 -1.921875 0.921875 -1.921875 C 0.78125 -1.921875 0.78125 -1.734375 0.75 -1.640625 C 0.703125 -1.34375 0.59375 -1 0.59375 -0.734375 C 0.59375 -0.640625 0.65625 -0.59375 0.734375 -0.5625 L 0.984375 -0.421875 C 1.828125 0.015625 2.8125 0.25 3.765625 0.25 C 5.15625 0.25 6.71875 -0.28125 6.71875 -2.3125 C 6.71875 -3.53125 5.828125 -4.5 4.703125 -4.84375 C 3.75 -5.125 2.015625 -5.125 2.015625 -6.3125 L 2.015625 -6.34375 C 2.015625 -7.359375 3.0625 -7.5 3.734375 -7.5 C 4.484375 -7.5 5.109375 -7.28125 5.71875 -6.78125 C 5.765625 -6.734375 5.859375 -6.640625 5.9375 -6.640625 C 6.109375 -6.640625 6.234375 -7.609375 6.234375 -7.8125 C 6.234375 -8.015625 5.765625 -8.15625 5.53125 -8.265625 C 4.921875 -8.5 4.265625 -8.5625 3.609375 -8.5625 Z M 3.40625 -8.5625 "/>
|
||||
<path style="stroke:none;" d="M 2.765625 -5.21875 C 2.75 -5.328125 2.75 -5.421875 2.75 -5.515625 L 2.75 -6.09375 C 2.75 -6.484375 2.515625 -6.546875 2.25 -6.546875 L 1.5 -6.546875 C 1.265625 -6.546875 1.0625 -6.40625 1.0625 -6.0625 C 1.0625 -5.984375 1.078125 -5.90625 1.078125 -5.84375 L 1.078125 -0.546875 C 1.078125 -0.296875 1.109375 -0.015625 1.5 -0.015625 L 2.3125 -0.015625 C 2.546875 -0.015625 2.8125 -0.078125 2.8125 -0.4375 L 2.8125 -2.765625 C 2.8125 -3.25 2.8125 -3.71875 3.0625 -4.140625 C 3.46875 -4.859375 4.265625 -5.234375 5.0625 -5.3125 L 5.15625 -5.3125 C 5.3125 -5.3125 5.359375 -5.34375 5.359375 -5.515625 L 5.359375 -6.375 C 5.359375 -6.546875 5.3125 -6.609375 5.140625 -6.609375 C 4.21875 -6.609375 3.0625 -5.921875 2.765625 -5.21875 Z M 2.765625 -5.21875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-4">
|
||||
<path style="stroke:none;" d="M 4.65625 -0.53125 L 4.65625 -0.390625 C 4.65625 -0.046875 4.921875 0 5.140625 0 C 5.21875 0 5.3125 -0.015625 5.40625 -0.015625 L 5.5625 -0.015625 C 5.78125 -0.015625 6.015625 -0.046875 6.015625 -0.484375 L 6.015625 -4.859375 C 6.015625 -4.921875 6.03125 -5 6.03125 -5.0625 C 6.03125 -5.421875 5.765625 -5.484375 5.53125 -5.484375 L 5.0625 -5.484375 C 4.75 -5.484375 4.625 -5.328125 4.625 -5.03125 L 4.625 -2.390625 C 4.625 -2.234375 4.640625 -2.078125 4.640625 -1.90625 C 4.640625 -1.046875 4.03125 -0.53125 3.171875 -0.53125 L 3.0625 -0.53125 C 2.625 -0.53125 2.28125 -0.578125 2.28125 -1.40625 L 2.28125 -5.1875 C 2.25 -5.359375 2.078125 -5.484375 1.90625 -5.484375 L 1.34375 -5.484375 C 1.046875 -5.484375 0.890625 -5.328125 0.890625 -5.015625 C 0.890625 -4.9375 0.890625 -4.859375 0.890625 -4.78125 L 0.890625 -1.5 C 0.890625 -1.171875 0.90625 -0.84375 1.046875 -0.53125 C 1.359375 0.046875 2.125 0.109375 2.703125 0.109375 C 3.40625 0.109375 4.09375 -0.0625 4.65625 -0.53125 Z M 4.65625 -0.53125 "/>
|
||||
<path style="stroke:none;" d="M 5.671875 -0.765625 C 5.671875 -0.671875 5.65625 -0.59375 5.65625 -0.484375 C 5.65625 -0.140625 5.859375 -0.015625 6.171875 -0.015625 L 6.9375 -0.015625 C 7.1875 -0.015625 7.40625 -0.09375 7.40625 -0.46875 L 7.40625 -6.046875 C 7.40625 -6.453125 7.125 -6.484375 6.90625 -6.484375 L 6.09375 -6.484375 C 5.734375 -6.484375 5.640625 -6.28125 5.640625 -6.03125 L 5.640625 -2.9375 C 5.640625 -2.765625 5.65625 -2.59375 5.65625 -2.421875 C 5.65625 -1.359375 4.9375 -0.6875 3.84375 -0.6875 C 3.25 -0.6875 2.828125 -0.6875 2.828125 -1.71875 L 2.828125 -5.953125 C 2.828125 -6.21875 2.796875 -6.484375 2.359375 -6.484375 L 1.546875 -6.484375 C 1.203125 -6.484375 1.046875 -6.328125 1.046875 -5.984375 C 1.046875 -5.875 1.0625 -5.78125 1.0625 -5.6875 L 1.0625 -1.90625 C 1.0625 -1.46875 1.078125 -1.03125 1.296875 -0.625 C 1.703125 0.109375 2.71875 0.109375 3.40625 0.109375 C 4.265625 0.109375 5.0625 -0.15625 5.671875 -0.765625 Z M 2.015625 -9.828125 C 1.8125 -9.78125 1.71875 -9.609375 1.71875 -9.375 L 1.71875 -8.5 C 1.71875 -8.265625 1.828125 -8.03125 2.109375 -8.03125 L 3.03125 -8.03125 C 3.296875 -8.03125 3.53125 -8.109375 3.53125 -8.453125 L 3.53125 -9.40625 C 3.53125 -9.765625 3.296875 -9.84375 3.0625 -9.84375 L 2.203125 -9.84375 C 2.140625 -9.84375 2.078125 -9.84375 2.015625 -9.828125 Z M 5.21875 -9.828125 C 5 -9.78125 4.9375 -9.625 4.9375 -9.40625 L 4.9375 -8.46875 C 4.9375 -8.1875 5.078125 -8.03125 5.359375 -8.03125 L 6.25 -8.03125 C 6.515625 -8.03125 6.734375 -8.125 6.734375 -8.5 L 6.734375 -9.296875 C 6.734375 -9.625 6.640625 -9.84375 6.28125 -9.84375 L 5.40625 -9.84375 C 5.328125 -9.84375 5.28125 -9.84375 5.21875 -9.828125 Z M 5.21875 -9.828125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-5">
|
||||
<path style="stroke:none;" d="M 3.078125 -5.671875 C 1.859375 -5.5 0.4375 -5.171875 0.4375 -2.71875 C 0.4375 -1.984375 0.609375 -1.203125 1.109375 -0.671875 C 1.671875 -0.046875 2.578125 0.109375 3.375 0.109375 C 4.09375 0.109375 4.828125 -0.03125 5.46875 -0.375 C 5.5625 -0.421875 5.59375 -0.484375 5.59375 -0.5625 C 5.59375 -0.75 5.546875 -0.9375 5.53125 -1.125 C 5.53125 -1.203125 5.53125 -1.34375 5.421875 -1.375 L 5.390625 -1.375 C 5.265625 -1.375 5 -1.140625 4.8125 -1.046875 C 4.40625 -0.828125 3.9375 -0.734375 3.484375 -0.703125 L 3.40625 -0.703125 C 2.375 -0.703125 1.828125 -1.296875 1.828125 -2.71875 C 1.828125 -3.28125 1.84375 -3.953125 2.21875 -4.40625 C 2.515625 -4.75 2.96875 -4.859375 3.421875 -4.859375 C 4.046875 -4.859375 4.5 -4.71875 5.0625 -4.265625 C 5.109375 -4.21875 5.1875 -4.140625 5.265625 -4.140625 C 5.453125 -4.140625 5.46875 -4.65625 5.5 -4.84375 C 5.515625 -4.875 5.515625 -4.9375 5.515625 -4.984375 C 5.515625 -5.15625 4.8125 -5.453125 4.453125 -5.5625 C 4.078125 -5.65625 3.671875 -5.671875 3.28125 -5.671875 Z M 3.078125 -5.671875 "/>
|
||||
<path style="stroke:none;" d="M 1.421875 -6.484375 L 0.953125 -6.484375 C 0.640625 -6.484375 0.4375 -6.359375 0.4375 -6.03125 C 0.4375 -5.75 0.609375 -5.609375 0.953125 -5.609375 L 1.421875 -5.609375 L 1.421875 -0.84375 C 1.421875 -0.75 1.40625 -0.640625 1.40625 -0.53125 C 1.40625 -0.265625 1.484375 -0.015625 1.84375 -0.015625 L 2.65625 -0.015625 C 3.0625 -0.015625 3.15625 -0.234375 3.15625 -0.546875 L 3.15625 -5.609375 L 4.078125 -5.609375 C 4.140625 -5.609375 4.234375 -5.59375 4.296875 -5.59375 C 4.59375 -5.59375 4.75 -5.796875 4.75 -6.046875 C 4.75 -6.328125 4.59375 -6.484375 4.28125 -6.484375 L 3.125 -6.484375 L 3.125 -8.234375 C 3.125 -8.875 3.265625 -9.46875 4.265625 -9.46875 C 4.6875 -9.46875 5.078125 -9.34375 5.390625 -9.0625 C 5.453125 -9.015625 5.515625 -8.984375 5.578125 -8.984375 L 5.609375 -8.984375 C 5.6875 -9.015625 5.703125 -9.109375 5.703125 -9.1875 L 5.703125 -10.125 C 5.65625 -10.40625 4.515625 -10.40625 4.21875 -10.40625 C 3.40625 -10.40625 2.578125 -10.234375 2.015625 -9.65625 C 1.625 -9.234375 1.46875 -8.65625 1.421875 -8.109375 Z M 7.71875 -5.609375 L 8.640625 -5.609375 C 8.703125 -5.609375 8.796875 -5.59375 8.859375 -5.59375 C 9.15625 -5.59375 9.3125 -5.796875 9.3125 -6.046875 C 9.3125 -6.328125 9.15625 -6.484375 8.84375 -6.484375 L 7.6875 -6.484375 L 7.6875 -7.875 C 7.6875 -8.015625 7.671875 -8.15625 7.671875 -8.3125 C 7.671875 -8.921875 7.90625 -9.484375 8.828125 -9.484375 C 9.171875 -9.484375 9.515625 -9.375 9.765625 -9.203125 C 9.875 -9.15625 10.015625 -8.984375 10.140625 -8.984375 C 10.28125 -8.984375 10.28125 -9.125 10.28125 -9.203125 L 10.28125 -10.046875 C 10.28125 -10.390625 9.53125 -10.34375 9.1875 -10.390625 L 8.96875 -10.390625 C 7.953125 -10.390625 6.78125 -10.25 6.25 -9.1875 C 6.015625 -8.6875 5.984375 -8.15625 5.984375 -7.625 L 5.984375 -0.484375 C 5.984375 -0.1875 6.09375 0 6.515625 0 C 6.65625 0 6.8125 -0.015625 6.953125 -0.015625 C 7.046875 -0.015625 7.140625 0 7.234375 0 C 7.46875 0 7.71875 -0.09375 7.71875 -0.421875 Z M 7.71875 -5.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-6">
|
||||
<path style="stroke:none;" d="M 2.265625 -4.65625 C 2.265625 -4.703125 2.265625 -4.75 2.265625 -4.8125 L 2.265625 -8.03125 C 2.265625 -8.109375 2.265625 -8.171875 2.265625 -8.265625 C 2.265625 -8.671875 2.015625 -8.71875 1.75 -8.71875 L 1.328125 -8.71875 C 1.09375 -8.71875 0.890625 -8.625 0.890625 -8.3125 L 0.890625 -0.5 C 0.890625 -0.234375 0.9375 -0.015625 1.34375 -0.015625 L 1.796875 -0.015625 C 2.015625 -0.015625 2.28125 -0.0625 2.28125 -0.4375 L 2.28125 -2.75 C 2.28125 -3.640625 2.65625 -4.859375 3.75 -4.859375 L 3.84375 -4.859375 C 4.625 -4.75 4.625 -4.140625 4.625 -3.578125 L 4.625 -0.484375 C 4.625 -0.25 4.703125 -0.015625 5 -0.015625 L 5.5625 -0.015625 C 5.859375 -0.015625 6.015625 -0.15625 6.015625 -0.484375 L 6.015625 -3.578125 C 6.015625 -4.609375 5.828125 -5.609375 4.15625 -5.609375 C 3.46875 -5.609375 2.578125 -5.234375 2.265625 -4.65625 Z M 2.265625 -4.65625 "/>
|
||||
<path style="stroke:none;" d="M 2.15625 -3 L 6.5625 -3 C 6.9375 -3 7.0625 -3.203125 7.0625 -3.484375 C 7.0625 -5.140625 6.375 -6.6875 3.9375 -6.6875 C 3 -6.6875 2 -6.46875 1.3125 -5.796875 C 0.65625 -5.140625 0.453125 -4.171875 0.453125 -3.28125 C 0.453125 -2.5 0.609375 -1.671875 1.125 -1.0625 C 1.84375 -0.140625 3.0625 0.109375 4.15625 0.109375 C 4.984375 0.109375 5.828125 -0.0625 6.5625 -0.40625 C 6.6875 -0.453125 6.921875 -0.53125 6.953125 -0.671875 L 6.953125 -0.734375 C 6.953125 -1.03125 6.9375 -1.65625 6.78125 -1.703125 L 6.75 -1.703125 C 6.625 -1.703125 6.484375 -1.5625 6.390625 -1.484375 C 5.78125 -1.046875 4.984375 -0.796875 4.21875 -0.796875 C 3.234375 -0.796875 2.15625 -1.3125 2.15625 -2.890625 Z M 2.171875 -3.796875 C 2.171875 -4.859375 2.828125 -5.765625 3.9375 -5.765625 C 5.28125 -5.765625 5.4375 -4.6875 5.515625 -3.796875 Z M 2.171875 -3.796875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-7">
|
||||
<path style="stroke:none;" d="M 1.703125 -2.28125 L 5.296875 -2.28125 C 5.609375 -2.28125 5.734375 -2.46875 5.734375 -2.765625 C 5.734375 -3.5625 5.5625 -4.53125 5 -5.0625 C 4.5 -5.515625 3.875 -5.671875 3.21875 -5.671875 C 2.46875 -5.671875 1.65625 -5.484375 1.09375 -4.9375 C 0.546875 -4.390625 0.375 -3.578125 0.375 -2.828125 C 0.375 -2.09375 0.53125 -1.3125 1.015625 -0.75 C 1.5625 -0.125 2.46875 0.109375 3.28125 0.109375 C 3.984375 0.109375 4.65625 0 5.296875 -0.28125 L 5.515625 -0.390625 C 5.59375 -0.421875 5.65625 -0.484375 5.65625 -0.578125 C 5.65625 -0.609375 5.640625 -0.640625 5.640625 -0.6875 L 5.609375 -1.09375 C 5.609375 -1.1875 5.609375 -1.359375 5.46875 -1.359375 C 5.40625 -1.359375 5.3125 -1.296875 5.265625 -1.25 C 4.734375 -0.859375 4.09375 -0.640625 3.421875 -0.640625 C 2.609375 -0.640625 1.75 -1.09375 1.703125 -2.28125 Z M 1.671875 -2.96875 C 1.734375 -3.890625 2 -4.90625 3.21875 -4.90625 C 4.34375 -4.90625 4.578125 -3.84375 4.578125 -2.96875 Z M 1.671875 -2.96875 "/>
|
||||
<path style="stroke:none;" d="M 1.375 -10.234375 C 1.125 -10.234375 1.078125 -9.90625 1.078125 -9.734375 L 1.078125 -0.78125 C 1.078125 -0.703125 1.0625 -0.609375 1.0625 -0.5 C 1.0625 -0.265625 1.171875 -0.046875 1.40625 -0.015625 L 2.265625 -0.015625 C 2.75 -0.015625 2.8125 -0.21875 2.8125 -0.484375 L 2.8125 -9.484375 C 2.8125 -9.5625 2.828125 -9.65625 2.828125 -9.75 C 2.828125 -10 2.734375 -10.234375 2.46875 -10.25 L 1.59375 -10.25 C 1.515625 -10.25 1.453125 -10.25 1.375 -10.234375 Z M 1.375 -10.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-8">
|
||||
<path style="stroke:none;" d="M 2.21875 -4.625 L 2.21875 -5.0625 C 2.21875 -5.453125 2.03125 -5.5625 1.71875 -5.5625 C 1.625 -5.5625 1.53125 -5.546875 1.453125 -5.546875 L 1.296875 -5.546875 C 1.0625 -5.546875 0.890625 -5.40625 0.890625 -5.109375 L 0.890625 -0.4375 C 0.890625 -0.03125 1.1875 -0.015625 1.40625 -0.015625 L 1.859375 -0.015625 C 2.25 -0.015625 2.28125 -0.28125 2.28125 -0.5 L 2.28125 -3.109375 C 2.359375 -3.953125 2.828125 -4.859375 3.734375 -4.859375 C 4.59375 -4.859375 4.625 -4.203125 4.625 -3.671875 L 4.625 -0.4375 C 4.625 -0.03125 4.90625 -0.015625 5.140625 -0.015625 L 5.578125 -0.015625 C 5.84375 -0.015625 6.015625 -0.125 6.015625 -0.484375 L 6.015625 -2.015625 C 6.015625 -2.234375 6 -2.4375 6 -2.65625 C 6 -3.359375 6.109375 -4.34375 6.953125 -4.734375 C 7.109375 -4.8125 7.28125 -4.859375 7.453125 -4.859375 C 8.3125 -4.859375 8.359375 -4.25 8.359375 -3.71875 L 8.359375 -0.328125 C 8.453125 -0.03125 8.625 -0.015625 8.875 -0.015625 L 9.328125 -0.015625 C 9.671875 -0.015625 9.734375 -0.234375 9.734375 -0.46875 L 9.734375 -3.5625 C 9.734375 -4.5625 9.59375 -5.609375 7.859375 -5.609375 C 7.0625 -5.609375 6.359375 -5.1875 5.921875 -4.5625 C 5.65625 -5.375 5.015625 -5.609375 4.25 -5.609375 C 3.40625 -5.609375 2.828125 -5.3125 2.21875 -4.625 Z M 2.21875 -4.625 "/>
|
||||
<path style="stroke:none;" d="M 2.84375 -6.6875 C 1.84375 -6.578125 0.546875 -6.34375 0.546875 -4.703125 C 0.546875 -3.59375 1.5 -2.9375 2.5 -2.71875 C 3.25 -2.5625 4.640625 -2.53125 4.640625 -1.703125 C 4.640625 -0.96875 3.796875 -0.890625 3.328125 -0.890625 C 2.4375 -0.890625 1.671875 -1.1875 0.984375 -1.828125 C 0.953125 -1.859375 0.859375 -1.9375 0.78125 -1.9375 C 0.609375 -1.9375 0.625 -1.65625 0.609375 -1.5 C 0.578125 -1.25 0.453125 -0.96875 0.453125 -0.703125 C 0.453125 -0.5625 0.578125 -0.53125 0.6875 -0.453125 C 1.515625 -0.09375 2.421875 0.125 3.328125 0.125 C 4.484375 0.125 5.9375 -0.21875 5.9375 -2 C 5.9375 -3.015625 5.109375 -3.75 4.171875 -4.015625 C 3.734375 -4.125 3.265625 -4.1875 2.828125 -4.265625 C 2.4375 -4.34375 1.84375 -4.515625 1.84375 -5 L 1.84375 -5.078125 C 1.96875 -5.71875 2.625 -5.75 3.140625 -5.75 C 3.90625 -5.75 4.5625 -5.53125 5.15625 -5.09375 C 5.203125 -5.0625 5.265625 -5 5.328125 -5 C 5.53125 -5 5.640625 -5.875 5.640625 -6.0625 C 5.640625 -6.265625 5.21875 -6.359375 4.984375 -6.421875 C 4.453125 -6.609375 3.890625 -6.6875 3.3125 -6.6875 Z M 2.84375 -6.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-9">
|
||||
<path style="stroke:none;" d="M 1.203125 -5.46875 C 0.953125 -5.4375 0.90625 -5.234375 0.90625 -4.96875 L 0.90625 -0.4375 C 0.90625 -0.0625 1.15625 -0.015625 1.40625 -0.015625 L 1.859375 -0.015625 C 2.046875 -0.015625 2.234375 -0.109375 2.265625 -0.3125 L 2.265625 -5.0625 C 2.265625 -5.375 2.0625 -5.5 1.78125 -5.5 C 1.6875 -5.5 1.578125 -5.484375 1.5 -5.484375 L 1.34375 -5.484375 C 1.296875 -5.484375 1.25 -5.484375 1.203125 -5.46875 Z M 1.140625 -8.578125 C 0.890625 -8.578125 0.828125 -8.296875 0.828125 -8.109375 C 0.828125 -8.03125 0.84375 -7.953125 0.84375 -7.875 L 0.84375 -7.515625 C 0.84375 -7.140625 1.09375 -7.09375 1.34375 -7.09375 L 1.890625 -7.09375 C 2.109375 -7.09375 2.328125 -7.1875 2.328125 -7.484375 L 2.328125 -8.140625 C 2.328125 -8.546875 2.09375 -8.59375 1.828125 -8.59375 L 1.28125 -8.59375 C 1.234375 -8.59375 1.1875 -8.59375 1.140625 -8.578125 Z M 1.140625 -8.578125 "/>
|
||||
<path style="stroke:none;" d="M 5.671875 -0.765625 C 5.671875 -0.671875 5.65625 -0.59375 5.65625 -0.484375 C 5.65625 -0.140625 5.859375 -0.015625 6.171875 -0.015625 L 6.9375 -0.015625 C 7.1875 -0.015625 7.40625 -0.09375 7.40625 -0.46875 L 7.40625 -6.046875 C 7.40625 -6.453125 7.125 -6.484375 6.90625 -6.484375 L 6.09375 -6.484375 C 5.734375 -6.484375 5.640625 -6.28125 5.640625 -6.03125 L 5.640625 -2.9375 C 5.640625 -2.765625 5.65625 -2.59375 5.65625 -2.421875 C 5.65625 -1.359375 4.9375 -0.6875 3.84375 -0.6875 C 3.25 -0.6875 2.828125 -0.6875 2.828125 -1.71875 L 2.828125 -5.953125 C 2.828125 -6.21875 2.796875 -6.484375 2.359375 -6.484375 L 1.546875 -6.484375 C 1.203125 -6.484375 1.046875 -6.328125 1.046875 -5.984375 C 1.046875 -5.875 1.0625 -5.78125 1.0625 -5.6875 L 1.0625 -1.90625 C 1.0625 -1.46875 1.078125 -1.03125 1.296875 -0.625 C 1.703125 0.109375 2.71875 0.109375 3.40625 0.109375 C 4.265625 0.109375 5.0625 -0.15625 5.671875 -0.765625 Z M 5.671875 -0.765625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-10">
|
||||
<path style="stroke:none;" d="M 1.21875 -5.484375 L 0.65625 -5.484375 C 0.40625 -5.484375 0.25 -5.328125 0.25 -5.109375 C 0.25 -4.84375 0.453125 -4.734375 0.734375 -4.734375 L 1.1875 -4.734375 L 1.1875 -1.515625 C 1.1875 -0.734375 1.390625 0.109375 2.40625 0.109375 C 3.0625 0.109375 3.6875 -0.046875 4.296875 -0.3125 C 4.359375 -0.34375 4.453125 -0.375 4.46875 -0.484375 C 4.46875 -0.78125 4.296875 -1.09375 4.21875 -1.09375 C 4.125 -1.09375 3.96875 -0.953125 3.859375 -0.890625 C 3.59375 -0.8125 3.34375 -0.703125 3.0625 -0.703125 C 2.53125 -0.703125 2.515625 -1.28125 2.515625 -1.75 L 2.515625 -4.734375 L 3.796875 -4.734375 C 4 -4.734375 4.25 -4.828125 4.25 -5.109375 C 4.25 -5.359375 4.0625 -5.484375 3.796875 -5.484375 L 2.515625 -5.484375 L 2.515625 -6.609375 C 2.515625 -6.84375 2.421875 -7.046875 2.109375 -7.046875 L 1.96875 -7.046875 C 1.90625 -7.046875 1.8125 -7.0625 1.71875 -7.0625 C 1.453125 -7.0625 1.21875 -6.984375 1.21875 -6.59375 Z M 1.21875 -5.484375 "/>
|
||||
<path style="stroke:none;" d="M 3.78125 -6.6875 C 3.578125 -6.65625 3.359375 -6.640625 3.140625 -6.609375 C 2.515625 -6.5 1.890625 -6.25 1.421875 -5.8125 C 0.765625 -5.171875 0.546875 -4.21875 0.546875 -3.3125 C 0.546875 -2.4375 0.703125 -1.53125 1.3125 -0.859375 C 2.015625 -0.09375 3.109375 0.109375 4.109375 0.109375 C 5.015625 0.109375 5.9375 -0.078125 6.734375 -0.5 C 6.828125 -0.546875 6.859375 -0.609375 6.859375 -0.6875 C 6.859375 -1.03125 6.8125 -1.71875 6.65625 -1.734375 L 6.640625 -1.734375 C 6.484375 -1.734375 6.171875 -1.4375 5.953125 -1.3125 C 5.40625 -1 4.78125 -0.859375 4.15625 -0.859375 C 2.53125 -0.859375 2.3125 -2.15625 2.3125 -3.234375 C 2.3125 -4.375 2.484375 -5.703125 4.15625 -5.703125 C 4.953125 -5.703125 5.5 -5.5625 6.203125 -5.015625 C 6.28125 -4.96875 6.375 -4.859375 6.46875 -4.859375 C 6.625 -4.859375 6.625 -5.09375 6.640625 -5.171875 L 6.734375 -5.6875 C 6.734375 -5.765625 6.765625 -5.84375 6.765625 -5.90625 C 6.765625 -6.203125 5.703125 -6.53125 5.296875 -6.59375 C 4.953125 -6.671875 4.609375 -6.6875 4.265625 -6.6875 Z M 3.78125 -6.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-11">
|
||||
<path style="stroke:none;" d="M 4.375 -4.09375 L 4.390625 -4.09375 C 4.40625 -3.75 4.546875 -3.390625 4.640625 -3.0625 C 4.859375 -2.21875 5.109375 -1.375 5.375 -0.546875 C 5.53125 -0.078125 5.75 -0.015625 6.09375 -0.015625 L 6.84375 -0.015625 C 7.28125 -0.015625 7.359375 -0.265625 7.453125 -0.53125 C 7.921875 -1.953125 8.3125 -3.390625 8.75 -4.8125 C 8.78125 -4.9375 8.859375 -5.078125 8.859375 -5.21875 C 8.859375 -5.421875 8.671875 -5.484375 8.46875 -5.484375 L 8.265625 -5.484375 C 8.03125 -5.484375 7.796875 -5.46875 7.65625 -5.21875 C 7.578125 -5.03125 7.53125 -4.8125 7.46875 -4.609375 C 7.1875 -3.6875 6.890625 -2.765625 6.640625 -1.84375 C 6.546875 -1.578125 6.4375 -1.3125 6.390625 -1.046875 C 6.375 -1.140625 6.328125 -1.234375 6.3125 -1.3125 L 6.171875 -1.78125 C 5.875 -2.703125 5.59375 -3.625 5.328125 -4.546875 C 5.15625 -4.96875 5.21875 -5.484375 4.515625 -5.484375 C 4.09375 -5.484375 3.96875 -5.25 3.890625 -4.953125 C 3.609375 -4.0625 3.34375 -3.171875 3.078125 -2.28125 C 2.96875 -1.921875 2.875 -1.546875 2.734375 -1.203125 C 2.40625 -2.390625 2.046875 -3.5625 1.65625 -4.71875 C 1.53125 -5.109375 1.5 -5.484375 0.90625 -5.484375 L 0.703125 -5.484375 C 0.53125 -5.484375 0.28125 -5.46875 0.28125 -5.203125 C 0.28125 -5.078125 0.359375 -4.953125 0.375 -4.84375 L 1.671875 -0.609375 C 1.71875 -0.453125 1.75 -0.28125 1.859375 -0.171875 C 1.984375 -0.03125 2.171875 0 2.359375 0 C 2.46875 0 2.5625 -0.015625 2.65625 -0.015625 L 2.78125 -0.015625 C 3.375 -0.015625 3.421875 -0.671875 3.53125 -1.046875 C 3.734375 -1.734375 3.9375 -2.421875 4.140625 -3.109375 C 4.21875 -3.4375 4.34375 -3.765625 4.375 -4.09375 Z M 4.375 -4.09375 "/>
|
||||
<path style="stroke:none;" d="M 2.796875 -5.515625 L 2.796875 -9.765625 C 2.796875 -10.078125 2.703125 -10.265625 2.25 -10.265625 C 2.09375 -10.265625 1.9375 -10.25 1.78125 -10.25 C 1.6875 -10.25 1.609375 -10.265625 1.515625 -10.265625 C 1.296875 -10.265625 1.0625 -10.140625 1.0625 -9.859375 L 1.0625 -0.53125 C 1.0625 -0.296875 1.078125 -0.109375 1.375 -0.015625 L 2.3125 -0.015625 C 2.671875 -0.015625 2.828125 -0.171875 2.828125 -0.53125 L 2.828125 -3.5625 C 2.828125 -4.515625 3.3125 -5.6875 4.53125 -5.6875 C 5.5 -5.6875 5.640625 -5.125 5.640625 -4.484375 L 5.640625 -0.515625 C 5.640625 -0.1875 5.75 -0.015625 6.078125 -0.015625 L 6.90625 -0.015625 C 7.21875 -0.015625 7.421875 -0.15625 7.421875 -0.5 C 7.421875 -0.609375 7.40625 -0.703125 7.40625 -0.78125 L 7.40625 -4.21875 C 7.40625 -4.765625 7.40625 -5.328125 7.125 -5.828125 C 6.734375 -6.53125 5.859375 -6.609375 5.15625 -6.609375 C 4.1875 -6.609375 3.390625 -6.203125 2.796875 -5.515625 Z M 2.796875 -5.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-12">
|
||||
<path style="stroke:none;" d="M 2.21875 -4.625 L 2.21875 -5.0625 C 2.21875 -5.3125 2.171875 -5.546875 1.8125 -5.546875 L 1.65625 -5.546875 C 1.578125 -5.546875 1.5 -5.5625 1.40625 -5.5625 C 1.140625 -5.5625 0.890625 -5.5 0.890625 -5.125 L 0.890625 -0.4375 C 0.890625 -0.03125 1.1875 -0.015625 1.40625 -0.015625 L 1.859375 -0.015625 C 2.25 -0.015625 2.28125 -0.265625 2.28125 -0.5 L 2.28125 -2.5625 C 2.28125 -3.03125 2.28125 -3.453125 2.46875 -3.890625 C 2.671875 -4.40625 3.15625 -4.859375 3.75 -4.859375 L 3.84375 -4.859375 C 4.609375 -4.78125 4.625 -4.203125 4.625 -3.671875 L 4.625 -0.484375 C 4.625 -0.25 4.703125 -0.015625 5 -0.015625 L 5.5625 -0.015625 C 5.875 -0.015625 6.03125 -0.171875 6.03125 -0.46875 C 6.03125 -0.546875 6.015625 -0.625 6.015625 -0.6875 L 6.015625 -3.5625 C 6.015625 -4.5625 5.859375 -5.609375 4.140625 -5.609375 L 4 -5.609375 C 3.265625 -5.5625 2.71875 -5.1875 2.21875 -4.625 Z M 2.21875 -4.625 "/>
|
||||
<path style="stroke:none;" d="M 2.40625 -1.25 C 3.34375 -2.0625 4.265625 -2.921875 5.234375 -3.703125 C 6.203125 -4.46875 7.359375 -5.4375 7.40625 -6.8125 L 7.40625 -6.921875 C 7.40625 -8.875 5.765625 -10.109375 3.90625 -10.109375 C 2.6875 -10.109375 1.5625 -9.609375 0.96875 -8.515625 C 0.859375 -8.34375 0.703125 -8.09375 0.703125 -7.953125 L 0.703125 -7.921875 C 0.703125 -7.71875 1.3125 -7.125 1.4375 -6.96875 C 1.46875 -6.9375 1.515625 -6.90625 1.578125 -6.90625 L 1.609375 -6.90625 C 1.734375 -6.953125 1.84375 -7.46875 1.9375 -7.703125 C 2.234375 -8.390625 2.78125 -8.953125 3.640625 -8.953125 C 4.703125 -8.953125 5.625 -8.140625 5.625 -6.90625 C 5.625 -5.65625 4.671875 -4.65625 3.8125 -3.859375 C 2.90625 -3 2.015625 -2.140625 1.140625 -1.25 C 0.984375 -1.109375 0.796875 -0.984375 0.796875 -0.78125 C 0.796875 -0.703125 0.8125 -0.640625 0.8125 -0.59375 L 0.8125 -0.484375 C 0.8125 -0.140625 0.984375 -0.015625 1.296875 -0.015625 L 6.9375 -0.015625 C 7.171875 -0.015625 7.40625 -0.09375 7.40625 -0.4375 L 7.40625 -0.78125 C 7.40625 -1.015625 7.359375 -1.28125 6.984375 -1.28125 L 6.78125 -1.28125 C 6.484375 -1.28125 6.1875 -1.265625 5.875 -1.265625 L 4.546875 -1.265625 C 3.828125 -1.265625 3.125 -1.25 2.40625 -1.25 Z M 2.40625 -1.25 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-13">
|
||||
<path style="stroke:none;" d="M 2.046875 -1.09375 C 2.578125 -1.5625 3.140625 -2.078125 3.703125 -2.515625 L 4.5 -3.125 C 5.21875 -3.6875 5.96875 -4.40625 6.03125 -5.375 L 6.03125 -5.484375 C 6.03125 -7.125 4.65625 -8.09375 3.15625 -8.09375 C 2.0625 -8.09375 1.1875 -7.59375 0.703125 -6.640625 C 0.65625 -6.53125 0.578125 -6.390625 0.578125 -6.296875 L 0.578125 -6.28125 C 0.578125 -6.203125 0.640625 -6.140625 0.6875 -6.078125 L 0.96875 -5.765625 C 1.046875 -5.671875 1.15625 -5.484375 1.265625 -5.484375 C 1.40625 -5.484375 1.484375 -5.90625 1.5625 -6.078125 C 1.8125 -6.640625 2.265625 -7.0625 2.984375 -7.0625 C 3.828125 -7.0625 4.609375 -6.484375 4.609375 -5.515625 C 4.609375 -4.546875 3.9375 -3.875 3.3125 -3.265625 C 2.515625 -2.515625 1.703125 -1.78125 0.921875 -1.046875 C 0.8125 -0.9375 0.65625 -0.84375 0.65625 -0.671875 C 0.65625 -0.328125 0.671875 -0.015625 1.171875 -0.015625 L 5.625 -0.015625 C 6 -0.015625 6.03125 -0.265625 6.03125 -0.484375 L 6.03125 -0.59375 C 6.03125 -0.84375 6.015625 -1.125 5.609375 -1.125 L 4.84375 -1.125 C 3.90625 -1.125 2.96875 -1.125 2.046875 -1.09375 Z M 2.046875 -1.09375 "/>
|
||||
<path style="stroke:none;" d="M 4.5625 -5.609375 C 4.15625 -5.09375 3.71875 -4.609375 3.28125 -4.109375 C 2.453125 -3.109375 1.640625 -2.140625 0.796875 -1.171875 C 0.65625 -1 0.453125 -0.84375 0.453125 -0.59375 L 0.453125 -0.46875 C 0.453125 -0.171875 0.578125 -0.015625 0.953125 -0.015625 L 5.921875 -0.015625 C 6 -0.015625 6.0625 0 6.15625 0 C 6.578125 0 6.625 -0.265625 6.625 -0.53125 C 6.625 -0.75 6.5625 -1 6.203125 -1 L 6.09375 -1 C 4.890625 -1 3.703125 -0.953125 2.5 -0.953125 C 2.84375 -1.375 3.21875 -1.796875 3.578125 -2.203125 L 6.234375 -5.359375 C 6.40625 -5.546875 6.59375 -5.703125 6.59375 -6.015625 C 6.59375 -6.40625 6.375 -6.484375 6.109375 -6.484375 L 1.171875 -6.484375 C 0.78125 -6.484375 0.6875 -6.28125 0.6875 -6.03125 C 0.6875 -5.78125 0.78125 -5.5625 1.109375 -5.5625 L 1.21875 -5.5625 C 1.390625 -5.5625 1.578125 -5.5625 1.75 -5.578125 L 1.921875 -5.578125 C 2.140625 -5.578125 2.359375 -5.5625 2.5625 -5.5625 C 2.796875 -5.5625 3.015625 -5.59375 3.234375 -5.59375 L 3.625 -5.59375 C 3.9375 -5.59375 4.25 -5.609375 4.5625 -5.609375 Z M 4.5625 -5.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-14">
|
||||
<path style="stroke:none;" d="M 3.09375 -5.671875 C 2.375 -5.578125 1.6875 -5.46875 1.140625 -4.953125 C 0.53125 -4.375 0.375 -3.5 0.375 -2.71875 C 0.375 -1.96875 0.53125 -1.15625 1.078125 -0.625 C 1.703125 0 2.625 0.109375 3.484375 0.109375 C 4.21875 0.109375 5.09375 -0.078125 5.640625 -0.640625 C 6.1875 -1.171875 6.328125 -1.953125 6.328125 -2.6875 C 6.328125 -3.453125 6.1875 -4.296875 5.640625 -4.875 C 5.03125 -5.515625 4.109375 -5.671875 3.265625 -5.671875 Z M 1.75 -2.421875 L 1.75 -2.953125 C 1.75 -3.796875 1.84375 -4.90625 3.34375 -4.90625 C 4.8125 -4.90625 4.953125 -3.8125 4.953125 -2.875 L 4.953125 -2.796875 C 4.953125 -1.90625 4.90625 -0.703125 3.328125 -0.703125 C 2.890625 -0.703125 2.421875 -0.828125 2.125 -1.171875 C 1.828125 -1.515625 1.8125 -1.984375 1.75 -2.421875 Z M 1.75 -2.421875 "/>
|
||||
<path style="stroke:none;" d="M 2.8125 -5.875 L 2.8125 -6.03125 C 2.8125 -6.46875 2.53125 -6.484375 2.265625 -6.484375 L 1.59375 -6.484375 C 1.34375 -6.484375 1.078125 -6.421875 1.078125 -6.046875 L 1.078125 2.421875 C 1.109375 2.671875 1.3125 2.765625 1.53125 2.765625 L 2.34375 2.765625 C 2.5625 2.765625 2.84375 2.734375 2.84375 2.359375 L 2.84375 -0.59375 C 3.328125 -0.140625 3.984375 0.109375 4.640625 0.109375 C 5.609375 0.109375 6.703125 -0.125 7.296875 -0.96875 C 7.78125 -1.609375 7.921875 -2.5 7.921875 -3.265625 C 7.921875 -4.75 7.484375 -6.609375 5.09375 -6.609375 C 4.28125 -6.609375 3.453125 -6.390625 2.8125 -5.875 Z M 6.140625 -2.953125 C 6.03125 -1.9375 5.734375 -0.796875 4.203125 -0.796875 C 3.703125 -0.796875 2.84375 -1.15625 2.84375 -1.703125 L 2.84375 -4.921875 C 2.890625 -5.3125 3.78125 -5.640625 4.359375 -5.640625 C 5.84375 -5.640625 6.15625 -4.3125 6.15625 -3.234375 C 6.15625 -3.140625 6.15625 -3.046875 6.140625 -2.953125 Z M 6.140625 -2.953125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-15">
|
||||
<path style="stroke:none;" d="M 1.46875 -6.484375 L 0.75 -6.484375 C 0.46875 -6.484375 0.28125 -6.3125 0.28125 -6.03125 C 0.28125 -5.765625 0.453125 -5.609375 0.71875 -5.609375 L 1.4375 -5.609375 L 1.4375 -1.828125 C 1.4375 -0.890625 1.671875 0.109375 2.890625 0.109375 C 3.703125 0.109375 4.5625 -0.046875 5.265625 -0.421875 C 5.34375 -0.453125 5.46875 -0.5 5.46875 -0.609375 L 5.46875 -0.640625 C 5.46875 -0.828125 5.328125 -1.34375 5.171875 -1.34375 C 5.046875 -1.34375 4.875 -1.1875 4.734375 -1.109375 C 4.453125 -0.953125 4.109375 -0.859375 3.796875 -0.859375 C 3.234375 -0.859375 3.140625 -1.390625 3.140625 -2.140625 L 3.140625 -5.609375 L 4.734375 -5.609375 C 5 -5.609375 5.21875 -5.75 5.21875 -6.03125 C 5.21875 -6.34375 5.03125 -6.484375 4.71875 -6.484375 L 3.140625 -6.484375 L 3.140625 -7.84375 C 3.140625 -8.1875 3.015625 -8.34375 2.609375 -8.34375 C 2.515625 -8.34375 2.390625 -8.328125 2.296875 -8.328125 C 2.1875 -8.328125 2.09375 -8.34375 2 -8.34375 C 1.71875 -8.34375 1.46875 -8.28125 1.46875 -7.84375 Z M 1.46875 -6.484375 "/>
|
||||
</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.203125 -7.421875 L 0.203125 -7.125 L 0.4375 -7.125 C 0.984375 -7.125 1.0625 -6.890625 1.203125 -6.453125 C 1.75 -4.859375 2.234375 -3.265625 2.765625 -1.671875 C 2.9375 -1.171875 3.09375 -0.703125 3.25 -0.203125 C 3.296875 -0.046875 3.328125 0.21875 3.53125 0.21875 L 3.5625 0.21875 C 3.71875 0.1875 3.765625 -0.09375 3.8125 -0.25 C 4.296875 -1.703125 4.765625 -3.15625 5.21875 -4.59375 C 5.328125 -4.921875 5.4375 -5.28125 5.5625 -5.609375 C 5.875 -4.828125 6.078125 -4.046875 6.34375 -3.234375 C 6.640625 -2.25 6.984375 -1.25 7.3125 -0.25 L 7.40625 0.046875 C 7.421875 0.125 7.46875 0.203125 7.5625 0.21875 L 7.59375 0.21875 C 7.78125 0.21875 7.8125 -0.03125 7.875 -0.1875 C 8.015625 -0.671875 8.1875 -1.140625 8.34375 -1.625 C 8.796875 -3.015625 9.234375 -4.421875 9.703125 -5.8125 C 9.90625 -6.390625 9.984375 -7.125 10.921875 -7.125 L 10.921875 -7.453125 L 8.765625 -7.453125 L 8.765625 -7.125 C 9.125 -7.125 9.65625 -6.96875 9.65625 -6.5625 C 9.65625 -6.390625 9.546875 -6.1875 9.484375 -6.015625 C 9.375 -5.65625 9.265625 -5.296875 9.140625 -4.9375 L 8.359375 -2.515625 C 8.21875 -2.078125 8.0625 -1.640625 7.921875 -1.203125 C 7.75 -1.625 7.640625 -2.078125 7.5 -2.515625 C 7.0625 -3.890625 6.65625 -5.296875 6.15625 -6.65625 C 6.140625 -6.703125 6.125 -6.765625 6.125 -6.8125 C 6.125 -7.125 6.65625 -7.125 6.96875 -7.125 L 6.96875 -7.453125 L 5.71875 -7.453125 L 5.484375 -7.421875 L 4.28125 -7.421875 L 4.28125 -7.125 L 4.46875 -7.125 C 4.671875 -7.125 4.890625 -7.125 5.03125 -7.03125 C 5.25 -6.84375 5.328125 -6.328125 5.375 -6.1875 C 5.40625 -6.140625 5.40625 -6.109375 5.40625 -6.0625 L 5.40625 -6.03125 C 5.40625 -5.921875 5.328125 -5.796875 5.296875 -5.6875 C 4.890625 -4.3125 4.390625 -2.953125 3.96875 -1.578125 C 3.921875 -1.453125 3.875 -1.328125 3.84375 -1.203125 C 3.78125 -1.609375 3.5625 -2.078125 3.421875 -2.484375 C 3.015625 -3.796875 2.59375 -5.109375 2.15625 -6.40625 C 2.109375 -6.53125 2.046875 -6.703125 2.046875 -6.828125 L 2.046875 -6.859375 C 2.109375 -7.125 2.546875 -7.125 2.828125 -7.125 L 2.890625 -7.125 L 2.890625 -7.453125 L 1.640625 -7.453125 L 1.40625 -7.421875 Z M 0.203125 -7.421875 "/>
|
||||
<path style="stroke:none;" d="M 2.8125 -6.75 L 2.8125 -0.765625 L 1.84375 -0.765625 C 1.75 -0.765625 1.671875 -0.78125 1.578125 -0.78125 C 1.28125 -0.78125 1.140625 -0.59375 1.140625 -0.375 C 1.140625 -0.15625 1.296875 -0.015625 1.578125 -0.015625 L 5.34375 -0.015625 C 5.609375 -0.015625 5.765625 -0.15625 5.765625 -0.375 C 5.765625 -0.625 5.59375 -0.765625 5.328125 -0.765625 L 4.21875 -0.765625 L 4.21875 -7.703125 C 4.21875 -8.015625 4 -8.09375 3.78125 -8.09375 C 3.515625 -8.09375 3.46875 -7.984375 3.3125 -7.875 C 2.8125 -7.421875 2.109375 -7.34375 1.46875 -7.3125 C 1.25 -7.296875 1.0625 -7.203125 1.0625 -6.9375 C 1.0625 -6.734375 1.1875 -6.5625 1.40625 -6.546875 C 1.875 -6.546875 2.359375 -6.625 2.8125 -6.75 Z M 2.8125 -6.75 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-2">
|
||||
<path style="stroke:none;" d="M 1.1875 -2.546875 L 4.34375 -2.546875 C 4.453125 -2.546875 4.5 -2.59375 4.5 -2.703125 C 4.5 -3.78125 3.921875 -4.859375 2.59375 -4.859375 C 1.28125 -4.859375 0.3125 -3.671875 0.3125 -2.421875 C 0.3125 -1.234375 1.171875 0.09375 2.640625 0.09375 C 3.46875 0.09375 4.171875 -0.34375 4.46875 -1.1875 C 4.484375 -1.234375 4.5 -1.265625 4.5 -1.3125 C 4.5 -1.375 4.4375 -1.421875 4.390625 -1.421875 C 4.203125 -1.421875 4.140625 -1.0625 4.078125 -0.9375 C 3.8125 -0.484375 3.296875 -0.15625 2.765625 -0.15625 C 2.15625 -0.15625 1.625 -0.59375 1.390625 -1.140625 C 1.203125 -1.578125 1.1875 -2.078125 1.1875 -2.546875 Z M 1.203125 -2.765625 C 1.203125 -3.609375 1.671875 -4.640625 2.578125 -4.640625 C 3.515625 -4.640625 3.796875 -3.546875 3.796875 -2.765625 Z M 1.203125 -2.765625 "/>
|
||||
<path style="stroke:none;" d="M 1.28125 -1.328125 C 1.203125 -1.296875 1.1875 -1.21875 1.1875 -1.140625 L 1.1875 -0.21875 C 1.1875 -0.0625 1.25 -0.015625 1.40625 -0.015625 L 2.140625 -0.015625 C 2.203125 -0.015625 2.265625 0 2.3125 0 C 2.46875 0 2.515625 -0.078125 2.515625 -0.203125 L 2.515625 -1.140625 C 2.515625 -1.296875 2.46875 -1.34375 2.3125 -1.34375 L 1.578125 -1.34375 C 1.515625 -1.34375 1.453125 -1.34375 1.40625 -1.34375 C 1.34375 -1.34375 1.3125 -1.34375 1.28125 -1.328125 Z M 1.28125 -1.328125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-3">
|
||||
<path style="stroke:none;" d="M 0.3125 -4.6875 L 0.3125 -4.359375 L 0.484375 -4.359375 C 0.8125 -4.359375 1.140625 -4.328125 1.140625 -3.8125 L 1.140625 -0.796875 C 1.140625 -0.34375 0.84375 -0.34375 0.375 -0.34375 L 0.3125 -0.34375 L 0.3125 -0.015625 L 2.90625 -0.015625 L 2.90625 -0.34375 C 2.78125 -0.34375 2.65625 -0.328125 2.515625 -0.328125 C 2.171875 -0.328125 1.859375 -0.375 1.859375 -0.78125 L 1.859375 -2.265625 C 1.859375 -3.125 2.03125 -4.578125 3.125 -4.578125 C 3.171875 -4.578125 3.21875 -4.5625 3.265625 -4.5625 C 3.109375 -4.5 3.015625 -4.3125 3.015625 -4.15625 C 3.015625 -3.921875 3.203125 -3.734375 3.421875 -3.703125 C 3.734375 -3.703125 3.921875 -3.90625 3.921875 -4.171875 C 3.921875 -4.59375 3.5 -4.8125 3.140625 -4.8125 C 2.453125 -4.8125 1.9375 -4.1875 1.8125 -3.625 L 1.796875 -4.8125 Z M 0.3125 -4.6875 "/>
|
||||
<path style="stroke:none;" d="M 3.40625 -8.5625 C 2.703125 -8.46875 2.046875 -8.40625 1.484375 -7.9375 C 0.953125 -7.5 0.734375 -6.796875 0.734375 -6.140625 C 0.734375 -4.921875 1.75 -4.0625 2.875 -3.78125 C 3.859375 -3.53125 5.4375 -3.484375 5.4375 -2.203125 C 5.4375 -1.140625 4.546875 -0.890625 3.734375 -0.890625 C 2.8125 -0.890625 1.859375 -1.21875 1.15625 -1.765625 C 1.09375 -1.8125 1.015625 -1.921875 0.921875 -1.921875 C 0.78125 -1.921875 0.78125 -1.734375 0.75 -1.640625 C 0.703125 -1.34375 0.59375 -1 0.59375 -0.734375 C 0.59375 -0.640625 0.65625 -0.59375 0.734375 -0.5625 L 0.984375 -0.421875 C 1.828125 0.015625 2.8125 0.25 3.765625 0.25 C 5.15625 0.25 6.71875 -0.28125 6.71875 -2.3125 C 6.71875 -3.53125 5.828125 -4.5 4.703125 -4.84375 C 3.75 -5.125 2.015625 -5.125 2.015625 -6.3125 L 2.015625 -6.34375 C 2.015625 -7.359375 3.0625 -7.5 3.734375 -7.5 C 4.484375 -7.5 5.109375 -7.28125 5.71875 -6.78125 C 5.765625 -6.734375 5.859375 -6.640625 5.9375 -6.640625 C 6.109375 -6.640625 6.234375 -7.609375 6.234375 -7.8125 C 6.234375 -8.015625 5.765625 -8.15625 5.53125 -8.265625 C 4.921875 -8.5 4.265625 -8.5625 3.609375 -8.5625 Z M 3.40625 -8.5625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-4">
|
||||
<path style="stroke:none;" d="M 0.359375 -4.6875 L 0.359375 -4.359375 L 0.53125 -4.359375 C 0.859375 -4.359375 1.1875 -4.328125 1.1875 -3.8125 L 1.1875 -0.796875 C 1.1875 -0.34375 0.890625 -0.34375 0.421875 -0.34375 L 0.359375 -0.34375 L 0.359375 -0.015625 L 2.765625 -0.015625 L 2.765625 -0.34375 L 2.515625 -0.34375 C 2.1875 -0.34375 1.9375 -0.375 1.9375 -0.78125 L 1.9375 -2.828125 C 1.9375 -3.59375 2.359375 -4.578125 3.40625 -4.578125 C 4.0625 -4.578125 4.203125 -3.921875 4.203125 -3.34375 L 4.203125 -0.75 C 4.203125 -0.375 3.90625 -0.34375 3.609375 -0.34375 L 3.375 -0.34375 L 3.375 -0.015625 L 5.765625 -0.015625 L 5.765625 -0.34375 L 5.515625 -0.34375 C 5.203125 -0.34375 4.9375 -0.375 4.9375 -0.78125 L 4.9375 -2.828125 C 4.9375 -3.59375 5.359375 -4.578125 6.421875 -4.578125 C 7.078125 -4.578125 7.203125 -3.921875 7.203125 -3.34375 L 7.203125 -0.75 C 7.203125 -0.375 6.921875 -0.34375 6.625 -0.34375 L 6.375 -0.34375 L 6.375 -0.015625 L 8.78125 -0.015625 L 8.78125 -0.34375 L 8.53125 -0.34375 C 8.234375 -0.34375 7.953125 -0.34375 7.953125 -0.78125 L 7.953125 -3.203125 C 7.953125 -3.5625 7.9375 -3.921875 7.75 -4.21875 C 7.5 -4.6875 6.9375 -4.8125 6.4375 -4.8125 L 6.3125 -4.8125 C 5.734375 -4.75 5.078125 -4.3125 4.921875 -3.75 L 4.90625 -3.75 C 4.78125 -4.53125 4.125 -4.8125 3.46875 -4.8125 C 2.78125 -4.8125 2.109375 -4.375 1.890625 -3.703125 L 1.875 -4.8125 Z M 0.359375 -4.6875 "/>
|
||||
<path style="stroke:none;" d="M 4.65625 -0.53125 L 4.65625 -0.390625 C 4.65625 -0.046875 4.921875 0 5.140625 0 C 5.21875 0 5.3125 -0.015625 5.40625 -0.015625 L 5.5625 -0.015625 C 5.78125 -0.015625 6.015625 -0.046875 6.015625 -0.484375 L 6.015625 -4.859375 C 6.015625 -4.921875 6.03125 -5 6.03125 -5.0625 C 6.03125 -5.421875 5.765625 -5.484375 5.53125 -5.484375 L 5.0625 -5.484375 C 4.75 -5.484375 4.625 -5.328125 4.625 -5.03125 L 4.625 -2.390625 C 4.625 -2.234375 4.640625 -2.078125 4.640625 -1.90625 C 4.640625 -1.046875 4.03125 -0.53125 3.171875 -0.53125 L 3.0625 -0.53125 C 2.625 -0.53125 2.28125 -0.578125 2.28125 -1.40625 L 2.28125 -5.1875 C 2.25 -5.359375 2.078125 -5.484375 1.90625 -5.484375 L 1.34375 -5.484375 C 1.046875 -5.484375 0.890625 -5.328125 0.890625 -5.015625 C 0.890625 -4.9375 0.890625 -4.859375 0.890625 -4.78125 L 0.890625 -1.5 C 0.890625 -1.171875 0.90625 -0.84375 1.046875 -0.53125 C 1.359375 0.046875 2.125 0.109375 2.703125 0.109375 C 3.40625 0.109375 4.09375 -0.0625 4.65625 -0.53125 Z M 4.65625 -0.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-5">
|
||||
<path style="stroke:none;" d="M 1.1875 -4.0625 C 1.46875 -4.40625 1.875 -4.640625 2.328125 -4.640625 C 3.125 -4.640625 3.53125 -3.953125 3.53125 -3.203125 L 3.53125 -2.84375 C 2.296875 -2.84375 0.46875 -2.4375 0.46875 -1.046875 C 0.46875 -0.234375 1.421875 0.09375 2.1875 0.09375 L 2.328125 0.09375 C 2.875 0.046875 3.46875 -0.34375 3.609375 -0.84375 L 3.625 -0.84375 C 3.65625 -0.390625 3.953125 0.046875 4.453125 0.046875 C 4.921875 0.046875 5.296875 -0.328125 5.34375 -0.796875 L 5.34375 -1.59375 L 5.078125 -1.59375 L 5.078125 -1.046875 C 5.078125 -0.75 5.03125 -0.296875 4.671875 -0.296875 C 4.34375 -0.296875 4.265625 -0.734375 4.265625 -1 C 4.265625 -1.125 4.28125 -1.25 4.28125 -1.375 L 4.28125 -2.875 C 4.28125 -3 4.28125 -3.125 4.28125 -3.265625 C 4.28125 -4.28125 3.328125 -4.859375 2.421875 -4.859375 C 1.734375 -4.859375 0.796875 -4.5 0.796875 -3.625 C 0.796875 -3.34375 0.984375 -3.125 1.265625 -3.125 C 1.53125 -3.125 1.734375 -3.328125 1.734375 -3.59375 C 1.734375 -3.84375 1.53125 -4.0625 1.265625 -4.0625 C 1.25 -4.0625 1.203125 -4.0625 1.1875 -4.0625 Z M 3.53125 -2.625 L 3.53125 -1.53125 C 3.53125 -0.78125 3.015625 -0.171875 2.296875 -0.125 L 2.25 -0.125 C 1.75 -0.125 1.28125 -0.53125 1.28125 -1.0625 L 1.28125 -1.109375 C 1.359375 -2.171875 2.515625 -2.59375 3.53125 -2.625 Z M 3.53125 -2.625 "/>
|
||||
<path style="stroke:none;" d="M 3.078125 -5.671875 C 1.859375 -5.5 0.4375 -5.171875 0.4375 -2.71875 C 0.4375 -1.984375 0.609375 -1.203125 1.109375 -0.671875 C 1.671875 -0.046875 2.578125 0.109375 3.375 0.109375 C 4.09375 0.109375 4.828125 -0.03125 5.46875 -0.375 C 5.5625 -0.421875 5.59375 -0.484375 5.59375 -0.5625 C 5.59375 -0.75 5.546875 -0.9375 5.53125 -1.125 C 5.53125 -1.203125 5.53125 -1.34375 5.421875 -1.375 L 5.390625 -1.375 C 5.265625 -1.375 5 -1.140625 4.8125 -1.046875 C 4.40625 -0.828125 3.9375 -0.734375 3.484375 -0.703125 L 3.40625 -0.703125 C 2.375 -0.703125 1.828125 -1.296875 1.828125 -2.71875 C 1.828125 -3.28125 1.84375 -3.953125 2.21875 -4.40625 C 2.515625 -4.75 2.96875 -4.859375 3.421875 -4.859375 C 4.046875 -4.859375 4.5 -4.71875 5.0625 -4.265625 C 5.109375 -4.21875 5.1875 -4.140625 5.265625 -4.140625 C 5.453125 -4.140625 5.46875 -4.65625 5.5 -4.84375 C 5.515625 -4.875 5.515625 -4.9375 5.515625 -4.984375 C 5.515625 -5.15625 4.8125 -5.453125 4.453125 -5.5625 C 4.078125 -5.65625 3.671875 -5.671875 3.28125 -5.671875 Z M 3.078125 -5.671875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-6">
|
||||
<path style="stroke:none;" d="M 3.953125 -4.140625 C 3.671875 -4.140625 3.453125 -3.953125 3.453125 -3.671875 C 3.453125 -3.421875 3.65625 -3.1875 3.921875 -3.1875 C 4.171875 -3.1875 4.390625 -3.390625 4.390625 -3.6875 L 4.390625 -3.78125 C 4.28125 -4.609375 3.296875 -4.859375 2.6875 -4.859375 C 1.359375 -4.859375 0.375 -3.625 0.375 -2.359375 C 0.375 -1.078125 1.359375 0.09375 2.71875 0.09375 C 3.421875 0.09375 4.140625 -0.3125 4.421875 -1.0625 C 4.453125 -1.140625 4.5 -1.21875 4.5 -1.296875 L 4.5 -1.34375 C 4.46875 -1.390625 4.421875 -1.421875 4.375 -1.421875 C 4.203125 -1.421875 4.140625 -0.96875 4 -0.8125 C 3.734375 -0.40625 3.296875 -0.15625 2.8125 -0.15625 C 1.65625 -0.15625 1.25 -1.421875 1.25 -2.359375 C 1.25 -3.265625 1.546875 -4.53125 2.65625 -4.609375 L 2.734375 -4.609375 C 3.140625 -4.609375 3.671875 -4.484375 3.953125 -4.140625 Z M 3.953125 -4.140625 "/>
|
||||
<path style="stroke:none;" d="M 2.265625 -4.65625 C 2.265625 -4.703125 2.265625 -4.75 2.265625 -4.8125 L 2.265625 -8.03125 C 2.265625 -8.109375 2.265625 -8.171875 2.265625 -8.265625 C 2.265625 -8.671875 2.015625 -8.71875 1.75 -8.71875 L 1.328125 -8.71875 C 1.09375 -8.71875 0.890625 -8.625 0.890625 -8.3125 L 0.890625 -0.5 C 0.890625 -0.234375 0.9375 -0.015625 1.34375 -0.015625 L 1.796875 -0.015625 C 2.015625 -0.015625 2.28125 -0.0625 2.28125 -0.4375 L 2.28125 -2.75 C 2.28125 -3.640625 2.65625 -4.859375 3.75 -4.859375 L 3.84375 -4.859375 C 4.625 -4.75 4.625 -4.140625 4.625 -3.578125 L 4.625 -0.484375 C 4.625 -0.25 4.703125 -0.015625 5 -0.015625 L 5.5625 -0.015625 C 5.859375 -0.015625 6.015625 -0.15625 6.015625 -0.484375 L 6.015625 -3.578125 C 6.015625 -4.609375 5.828125 -5.609375 4.15625 -5.609375 C 3.46875 -5.609375 2.578125 -5.234375 2.265625 -4.65625 Z M 2.265625 -4.65625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-7">
|
||||
<path style="stroke:none;" d="M 0.359375 -7.453125 L 0.359375 -7.125 L 0.5625 -7.125 C 0.90625 -7.125 1.1875 -7.09375 1.1875 -6.59375 L 1.1875 -0.78125 C 1.1875 -0.375 0.921875 -0.34375 0.625 -0.34375 L 0.359375 -0.34375 L 0.359375 -0.015625 L 2.765625 -0.015625 L 2.765625 -0.34375 L 2.515625 -0.34375 C 2.1875 -0.34375 1.9375 -0.375 1.9375 -0.78125 L 1.9375 -2.8125 C 1.9375 -3.59375 2.359375 -4.578125 3.40625 -4.578125 C 4.09375 -4.578125 4.1875 -3.875 4.1875 -3.234375 L 4.1875 -0.75 C 4.1875 -0.375 3.890625 -0.34375 3.59375 -0.34375 L 3.359375 -0.34375 L 3.359375 -0.015625 L 5.765625 -0.015625 L 5.765625 -0.34375 L 5.5 -0.34375 C 5.21875 -0.34375 4.921875 -0.34375 4.921875 -0.78125 L 4.921875 -3.21875 C 4.921875 -3.5625 4.921875 -3.921875 4.734375 -4.21875 C 4.484375 -4.65625 3.984375 -4.8125 3.484375 -4.8125 C 2.8125 -4.8125 2.078125 -4.390625 1.90625 -3.75 L 1.890625 -7.578125 Z M 0.359375 -7.453125 "/>
|
||||
<path style="stroke:none;" d="M 1.703125 -2.28125 L 5.296875 -2.28125 C 5.609375 -2.28125 5.734375 -2.46875 5.734375 -2.765625 C 5.734375 -3.5625 5.5625 -4.53125 5 -5.0625 C 4.5 -5.515625 3.875 -5.671875 3.21875 -5.671875 C 2.46875 -5.671875 1.65625 -5.484375 1.09375 -4.9375 C 0.546875 -4.390625 0.375 -3.578125 0.375 -2.828125 C 0.375 -2.09375 0.53125 -1.3125 1.015625 -0.75 C 1.5625 -0.125 2.46875 0.109375 3.28125 0.109375 C 3.984375 0.109375 4.65625 0 5.296875 -0.28125 L 5.515625 -0.390625 C 5.59375 -0.421875 5.65625 -0.484375 5.65625 -0.578125 C 5.65625 -0.609375 5.640625 -0.640625 5.640625 -0.6875 L 5.609375 -1.09375 C 5.609375 -1.1875 5.609375 -1.359375 5.46875 -1.359375 C 5.40625 -1.359375 5.3125 -1.296875 5.265625 -1.25 C 4.734375 -0.859375 4.09375 -0.640625 3.421875 -0.640625 C 2.609375 -0.640625 1.75 -1.09375 1.703125 -2.28125 Z M 1.671875 -2.96875 C 1.734375 -3.890625 2 -4.90625 3.21875 -4.90625 C 4.34375 -4.90625 4.578125 -3.84375 4.578125 -2.96875 Z M 1.671875 -2.96875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-8">
|
||||
<path style="stroke:none;" d="M 1.609375 -6.71875 C 1.609375 -5.984375 1.3125 -4.609375 0.203125 -4.609375 L 0.203125 -4.375 L 1.140625 -4.375 L 1.140625 -1.46875 C 1.140625 -1.140625 1.15625 -0.8125 1.3125 -0.53125 C 1.578125 -0.09375 2.078125 0.09375 2.546875 0.09375 C 3.421875 0.09375 3.609375 -0.859375 3.609375 -1.5625 L 3.609375 -1.984375 L 3.34375 -1.984375 C 3.34375 -1.828125 3.359375 -1.65625 3.359375 -1.5 C 3.359375 -0.984375 3.25 -0.15625 2.609375 -0.15625 C 1.984375 -0.15625 1.875 -0.921875 1.875 -1.421875 L 1.875 -4.375 L 3.421875 -4.375 L 3.421875 -4.703125 L 1.875 -4.703125 L 1.875 -6.71875 Z M 1.609375 -6.71875 "/>
|
||||
<path style="stroke:none;" d="M 2.21875 -4.625 L 2.21875 -5.0625 C 2.21875 -5.453125 2.03125 -5.5625 1.71875 -5.5625 C 1.625 -5.5625 1.53125 -5.546875 1.453125 -5.546875 L 1.296875 -5.546875 C 1.0625 -5.546875 0.890625 -5.40625 0.890625 -5.109375 L 0.890625 -0.4375 C 0.890625 -0.03125 1.1875 -0.015625 1.40625 -0.015625 L 1.859375 -0.015625 C 2.25 -0.015625 2.28125 -0.28125 2.28125 -0.5 L 2.28125 -3.109375 C 2.359375 -3.953125 2.828125 -4.859375 3.734375 -4.859375 C 4.59375 -4.859375 4.625 -4.203125 4.625 -3.671875 L 4.625 -0.4375 C 4.625 -0.03125 4.90625 -0.015625 5.140625 -0.015625 L 5.578125 -0.015625 C 5.84375 -0.015625 6.015625 -0.125 6.015625 -0.484375 L 6.015625 -2.015625 C 6.015625 -2.234375 6 -2.4375 6 -2.65625 C 6 -3.359375 6.109375 -4.34375 6.953125 -4.734375 C 7.109375 -4.8125 7.28125 -4.859375 7.453125 -4.859375 C 8.3125 -4.859375 8.359375 -4.25 8.359375 -3.71875 L 8.359375 -0.328125 C 8.453125 -0.03125 8.625 -0.015625 8.875 -0.015625 L 9.328125 -0.015625 C 9.671875 -0.015625 9.734375 -0.234375 9.734375 -0.46875 L 9.734375 -3.5625 C 9.734375 -4.5625 9.59375 -5.609375 7.859375 -5.609375 C 7.0625 -5.609375 6.359375 -5.1875 5.921875 -4.5625 C 5.65625 -5.375 5.015625 -5.609375 4.25 -5.609375 C 3.40625 -5.609375 2.828125 -5.3125 2.21875 -4.625 Z M 2.21875 -4.625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-9">
|
||||
<path style="stroke:none;" d="M 3.328125 -7.453125 L 3.328125 -7.125 L 3.453125 -7.125 C 3.875 -7.125 4.15625 -7.109375 4.15625 -6.453125 L 4.15625 -4.140625 C 3.796875 -4.546875 3.34375 -4.8125 2.765625 -4.8125 C 1.46875 -4.8125 0.375 -3.703125 0.375 -2.34375 C 0.375 -1.140625 1.296875 0.09375 2.65625 0.09375 C 3.25 0.09375 3.703125 -0.15625 4.125 -0.625 L 4.125 0.09375 L 5.6875 -0.015625 L 5.6875 -0.34375 L 5.546875 -0.34375 C 5.1875 -0.34375 4.859375 -0.375 4.859375 -0.890625 L 4.859375 -7.578125 Z M 1.25 -2.09375 L 1.25 -2.25 C 1.25 -3.0625 1.359375 -3.875 2.109375 -4.390625 C 2.328125 -4.515625 2.578125 -4.5625 2.8125 -4.5625 C 3.375 -4.5625 4.140625 -4.140625 4.140625 -3.453125 C 4.140625 -3.3125 4.125 -3.171875 4.125 -3.03125 L 4.125 -1.21875 C 4.125 -1.0625 4.0625 -0.984375 3.984375 -0.859375 C 3.703125 -0.4375 3.21875 -0.125 2.71875 -0.125 C 1.890625 -0.125 1.390625 -0.90625 1.28125 -1.640625 C 1.265625 -1.78125 1.265625 -1.9375 1.25 -2.09375 Z M 1.25 -2.09375 "/>
|
||||
<path style="stroke:none;" d="M 1.203125 -5.46875 C 0.953125 -5.4375 0.90625 -5.234375 0.90625 -4.96875 L 0.90625 -0.4375 C 0.90625 -0.0625 1.15625 -0.015625 1.40625 -0.015625 L 1.859375 -0.015625 C 2.046875 -0.015625 2.234375 -0.109375 2.265625 -0.3125 L 2.265625 -5.0625 C 2.265625 -5.375 2.0625 -5.5 1.78125 -5.5 C 1.6875 -5.5 1.578125 -5.484375 1.5 -5.484375 L 1.34375 -5.484375 C 1.296875 -5.484375 1.25 -5.484375 1.203125 -5.46875 Z M 1.140625 -8.578125 C 0.890625 -8.578125 0.828125 -8.296875 0.828125 -8.109375 C 0.828125 -8.03125 0.84375 -7.953125 0.84375 -7.875 L 0.84375 -7.515625 C 0.84375 -7.140625 1.09375 -7.09375 1.34375 -7.09375 L 1.890625 -7.09375 C 2.109375 -7.09375 2.328125 -7.1875 2.328125 -7.484375 L 2.328125 -8.140625 C 2.328125 -8.546875 2.09375 -8.59375 1.828125 -8.59375 L 1.28125 -8.59375 C 1.234375 -8.59375 1.1875 -8.59375 1.140625 -8.578125 Z M 1.140625 -8.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-10">
|
||||
<path style="stroke:none;" d="M 0.359375 -4.6875 L 0.359375 -4.359375 L 0.53125 -4.359375 C 0.859375 -4.359375 1.1875 -4.328125 1.1875 -3.8125 L 1.1875 -0.796875 C 1.1875 -0.34375 0.890625 -0.34375 0.421875 -0.34375 L 0.359375 -0.34375 L 0.359375 -0.015625 L 2.765625 -0.015625 L 2.765625 -0.34375 L 2.515625 -0.34375 C 2.1875 -0.34375 1.9375 -0.375 1.9375 -0.78125 L 1.9375 -2.8125 C 1.9375 -3.59375 2.359375 -4.578125 3.40625 -4.578125 C 4.09375 -4.578125 4.1875 -3.875 4.1875 -3.234375 L 4.1875 -0.75 C 4.1875 -0.375 3.890625 -0.34375 3.59375 -0.34375 L 3.359375 -0.34375 L 3.359375 -0.015625 L 5.765625 -0.015625 L 5.765625 -0.34375 L 5.5 -0.34375 C 5.21875 -0.34375 4.921875 -0.34375 4.921875 -0.765625 L 4.921875 -3.234375 C 4.921875 -3.5625 4.921875 -3.890625 4.75 -4.1875 C 4.5 -4.671875 3.953125 -4.8125 3.4375 -4.8125 C 2.75 -4.8125 2.078125 -4.3125 1.890625 -3.703125 L 1.875 -4.8125 Z M 0.359375 -4.6875 "/>
|
||||
<path style="stroke:none;" d="M 1.21875 -5.484375 L 0.65625 -5.484375 C 0.40625 -5.484375 0.25 -5.328125 0.25 -5.109375 C 0.25 -4.84375 0.453125 -4.734375 0.734375 -4.734375 L 1.1875 -4.734375 L 1.1875 -1.515625 C 1.1875 -0.734375 1.390625 0.109375 2.40625 0.109375 C 3.0625 0.109375 3.6875 -0.046875 4.296875 -0.3125 C 4.359375 -0.34375 4.453125 -0.375 4.46875 -0.484375 C 4.46875 -0.78125 4.296875 -1.09375 4.21875 -1.09375 C 4.125 -1.09375 3.96875 -0.953125 3.859375 -0.890625 C 3.59375 -0.8125 3.34375 -0.703125 3.0625 -0.703125 C 2.53125 -0.703125 2.515625 -1.28125 2.515625 -1.75 L 2.515625 -4.734375 L 3.796875 -4.734375 C 4 -4.734375 4.25 -4.828125 4.25 -5.109375 C 4.25 -5.359375 4.0625 -5.484375 3.796875 -5.484375 L 2.515625 -5.484375 L 2.515625 -6.609375 C 2.515625 -6.84375 2.421875 -7.046875 2.109375 -7.046875 L 1.96875 -7.046875 C 1.90625 -7.046875 1.8125 -7.0625 1.71875 -7.0625 C 1.453125 -7.0625 1.21875 -6.984375 1.21875 -6.59375 Z M 1.21875 -5.484375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-11">
|
||||
<path style="stroke:none;" d="M 0.953125 -0.40625 C 1.140625 -0.078125 1.71875 0.09375 2.109375 0.09375 C 2.875 0.09375 3.8125 -0.15625 3.90625 -1.3125 C 3.90625 -2.03125 3.515625 -2.515625 2.90625 -2.765625 C 2.640625 -2.875 2.34375 -2.90625 2.078125 -2.96875 L 1.84375 -3.015625 C 1.421875 -3.09375 0.859375 -3.3125 0.859375 -3.84375 C 0.859375 -4.484375 1.578125 -4.671875 2.109375 -4.671875 C 2.90625 -4.671875 3.28125 -4.171875 3.375 -3.453125 C 3.375 -3.359375 3.375 -3.25 3.5 -3.25 C 3.625 -3.25 3.625 -3.359375 3.625 -3.453125 L 3.625 -4.734375 C 3.625 -4.78125 3.59375 -4.859375 3.515625 -4.859375 C 3.34375 -4.859375 3.234375 -4.5625 3.125 -4.5625 C 3.046875 -4.578125 2.984375 -4.640625 2.921875 -4.671875 C 2.6875 -4.8125 2.40625 -4.859375 2.125 -4.859375 C 1.46875 -4.859375 0.359375 -4.640625 0.359375 -3.5625 C 0.359375 -2.375 1.671875 -2.25 2.4375 -2.09375 C 2.90625 -2 3.390625 -1.671875 3.40625 -1.140625 C 3.40625 -0.34375 2.703125 -0.125 2.140625 -0.125 C 1.28125 -0.125 0.875 -0.796875 0.671875 -1.53125 C 0.640625 -1.640625 0.671875 -1.875 0.484375 -1.875 C 0.421875 -1.875 0.359375 -1.828125 0.359375 -1.75 L 0.359375 -0.3125 C 0.359375 -0.25 0.34375 -0.1875 0.34375 -0.125 C 0.34375 -0.03125 0.375 0.09375 0.484375 0.09375 C 0.640625 0.078125 0.78125 -0.265625 0.953125 -0.40625 Z M 0.953125 -0.40625 "/>
|
||||
<path style="stroke:none;" d="M 4.375 -4.09375 L 4.390625 -4.09375 C 4.40625 -3.75 4.546875 -3.390625 4.640625 -3.0625 C 4.859375 -2.21875 5.109375 -1.375 5.375 -0.546875 C 5.53125 -0.078125 5.75 -0.015625 6.09375 -0.015625 L 6.84375 -0.015625 C 7.28125 -0.015625 7.359375 -0.265625 7.453125 -0.53125 C 7.921875 -1.953125 8.3125 -3.390625 8.75 -4.8125 C 8.78125 -4.9375 8.859375 -5.078125 8.859375 -5.21875 C 8.859375 -5.421875 8.671875 -5.484375 8.46875 -5.484375 L 8.265625 -5.484375 C 8.03125 -5.484375 7.796875 -5.46875 7.65625 -5.21875 C 7.578125 -5.03125 7.53125 -4.8125 7.46875 -4.609375 C 7.1875 -3.6875 6.890625 -2.765625 6.640625 -1.84375 C 6.546875 -1.578125 6.4375 -1.3125 6.390625 -1.046875 C 6.375 -1.140625 6.328125 -1.234375 6.3125 -1.3125 L 6.171875 -1.78125 C 5.875 -2.703125 5.59375 -3.625 5.328125 -4.546875 C 5.15625 -4.96875 5.21875 -5.484375 4.515625 -5.484375 C 4.09375 -5.484375 3.96875 -5.25 3.890625 -4.953125 C 3.609375 -4.0625 3.34375 -3.171875 3.078125 -2.28125 C 2.96875 -1.921875 2.875 -1.546875 2.734375 -1.203125 C 2.40625 -2.390625 2.046875 -3.5625 1.65625 -4.71875 C 1.53125 -5.109375 1.5 -5.484375 0.90625 -5.484375 L 0.703125 -5.484375 C 0.53125 -5.484375 0.28125 -5.46875 0.28125 -5.203125 C 0.28125 -5.078125 0.359375 -4.953125 0.375 -4.84375 L 1.671875 -0.609375 C 1.71875 -0.453125 1.75 -0.28125 1.859375 -0.171875 C 1.984375 -0.03125 2.171875 0 2.359375 0 C 2.46875 0 2.5625 -0.015625 2.65625 -0.015625 L 2.78125 -0.015625 C 3.375 -0.015625 3.421875 -0.671875 3.53125 -1.046875 C 3.734375 -1.734375 3.9375 -2.421875 4.140625 -3.109375 C 4.21875 -3.4375 4.34375 -3.765625 4.375 -4.09375 Z M 4.375 -4.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-12">
|
||||
<path style="stroke:none;" d="M 2.546875 -4.859375 C 1.15625 -4.703125 0.3125 -3.5625 0.3125 -2.328125 C 0.3125 -1.171875 1.203125 0.109375 2.703125 0.109375 C 4.0625 0.109375 5.09375 -1.0625 5.09375 -2.34375 C 5.09375 -3.625 4.125 -4.859375 2.65625 -4.859375 Z M 1.1875 -2.09375 C 1.171875 -2.1875 1.171875 -2.28125 1.171875 -2.359375 C 1.171875 -3.234375 1.375 -4.625 2.703125 -4.625 C 3.84375 -4.625 4.21875 -3.546875 4.21875 -2.5 C 4.21875 -1.609375 4.109375 -0.234375 2.765625 -0.15625 L 2.703125 -0.15625 C 1.828125 -0.15625 1.296875 -0.921875 1.21875 -1.765625 C 1.203125 -1.875 1.203125 -1.984375 1.1875 -2.09375 Z M 1.1875 -2.09375 "/>
|
||||
<path style="stroke:none;" d="M 2.21875 -4.625 L 2.21875 -5.0625 C 2.21875 -5.3125 2.171875 -5.546875 1.8125 -5.546875 L 1.65625 -5.546875 C 1.578125 -5.546875 1.5 -5.5625 1.40625 -5.5625 C 1.140625 -5.5625 0.890625 -5.5 0.890625 -5.125 L 0.890625 -0.4375 C 0.890625 -0.03125 1.1875 -0.015625 1.40625 -0.015625 L 1.859375 -0.015625 C 2.25 -0.015625 2.28125 -0.265625 2.28125 -0.5 L 2.28125 -2.5625 C 2.28125 -3.03125 2.28125 -3.453125 2.46875 -3.890625 C 2.671875 -4.40625 3.15625 -4.859375 3.75 -4.859375 L 3.84375 -4.859375 C 4.609375 -4.78125 4.625 -4.203125 4.625 -3.671875 L 4.625 -0.484375 C 4.625 -0.25 4.703125 -0.015625 5 -0.015625 L 5.5625 -0.015625 C 5.875 -0.015625 6.03125 -0.171875 6.03125 -0.46875 C 6.03125 -0.546875 6.015625 -0.625 6.015625 -0.6875 L 6.015625 -3.5625 C 6.015625 -4.5625 5.859375 -5.609375 4.140625 -5.609375 L 4 -5.609375 C 3.265625 -5.5625 2.71875 -5.1875 2.21875 -4.625 Z M 2.21875 -4.625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-13">
|
||||
<path style="stroke:none;" d="M 0.203125 -4.703125 L 0.203125 -4.375 L 0.34375 -4.375 C 0.953125 -4.375 1 -4 1.25 -3.28125 C 1.609375 -2.234375 1.984375 -1.21875 2.34375 -0.1875 C 2.390625 -0.078125 2.421875 0.078125 2.5625 0.09375 L 2.578125 0.09375 C 2.828125 0.09375 2.984375 -0.625 3.125 -1 C 3.34375 -1.5625 3.53125 -2.125 3.734375 -2.6875 C 3.796875 -2.859375 3.859375 -3.015625 3.90625 -3.203125 L 3.921875 -3.203125 C 4.09375 -2.4375 4.453125 -1.71875 4.703125 -0.984375 C 4.828125 -0.609375 5 0.09375 5.21875 0.09375 L 5.25 0.09375 C 5.40625 0.09375 5.4375 -0.0625 5.46875 -0.1875 C 5.78125 -1.09375 6.125 -2 6.453125 -2.921875 C 6.703125 -3.609375 6.859375 -4.375 7.625 -4.375 L 7.625 -4.703125 L 6.875 -4.671875 L 5.859375 -4.671875 L 5.859375 -4.375 C 6.140625 -4.359375 6.4375 -4.203125 6.46875 -3.90625 L 6.46875 -3.859375 C 6.46875 -3.71875 6.40625 -3.578125 6.34375 -3.4375 C 6.078125 -2.65625 5.8125 -1.875 5.515625 -1.109375 C 5.484375 -1.03125 5.453125 -0.9375 5.4375 -0.84375 L 5.421875 -0.84375 C 5.140625 -1.84375 4.71875 -2.84375 4.359375 -3.8125 C 4.328125 -3.890625 4.28125 -3.984375 4.28125 -4.078125 C 4.28125 -4.359375 4.6875 -4.375 4.90625 -4.375 L 4.90625 -4.703125 L 2.828125 -4.703125 L 2.828125 -4.375 L 2.984375 -4.375 C 3.40625 -4.375 3.546875 -4.25 3.671875 -3.84375 C 3.703125 -3.78125 3.75 -3.671875 3.75 -3.59375 L 3.75 -3.5625 C 3.71875 -3.359375 3.59375 -3.109375 3.515625 -2.890625 C 3.375 -2.46875 3.234375 -2.078125 3.078125 -1.65625 C 3 -1.421875 2.890625 -1.203125 2.828125 -0.953125 C 2.765625 -1.21875 2.65625 -1.46875 2.5625 -1.71875 C 2.3125 -2.4375 2.046875 -3.140625 1.796875 -3.84375 C 1.78125 -3.921875 1.734375 -4 1.734375 -4.078125 C 1.734375 -4.359375 2.109375 -4.375 2.296875 -4.375 L 2.359375 -4.375 L 2.359375 -4.703125 Z M 0.203125 -4.703125 "/>
|
||||
<path style="stroke:none;" d="M 2.046875 -1.09375 C 2.578125 -1.5625 3.140625 -2.078125 3.703125 -2.515625 L 4.5 -3.125 C 5.21875 -3.6875 5.96875 -4.40625 6.03125 -5.375 L 6.03125 -5.484375 C 6.03125 -7.125 4.65625 -8.09375 3.15625 -8.09375 C 2.0625 -8.09375 1.1875 -7.59375 0.703125 -6.640625 C 0.65625 -6.53125 0.578125 -6.390625 0.578125 -6.296875 L 0.578125 -6.28125 C 0.578125 -6.203125 0.640625 -6.140625 0.6875 -6.078125 L 0.96875 -5.765625 C 1.046875 -5.671875 1.15625 -5.484375 1.265625 -5.484375 C 1.40625 -5.484375 1.484375 -5.90625 1.5625 -6.078125 C 1.8125 -6.640625 2.265625 -7.0625 2.984375 -7.0625 C 3.828125 -7.0625 4.609375 -6.484375 4.609375 -5.515625 C 4.609375 -4.546875 3.9375 -3.875 3.3125 -3.265625 C 2.515625 -2.515625 1.703125 -1.78125 0.921875 -1.046875 C 0.8125 -0.9375 0.65625 -0.84375 0.65625 -0.671875 C 0.65625 -0.328125 0.671875 -0.015625 1.171875 -0.015625 L 5.625 -0.015625 C 6 -0.015625 6.03125 -0.265625 6.03125 -0.484375 L 6.03125 -0.59375 C 6.03125 -0.84375 6.015625 -1.125 5.609375 -1.125 L 4.84375 -1.125 C 3.90625 -1.125 2.96875 -1.125 2.046875 -1.09375 Z M 2.046875 -1.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-14">
|
||||
<path style="stroke:none;" d="M 3.09375 -5.671875 C 2.375 -5.578125 1.6875 -5.46875 1.140625 -4.953125 C 0.53125 -4.375 0.375 -3.5 0.375 -2.71875 C 0.375 -1.96875 0.53125 -1.15625 1.078125 -0.625 C 1.703125 0 2.625 0.109375 3.484375 0.109375 C 4.21875 0.109375 5.09375 -0.078125 5.640625 -0.640625 C 6.1875 -1.171875 6.328125 -1.953125 6.328125 -2.6875 C 6.328125 -3.453125 6.1875 -4.296875 5.640625 -4.875 C 5.03125 -5.515625 4.109375 -5.671875 3.265625 -5.671875 Z M 1.75 -2.421875 L 1.75 -2.953125 C 1.75 -3.796875 1.84375 -4.90625 3.34375 -4.90625 C 4.8125 -4.90625 4.953125 -3.8125 4.953125 -2.875 L 4.953125 -2.796875 C 4.953125 -1.90625 4.90625 -0.703125 3.328125 -0.703125 C 2.890625 -0.703125 2.421875 -0.828125 2.125 -1.171875 C 1.828125 -1.515625 1.8125 -1.984375 1.75 -2.421875 Z M 1.75 -2.421875 "/>
|
||||
</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 0.203125 -7.421875 L 0.203125 -7.125 L 0.4375 -7.125 C 0.984375 -7.125 1.0625 -6.890625 1.203125 -6.453125 C 1.75 -4.859375 2.234375 -3.265625 2.765625 -1.671875 C 2.9375 -1.171875 3.09375 -0.703125 3.25 -0.203125 C 3.296875 -0.046875 3.328125 0.21875 3.53125 0.21875 L 3.5625 0.21875 C 3.71875 0.1875 3.765625 -0.09375 3.8125 -0.25 C 4.296875 -1.703125 4.765625 -3.15625 5.21875 -4.59375 C 5.328125 -4.921875 5.4375 -5.28125 5.5625 -5.609375 C 5.875 -4.828125 6.078125 -4.046875 6.34375 -3.234375 C 6.640625 -2.25 6.984375 -1.25 7.3125 -0.25 L 7.40625 0.046875 C 7.421875 0.125 7.46875 0.203125 7.5625 0.21875 L 7.59375 0.21875 C 7.78125 0.21875 7.8125 -0.03125 7.875 -0.1875 C 8.015625 -0.671875 8.1875 -1.140625 8.34375 -1.625 C 8.796875 -3.015625 9.234375 -4.421875 9.703125 -5.8125 C 9.90625 -6.390625 9.984375 -7.125 10.921875 -7.125 L 10.921875 -7.453125 L 8.765625 -7.453125 L 8.765625 -7.125 C 9.125 -7.125 9.65625 -6.96875 9.65625 -6.5625 C 9.65625 -6.390625 9.546875 -6.1875 9.484375 -6.015625 C 9.375 -5.65625 9.265625 -5.296875 9.140625 -4.9375 L 8.359375 -2.515625 C 8.21875 -2.078125 8.0625 -1.640625 7.921875 -1.203125 C 7.75 -1.625 7.640625 -2.078125 7.5 -2.515625 C 7.0625 -3.890625 6.65625 -5.296875 6.15625 -6.65625 C 6.140625 -6.703125 6.125 -6.765625 6.125 -6.8125 C 6.125 -7.125 6.65625 -7.125 6.96875 -7.125 L 6.96875 -7.453125 L 5.71875 -7.453125 L 5.484375 -7.421875 L 4.28125 -7.421875 L 4.28125 -7.125 L 4.46875 -7.125 C 4.671875 -7.125 4.890625 -7.125 5.03125 -7.03125 C 5.25 -6.84375 5.328125 -6.328125 5.375 -6.1875 C 5.40625 -6.140625 5.40625 -6.109375 5.40625 -6.0625 L 5.40625 -6.03125 C 5.40625 -5.921875 5.328125 -5.796875 5.296875 -5.6875 C 4.890625 -4.3125 4.390625 -2.953125 3.96875 -1.578125 C 3.921875 -1.453125 3.875 -1.328125 3.84375 -1.203125 C 3.78125 -1.609375 3.5625 -2.078125 3.421875 -2.484375 C 3.015625 -3.796875 2.59375 -5.109375 2.15625 -6.40625 C 2.109375 -6.53125 2.046875 -6.703125 2.046875 -6.828125 L 2.046875 -6.859375 C 2.109375 -7.125 2.546875 -7.125 2.828125 -7.125 L 2.890625 -7.125 L 2.890625 -7.453125 L 1.640625 -7.453125 L 1.40625 -7.421875 Z M 0.203125 -7.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-2">
|
||||
<path style="stroke:none;" d="M 1.1875 -2.546875 L 4.34375 -2.546875 C 4.453125 -2.546875 4.5 -2.59375 4.5 -2.703125 C 4.5 -3.78125 3.921875 -4.859375 2.59375 -4.859375 C 1.28125 -4.859375 0.3125 -3.671875 0.3125 -2.421875 C 0.3125 -1.234375 1.171875 0.09375 2.640625 0.09375 C 3.46875 0.09375 4.171875 -0.34375 4.46875 -1.1875 C 4.484375 -1.234375 4.5 -1.265625 4.5 -1.3125 C 4.5 -1.375 4.4375 -1.421875 4.390625 -1.421875 C 4.203125 -1.421875 4.140625 -1.0625 4.078125 -0.9375 C 3.8125 -0.484375 3.296875 -0.15625 2.765625 -0.15625 C 2.15625 -0.15625 1.625 -0.59375 1.390625 -1.140625 C 1.203125 -1.578125 1.1875 -2.078125 1.1875 -2.546875 Z M 1.203125 -2.765625 C 1.203125 -3.609375 1.671875 -4.640625 2.578125 -4.640625 C 3.515625 -4.640625 3.796875 -3.546875 3.796875 -2.765625 Z M 1.203125 -2.765625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-3">
|
||||
<path style="stroke:none;" d="M 0.3125 -4.6875 L 0.3125 -4.359375 L 0.484375 -4.359375 C 0.8125 -4.359375 1.140625 -4.328125 1.140625 -3.8125 L 1.140625 -0.796875 C 1.140625 -0.34375 0.84375 -0.34375 0.375 -0.34375 L 0.3125 -0.34375 L 0.3125 -0.015625 L 2.90625 -0.015625 L 2.90625 -0.34375 C 2.78125 -0.34375 2.65625 -0.328125 2.515625 -0.328125 C 2.171875 -0.328125 1.859375 -0.375 1.859375 -0.78125 L 1.859375 -2.265625 C 1.859375 -3.125 2.03125 -4.578125 3.125 -4.578125 C 3.171875 -4.578125 3.21875 -4.5625 3.265625 -4.5625 C 3.109375 -4.5 3.015625 -4.3125 3.015625 -4.15625 C 3.015625 -3.921875 3.203125 -3.734375 3.421875 -3.703125 C 3.734375 -3.703125 3.921875 -3.90625 3.921875 -4.171875 C 3.921875 -4.59375 3.5 -4.8125 3.140625 -4.8125 C 2.453125 -4.8125 1.9375 -4.1875 1.8125 -3.625 L 1.796875 -4.8125 Z M 0.3125 -4.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-4">
|
||||
<path style="stroke:none;" d="M 0.359375 -4.6875 L 0.359375 -4.359375 L 0.53125 -4.359375 C 0.859375 -4.359375 1.1875 -4.328125 1.1875 -3.8125 L 1.1875 -0.796875 C 1.1875 -0.34375 0.890625 -0.34375 0.421875 -0.34375 L 0.359375 -0.34375 L 0.359375 -0.015625 L 2.765625 -0.015625 L 2.765625 -0.34375 L 2.515625 -0.34375 C 2.1875 -0.34375 1.9375 -0.375 1.9375 -0.78125 L 1.9375 -2.828125 C 1.9375 -3.59375 2.359375 -4.578125 3.40625 -4.578125 C 4.0625 -4.578125 4.203125 -3.921875 4.203125 -3.34375 L 4.203125 -0.75 C 4.203125 -0.375 3.90625 -0.34375 3.609375 -0.34375 L 3.375 -0.34375 L 3.375 -0.015625 L 5.765625 -0.015625 L 5.765625 -0.34375 L 5.515625 -0.34375 C 5.203125 -0.34375 4.9375 -0.375 4.9375 -0.78125 L 4.9375 -2.828125 C 4.9375 -3.59375 5.359375 -4.578125 6.421875 -4.578125 C 7.078125 -4.578125 7.203125 -3.921875 7.203125 -3.34375 L 7.203125 -0.75 C 7.203125 -0.375 6.921875 -0.34375 6.625 -0.34375 L 6.375 -0.34375 L 6.375 -0.015625 L 8.78125 -0.015625 L 8.78125 -0.34375 L 8.53125 -0.34375 C 8.234375 -0.34375 7.953125 -0.34375 7.953125 -0.78125 L 7.953125 -3.203125 C 7.953125 -3.5625 7.9375 -3.921875 7.75 -4.21875 C 7.5 -4.6875 6.9375 -4.8125 6.4375 -4.8125 L 6.3125 -4.8125 C 5.734375 -4.75 5.078125 -4.3125 4.921875 -3.75 L 4.90625 -3.75 C 4.78125 -4.53125 4.125 -4.8125 3.46875 -4.8125 C 2.78125 -4.8125 2.109375 -4.375 1.890625 -3.703125 L 1.875 -4.8125 Z M 0.359375 -4.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-5">
|
||||
<path style="stroke:none;" d="M 1.1875 -4.0625 C 1.46875 -4.40625 1.875 -4.640625 2.328125 -4.640625 C 3.125 -4.640625 3.53125 -3.953125 3.53125 -3.203125 L 3.53125 -2.84375 C 2.296875 -2.84375 0.46875 -2.4375 0.46875 -1.046875 C 0.46875 -0.234375 1.421875 0.09375 2.1875 0.09375 L 2.328125 0.09375 C 2.875 0.046875 3.46875 -0.34375 3.609375 -0.84375 L 3.625 -0.84375 C 3.65625 -0.390625 3.953125 0.046875 4.453125 0.046875 C 4.921875 0.046875 5.296875 -0.328125 5.34375 -0.796875 L 5.34375 -1.59375 L 5.078125 -1.59375 L 5.078125 -1.046875 C 5.078125 -0.75 5.03125 -0.296875 4.671875 -0.296875 C 4.34375 -0.296875 4.265625 -0.734375 4.265625 -1 C 4.265625 -1.125 4.28125 -1.25 4.28125 -1.375 L 4.28125 -2.875 C 4.28125 -3 4.28125 -3.125 4.28125 -3.265625 C 4.28125 -4.28125 3.328125 -4.859375 2.421875 -4.859375 C 1.734375 -4.859375 0.796875 -4.5 0.796875 -3.625 C 0.796875 -3.34375 0.984375 -3.125 1.265625 -3.125 C 1.53125 -3.125 1.734375 -3.328125 1.734375 -3.59375 C 1.734375 -3.84375 1.53125 -4.0625 1.265625 -4.0625 C 1.25 -4.0625 1.203125 -4.0625 1.1875 -4.0625 Z M 3.53125 -2.625 L 3.53125 -1.53125 C 3.53125 -0.78125 3.015625 -0.171875 2.296875 -0.125 L 2.25 -0.125 C 1.75 -0.125 1.28125 -0.53125 1.28125 -1.0625 L 1.28125 -1.109375 C 1.359375 -2.171875 2.515625 -2.59375 3.53125 -2.625 Z M 3.53125 -2.625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-6">
|
||||
<path style="stroke:none;" d="M 3.953125 -4.140625 C 3.671875 -4.140625 3.453125 -3.953125 3.453125 -3.671875 C 3.453125 -3.421875 3.65625 -3.1875 3.921875 -3.1875 C 4.171875 -3.1875 4.390625 -3.390625 4.390625 -3.6875 L 4.390625 -3.78125 C 4.28125 -4.609375 3.296875 -4.859375 2.6875 -4.859375 C 1.359375 -4.859375 0.375 -3.625 0.375 -2.359375 C 0.375 -1.078125 1.359375 0.09375 2.71875 0.09375 C 3.421875 0.09375 4.140625 -0.3125 4.421875 -1.0625 C 4.453125 -1.140625 4.5 -1.21875 4.5 -1.296875 L 4.5 -1.34375 C 4.46875 -1.390625 4.421875 -1.421875 4.375 -1.421875 C 4.203125 -1.421875 4.140625 -0.96875 4 -0.8125 C 3.734375 -0.40625 3.296875 -0.15625 2.8125 -0.15625 C 1.65625 -0.15625 1.25 -1.421875 1.25 -2.359375 C 1.25 -3.265625 1.546875 -4.53125 2.65625 -4.609375 L 2.734375 -4.609375 C 3.140625 -4.609375 3.671875 -4.484375 3.953125 -4.140625 Z M 3.953125 -4.140625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-7">
|
||||
<path style="stroke:none;" d="M 0.359375 -7.453125 L 0.359375 -7.125 L 0.5625 -7.125 C 0.90625 -7.125 1.1875 -7.09375 1.1875 -6.59375 L 1.1875 -0.78125 C 1.1875 -0.375 0.921875 -0.34375 0.625 -0.34375 L 0.359375 -0.34375 L 0.359375 -0.015625 L 2.765625 -0.015625 L 2.765625 -0.34375 L 2.515625 -0.34375 C 2.1875 -0.34375 1.9375 -0.375 1.9375 -0.78125 L 1.9375 -2.8125 C 1.9375 -3.59375 2.359375 -4.578125 3.40625 -4.578125 C 4.09375 -4.578125 4.1875 -3.875 4.1875 -3.234375 L 4.1875 -0.75 C 4.1875 -0.375 3.890625 -0.34375 3.59375 -0.34375 L 3.359375 -0.34375 L 3.359375 -0.015625 L 5.765625 -0.015625 L 5.765625 -0.34375 L 5.5 -0.34375 C 5.21875 -0.34375 4.921875 -0.34375 4.921875 -0.78125 L 4.921875 -3.21875 C 4.921875 -3.5625 4.921875 -3.921875 4.734375 -4.21875 C 4.484375 -4.65625 3.984375 -4.8125 3.484375 -4.8125 C 2.8125 -4.8125 2.078125 -4.390625 1.90625 -3.75 L 1.890625 -7.578125 Z M 0.359375 -7.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-8">
|
||||
<path style="stroke:none;" d="M 1.609375 -6.71875 C 1.609375 -5.984375 1.3125 -4.609375 0.203125 -4.609375 L 0.203125 -4.375 L 1.140625 -4.375 L 1.140625 -1.46875 C 1.140625 -1.140625 1.15625 -0.8125 1.3125 -0.53125 C 1.578125 -0.09375 2.078125 0.09375 2.546875 0.09375 C 3.421875 0.09375 3.609375 -0.859375 3.609375 -1.5625 L 3.609375 -1.984375 L 3.34375 -1.984375 C 3.34375 -1.828125 3.359375 -1.65625 3.359375 -1.5 C 3.359375 -0.984375 3.25 -0.15625 2.609375 -0.15625 C 1.984375 -0.15625 1.875 -0.921875 1.875 -1.421875 L 1.875 -4.375 L 3.421875 -4.375 L 3.421875 -4.703125 L 1.875 -4.703125 L 1.875 -6.71875 Z M 1.609375 -6.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-9">
|
||||
<path style="stroke:none;" d="M 3.328125 -7.453125 L 3.328125 -7.125 L 3.453125 -7.125 C 3.875 -7.125 4.15625 -7.109375 4.15625 -6.453125 L 4.15625 -4.140625 C 3.796875 -4.546875 3.34375 -4.8125 2.765625 -4.8125 C 1.46875 -4.8125 0.375 -3.703125 0.375 -2.34375 C 0.375 -1.140625 1.296875 0.09375 2.65625 0.09375 C 3.25 0.09375 3.703125 -0.15625 4.125 -0.625 L 4.125 0.09375 L 5.6875 -0.015625 L 5.6875 -0.34375 L 5.546875 -0.34375 C 5.1875 -0.34375 4.859375 -0.375 4.859375 -0.890625 L 4.859375 -7.578125 Z M 1.25 -2.09375 L 1.25 -2.25 C 1.25 -3.0625 1.359375 -3.875 2.109375 -4.390625 C 2.328125 -4.515625 2.578125 -4.5625 2.8125 -4.5625 C 3.375 -4.5625 4.140625 -4.140625 4.140625 -3.453125 C 4.140625 -3.3125 4.125 -3.171875 4.125 -3.03125 L 4.125 -1.21875 C 4.125 -1.0625 4.0625 -0.984375 3.984375 -0.859375 C 3.703125 -0.4375 3.21875 -0.125 2.71875 -0.125 C 1.890625 -0.125 1.390625 -0.90625 1.28125 -1.640625 C 1.265625 -1.78125 1.265625 -1.9375 1.25 -2.09375 Z M 1.25 -2.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-10">
|
||||
<path style="stroke:none;" d="M 0.359375 -4.6875 L 0.359375 -4.359375 L 0.53125 -4.359375 C 0.859375 -4.359375 1.1875 -4.328125 1.1875 -3.8125 L 1.1875 -0.796875 C 1.1875 -0.34375 0.890625 -0.34375 0.421875 -0.34375 L 0.359375 -0.34375 L 0.359375 -0.015625 L 2.765625 -0.015625 L 2.765625 -0.34375 L 2.515625 -0.34375 C 2.1875 -0.34375 1.9375 -0.375 1.9375 -0.78125 L 1.9375 -2.8125 C 1.9375 -3.59375 2.359375 -4.578125 3.40625 -4.578125 C 4.09375 -4.578125 4.1875 -3.875 4.1875 -3.234375 L 4.1875 -0.75 C 4.1875 -0.375 3.890625 -0.34375 3.59375 -0.34375 L 3.359375 -0.34375 L 3.359375 -0.015625 L 5.765625 -0.015625 L 5.765625 -0.34375 L 5.5 -0.34375 C 5.21875 -0.34375 4.921875 -0.34375 4.921875 -0.765625 L 4.921875 -3.234375 C 4.921875 -3.5625 4.921875 -3.890625 4.75 -4.1875 C 4.5 -4.671875 3.953125 -4.8125 3.4375 -4.8125 C 2.75 -4.8125 2.078125 -4.3125 1.890625 -3.703125 L 1.875 -4.8125 Z M 0.359375 -4.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-11">
|
||||
<path style="stroke:none;" d="M 0.953125 -0.40625 C 1.140625 -0.078125 1.71875 0.09375 2.109375 0.09375 C 2.875 0.09375 3.8125 -0.15625 3.90625 -1.3125 C 3.90625 -2.03125 3.515625 -2.515625 2.90625 -2.765625 C 2.640625 -2.875 2.34375 -2.90625 2.078125 -2.96875 L 1.84375 -3.015625 C 1.421875 -3.09375 0.859375 -3.3125 0.859375 -3.84375 C 0.859375 -4.484375 1.578125 -4.671875 2.109375 -4.671875 C 2.90625 -4.671875 3.28125 -4.171875 3.375 -3.453125 C 3.375 -3.359375 3.375 -3.25 3.5 -3.25 C 3.625 -3.25 3.625 -3.359375 3.625 -3.453125 L 3.625 -4.734375 C 3.625 -4.78125 3.59375 -4.859375 3.515625 -4.859375 C 3.34375 -4.859375 3.234375 -4.5625 3.125 -4.5625 C 3.046875 -4.578125 2.984375 -4.640625 2.921875 -4.671875 C 2.6875 -4.8125 2.40625 -4.859375 2.125 -4.859375 C 1.46875 -4.859375 0.359375 -4.640625 0.359375 -3.5625 C 0.359375 -2.375 1.671875 -2.25 2.4375 -2.09375 C 2.90625 -2 3.390625 -1.671875 3.40625 -1.140625 C 3.40625 -0.34375 2.703125 -0.125 2.140625 -0.125 C 1.28125 -0.125 0.875 -0.796875 0.671875 -1.53125 C 0.640625 -1.640625 0.671875 -1.875 0.484375 -1.875 C 0.421875 -1.875 0.359375 -1.828125 0.359375 -1.75 L 0.359375 -0.3125 C 0.359375 -0.25 0.34375 -0.1875 0.34375 -0.125 C 0.34375 -0.03125 0.375 0.09375 0.484375 0.09375 C 0.640625 0.078125 0.78125 -0.265625 0.953125 -0.40625 Z M 0.953125 -0.40625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-12">
|
||||
<path style="stroke:none;" d="M 2.546875 -4.859375 C 1.15625 -4.703125 0.3125 -3.5625 0.3125 -2.328125 C 0.3125 -1.171875 1.203125 0.109375 2.703125 0.109375 C 4.0625 0.109375 5.09375 -1.0625 5.09375 -2.34375 C 5.09375 -3.625 4.125 -4.859375 2.65625 -4.859375 Z M 1.1875 -2.09375 C 1.171875 -2.1875 1.171875 -2.28125 1.171875 -2.359375 C 1.171875 -3.234375 1.375 -4.625 2.703125 -4.625 C 3.84375 -4.625 4.21875 -3.546875 4.21875 -2.5 C 4.21875 -1.609375 4.109375 -0.234375 2.765625 -0.15625 L 2.703125 -0.15625 C 1.828125 -0.15625 1.296875 -0.921875 1.21875 -1.765625 C 1.203125 -1.875 1.203125 -1.984375 1.1875 -2.09375 Z M 1.1875 -2.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-13">
|
||||
<path style="stroke:none;" d="M 0.203125 -4.703125 L 0.203125 -4.375 L 0.34375 -4.375 C 0.953125 -4.375 1 -4 1.25 -3.28125 C 1.609375 -2.234375 1.984375 -1.21875 2.34375 -0.1875 C 2.390625 -0.078125 2.421875 0.078125 2.5625 0.09375 L 2.578125 0.09375 C 2.828125 0.09375 2.984375 -0.625 3.125 -1 C 3.34375 -1.5625 3.53125 -2.125 3.734375 -2.6875 C 3.796875 -2.859375 3.859375 -3.015625 3.90625 -3.203125 L 3.921875 -3.203125 C 4.09375 -2.4375 4.453125 -1.71875 4.703125 -0.984375 C 4.828125 -0.609375 5 0.09375 5.21875 0.09375 L 5.25 0.09375 C 5.40625 0.09375 5.4375 -0.0625 5.46875 -0.1875 C 5.78125 -1.09375 6.125 -2 6.453125 -2.921875 C 6.703125 -3.609375 6.859375 -4.375 7.625 -4.375 L 7.625 -4.703125 L 6.875 -4.671875 L 5.859375 -4.671875 L 5.859375 -4.375 C 6.140625 -4.359375 6.4375 -4.203125 6.46875 -3.90625 L 6.46875 -3.859375 C 6.46875 -3.71875 6.40625 -3.578125 6.34375 -3.4375 C 6.078125 -2.65625 5.8125 -1.875 5.515625 -1.109375 C 5.484375 -1.03125 5.453125 -0.9375 5.4375 -0.84375 L 5.421875 -0.84375 C 5.140625 -1.84375 4.71875 -2.84375 4.359375 -3.8125 C 4.328125 -3.890625 4.28125 -3.984375 4.28125 -4.078125 C 4.28125 -4.359375 4.6875 -4.375 4.90625 -4.375 L 4.90625 -4.703125 L 2.828125 -4.703125 L 2.828125 -4.375 L 2.984375 -4.375 C 3.40625 -4.375 3.546875 -4.25 3.671875 -3.84375 C 3.703125 -3.78125 3.75 -3.671875 3.75 -3.59375 L 3.75 -3.5625 C 3.71875 -3.359375 3.59375 -3.109375 3.515625 -2.890625 C 3.375 -2.46875 3.234375 -2.078125 3.078125 -1.65625 C 3 -1.421875 2.890625 -1.203125 2.828125 -0.953125 C 2.765625 -1.21875 2.65625 -1.46875 2.5625 -1.71875 C 2.3125 -2.4375 2.046875 -3.140625 1.796875 -3.84375 C 1.78125 -3.921875 1.734375 -4 1.734375 -4.078125 C 1.734375 -4.359375 2.109375 -4.375 2.296875 -4.375 L 2.359375 -4.375 L 2.359375 -4.703125 Z M 0.203125 -4.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-14">
|
||||
<path style="stroke:none;" d="M 0.953125 -6.65625 C 1.296875 -7.21875 1.828125 -7.453125 2.4375 -7.453125 C 3.109375 -7.453125 3.640625 -7.25 3.640625 -6.234375 C 3.640625 -5.78125 3.515625 -5.46875 3.171875 -5.125 C 2.515625 -4.328125 2.28125 -3.5 2.28125 -2.359375 L 2.28125 -2.15625 C 2.28125 -2.078125 2.3125 -2 2.40625 -2 C 2.515625 -2 2.546875 -2.09375 2.546875 -2.203125 C 2.546875 -2.265625 2.546875 -2.328125 2.546875 -2.375 C 2.546875 -3.46875 2.875 -4.265625 3.78125 -4.96875 C 4.21875 -5.328125 4.453125 -5.578125 4.515625 -6.078125 L 4.515625 -6.1875 C 4.515625 -7.125 3.703125 -7.6875 2.40625 -7.6875 L 2.28125 -7.6875 C 1.5 -7.640625 0.59375 -7.125 0.59375 -6.234375 C 0.59375 -5.921875 0.828125 -5.734375 1.0625 -5.734375 C 1.3125 -5.734375 1.53125 -5.921875 1.53125 -6.1875 C 1.53125 -6.46875 1.34375 -6.671875 1.0625 -6.671875 C 1.03125 -6.671875 1 -6.65625 0.953125 -6.65625 Z M 2.328125 -1.09375 C 2.03125 -1.046875 1.875 -0.796875 1.875 -0.5625 C 1.875 -0.3125 2.046875 -0.015625 2.40625 -0.015625 C 2.734375 -0.015625 2.9375 -0.28125 2.9375 -0.5625 C 2.9375 -0.8125 2.765625 -1.09375 2.421875 -1.09375 C 2.390625 -1.09375 2.359375 -1.09375 2.328125 -1.09375 Z M 2.328125 -1.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-15">
|
||||
<symbol overflow="visible" id="glyph5-15">
|
||||
<path style="stroke:none;" d="M 0.484375 -7.453125 L 0.484375 -7.125 C 0.609375 -7.125 0.734375 -7.140625 0.875 -7.140625 C 1.234375 -7.140625 1.5625 -7.09375 1.5625 -6.6875 C 1.5625 -6.609375 1.546875 -6.546875 1.546875 -6.484375 L 1.546875 -1.125 C 1.546875 -0.421875 0.96875 -0.34375 0.484375 -0.34375 L 0.484375 -0.015625 L 2.90625 -0.015625 L 2.90625 -0.34375 C 2.421875 -0.34375 1.828125 -0.421875 1.828125 -1.15625 C 1.828125 -1.28125 1.84375 -1.390625 1.84375 -1.5 L 1.859375 -7.0625 C 1.90625 -6.84375 2 -6.625 2.09375 -6.40625 L 2.515625 -5.328125 C 3.15625 -3.703125 3.8125 -2.046875 4.421875 -0.390625 C 4.46875 -0.265625 4.515625 -0.015625 4.6875 -0.015625 C 4.859375 -0.015625 4.90625 -0.28125 4.953125 -0.40625 L 5.4375 -1.671875 C 6.0625 -3.265625 6.65625 -4.84375 7.28125 -6.421875 C 7.375 -6.65625 7.484375 -6.90625 7.546875 -7.140625 L 7.5625 -1.0625 C 7.5625 -0.984375 7.5625 -0.890625 7.5625 -0.796875 C 7.5625 -0.375 7.234375 -0.328125 6.875 -0.328125 C 6.75 -0.328125 6.609375 -0.34375 6.5 -0.34375 L 6.5 -0.015625 L 7.703125 -0.015625 L 7.96875 -0.046875 L 9.4375 -0.046875 L 9.4375 -0.34375 C 9.3125 -0.34375 9.1875 -0.328125 9.046875 -0.328125 C 8.703125 -0.328125 8.359375 -0.375 8.359375 -0.78125 C 8.359375 -0.84375 8.375 -0.921875 8.375 -0.984375 L 8.375 -6.65625 C 8.375 -7.078125 8.71875 -7.140625 9.046875 -7.140625 C 9.1875 -7.140625 9.3125 -7.125 9.4375 -7.125 L 9.4375 -7.453125 L 7.65625 -7.453125 L 7.453125 -7.421875 L 7.359375 -7.265625 L 4.96875 -1.046875 L 2.578125 -7.265625 L 2.46875 -7.421875 L 2.28125 -7.453125 Z M 0.484375 -7.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-16">
|
||||
<symbol overflow="visible" id="glyph5-16">
|
||||
<path style="stroke:none;" d="M 0.421875 -4.6875 L 0.421875 -4.359375 L 0.59375 -4.359375 C 0.9375 -4.359375 1.203125 -4.3125 1.203125 -3.8125 L 1.203125 -0.796875 C 1.203125 -0.359375 0.921875 -0.34375 0.375 -0.34375 L 0.375 -0.015625 L 2.65625 -0.015625 L 2.65625 -0.34375 L 2.484375 -0.34375 C 2.1875 -0.34375 1.90625 -0.375 1.90625 -0.71875 L 1.90625 -4.8125 Z M 1.3125 -7.265625 C 1 -7.21875 0.84375 -6.96875 0.84375 -6.734375 C 0.84375 -6.484375 1.03125 -6.1875 1.375 -6.1875 C 1.71875 -6.1875 1.921875 -6.453125 1.921875 -6.734375 C 1.921875 -6.984375 1.75 -7.28125 1.390625 -7.28125 C 1.359375 -7.28125 1.328125 -7.265625 1.3125 -7.265625 Z M 1.3125 -7.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-17">
|
||||
<symbol overflow="visible" id="glyph5-17">
|
||||
<path style="stroke:none;" d="M 0.453125 -7.421875 L 0.453125 -7.125 L 0.8125 -7.125 C 1.171875 -7.125 1.515625 -7.09375 1.515625 -6.703125 C 1.515625 -6.625 1.5 -6.546875 1.5 -6.484375 L 1.5 -0.8125 C 1.5 -0.375 1.15625 -0.328125 0.8125 -0.328125 C 0.6875 -0.328125 0.5625 -0.34375 0.453125 -0.34375 L 0.453125 -0.015625 L 6.015625 -0.015625 L 6.3125 -2.8125 L 6.046875 -2.8125 C 5.9375 -1.8125 5.84375 -0.75 4.515625 -0.40625 C 4.203125 -0.34375 3.90625 -0.34375 3.59375 -0.34375 L 2.796875 -0.34375 C 2.578125 -0.34375 2.40625 -0.390625 2.40625 -0.703125 L 2.40625 -6.65625 C 2.40625 -7.09375 2.78125 -7.140625 3.125 -7.140625 C 3.234375 -7.140625 3.34375 -7.125 3.4375 -7.125 L 3.734375 -7.125 L 3.734375 -7.453125 L 2.25 -7.453125 L 1.984375 -7.421875 Z M 0.453125 -7.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-18">
|
||||
<symbol overflow="visible" id="glyph5-18">
|
||||
<path style="stroke:none;" d="M 0.3125 -7.453125 L 0.3125 -7.125 L 0.46875 -7.125 C 0.8125 -7.125 1.140625 -7.09375 1.140625 -6.59375 L 1.140625 -0.015625 L 1.390625 -0.03125 L 1.8125 -0.703125 C 2.078125 -0.1875 2.6875 0.09375 3.25 0.09375 C 4.578125 0.09375 5.640625 -1.0625 5.640625 -2.359375 C 5.640625 -3.59375 4.71875 -4.8125 3.28125 -4.8125 C 2.703125 -4.8125 2.25 -4.53125 1.859375 -4.09375 L 1.859375 -7.578125 Z M 4.75 -2.109375 C 4.71875 -1.578125 4.640625 -1.078125 4.28125 -0.671875 C 4.015625 -0.34375 3.59375 -0.140625 3.171875 -0.140625 C 2.71875 -0.140625 2.328125 -0.375 2.0625 -0.765625 C 1.96875 -0.890625 1.890625 -1.03125 1.890625 -1.1875 L 1.890625 -3.015625 C 1.890625 -3.15625 1.875 -3.28125 1.875 -3.421875 C 1.875 -4.0625 2.640625 -4.578125 3.28125 -4.578125 C 4.46875 -4.578125 4.765625 -3.25 4.765625 -2.34375 C 4.765625 -2.265625 4.765625 -2.1875 4.75 -2.109375 Z M 4.75 -2.109375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-19">
|
||||
<symbol overflow="visible" id="glyph5-19">
|
||||
<path style="stroke:none;" d="M 0.375 -7.453125 L 0.375 -7.125 L 0.5625 -7.125 C 0.921875 -7.125 1.203125 -7.09375 1.203125 -6.578125 L 1.203125 -0.78125 C 1.203125 -0.375 0.90625 -0.34375 0.59375 -0.34375 L 0.375 -0.34375 L 0.375 -0.015625 L 2.734375 -0.015625 L 2.734375 -0.34375 L 2.484375 -0.34375 C 2.1875 -0.34375 1.90625 -0.375 1.90625 -0.765625 L 1.90625 -7.578125 Z M 0.375 -7.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-20">
|
||||
<symbol overflow="visible" id="glyph5-20">
|
||||
<path style="stroke:none;" d="M 1.15625 -2.109375 C 0.9375 -1.890625 0.8125 -1.5 0.8125 -1.203125 C 0.8125 -0.8125 1 -0.53125 1.28125 -0.234375 C 0.78125 -0.140625 0.3125 0.3125 0.3125 0.84375 C 0.3125 1.96875 2.078125 2.234375 2.71875 2.234375 C 3.6875 2.234375 5.109375 1.859375 5.109375 0.796875 C 5.109375 -0.4375 3.859375 -0.71875 2.71875 -0.71875 L 1.96875 -0.71875 C 1.421875 -0.71875 1.140625 -1.015625 1.140625 -1.46875 C 1.140625 -1.671875 1.25 -1.828125 1.3125 -1.96875 C 1.609375 -1.78125 1.9375 -1.65625 2.296875 -1.640625 L 2.375 -1.640625 C 3.25 -1.640625 4 -2.171875 4.140625 -3.09375 L 4.140625 -3.203125 C 4.140625 -3.5625 4.015625 -3.921875 3.78125 -4.1875 C 3.765625 -4.21875 3.734375 -4.25 3.734375 -4.28125 L 3.734375 -4.296875 C 3.875 -4.515625 4.390625 -4.703125 4.703125 -4.703125 C 4.75 -4.703125 4.78125 -4.6875 4.828125 -4.6875 C 4.75 -4.625 4.671875 -4.5625 4.65625 -4.453125 L 4.65625 -4.421875 C 4.65625 -4.25 4.796875 -4.109375 4.96875 -4.109375 C 5.171875 -4.109375 5.25 -4.265625 5.25 -4.421875 C 5.25 -4.765625 4.9375 -4.921875 4.671875 -4.921875 C 4.3125 -4.921875 3.9375 -4.765625 3.65625 -4.53125 C 3.625 -4.5 3.59375 -4.453125 3.546875 -4.453125 L 3.53125 -4.453125 C 3.46875 -4.453125 3.25 -4.640625 3.09375 -4.671875 C 2.875 -4.765625 2.640625 -4.8125 2.40625 -4.8125 C 1.578125 -4.8125 0.75 -4.21875 0.65625 -3.359375 L 0.65625 -3.25 C 0.65625 -2.828125 0.8125 -2.375 1.15625 -2.109375 Z M 0.859375 0.921875 L 0.859375 0.828125 C 0.859375 0.234375 1.390625 -0.09375 1.96875 -0.09375 L 3.015625 -0.09375 C 3.609375 -0.09375 4.4375 0.046875 4.546875 0.765625 L 4.546875 0.84375 C 4.546875 1.65625 3.375 1.984375 2.6875 1.984375 C 1.96875 1.984375 0.96875 1.65625 0.859375 0.921875 Z M 1.4375 -3.015625 L 1.4375 -3.140625 C 1.4375 -3.734375 1.578125 -4.546875 2.390625 -4.546875 C 3.09375 -4.546875 3.359375 -3.921875 3.359375 -3.21875 C 3.359375 -2.671875 3.21875 -1.890625 2.40625 -1.890625 C 1.78125 -1.890625 1.515625 -2.40625 1.4375 -3.015625 Z M 1.4375 -3.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-21">
|
||||
<symbol overflow="visible" id="glyph5-21">
|
||||
<path style="stroke:none;" d="M 0.5625 -4.703125 L 0.453125 -2.953125 L 0.703125 -2.953125 C 0.734375 -3.328125 0.75 -3.78125 1 -4.09375 C 1.25 -4.4375 1.765625 -4.46875 2.203125 -4.46875 L 3.4375 -4.46875 C 2.484375 -3.09375 1.4375 -1.75 0.4375 -0.40625 C 0.375 -0.34375 0.3125 -0.25 0.3125 -0.15625 C 0.3125 -0.046875 0.375 -0.015625 0.46875 -0.015625 L 4.1875 -0.015625 L 4.359375 -2.046875 L 4.09375 -2.046875 C 4.0625 -1.578125 4.03125 -1.046875 3.765625 -0.703125 C 3.453125 -0.3125 2.921875 -0.265625 2.4375 -0.265625 L 1.203125 -0.265625 C 1.296875 -0.421875 1.40625 -0.546875 1.515625 -0.6875 C 2.390625 -1.90625 3.3125 -3.09375 4.1875 -4.3125 C 4.25 -4.390625 4.328125 -4.46875 4.328125 -4.5625 C 4.328125 -4.671875 4.25 -4.703125 4.171875 -4.703125 Z M 0.5625 -4.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-22">
|
||||
<symbol overflow="visible" id="glyph5-22">
|
||||
<path style="stroke:none;" d="M 0.3125 -4.6875 L 0.3125 -4.359375 L 0.546875 -4.359375 C 0.859375 -4.359375 1.140625 -4.3125 1.140625 -3.875 L 1.140625 1.3125 C 1.140625 1.765625 0.84375 1.78125 0.3125 1.78125 L 0.3125 2.109375 L 2.71875 2.109375 L 2.71875 1.78125 L 2.46875 1.78125 C 2.15625 1.78125 1.890625 1.734375 1.890625 1.34375 L 1.890625 -0.578125 C 2.140625 -0.125 2.78125 0.09375 3.265625 0.09375 C 4.578125 0.09375 5.640625 -1.0625 5.640625 -2.359375 C 5.640625 -3.5625 4.734375 -4.8125 3.40625 -4.8125 C 2.796875 -4.8125 2.296875 -4.578125 1.859375 -4.09375 L 1.859375 -4.8125 Z M 4.75 -2.171875 C 4.71875 -1.34375 4.265625 -0.203125 3.265625 -0.125 L 3.15625 -0.125 C 2.640625 -0.125 1.890625 -0.625 1.890625 -1.171875 L 1.890625 -3 C 1.890625 -3.140625 1.875 -3.265625 1.875 -3.40625 C 1.875 -4 2.609375 -4.546875 3.265625 -4.546875 C 4.390625 -4.546875 4.765625 -3.140625 4.765625 -2.34375 C 4.765625 -2.296875 4.765625 -2.21875 4.75 -2.171875 Z M 4.75 -2.171875 "/>
|
||||
</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 2.78125 -0.84375 C 2.9375 -0.734375 2.953125 -0.734375 2.984375 -0.734375 C 3.09375 -0.734375 3.1875 -0.828125 3.1875 -0.953125 C 3.1875 -1.0625 3.09375 -1.09375 3.046875 -1.125 C 2.75 -1.25 2.4375 -1.375 2.125 -1.484375 C 2.734375 -1.734375 2.90625 -1.796875 3.015625 -1.84375 C 3.109375 -1.890625 3.1875 -1.921875 3.1875 -2.046875 C 3.1875 -2.15625 3.09375 -2.25 2.984375 -2.25 C 2.9375 -2.25 2.90625 -2.21875 2.859375 -2.203125 L 2.015625 -1.65625 C 2.015625 -1.734375 2.046875 -1.953125 2.046875 -2.015625 C 2.0625 -2.140625 2.109375 -2.5 2.109375 -2.609375 C 2.109375 -2.703125 2.015625 -2.78125 1.90625 -2.78125 C 1.8125 -2.78125 1.71875 -2.703125 1.71875 -2.609375 C 1.71875 -2.59375 1.765625 -2.046875 1.765625 -2.03125 C 1.78125 -1.96875 1.796875 -1.734375 1.8125 -1.65625 L 0.953125 -2.203125 C 0.90625 -2.21875 0.875 -2.25 0.828125 -2.25 C 0.71875 -2.25 0.625 -2.15625 0.625 -2.046875 C 0.625 -1.921875 0.71875 -1.890625 0.765625 -1.859375 C 1.078125 -1.734375 1.375 -1.609375 1.6875 -1.5 C 1.078125 -1.25 0.90625 -1.1875 0.796875 -1.140625 C 0.71875 -1.09375 0.625 -1.0625 0.625 -0.953125 C 0.625 -0.828125 0.71875 -0.734375 0.828125 -0.734375 C 0.875 -0.734375 0.96875 -0.796875 1.046875 -0.84375 C 1.125 -0.890625 1.328125 -1.03125 1.40625 -1.078125 C 1.609375 -1.203125 1.6875 -1.25 1.8125 -1.328125 C 1.796875 -1.25 1.78125 -1.03125 1.765625 -0.96875 L 1.71875 -0.390625 C 1.71875 -0.28125 1.8125 -0.203125 1.90625 -0.203125 C 2.015625 -0.203125 2.109375 -0.28125 2.109375 -0.390625 C 2.109375 -0.390625 2.046875 -0.921875 2.046875 -0.953125 C 2.046875 -1.015625 2.015625 -1.25 2.015625 -1.328125 Z M 2.78125 -0.84375 "/>
|
||||
</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 0.171875 -6.140625 L 0.171875 -5.859375 L 0.359375 -5.859375 C 0.5625 -5.859375 0.75 -5.84375 0.859375 -5.71875 C 0.96875 -5.59375 1 -5.421875 1.046875 -5.28125 L 1.34375 -4.40625 C 1.6875 -3.40625 2.015625 -2.390625 2.34375 -1.375 L 2.765625 -0.15625 C 2.8125 -0.03125 2.84375 0.1875 3.015625 0.1875 L 3.046875 0.1875 C 3.203125 0.171875 3.234375 -0.078125 3.28125 -0.203125 L 3.6875 -1.421875 C 3.828125 -1.84375 3.96875 -2.265625 4.09375 -2.671875 L 4.65625 -4.328125 C 4.6875 -4.40625 4.703125 -4.484375 4.734375 -4.5625 C 4.75 -4.46875 4.796875 -4.390625 4.8125 -4.3125 L 5.359375 -2.671875 C 5.5 -2.25 5.640625 -1.84375 5.78125 -1.421875 L 6.1875 -0.203125 C 6.234375 -0.078125 6.265625 0.171875 6.421875 0.1875 L 6.453125 0.1875 C 6.625 0.1875 6.65625 -0.015625 6.703125 -0.15625 L 7.09375 -1.34375 C 7.46875 -2.46875 7.859375 -3.609375 8.234375 -4.75 L 8.359375 -5.125 C 8.46875 -5.5 8.6875 -5.859375 9.296875 -5.859375 L 9.296875 -6.140625 L 8.8125 -6.109375 L 7.40625 -6.109375 L 7.40625 -5.859375 C 7.71875 -5.859375 8.140625 -5.734375 8.15625 -5.375 C 8.15625 -5.3125 8.140625 -5.265625 8.109375 -5.203125 L 7.78125 -4.171875 C 7.484375 -3.296875 7.171875 -2.390625 6.875 -1.5 C 6.828125 -1.359375 6.765625 -1.203125 6.734375 -1.046875 C 6.6875 -1.171875 6.640625 -1.296875 6.59375 -1.421875 L 5.3125 -5.265625 C 5.296875 -5.375 5.234375 -5.46875 5.234375 -5.59375 L 5.234375 -5.625 C 5.3125 -5.84375 5.65625 -5.859375 5.921875 -5.859375 L 5.96875 -5.859375 L 5.96875 -6.140625 L 3.609375 -6.140625 L 3.609375 -5.859375 L 3.8125 -5.859375 C 4.234375 -5.859375 4.328125 -5.796875 4.515625 -5.1875 C 4.546875 -5.109375 4.59375 -5.015625 4.59375 -4.953125 C 4.578125 -4.90625 4.5625 -4.859375 4.546875 -4.8125 L 4.46875 -4.5625 C 4.046875 -3.390625 3.671875 -2.21875 3.296875 -1.046875 C 3.234375 -1.1875 3.1875 -1.328125 3.140625 -1.46875 L 2.890625 -2.21875 C 2.65625 -2.9375 2.40625 -3.671875 2.171875 -4.40625 L 1.8125 -5.46875 C 1.796875 -5.5 1.78125 -5.546875 1.78125 -5.578125 C 1.78125 -5.84375 2.265625 -5.859375 2.53125 -5.859375 L 2.53125 -6.140625 Z M 0.171875 -6.140625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-2">
|
||||
<path style="stroke:none;" d="M 0.296875 -6.140625 L 0.296875 -5.859375 C 0.40625 -5.859375 0.53125 -5.859375 0.65625 -5.859375 C 0.984375 -5.859375 1.25 -5.8125 1.25 -5.46875 L 1.25 -0.6875 C 1.25 -0.328125 0.9375 -0.28125 0.625 -0.28125 C 0.515625 -0.28125 0.390625 -0.28125 0.296875 -0.28125 L 0.296875 -0.015625 L 3.015625 -0.015625 L 3.015625 -0.28125 C 2.90625 -0.28125 2.78125 -0.28125 2.65625 -0.28125 C 2.34375 -0.28125 2.0625 -0.328125 2.0625 -0.6875 L 2.0625 -5.453125 C 2.0625 -5.8125 2.375 -5.859375 2.6875 -5.859375 C 2.8125 -5.859375 2.921875 -5.859375 3.015625 -5.859375 L 3.015625 -6.140625 Z M 0.296875 -6.140625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-3">
|
||||
<path style="stroke:none;" d="M 1.03125 -2.0625 L 3.6875 -2.0625 C 3.796875 -2.0625 3.84375 -2.109375 3.84375 -2.21875 C 3.84375 -3.34375 3.140625 -4.015625 2.203125 -4.015625 C 1.109375 -4.015625 0.25 -3.0625 0.25 -1.96875 C 0.25 -0.875 1.125 0.09375 2.34375 0.09375 C 2.984375 0.09375 3.625 -0.359375 3.8125 -0.984375 C 3.828125 -1 3.828125 -1.046875 3.828125 -1.078125 C 3.828125 -1.140625 3.78125 -1.1875 3.71875 -1.1875 C 3.546875 -1.1875 3.546875 -0.921875 3.453125 -0.796875 C 3.234375 -0.421875 2.796875 -0.15625 2.359375 -0.15625 L 2.296875 -0.15625 C 1.828125 -0.171875 1.421875 -0.5 1.21875 -0.921875 C 1.046875 -1.28125 1.03125 -1.671875 1.03125 -2.0625 Z M 1.046875 -2.28125 C 1.046875 -2.875 1.296875 -3.5625 1.953125 -3.765625 C 2.015625 -3.78125 2.09375 -3.796875 2.15625 -3.796875 C 2.9375 -3.796875 3.21875 -3 3.21875 -2.28125 Z M 1.046875 -2.28125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-4">
|
||||
<path style="stroke:none;" d="M 0.3125 -0.28125 L 0.3125 -0.015625 L 0.859375 -0.03125 L 2.21875 -0.03125 L 2.21875 -0.28125 C 1.96875 -0.28125 1.578125 -0.40625 1.578125 -0.734375 C 1.578125 -0.859375 1.625 -0.96875 1.671875 -1.078125 C 1.828125 -1.5 1.953125 -2.0625 2.109375 -2.0625 L 4.25 -2.0625 C 4.40625 -2.0625 4.515625 -1.5625 4.609375 -1.3125 C 4.6875 -1.078125 4.875 -0.71875 4.875 -0.5625 C 4.875 -0.28125 4.375 -0.28125 4.140625 -0.28125 L 4.140625 -0.015625 L 6.59375 -0.015625 L 6.59375 -0.28125 L 6.34375 -0.28125 C 6.140625 -0.28125 5.921875 -0.3125 5.828125 -0.40625 C 5.703125 -0.53125 5.671875 -0.703125 5.609375 -0.84375 C 4.96875 -2.578125 4.375 -4.328125 3.734375 -6.0625 L 3.65625 -6.25 C 3.625 -6.34375 3.59375 -6.4375 3.4375 -6.4375 C 3.25 -6.4375 3.21875 -6.21875 3.171875 -6.078125 C 2.625 -4.546875 2.078125 -3 1.515625 -1.484375 L 1.359375 -1.03125 C 1.171875 -0.46875 0.796875 -0.28125 0.3125 -0.28125 Z M 2.125 -2.34375 L 3.1875 -5.28125 L 4.25 -2.34375 Z M 2.125 -2.34375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-5">
|
||||
<path style="stroke:none;" d="M 0.3125 -3.859375 L 0.3125 -3.59375 L 0.453125 -3.59375 C 0.71875 -3.59375 1 -3.5625 1 -3.140625 L 1 -0.65625 C 1 -0.296875 0.765625 -0.28125 0.3125 -0.28125 L 0.3125 -0.015625 L 0.953125 -0.03125 L 2.359375 -0.03125 L 2.359375 -0.28125 L 2.15625 -0.28125 C 1.890625 -0.28125 1.671875 -0.328125 1.671875 -0.65625 L 1.671875 -2.265625 C 1.671875 -2.953125 2.078125 -3.734375 2.921875 -3.734375 C 3.40625 -3.734375 3.546875 -3.296875 3.546875 -2.734375 L 3.546875 -0.625 C 3.546875 -0.3125 3.296875 -0.28125 3 -0.28125 L 2.859375 -0.28125 L 2.859375 -0.015625 L 3.5 -0.03125 L 4.90625 -0.03125 L 4.90625 -0.28125 L 4.734375 -0.28125 C 4.46875 -0.28125 4.21875 -0.3125 4.21875 -0.640625 L 4.21875 -2.65625 C 4.21875 -2.9375 4.203125 -3.1875 4.078125 -3.4375 C 3.84375 -3.859375 3.375 -3.96875 2.9375 -3.96875 C 2.390625 -3.96875 1.828125 -3.59375 1.625 -3.078125 L 1.609375 -3.96875 Z M 0.3125 -3.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-6">
|
||||
<path style="stroke:none;" d="M 0.359375 -6.140625 L 0.359375 -5.859375 C 0.46875 -5.859375 0.578125 -5.859375 0.703125 -5.859375 C 1 -5.859375 1.28125 -5.8125 1.28125 -5.46875 L 1.28125 -0.6875 C 1.28125 -0.296875 0.953125 -0.28125 0.609375 -0.28125 L 0.359375 -0.28125 L 0.359375 -0.015625 L 3 -0.015625 L 3 -0.28125 L 2.6875 -0.28125 C 2.296875 -0.28125 2.078125 -0.328125 2.078125 -0.703125 L 2.078125 -2.828125 L 3.703125 -2.828125 C 4.578125 -2.875 5.75 -3.375 5.75 -4.453125 C 5.75 -5.484375 4.6875 -6.078125 3.703125 -6.140625 Z M 2.046875 -3.078125 L 2.046875 -5.515625 C 2.046875 -5.75 2.140625 -5.859375 2.390625 -5.859375 L 3.078125 -5.859375 C 3.859375 -5.859375 4.828125 -5.8125 4.828125 -4.453125 C 4.828125 -4.15625 4.796875 -3.78125 4.59375 -3.546875 C 4.265625 -3.140625 3.734375 -3.078125 3.25 -3.078125 Z M 2.046875 -3.078125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-7">
|
||||
<path style="stroke:none;" d="M 0.265625 -3.859375 L 0.265625 -3.59375 L 0.40625 -3.59375 C 0.6875 -3.59375 0.953125 -3.5625 0.953125 -3.140625 L 0.953125 -0.65625 C 0.953125 -0.296875 0.71875 -0.28125 0.265625 -0.28125 L 0.265625 -0.015625 L 0.890625 -0.03125 L 2.453125 -0.03125 L 2.453125 -0.28125 L 2.15625 -0.28125 C 1.84375 -0.28125 1.59375 -0.328125 1.59375 -0.65625 L 1.59375 -2.171875 C 1.65625 -2.796875 1.828125 -3.734375 2.734375 -3.734375 C 2.609375 -3.671875 2.5625 -3.53125 2.5625 -3.40625 C 2.5625 -3.15625 2.75 -3 2.953125 -3 C 3.1875 -3 3.34375 -3.1875 3.34375 -3.40625 C 3.34375 -3.78125 2.984375 -3.96875 2.65625 -3.96875 C 2.109375 -3.96875 1.671875 -3.5 1.546875 -3 L 1.546875 -3.96875 Z M 0.265625 -3.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-8">
|
||||
<path style="stroke:none;" d="M 2.171875 -4.015625 C 1.125 -3.90625 0.265625 -3.0625 0.265625 -1.921875 C 0.265625 -1 0.953125 0.09375 2.3125 0.09375 C 3.359375 0.09375 4.34375 -0.75 4.34375 -1.90625 C 4.34375 -2.984375 3.5 -4.03125 2.296875 -4.03125 C 2.25 -4.03125 2.21875 -4.015625 2.171875 -4.015625 Z M 1.046875 -1.71875 L 1.046875 -2.09375 C 1.046875 -2.8125 1.265625 -3.796875 2.3125 -3.796875 C 3.015625 -3.796875 3.46875 -3.234375 3.546875 -2.515625 C 3.5625 -2.328125 3.5625 -2.140625 3.5625 -1.953125 C 3.5625 -1.484375 3.53125 -0.953125 3.203125 -0.578125 C 2.984375 -0.3125 2.640625 -0.15625 2.296875 -0.15625 C 1.640625 -0.15625 1.1875 -0.65625 1.0625 -1.375 C 1.0625 -1.484375 1.0625 -1.59375 1.046875 -1.71875 Z M 1.046875 -1.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-9">
|
||||
<path style="stroke:none;" d="M 0.953125 -3.859375 L 0.25 -3.859375 L 0.25 -3.59375 L 0.953125 -3.59375 L 0.953125 -0.625 C 0.953125 -0.3125 0.703125 -0.28125 0.40625 -0.28125 L 0.265625 -0.28125 L 0.265625 -0.015625 L 0.921875 -0.03125 L 1.65625 -0.03125 L 2.28125 -0.015625 L 2.28125 -0.28125 L 2.078125 -0.28125 C 1.828125 -0.28125 1.59375 -0.3125 1.59375 -0.625 L 1.59375 -3.59375 L 3.0625 -3.59375 C 3.3125 -3.59375 3.515625 -3.515625 3.515625 -3.171875 L 3.515625 -0.671875 C 3.515625 -0.375 3.421875 -0.28125 2.828125 -0.28125 L 2.828125 -0.015625 L 3.453125 -0.03125 L 4.1875 -0.03125 L 4.84375 -0.015625 L 4.84375 -0.28125 L 4.625 -0.28125 C 4.390625 -0.28125 4.15625 -0.328125 4.15625 -0.65625 L 4.15625 -3.96875 L 2.765625 -3.859375 L 1.5625 -3.859375 L 1.5625 -4.78125 C 1.5625 -4.96875 1.578125 -5.15625 1.65625 -5.34375 C 1.859375 -5.8125 2.40625 -6.109375 2.921875 -6.109375 C 3.203125 -6.109375 3.484375 -6.03125 3.6875 -5.84375 C 3.484375 -5.828125 3.296875 -5.65625 3.296875 -5.421875 C 3.296875 -5.203125 3.46875 -5 3.71875 -5 C 3.9375 -5 4.140625 -5.171875 4.140625 -5.421875 L 4.140625 -5.4375 C 4.140625 -6.0625 3.453125 -6.328125 2.921875 -6.328125 C 2.03125 -6.328125 0.953125 -5.875 0.953125 -4.859375 Z M 0.953125 -3.859375 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
@ -318,177 +411,273 @@
|
||||
<use xlink:href="#glyph1-10" x="250.633225" y="49.063"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-11" x="173.554" y="77.843"/>
|
||||
<use xlink:href="#glyph1-12" x="180.381357" y="77.843"/>
|
||||
<use xlink:href="#glyph1-1" x="157.871" y="66.995"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-13" x="188.719368" y="77.843"/>
|
||||
<use xlink:href="#glyph1-4" x="201.240731" y="77.843"/>
|
||||
<use xlink:href="#glyph1-14" x="208.068088" y="77.843"/>
|
||||
<use xlink:href="#glyph1-4" x="165.652379" y="66.995"/>
|
||||
<use xlink:href="#glyph1-11" x="172.479735" y="66.995"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-15" x="216.406099" y="77.843"/>
|
||||
<use xlink:href="#glyph1-16" x="223.233456" y="77.843"/>
|
||||
<use xlink:href="#glyph1-17" x="230.060813" y="77.843"/>
|
||||
<use xlink:href="#glyph1-18" x="236.888169" y="77.843"/>
|
||||
<use xlink:href="#glyph1-12" x="178.160831" y="66.995"/>
|
||||
<use xlink:href="#glyph1-8" x="185.748536" y="66.995"/>
|
||||
<use xlink:href="#glyph1-11" x="191.134099" y="66.995"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="0.291" y="129.425"/>
|
||||
<use xlink:href="#glyph1-12" x="196.829541" y="66.995"/>
|
||||
<use xlink:href="#glyph1-4" x="204.417246" y="66.995"/>
|
||||
<use xlink:href="#glyph1-13" x="211.244602" y="66.995"/>
|
||||
<use xlink:href="#glyph1-14" x="215.415043" y="66.995"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="16.766176" y="129.425"/>
|
||||
<use xlink:href="#glyph1-15" x="225.272317" y="66.995"/>
|
||||
<use xlink:href="#glyph1-16" x="239.311508" y="66.995"/>
|
||||
<use xlink:href="#glyph1-17" x="244.237993" y="66.995"/>
|
||||
<use xlink:href="#glyph1-16" x="254.48118" y="66.995"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="26.545981" y="129.425"/>
|
||||
<use xlink:href="#glyph2-4" x="32.158214" y="129.425"/>
|
||||
<use xlink:href="#glyph2-5" x="40.633949" y="129.425"/>
|
||||
<use xlink:href="#glyph2-6" x="50.247338" y="129.425"/>
|
||||
<use xlink:href="#glyph2-7" x="57.763312" y="129.425"/>
|
||||
<use xlink:href="#glyph2-8" x="61.661174" y="129.425"/>
|
||||
<use xlink:href="#glyph2-9" x="67.979241" y="129.425"/>
|
||||
<use xlink:href="#glyph2-10" x="76.454976" y="129.425"/>
|
||||
<use xlink:href="#glyph2-11" x="83.780146" y="129.425"/>
|
||||
<use xlink:href="#glyph2-6" x="92.25588" y="129.425"/>
|
||||
<use xlink:href="#glyph2-1" x="259.404" y="61.789"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="0.291" y="154.173"/>
|
||||
<use xlink:href="#glyph3-2" x="7.014604" y="154.173"/>
|
||||
<use xlink:href="#glyph3-1" x="10.749409" y="154.173"/>
|
||||
<use xlink:href="#glyph1-18" x="101.262" y="84.928"/>
|
||||
<use xlink:href="#glyph1-14" x="111.886796" y="84.928"/>
|
||||
<use xlink:href="#glyph1-14" x="117.196324" y="84.928"/>
|
||||
<use xlink:href="#glyph1-2" x="122.505853" y="84.928"/>
|
||||
<use xlink:href="#glyph1-19" x="129.33321" y="84.928"/>
|
||||
<use xlink:href="#glyph1-1" x="133.88239" y="84.928"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-3" x="24.191836" y="154.173"/>
|
||||
<use xlink:href="#glyph3-4" x="31.661445" y="154.173"/>
|
||||
<use xlink:href="#glyph3-5" x="38.578724" y="154.173"/>
|
||||
<use xlink:href="#glyph3-6" x="44.555128" y="154.173"/>
|
||||
<use xlink:href="#glyph3-7" x="51.472407" y="154.173"/>
|
||||
<use xlink:href="#glyph1-5" x="141.663768" y="84.928"/>
|
||||
<use xlink:href="#glyph1-20" x="146.973297" y="84.928"/>
|
||||
<use xlink:href="#glyph1-9" x="150.763563" y="84.928"/>
|
||||
<use xlink:href="#glyph1-21" x="156.832006" y="84.928"/>
|
||||
<use xlink:href="#glyph1-5" x="164.419711" y="84.928"/>
|
||||
<use xlink:href="#glyph1-20" x="169.72924" y="84.928"/>
|
||||
<use xlink:href="#glyph1-11" x="173.519506" y="84.928"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-8" x="62.063518" y="154.173"/>
|
||||
<use xlink:href="#glyph3-9" x="72.715602" y="154.173"/>
|
||||
<use xlink:href="#glyph3-10" x="75.89688" y="154.173"/>
|
||||
<use xlink:href="#glyph1-12" x="179.200601" y="84.928"/>
|
||||
<use xlink:href="#glyph1-19" x="186.788306" y="84.928"/>
|
||||
<use xlink:href="#glyph1-22" x="191.337486" y="84.928"/>
|
||||
<use xlink:href="#glyph1-23" x="201.580673" y="84.928"/>
|
||||
<use xlink:href="#glyph1-20" x="209.168378" y="84.928"/>
|
||||
<use xlink:href="#glyph1-24" x="212.958644" y="84.928"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-3" x="85.235087" y="154.173"/>
|
||||
<use xlink:href="#glyph3-5" x="92.704696" y="154.173"/>
|
||||
<use xlink:href="#glyph3-6" x="98.6811" y="154.173"/>
|
||||
<use xlink:href="#glyph3-11" x="105.598379" y="154.173"/>
|
||||
<use xlink:href="#glyph1-9" x="219.793174" y="84.928"/>
|
||||
<use xlink:href="#glyph1-5" x="225.861616" y="84.928"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-7" x="114.385451" y="154.173"/>
|
||||
<use xlink:href="#glyph3-9" x="120.493363" y="154.173"/>
|
||||
<use xlink:href="#glyph3-12" x="123.674642" y="154.173"/>
|
||||
<use xlink:href="#glyph1-8" x="231.156799" y="84.928"/>
|
||||
<use xlink:href="#glyph1-20" x="236.542362" y="84.928"/>
|
||||
<use xlink:href="#glyph1-14" x="240.332628" y="84.928"/>
|
||||
<use xlink:href="#glyph1-25" x="245.642157" y="84.928"/>
|
||||
<use xlink:href="#glyph1-14" x="252.469513" y="84.928"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="0.291" y="175.164"/>
|
||||
<use xlink:href="#glyph3-2" x="7.014604" y="175.164"/>
|
||||
<use xlink:href="#glyph3-13" x="10.749409" y="175.164"/>
|
||||
<use xlink:href="#glyph1-26" x="262.341134" y="84.928"/>
|
||||
<use xlink:href="#glyph1-4" x="272.014776" y="84.928"/>
|
||||
<use xlink:href="#glyph1-27" x="278.842133" y="84.928"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-3" x="24.191836" y="175.164"/>
|
||||
<use xlink:href="#glyph3-4" x="31.661445" y="175.164"/>
|
||||
<use xlink:href="#glyph3-5" x="38.578724" y="175.164"/>
|
||||
<use xlink:href="#glyph3-6" x="44.555128" y="175.164"/>
|
||||
<use xlink:href="#glyph3-7" x="51.472407" y="175.164"/>
|
||||
<use xlink:href="#glyph1-3" x="289.838495" y="84.928"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-14" x="62.063518" y="175.164"/>
|
||||
<use xlink:href="#glyph3-6" x="68.787123" y="175.164"/>
|
||||
<use xlink:href="#glyph3-12" x="75.704402" y="175.164"/>
|
||||
<use xlink:href="#glyph3-7" x="82.62168" y="175.164"/>
|
||||
<use xlink:href="#glyph1-9" x="297.813548" y="84.928"/>
|
||||
<use xlink:href="#glyph1-5" x="303.88199" y="84.928"/>
|
||||
<use xlink:href="#glyph1-28" x="309.191519" y="84.928"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-3" x="93.212792" y="175.164"/>
|
||||
<use xlink:href="#glyph3-5" x="100.682401" y="175.164"/>
|
||||
<use xlink:href="#glyph3-6" x="106.658805" y="175.164"/>
|
||||
<use xlink:href="#glyph3-11" x="113.576084" y="175.164"/>
|
||||
<use xlink:href="#glyph1-29" x="173.554" y="112.031"/>
|
||||
<use xlink:href="#glyph1-30" x="180.381357" y="112.031"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-7" x="122.363156" y="175.164"/>
|
||||
<use xlink:href="#glyph3-9" x="128.471068" y="175.164"/>
|
||||
<use xlink:href="#glyph3-12" x="131.652347" y="175.164"/>
|
||||
<use xlink:href="#glyph1-31" x="188.719368" y="112.031"/>
|
||||
<use xlink:href="#glyph1-4" x="201.240731" y="112.031"/>
|
||||
<use xlink:href="#glyph1-20" x="208.068088" y="112.031"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="0.291" y="195.757"/>
|
||||
<use xlink:href="#glyph1-32" x="216.406099" y="112.031"/>
|
||||
<use xlink:href="#glyph1-33" x="223.233456" y="112.031"/>
|
||||
<use xlink:href="#glyph1-34" x="230.060813" y="112.031"/>
|
||||
<use xlink:href="#glyph1-35" x="236.888169" y="112.031"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-2" x="10.527009" y="195.757"/>
|
||||
<use xlink:href="#glyph4-3" x="15.348831" y="195.757"/>
|
||||
<use xlink:href="#glyph3-1" x="0.291" y="180.049"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-4" x="23.190292" y="195.757"/>
|
||||
<use xlink:href="#glyph4-5" x="32.22739" y="195.757"/>
|
||||
<use xlink:href="#glyph4-6" x="37.651395" y="195.757"/>
|
||||
<use xlink:href="#glyph3-2" x="16.766176" y="180.049"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-7" x="42.167762" y="195.757"/>
|
||||
<use xlink:href="#glyph3-3" x="26.545981" y="180.049"/>
|
||||
<use xlink:href="#glyph3-4" x="32.158214" y="180.049"/>
|
||||
<use xlink:href="#glyph3-5" x="40.633949" y="180.049"/>
|
||||
<use xlink:href="#glyph3-6" x="50.247338" y="180.049"/>
|
||||
<use xlink:href="#glyph3-7" x="57.763312" y="180.049"/>
|
||||
<use xlink:href="#glyph3-8" x="61.661174" y="180.049"/>
|
||||
<use xlink:href="#glyph3-9" x="67.979241" y="180.049"/>
|
||||
<use xlink:href="#glyph3-10" x="76.454976" y="180.049"/>
|
||||
<use xlink:href="#glyph3-11" x="83.780146" y="180.049"/>
|
||||
<use xlink:href="#glyph3-6" x="92.25588" y="180.049"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-8" x="47.888494" y="195.757"/>
|
||||
<use xlink:href="#glyph4-1" x="0.291" y="204.797"/>
|
||||
<use xlink:href="#glyph4-2" x="7.014604" y="204.797"/>
|
||||
<use xlink:href="#glyph4-1" x="10.749409" y="204.797"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-9" x="55.729955" y="195.757"/>
|
||||
<use xlink:href="#glyph4-2" x="61.756142" y="195.757"/>
|
||||
<use xlink:href="#glyph4-10" x="66.577964" y="195.757"/>
|
||||
<use xlink:href="#glyph4-10" x="72.604151" y="195.757"/>
|
||||
<use xlink:href="#glyph4-3" x="24.191836" y="204.797"/>
|
||||
<use xlink:href="#glyph4-4" x="31.661445" y="204.797"/>
|
||||
<use xlink:href="#glyph4-5" x="38.578724" y="204.797"/>
|
||||
<use xlink:href="#glyph4-6" x="44.555128" y="204.797"/>
|
||||
<use xlink:href="#glyph4-7" x="51.472407" y="204.797"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-11" x="82.24125" y="195.757"/>
|
||||
<use xlink:href="#glyph4-12" x="86.52089" y="195.757"/>
|
||||
<use xlink:href="#glyph4-8" x="62.063518" y="204.797"/>
|
||||
<use xlink:href="#glyph4-9" x="72.715602" y="204.797"/>
|
||||
<use xlink:href="#glyph4-10" x="75.89688" y="204.797"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-13" x="91.650349" y="195.757"/>
|
||||
<use xlink:href="#glyph4-3" x="85.235087" y="204.797"/>
|
||||
<use xlink:href="#glyph4-5" x="92.704696" y="204.797"/>
|
||||
<use xlink:href="#glyph4-6" x="98.6811" y="204.797"/>
|
||||
<use xlink:href="#glyph4-11" x="105.598379" y="204.797"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-5" x="99.177628" y="195.757"/>
|
||||
<use xlink:href="#glyph4-11" x="104.601632" y="195.757"/>
|
||||
<use xlink:href="#glyph4-14" x="108.881272" y="195.757"/>
|
||||
<use xlink:href="#glyph4-7" x="114.385451" y="204.797"/>
|
||||
<use xlink:href="#glyph4-9" x="120.493363" y="204.797"/>
|
||||
<use xlink:href="#glyph4-12" x="123.674642" y="204.797"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-12" x="0.291" y="230.125"/>
|
||||
<use xlink:href="#glyph4-1" x="0.291" y="225.788"/>
|
||||
<use xlink:href="#glyph4-2" x="7.014604" y="225.788"/>
|
||||
<use xlink:href="#glyph4-13" x="10.749409" y="225.788"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="16.766176" y="230.125"/>
|
||||
<use xlink:href="#glyph4-3" x="24.191836" y="225.788"/>
|
||||
<use xlink:href="#glyph4-4" x="31.661445" y="225.788"/>
|
||||
<use xlink:href="#glyph4-5" x="38.578724" y="225.788"/>
|
||||
<use xlink:href="#glyph4-6" x="44.555128" y="225.788"/>
|
||||
<use xlink:href="#glyph4-7" x="51.472407" y="225.788"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="26.545981" y="230.125"/>
|
||||
<use xlink:href="#glyph2-4" x="32.158214" y="230.125"/>
|
||||
<use xlink:href="#glyph2-5" x="40.633949" y="230.125"/>
|
||||
<use xlink:href="#glyph2-6" x="50.247338" y="230.125"/>
|
||||
<use xlink:href="#glyph2-7" x="57.763312" y="230.125"/>
|
||||
<use xlink:href="#glyph2-3" x="61.661174" y="230.125"/>
|
||||
<use xlink:href="#glyph2-6" x="67.273408" y="230.125"/>
|
||||
<use xlink:href="#glyph2-13" x="74.789382" y="230.125"/>
|
||||
<use xlink:href="#glyph2-6" x="81.943832" y="230.125"/>
|
||||
<use xlink:href="#glyph2-14" x="89.459806" y="230.125"/>
|
||||
<use xlink:href="#glyph2-15" x="97.935541" y="230.125"/>
|
||||
<use xlink:href="#glyph2-6" x="103.886345" y="230.125"/>
|
||||
<use xlink:href="#glyph4-14" x="62.063518" y="225.788"/>
|
||||
<use xlink:href="#glyph4-6" x="68.787123" y="225.788"/>
|
||||
<use xlink:href="#glyph4-12" x="75.704402" y="225.788"/>
|
||||
<use xlink:href="#glyph4-7" x="82.62168" y="225.788"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-15" x="0.291" y="254.475"/>
|
||||
<use xlink:href="#glyph4-2" x="10.228099" y="254.475"/>
|
||||
<use xlink:href="#glyph4-16" x="15.049921" y="254.475"/>
|
||||
<use xlink:href="#glyph4-10" x="18.065197" y="254.475"/>
|
||||
<use xlink:href="#glyph4-3" x="93.212792" y="225.788"/>
|
||||
<use xlink:href="#glyph4-5" x="100.682401" y="225.788"/>
|
||||
<use xlink:href="#glyph4-6" x="106.658805" y="225.788"/>
|
||||
<use xlink:href="#glyph4-11" x="113.576084" y="225.788"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-17" x="27.702296" y="254.475"/>
|
||||
<use xlink:href="#glyph4-7" x="122.363156" y="225.788"/>
|
||||
<use xlink:href="#glyph4-9" x="128.471068" y="225.788"/>
|
||||
<use xlink:href="#glyph4-12" x="131.652347" y="225.788"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-16" x="34.489938" y="254.475"/>
|
||||
<use xlink:href="#glyph5-1" x="0.291" y="246.381"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-2" x="37.494304" y="254.475"/>
|
||||
<use xlink:href="#glyph4-18" x="42.316126" y="254.475"/>
|
||||
<use xlink:href="#glyph4-19" x="48.342313" y="254.475"/>
|
||||
<use xlink:href="#glyph4-16" x="51.357588" y="254.475"/>
|
||||
<use xlink:href="#glyph4-10" x="54.372863" y="254.475"/>
|
||||
<use xlink:href="#glyph4-20" x="60.39905" y="254.475"/>
|
||||
<use xlink:href="#glyph4-11" x="65.823055" y="254.475"/>
|
||||
<use xlink:href="#glyph4-3" x="70.102695" y="254.475"/>
|
||||
<use xlink:href="#glyph4-2" x="74.322334" y="254.475"/>
|
||||
<use xlink:href="#glyph4-21" x="79.144157" y="254.475"/>
|
||||
<use xlink:href="#glyph4-2" x="83.965979" y="254.475"/>
|
||||
<use xlink:href="#glyph4-22" x="88.787801" y="254.475"/>
|
||||
<use xlink:href="#glyph4-8" x="94.813988" y="254.475"/>
|
||||
<use xlink:href="#glyph5-2" x="10.527009" y="246.381"/>
|
||||
<use xlink:href="#glyph5-3" x="15.348831" y="246.381"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-4" x="23.190292" y="246.381"/>
|
||||
<use xlink:href="#glyph5-5" x="32.22739" y="246.381"/>
|
||||
<use xlink:href="#glyph5-6" x="37.651395" y="246.381"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-7" x="42.167762" y="246.381"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-8" x="47.888494" y="246.381"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-9" x="55.729955" y="246.381"/>
|
||||
<use xlink:href="#glyph5-2" x="61.756142" y="246.381"/>
|
||||
<use xlink:href="#glyph5-10" x="66.577964" y="246.381"/>
|
||||
<use xlink:href="#glyph5-10" x="72.604151" y="246.381"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-11" x="82.24125" y="246.381"/>
|
||||
<use xlink:href="#glyph5-12" x="86.52089" y="246.381"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-13" x="91.650349" y="246.381"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-5" x="99.177628" y="246.381"/>
|
||||
<use xlink:href="#glyph5-11" x="104.601632" y="246.381"/>
|
||||
<use xlink:href="#glyph5-14" x="108.881272" y="246.381"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-12" x="0.291" y="280.749"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-2" x="16.766176" y="280.749"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-3" x="26.545981" y="280.749"/>
|
||||
<use xlink:href="#glyph3-4" x="32.158214" y="280.749"/>
|
||||
<use xlink:href="#glyph3-5" x="40.633949" y="280.749"/>
|
||||
<use xlink:href="#glyph3-6" x="50.247338" y="280.749"/>
|
||||
<use xlink:href="#glyph3-7" x="57.763312" y="280.749"/>
|
||||
<use xlink:href="#glyph3-3" x="61.661174" y="280.749"/>
|
||||
<use xlink:href="#glyph3-6" x="67.273408" y="280.749"/>
|
||||
<use xlink:href="#glyph3-13" x="74.789382" y="280.749"/>
|
||||
<use xlink:href="#glyph3-6" x="81.943832" y="280.749"/>
|
||||
<use xlink:href="#glyph3-14" x="89.459806" y="280.749"/>
|
||||
<use xlink:href="#glyph3-15" x="97.935541" y="280.749"/>
|
||||
<use xlink:href="#glyph3-6" x="103.886345" y="280.749"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-15" x="0.291" y="305.099"/>
|
||||
<use xlink:href="#glyph5-2" x="10.228099" y="305.099"/>
|
||||
<use xlink:href="#glyph5-16" x="15.049921" y="305.099"/>
|
||||
<use xlink:href="#glyph5-10" x="18.065197" y="305.099"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-17" x="27.702296" y="305.099"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-16" x="34.489938" y="305.099"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-2" x="37.494304" y="305.099"/>
|
||||
<use xlink:href="#glyph5-18" x="42.316126" y="305.099"/>
|
||||
<use xlink:href="#glyph5-19" x="48.342313" y="305.099"/>
|
||||
<use xlink:href="#glyph5-16" x="51.357588" y="305.099"/>
|
||||
<use xlink:href="#glyph5-10" x="54.372863" y="305.099"/>
|
||||
<use xlink:href="#glyph5-20" x="60.39905" y="305.099"/>
|
||||
<use xlink:href="#glyph5-11" x="65.823055" y="305.099"/>
|
||||
<use xlink:href="#glyph5-3" x="70.102695" y="305.099"/>
|
||||
<use xlink:href="#glyph5-2" x="74.322334" y="305.099"/>
|
||||
<use xlink:href="#glyph5-21" x="79.144157" y="305.099"/>
|
||||
<use xlink:href="#glyph5-2" x="83.965979" y="305.099"/>
|
||||
<use xlink:href="#glyph5-22" x="88.787801" y="305.099"/>
|
||||
<use xlink:href="#glyph5-8" x="94.813988" y="305.099"/>
|
||||
</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.0019375 -0.000625 L 166.673844 -0.000625 " transform="matrix(1,0,0,-1,0.291,540.39)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph6-1" x="5.187" y="547.041"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph7-1" x="9.505" y="550.85"/>
|
||||
<use xlink:href="#glyph7-2" x="18.972622" y="550.85"/>
|
||||
<use xlink:href="#glyph7-3" x="22.29826" y="550.85"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph7-4" x="29.46331" y="550.85"/>
|
||||
<use xlink:href="#glyph7-2" x="36.371921" y="550.85"/>
|
||||
<use xlink:href="#glyph7-5" x="39.697559" y="550.85"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph7-6" x="47.891055" y="550.85"/>
|
||||
<use xlink:href="#glyph7-7" x="54.160362" y="550.85"/>
|
||||
<use xlink:href="#glyph7-8" x="57.763958" y="550.85"/>
|
||||
<use xlink:href="#glyph7-9" x="62.370894" y="550.85"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 98 KiB After Width: | Height: | Size: 134 KiB |
@ -72,191 +72,284 @@
|
||||
<path style="stroke:none;" d="M 0.546875 -9.8125 L 0.546875 -9.40625 L 0.734375 -9.40625 C 1.203125 -9.40625 1.546875 -9.359375 1.546875 -8.65625 L 1.546875 -0.96875 C 1.546875 -0.453125 1.171875 -0.421875 0.78125 -0.421875 L 0.546875 -0.421875 L 0.546875 -0.015625 L 3.34375 -0.015625 L 3.34375 -0.421875 L 3.03125 -0.421875 C 2.65625 -0.421875 2.34375 -0.453125 2.34375 -0.953125 L 2.34375 -9.96875 Z M 0.546875 -9.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-11">
|
||||
<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 5.109375 -5.1875 C 5.0625 -5.203125 5 -5.203125 4.96875 -5.203125 C 4.625 -5.203125 4.390625 -4.953125 4.390625 -4.640625 C 4.390625 -4.3125 4.640625 -4.078125 4.9375 -4.078125 C 5.25 -4.078125 5.515625 -4.296875 5.515625 -4.65625 C 5.515625 -5.796875 4.34375 -6.390625 3.375 -6.390625 C 1.625 -6.390625 0.515625 -4.671875 0.515625 -3.09375 C 0.515625 -1.578125 1.5625 0.109375 3.40625 0.109375 C 4.359375 0.109375 5.265625 -0.4375 5.578125 -1.40625 C 5.625 -1.484375 5.671875 -1.59375 5.671875 -1.6875 L 5.671875 -1.75 C 5.65625 -1.8125 5.609375 -1.84375 5.546875 -1.84375 C 5.34375 -1.84375 5.34375 -1.59375 5.3125 -1.46875 C 4.96875 -0.703125 4.34375 -0.171875 3.53125 -0.171875 C 2.015625 -0.171875 1.515625 -1.890625 1.515625 -3.046875 C 1.515625 -4.21875 1.84375 -6.078125 3.484375 -6.078125 C 4.125 -6.078125 4.796875 -5.75 5.109375 -5.1875 Z M 5.109375 -5.1875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-12">
|
||||
<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 "/>
|
||||
<path style="stroke:none;" d="M 0.546875 -9.8125 L 0.546875 -9.40625 L 0.734375 -9.40625 C 1.203125 -9.40625 1.546875 -9.359375 1.546875 -8.65625 L 1.546875 -0.984375 C 1.546875 -0.4375 1.140625 -0.421875 0.609375 -0.421875 L 0.546875 -0.421875 L 0.546875 -0.015625 L 3.375 -0.015625 L 3.375 -0.421875 L 3.125 -0.421875 C 2.71875 -0.421875 2.359375 -0.453125 2.359375 -0.921875 L 2.359375 -3.6875 C 2.359375 -4.65625 2.84375 -6.046875 4.21875 -6.046875 C 5.046875 -6.046875 5.328125 -5.328125 5.328125 -4.359375 L 5.328125 -0.953125 C 5.328125 -0.453125 4.953125 -0.421875 4.546875 -0.421875 L 4.3125 -0.421875 L 4.3125 -0.015625 L 7.140625 -0.015625 L 7.140625 -0.421875 L 6.859375 -0.421875 C 6.5 -0.421875 6.140625 -0.453125 6.140625 -0.96875 L 6.140625 -4.296875 C 6.140625 -5.578125 5.546875 -6.3125 4.265625 -6.3125 C 3.421875 -6.3125 2.5625 -5.703125 2.359375 -4.90625 L 2.34375 -9.96875 Z M 0.546875 -9.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-13">
|
||||
<path style="stroke:none;" d="M 0.71875 -9.8125 L 0.71875 -9.40625 L 1.125 -9.40625 C 1.578125 -9.40625 2 -9.359375 2 -8.8125 C 2 -8.703125 1.984375 -8.625 1.984375 -8.53125 L 1.984375 -1.4375 C 1.984375 -0.546875 1.328125 -0.421875 0.71875 -0.421875 L 0.71875 -0.015625 L 3.5625 -0.015625 L 3.5625 -0.421875 C 2.984375 -0.421875 2.296875 -0.5 2.296875 -1.453125 L 2.3125 -9.359375 C 2.34375 -9.25 2.375 -9.140625 2.421875 -9.015625 L 2.625 -8.484375 C 3.625 -5.84375 4.578125 -3.171875 5.59375 -0.53125 L 5.71875 -0.1875 C 5.75 -0.09375 5.8125 -0.03125 5.90625 -0.015625 C 6.109375 -0.015625 6.171875 -0.34375 6.234375 -0.515625 C 7.21875 -3.25 8.328125 -5.953125 9.28125 -8.703125 C 9.375 -8.953125 9.5 -9.1875 9.546875 -9.453125 L 9.5625 -1 C 9.5625 -0.46875 9.140625 -0.421875 8.65625 -0.421875 L 8.3125 -0.421875 L 8.3125 -0.015625 L 11.796875 -0.015625 L 11.796875 -0.421875 L 11.4375 -0.421875 C 10.953125 -0.421875 10.515625 -0.46875 10.515625 -1 C 10.515625 -1.109375 10.53125 -1.203125 10.53125 -1.296875 L 10.53125 -8.515625 C 10.53125 -8.609375 10.515625 -8.71875 10.515625 -8.828125 C 10.515625 -9.359375 10.9375 -9.421875 11.359375 -9.421875 C 11.515625 -9.421875 11.65625 -9.40625 11.796875 -9.40625 L 11.796875 -9.8125 L 9.671875 -9.8125 L 9.453125 -9.765625 L 9.34375 -9.5625 L 6.265625 -1.296875 L 6.234375 -1.296875 L 3.171875 -9.5625 L 3.0625 -9.765625 L 2.84375 -9.8125 Z M 0.71875 -9.8125 "/>
|
||||
<path style="stroke:none;" d="M 1.546875 -6.1875 L 0.421875 -6.1875 L 0.421875 -5.78125 L 1.546875 -5.78125 L 1.546875 -0.953125 C 1.546875 -0.4375 1.15625 -0.421875 0.625 -0.421875 L 0.546875 -0.421875 L 0.546875 -0.015625 L 3.578125 -0.015625 L 3.578125 -0.421875 C 3.4375 -0.421875 3.28125 -0.40625 3.125 -0.40625 C 2.71875 -0.40625 2.34375 -0.46875 2.34375 -0.96875 L 2.34375 -5.78125 L 3.953125 -5.78125 L 3.953125 -6.1875 L 2.3125 -6.1875 L 2.3125 -7.546875 C 2.3125 -8.359375 2.453125 -9.78125 3.53125 -9.84375 L 3.578125 -9.84375 C 3.765625 -9.84375 3.9375 -9.765625 4.109375 -9.703125 C 3.875 -9.609375 3.65625 -9.515625 3.65625 -9.1875 C 3.65625 -8.859375 3.890625 -8.640625 4.1875 -8.640625 C 4.546875 -8.640625 4.734375 -8.90625 4.734375 -9.1875 C 4.734375 -9.796875 4.078125 -10.09375 3.578125 -10.09375 C 2.34375 -10.09375 1.546875 -9.015625 1.546875 -7.828125 Z M 1.546875 -6.1875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-14">
|
||||
<path style="stroke:none;" d="M 0.609375 -6.15625 L 0.609375 -5.75 L 0.765625 -5.75 C 1.203125 -5.75 1.546875 -5.6875 1.546875 -5.03125 L 1.546875 -0.90625 C 1.546875 -0.4375 1.15625 -0.421875 0.75 -0.421875 L 0.546875 -0.421875 L 0.546875 -0.015625 L 3.234375 -0.015625 L 3.234375 -0.421875 L 3 -0.421875 C 2.671875 -0.421875 2.34375 -0.453125 2.34375 -0.921875 L 2.34375 -6.3125 Z M 1.640625 -9.46875 C 1.296875 -9.40625 1.109375 -9.125 1.109375 -8.828125 C 1.109375 -8.546875 1.328125 -8.203125 1.71875 -8.203125 C 2.109375 -8.203125 2.375 -8.5 2.375 -8.828125 C 2.375 -9.15625 2.125 -9.484375 1.765625 -9.484375 C 1.71875 -9.484375 1.671875 -9.46875 1.640625 -9.46875 Z M 1.640625 -9.46875 "/>
|
||||
<path style="stroke:none;" d="M 2.015625 -8.828125 C 2.015625 -7.9375 1.703125 -6.03125 0.265625 -6.03125 L 0.265625 -5.78125 L 1.484375 -5.78125 L 1.484375 -2.53125 C 1.484375 -2.34375 1.46875 -2.140625 1.46875 -1.9375 C 1.46875 -0.796875 1.984375 0.109375 3.171875 0.109375 C 4.3125 0.109375 4.53125 -1.171875 4.53125 -2.0625 L 4.53125 -2.609375 L 4.25 -2.609375 C 4.25 -2.390625 4.265625 -2.1875 4.265625 -1.96875 C 4.265625 -1.328125 4.125 -0.171875 3.265625 -0.171875 C 2.421875 -0.171875 2.296875 -1.171875 2.296875 -1.859375 L 2.296875 -5.78125 L 4.296875 -5.78125 L 4.296875 -6.1875 L 2.296875 -6.1875 L 2.296875 -8.828125 Z M 2.015625 -8.828125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-15">
|
||||
<path style="stroke:none;" d="M 1.09375 -7.4375 C 1.375 -8.296875 1.96875 -9.109375 3.0625 -9.109375 C 4.28125 -9.109375 5.046875 -8.015625 5.046875 -6.84375 L 5.046875 -6.65625 C 4.875 -4.71875 3.265625 -3.34375 2.109375 -1.984375 C 1.640625 -1.484375 0.671875 -0.53125 0.671875 -0.171875 L 0.671875 -0.015625 L 5.78125 -0.015625 L 6.140625 -2.3125 L 5.859375 -2.3125 C 5.734375 -1.65625 5.765625 -0.953125 5.171875 -0.953125 C 4.78125 -0.953125 4.375 -0.921875 3.96875 -0.921875 L 1.515625 -0.921875 C 2.28125 -1.671875 3.046875 -2.46875 3.828125 -3.21875 C 4.8125 -4.125 6.140625 -5.203125 6.140625 -6.71875 C 6.140625 -8.5625 4.734375 -9.515625 3.171875 -9.515625 L 3.03125 -9.515625 C 1.75 -9.375 0.671875 -8.25 0.671875 -6.90625 C 0.671875 -6.5625 0.796875 -6.1875 1.3125 -6.1875 C 1.671875 -6.1875 1.96875 -6.4375 1.96875 -6.796875 C 1.96875 -7.125 1.71875 -7.453125 1.3125 -7.453125 C 1.25 -7.453125 1.15625 -7.4375 1.09375 -7.4375 Z M 1.09375 -7.4375 "/>
|
||||
<path style="stroke:none;" d="M 0.234375 -9.8125 L 0.234375 -9.40625 L 0.390625 -9.40625 C 0.640625 -9.40625 0.953125 -9.390625 1.109375 -9.296875 C 1.28125 -9.171875 1.328125 -8.9375 1.40625 -8.75 C 2.234375 -5.9375 3.1875 -3.109375 4.0625 -0.296875 L 4.109375 -0.140625 C 4.171875 0.015625 4.203125 0.25 4.40625 0.25 L 4.4375 0.25 C 4.546875 0.234375 4.578125 0.140625 4.609375 0.046875 L 4.75 -0.390625 C 5.359375 -2.40625 6.03125 -4.453125 6.65625 -6.46875 C 6.765625 -6.84375 6.875 -7.21875 7.015625 -7.578125 C 7.15625 -7.21875 7.265625 -6.84375 7.375 -6.46875 C 8.0625 -4.296875 8.78125 -2.140625 9.421875 0.046875 C 9.453125 0.125 9.484375 0.21875 9.578125 0.25 L 9.625 0.25 C 9.859375 0.25 9.890625 -0.09375 9.953125 -0.265625 C 10.75 -2.734375 11.53125 -5.21875 12.296875 -7.703125 C 12.5 -8.40625 12.65625 -9.40625 13.796875 -9.40625 L 13.796875 -9.8125 L 11.25 -9.8125 L 11.25 -9.40625 C 11.671875 -9.40625 12.28125 -9.1875 12.28125 -8.671875 C 12.25 -8.28125 12.015625 -7.8125 11.90625 -7.4375 C 11.34375 -5.6875 10.765625 -3.9375 10.25 -2.1875 C 10.1875 -1.953125 10.078125 -1.703125 10.03125 -1.46875 L 10.015625 -1.46875 C 9.96875 -1.671875 9.890625 -1.890625 9.828125 -2.09375 L 9.484375 -3.171875 C 8.890625 -5.046875 8.328125 -6.921875 7.703125 -8.8125 C 7.6875 -8.859375 7.671875 -8.9375 7.671875 -9.015625 L 7.671875 -9.046875 C 7.75 -9.40625 8.3125 -9.40625 8.671875 -9.40625 L 8.671875 -9.8125 L 5.484375 -9.8125 L 5.484375 -9.40625 L 5.671875 -9.40625 C 6.203125 -9.40625 6.546875 -9.359375 6.75 -8.390625 C 6.796875 -8.3125 6.84375 -8.1875 6.84375 -8.09375 L 6.84375 -8.046875 C 6.796875 -7.8125 6.71875 -7.609375 6.640625 -7.40625 C 6.5 -6.890625 6.328125 -6.375 6.15625 -5.859375 L 4.78125 -1.46875 C 4.6875 -1.671875 4.640625 -1.890625 4.578125 -2.109375 L 4.234375 -3.203125 C 3.671875 -4.9375 3.078125 -6.6875 2.578125 -8.4375 C 2.515625 -8.625 2.421875 -8.828125 2.421875 -9.015625 L 2.421875 -9.046875 C 2.5 -9.390625 3.078125 -9.40625 3.421875 -9.40625 L 3.421875 -9.8125 Z M 0.234375 -9.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-16">
|
||||
<path style="stroke:none;" d="M 3.234375 -9.515625 C 0.65625 -9.234375 0.609375 -6.03125 0.609375 -4.65625 L 0.609375 -4.5 C 0.609375 -3.1875 0.703125 -1.609375 1.578125 -0.609375 C 2.015625 -0.09375 2.71875 0.25 3.40625 0.25 L 3.578125 0.25 C 6.03125 0.015625 6.203125 -2.9375 6.203125 -4.765625 C 6.203125 -6.0625 6.078125 -7.578125 5.296875 -8.59375 C 4.84375 -9.15625 4.125 -9.53125 3.40625 -9.53125 C 3.359375 -9.53125 3.28125 -9.515625 3.234375 -9.515625 Z M 1.609375 -3.765625 C 1.5625 -4.15625 1.578125 -4.71875 1.578125 -5.359375 C 1.578125 -7.078125 1.75 -9.25 3.40625 -9.25 C 5.109375 -9.25 5.203125 -6.984375 5.203125 -5.546875 L 5.203125 -5.03125 C 5.203125 -4.421875 5.203125 -3.796875 5.171875 -3.1875 C 5.15625 -2.0625 5.046875 -0.5625 3.875 -0.09375 C 3.71875 -0.046875 3.5625 -0.015625 3.40625 -0.015625 C 1.640625 -0.015625 1.71875 -2.5625 1.609375 -3.765625 Z M 1.609375 -3.765625 "/>
|
||||
<path style="stroke:none;" d="M 0.609375 -9.8125 L 0.609375 -9.40625 C 0.765625 -9.40625 0.921875 -9.421875 1.078125 -9.421875 C 1.53125 -9.421875 1.953125 -9.359375 1.953125 -8.84375 C 1.953125 -8.75 1.9375 -8.65625 1.9375 -8.5625 L 1.9375 -1.28125 C 1.9375 -1.1875 1.953125 -1.109375 1.953125 -1 C 1.953125 -0.46875 1.515625 -0.40625 1.078125 -0.40625 C 0.921875 -0.40625 0.765625 -0.421875 0.609375 -0.421875 L 0.609375 -0.015625 L 4.296875 -0.015625 L 4.296875 -0.421875 C 4.15625 -0.421875 4 -0.40625 3.84375 -0.40625 C 3.390625 -0.40625 2.96875 -0.46875 2.96875 -0.96875 C 2.96875 -1.078125 2.984375 -1.171875 2.984375 -1.265625 L 2.984375 -8.546875 C 2.984375 -8.640625 2.96875 -8.71875 2.96875 -8.828125 C 2.96875 -9.359375 3.40625 -9.421875 3.84375 -9.421875 C 4 -9.421875 4.15625 -9.40625 4.296875 -9.40625 L 4.296875 -9.8125 Z M 0.609375 -9.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-17">
|
||||
<path style="stroke:none;" d="M 1.3125 -8.59375 L 1.3125 -8.1875 C 1.921875 -8.1875 2.53125 -8.296875 3.078125 -8.59375 L 3.078125 -1.03125 C 3.078125 -0.484375 2.546875 -0.40625 2.015625 -0.40625 C 1.796875 -0.40625 1.5625 -0.421875 1.375 -0.421875 L 1.375 -0.015625 L 5.671875 -0.015625 L 5.671875 -0.421875 C 5.453125 -0.421875 5.21875 -0.40625 4.984375 -0.40625 C 4.453125 -0.40625 3.953125 -0.484375 3.953125 -1.015625 L 3.953125 -9.3125 C 3.953125 -9.375 3.9375 -9.515625 3.8125 -9.515625 C 3.765625 -9.515625 3.734375 -9.5 3.703125 -9.484375 L 3.5625 -9.34375 C 2.90625 -8.78125 2.125 -8.59375 1.3125 -8.59375 Z M 1.3125 -8.59375 "/>
|
||||
<path style="stroke:none;" d="M 0.421875 -0.421875 L 0.421875 -0.015625 L 3.046875 -0.015625 L 3.046875 -0.421875 C 2.640625 -0.421875 2.171875 -0.640625 2.171875 -1.09375 L 2.171875 -1.140625 C 2.1875 -1.359375 2.296875 -1.578125 2.359375 -1.78125 C 2.546875 -2.328125 2.796875 -2.859375 2.921875 -3.40625 L 6.421875 -3.40625 C 6.6875 -3.40625 6.828125 -2.6875 6.96875 -2.296875 C 7.078125 -1.921875 7.234375 -1.546875 7.359375 -1.171875 C 7.40625 -1.0625 7.453125 -0.9375 7.453125 -0.8125 C 7.453125 -0.4375 6.828125 -0.421875 6.46875 -0.421875 L 6.46875 -0.015625 L 9.8125 -0.015625 L 9.8125 -0.421875 L 9.484375 -0.421875 C 8.71875 -0.421875 8.5625 -0.734375 8.375 -1.375 L 7.90625 -2.71875 C 7.078125 -5 6.28125 -7.296875 5.515625 -9.609375 L 5.375 -9.953125 C 5.34375 -10.109375 5.265625 -10.203125 5.109375 -10.203125 C 4.84375 -10.203125 4.8125 -9.828125 4.734375 -9.625 C 3.890625 -7.15625 2.984375 -4.703125 2.15625 -2.21875 C 1.890625 -1.453125 1.75 -0.421875 0.421875 -0.421875 Z M 3.0625 -3.8125 L 4.75 -8.65625 L 6.4375 -3.8125 Z M 3.0625 -3.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-18">
|
||||
<path style="stroke:none;" d="M 5.0625 -10.0625 C 4.03125 -9.953125 3.078125 -9.5625 2.3125 -8.796875 C 1.28125 -7.78125 0.765625 -6.34375 0.765625 -4.90625 C 0.765625 -2.453125 2.421875 0.25 5.359375 0.25 C 8.140625 0.25 9.859375 -2.46875 9.859375 -4.90625 C 9.859375 -7.4375 8.0625 -10.0625 5.265625 -10.0625 Z M 1.984375 -4.71875 L 1.984375 -4.96875 C 1.984375 -6.59375 2.359375 -8.578125 4.015625 -9.4375 C 4.40625 -9.65625 4.828125 -9.78125 5.28125 -9.78125 C 6.546875 -9.78125 7.5625 -8.90625 8.125 -7.75 C 8.5 -6.9375 8.640625 -6.03125 8.640625 -5.15625 C 8.640625 -3.296875 8.140625 -0.75 5.9375 -0.140625 C 5.734375 -0.09375 5.515625 -0.0625 5.328125 -0.0625 C 3.234375 -0.0625 2.21875 -2.359375 2.015625 -4.109375 C 2.015625 -4.296875 2.015625 -4.515625 1.984375 -4.71875 Z M 1.984375 -4.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-19">
|
||||
<path style="stroke:none;" d="M 0.15625 -3.4375 L 0.15625 -2.75 L 3.765625 -2.75 L 3.765625 -3.4375 Z M 0.15625 -3.4375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-20">
|
||||
<path style="stroke:none;" d="M 0.609375 -6.15625 L 0.609375 -5.75 L 0.765625 -5.75 C 1.203125 -5.75 1.546875 -5.6875 1.546875 -5.03125 L 1.546875 -0.90625 C 1.546875 -0.4375 1.15625 -0.421875 0.75 -0.421875 L 0.546875 -0.421875 L 0.546875 -0.015625 L 3.234375 -0.015625 L 3.234375 -0.421875 L 3 -0.421875 C 2.671875 -0.421875 2.34375 -0.453125 2.34375 -0.921875 L 2.34375 -6.3125 Z M 1.640625 -9.46875 C 1.296875 -9.40625 1.109375 -9.125 1.109375 -8.828125 C 1.109375 -8.546875 1.328125 -8.203125 1.71875 -8.203125 C 2.109375 -8.203125 2.375 -8.5 2.375 -8.828125 C 2.375 -9.15625 2.125 -9.484375 1.765625 -9.484375 C 1.71875 -9.484375 1.671875 -9.46875 1.640625 -9.46875 Z M 1.640625 -9.46875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-21">
|
||||
<path style="stroke:none;" d="M 4.28125 -9.8125 L 4.28125 -9.40625 L 4.484375 -9.40625 C 4.96875 -9.40625 5.28125 -9.359375 5.28125 -8.5 L 5.265625 -5.34375 C 4.9375 -6.03125 4.09375 -6.3125 3.453125 -6.3125 C 1.765625 -6.3125 0.515625 -4.75 0.515625 -3.078125 C 0.515625 -1.46875 1.703125 0.109375 3.359375 0.109375 C 4.15625 0.109375 4.6875 -0.265625 5.25 -0.90625 L 5.25 0.109375 L 7.078125 -0.015625 L 7.078125 -0.421875 L 6.859375 -0.421875 C 6.46875 -0.421875 6.0625 -0.453125 6.0625 -1.109375 L 6.0625 -9.96875 Z M 1.515625 -2.75 L 1.515625 -2.96875 C 1.515625 -3.984375 1.65625 -5.125 2.578125 -5.734375 C 2.890625 -5.9375 3.234375 -6.046875 3.578125 -6.046875 C 4.28125 -6.046875 5.140625 -5.46875 5.25 -4.796875 L 5.25 -1.65625 C 5.25 -0.859375 4.15625 -0.140625 3.40625 -0.140625 C 2.3125 -0.140625 1.703125 -1.234375 1.5625 -2.25 C 1.546875 -2.421875 1.546875 -2.578125 1.515625 -2.75 Z M 1.515625 -2.75 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-22">
|
||||
<path style="stroke:none;" d="M 0.671875 -9.8125 L 0.671875 -9.40625 L 1.125 -9.40625 C 1.5625 -9.40625 1.953125 -9.359375 1.953125 -8.8125 C 1.953125 -8.671875 1.9375 -8.5625 1.9375 -8.46875 L 1.9375 -4.25 C 1.9375 -3.984375 1.921875 -3.75 1.921875 -3.484375 C 1.921875 -1.703125 3.015625 0.25 5.359375 0.25 C 6.671875 0.25 7.71875 -0.859375 8.109375 -2.015625 C 8.28125 -2.53125 8.296875 -3.0625 8.296875 -3.609375 L 8.296875 -8.390625 C 8.296875 -9.28125 8.953125 -9.40625 9.546875 -9.40625 L 9.546875 -9.8125 L 6.6875 -9.8125 L 6.6875 -9.40625 C 7.28125 -9.40625 7.953125 -9.28125 7.953125 -8.390625 L 7.953125 -3.640625 C 7.953125 -2.6875 7.796875 -1.6875 7.09375 -0.96875 C 6.625 -0.453125 5.953125 -0.15625 5.265625 -0.15625 C 4.265625 -0.15625 3.4375 -0.9375 3.171875 -1.859375 C 3 -2.421875 2.984375 -3 2.984375 -3.578125 L 2.984375 -8.828125 C 2.984375 -9.359375 3.40625 -9.40625 3.828125 -9.40625 L 4.25 -9.40625 L 4.25 -9.8125 Z M 0.671875 -9.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-23">
|
||||
<path style="stroke:none;" d="M 0.546875 -6.15625 L 0.546875 -5.75 L 0.765625 -5.75 C 1.15625 -5.75 1.546875 -5.703125 1.546875 -5.03125 L 1.546875 -0.90625 C 1.546875 -0.453125 1.171875 -0.421875 0.8125 -0.421875 L 0.546875 -0.421875 L 0.546875 -0.015625 L 3.375 -0.015625 L 3.375 -0.421875 L 3.125 -0.421875 C 2.71875 -0.421875 2.359375 -0.453125 2.359375 -0.921875 L 2.359375 -3.6875 C 2.359375 -4.65625 2.84375 -6.046875 4.21875 -6.046875 C 5.046875 -6.046875 5.328125 -5.328125 5.328125 -4.359375 L 5.328125 -0.953125 C 5.328125 -0.453125 4.953125 -0.421875 4.546875 -0.421875 L 4.3125 -0.421875 L 4.3125 -0.015625 L 7.140625 -0.015625 L 7.140625 -0.421875 L 6.8125 -0.421875 C 6.5 -0.421875 6.203125 -0.453125 6.140625 -0.796875 L 6.140625 -4.1875 C 6.140625 -4.671875 6.125 -5.171875 5.859375 -5.59375 C 5.53125 -6.15625 4.875 -6.3125 4.265625 -6.3125 C 3.390625 -6.3125 2.515625 -5.640625 2.328125 -4.8125 L 2.3125 -6.3125 L 1.546875 -6.234375 Z M 0.546875 -6.15625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-24">
|
||||
<path style="stroke:none;" d="M 0.25 -6.1875 L 0.25 -5.78125 L 0.453125 -5.78125 C 1.203125 -5.78125 1.25 -5.375 1.65625 -4.40625 C 2.21875 -3.03125 2.6875 -1.59375 3.296875 -0.25 C 3.359375 -0.09375 3.40625 0.109375 3.59375 0.109375 C 3.859375 0.109375 4.15625 -0.921875 4.359375 -1.421875 C 4.78125 -2.484375 5.203125 -3.546875 5.625 -4.609375 C 5.875 -5.296875 6.234375 -5.78125 6.9375 -5.78125 L 6.9375 -6.1875 L 4.890625 -6.1875 L 4.890625 -5.78125 C 5.203125 -5.78125 5.484375 -5.53125 5.484375 -5.21875 C 5.484375 -5 5.359375 -4.78125 5.296875 -4.578125 C 4.875 -3.53125 4.5 -2.46875 4.046875 -1.4375 C 3.984375 -1.28125 3.921875 -1.125 3.875 -0.96875 L 3.859375 -0.96875 C 3.75 -1.3125 3.578125 -1.640625 3.453125 -1.984375 L 2.25 -5.03125 C 2.1875 -5.15625 2.125 -5.3125 2.125 -5.453125 L 2.125 -5.484375 C 2.1875 -5.78125 2.59375 -5.78125 2.828125 -5.78125 L 2.828125 -6.1875 Z M 0.25 -6.1875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-25">
|
||||
<path style="stroke:none;" d="M 1.421875 -5.140625 C 1.671875 -5.71875 2.359375 -6.125 3 -6.125 C 4.0625 -6.125 4.515625 -5.109375 4.515625 -4.171875 L 4.515625 -3.6875 C 3.03125 -3.6875 1.140625 -3.328125 0.671875 -1.734375 C 0.640625 -1.609375 0.625 -1.484375 0.625 -1.328125 L 0.625 -1.234375 C 0.71875 -0.265625 1.875 0.109375 2.671875 0.109375 C 3.453125 0.109375 4.28125 -0.265625 4.59375 -1.140625 L 4.609375 -1.140625 C 4.609375 -0.53125 5.03125 0.0625 5.671875 0.0625 C 6.234375 0.0625 6.6875 -0.4375 6.734375 -1.046875 L 6.734375 -2.09375 L 6.453125 -2.09375 L 6.453125 -1.359375 C 6.453125 -0.953125 6.375 -0.3125 5.890625 -0.3125 C 5.421875 -0.3125 5.328125 -0.9375 5.328125 -1.3125 C 5.328125 -1.484375 5.328125 -1.625 5.328125 -1.765625 L 5.328125 -4.203125 C 5.328125 -5.59375 4.25 -6.390625 3.0625 -6.390625 C 2.265625 -6.390625 1.46875 -5.984375 1.125 -5.171875 C 1.0625 -5.015625 1 -4.8125 1 -4.640625 C 1 -4.28125 1.28125 -4.015625 1.59375 -4.015625 C 1.890625 -4.015625 2.15625 -4.28125 2.15625 -4.578125 C 2.15625 -4.890625 1.921875 -5.15625 1.5625 -5.15625 C 1.5 -5.15625 1.46875 -5.15625 1.421875 -5.140625 Z M 4.515625 -3.4375 L 4.515625 -2.015625 C 4.515625 -1.09375 3.90625 -0.171875 2.890625 -0.140625 L 2.84375 -0.140625 C 2.203125 -0.140625 1.578125 -0.625 1.578125 -1.34375 C 1.578125 -2.84375 3.25 -3.4375 4.515625 -3.4375 Z M 1.984375 -9.203125 C 1.65625 -9.15625 1.453125 -8.90625 1.453125 -8.59375 C 1.453125 -8.265625 1.71875 -7.953125 2.078125 -7.953125 C 2.4375 -7.953125 2.71875 -8.25 2.71875 -8.59375 C 2.71875 -8.90625 2.46875 -9.21875 2.09375 -9.21875 C 2.046875 -9.21875 2.015625 -9.203125 1.984375 -9.203125 Z M 4.640625 -9.203125 C 4.3125 -9.203125 4.09375 -8.859375 4.09375 -8.59375 C 4.09375 -8.265625 4.34375 -7.953125 4.8125 -7.953125 C 5.15625 -8 5.359375 -8.296875 5.359375 -8.578125 C 5.359375 -8.90625 5.09375 -9.21875 4.734375 -9.21875 C 4.703125 -9.21875 4.65625 -9.203125 4.640625 -9.203125 Z M 4.640625 -9.203125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-26">
|
||||
<path style="stroke:none;" d="M 0.703125 -9.8125 L 0.703125 -9.40625 L 1.0625 -9.40625 C 1.53125 -9.40625 1.984375 -9.359375 1.984375 -8.828125 C 1.984375 -8.71875 1.96875 -8.625 1.96875 -8.53125 L 1.96875 -1.3125 C 1.96875 -1.21875 1.984375 -1.109375 1.984375 -1 C 1.984375 -0.46875 1.53125 -0.421875 1.09375 -0.421875 L 0.703125 -0.421875 L 0.703125 -0.015625 L 4.84375 -0.015625 C 5.109375 -0.015625 5.375 0 5.65625 0 C 7.03125 0 8.890625 -0.671875 8.890625 -2.734375 C 8.890625 -4.09375 7.375 -5.125 6.203125 -5.125 C 6.390625 -5.1875 6.578125 -5.21875 6.765625 -5.296875 C 7.640625 -5.609375 8.515625 -6.3125 8.515625 -7.40625 C 8.515625 -8.375 7.75 -9.1875 6.890625 -9.53125 C 6.296875 -9.78125 5.6875 -9.8125 5.0625 -9.8125 Z M 2.953125 -4.984375 L 4.890625 -4.984375 C 5.09375 -4.984375 5.28125 -4.984375 5.484375 -4.984375 C 6.8125 -4.984375 7.703125 -3.921875 7.703125 -2.671875 L 7.703125 -2.53125 C 7.625 -1.203125 6.53125 -0.40625 5.1875 -0.40625 C 4.984375 -0.40625 4.796875 -0.421875 4.59375 -0.421875 L 3.5 -0.421875 C 3.171875 -0.421875 2.953125 -0.46875 2.953125 -0.921875 Z M 2.953125 -5.234375 L 2.953125 -8.90625 C 2.953125 -9.359375 3.171875 -9.40625 3.46875 -9.40625 L 5.25 -9.40625 C 6.21875 -9.40625 7.34375 -8.90625 7.34375 -7.375 C 7.34375 -5.96875 6.125 -5.234375 4.859375 -5.234375 Z M 2.953125 -5.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-27">
|
||||
<path style="stroke:none;" d="M 0.546875 -6.15625 L 0.546875 -5.75 L 0.765625 -5.75 C 1.15625 -5.75 1.546875 -5.703125 1.546875 -5.03125 L 1.546875 -0.90625 C 1.546875 -0.4375 1.140625 -0.421875 0.75 -0.421875 L 0.546875 -0.421875 L 0.546875 -0.015625 L 3.375 -0.015625 L 3.375 -0.421875 L 3.125 -0.421875 C 2.734375 -0.421875 2.359375 -0.453125 2.359375 -0.921875 L 2.359375 -3.6875 C 2.359375 -4.59375 2.6875 -5.515625 3.609375 -5.9375 C 3.8125 -6.015625 4.015625 -6.046875 4.234375 -6.046875 C 5.0625 -6.046875 5.328125 -5.328125 5.328125 -4.34375 L 5.328125 -0.953125 C 5.328125 -0.4375 4.921875 -0.421875 4.421875 -0.421875 L 4.328125 -0.421875 L 4.328125 -0.015625 L 7.15625 -0.015625 L 7.15625 -0.421875 L 6.90625 -0.421875 C 6.53125 -0.421875 6.15625 -0.453125 6.15625 -0.921875 L 6.15625 -3.6875 C 6.15625 -4.59375 6.46875 -5.515625 7.40625 -5.9375 C 7.609375 -6.015625 7.796875 -6.046875 8.015625 -6.046875 C 8.84375 -6.046875 9.125 -5.328125 9.125 -4.34375 L 9.125 -0.953125 C 9.125 -0.4375 8.703125 -0.421875 8.203125 -0.421875 L 8.125 -0.421875 L 8.125 -0.015625 L 10.9375 -0.015625 L 10.9375 -0.421875 L 10.6875 -0.421875 C 10.3125 -0.421875 9.9375 -0.453125 9.9375 -0.953125 L 9.9375 -4.296875 C 9.9375 -5.296875 9.609375 -6.3125 8.109375 -6.3125 C 7.125 -6.3125 6.484375 -5.6875 6.125 -4.890625 C 5.90625 -5.84375 5.359375 -6.3125 4.25 -6.3125 C 3.390625 -6.3125 2.515625 -5.625 2.328125 -4.8125 L 2.3125 -6.3125 L 1.546875 -6.234375 Z M 0.546875 -6.15625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-28">
|
||||
<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 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 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-31">
|
||||
<path style="stroke:none;" d="M 0.71875 -9.8125 L 0.71875 -9.40625 L 1.125 -9.40625 C 1.578125 -9.40625 2 -9.359375 2 -8.8125 C 2 -8.703125 1.984375 -8.625 1.984375 -8.53125 L 1.984375 -1.4375 C 1.984375 -0.546875 1.328125 -0.421875 0.71875 -0.421875 L 0.71875 -0.015625 L 3.5625 -0.015625 L 3.5625 -0.421875 C 2.984375 -0.421875 2.296875 -0.5 2.296875 -1.453125 L 2.3125 -9.359375 C 2.34375 -9.25 2.375 -9.140625 2.421875 -9.015625 L 2.625 -8.484375 C 3.625 -5.84375 4.578125 -3.171875 5.59375 -0.53125 L 5.71875 -0.1875 C 5.75 -0.09375 5.8125 -0.03125 5.90625 -0.015625 C 6.109375 -0.015625 6.171875 -0.34375 6.234375 -0.515625 C 7.21875 -3.25 8.328125 -5.953125 9.28125 -8.703125 C 9.375 -8.953125 9.5 -9.1875 9.546875 -9.453125 L 9.5625 -1 C 9.5625 -0.46875 9.140625 -0.421875 8.65625 -0.421875 L 8.3125 -0.421875 L 8.3125 -0.015625 L 11.796875 -0.015625 L 11.796875 -0.421875 L 11.4375 -0.421875 C 10.953125 -0.421875 10.515625 -0.46875 10.515625 -1 C 10.515625 -1.109375 10.53125 -1.203125 10.53125 -1.296875 L 10.53125 -8.515625 C 10.53125 -8.609375 10.515625 -8.71875 10.515625 -8.828125 C 10.515625 -9.359375 10.9375 -9.421875 11.359375 -9.421875 C 11.515625 -9.421875 11.65625 -9.40625 11.796875 -9.40625 L 11.796875 -9.8125 L 9.671875 -9.8125 L 9.453125 -9.765625 L 9.34375 -9.5625 L 6.265625 -1.296875 L 6.234375 -1.296875 L 3.171875 -9.5625 L 3.0625 -9.765625 L 2.84375 -9.8125 Z M 0.71875 -9.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-32">
|
||||
<path style="stroke:none;" d="M 1.09375 -7.4375 C 1.375 -8.296875 1.96875 -9.109375 3.0625 -9.109375 C 4.28125 -9.109375 5.046875 -8.015625 5.046875 -6.84375 L 5.046875 -6.65625 C 4.875 -4.71875 3.265625 -3.34375 2.109375 -1.984375 C 1.640625 -1.484375 0.671875 -0.53125 0.671875 -0.171875 L 0.671875 -0.015625 L 5.78125 -0.015625 L 6.140625 -2.3125 L 5.859375 -2.3125 C 5.734375 -1.65625 5.765625 -0.953125 5.171875 -0.953125 C 4.78125 -0.953125 4.375 -0.921875 3.96875 -0.921875 L 1.515625 -0.921875 C 2.28125 -1.671875 3.046875 -2.46875 3.828125 -3.21875 C 4.8125 -4.125 6.140625 -5.203125 6.140625 -6.71875 C 6.140625 -8.5625 4.734375 -9.515625 3.171875 -9.515625 L 3.03125 -9.515625 C 1.75 -9.375 0.671875 -8.25 0.671875 -6.90625 C 0.671875 -6.5625 0.796875 -6.1875 1.3125 -6.1875 C 1.671875 -6.1875 1.96875 -6.4375 1.96875 -6.796875 C 1.96875 -7.125 1.71875 -7.453125 1.3125 -7.453125 C 1.25 -7.453125 1.15625 -7.4375 1.09375 -7.4375 Z M 1.09375 -7.4375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-33">
|
||||
<path style="stroke:none;" d="M 3.234375 -9.515625 C 0.65625 -9.234375 0.609375 -6.03125 0.609375 -4.65625 L 0.609375 -4.5 C 0.609375 -3.1875 0.703125 -1.609375 1.578125 -0.609375 C 2.015625 -0.09375 2.71875 0.25 3.40625 0.25 L 3.578125 0.25 C 6.03125 0.015625 6.203125 -2.9375 6.203125 -4.765625 C 6.203125 -6.0625 6.078125 -7.578125 5.296875 -8.59375 C 4.84375 -9.15625 4.125 -9.53125 3.40625 -9.53125 C 3.359375 -9.53125 3.28125 -9.515625 3.234375 -9.515625 Z M 1.609375 -3.765625 C 1.5625 -4.15625 1.578125 -4.71875 1.578125 -5.359375 C 1.578125 -7.078125 1.75 -9.25 3.40625 -9.25 C 5.109375 -9.25 5.203125 -6.984375 5.203125 -5.546875 L 5.203125 -5.03125 C 5.203125 -4.421875 5.203125 -3.796875 5.171875 -3.1875 C 5.15625 -2.0625 5.046875 -0.5625 3.875 -0.09375 C 3.71875 -0.046875 3.5625 -0.015625 3.40625 -0.015625 C 1.640625 -0.015625 1.71875 -2.5625 1.609375 -3.765625 Z M 1.609375 -3.765625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-34">
|
||||
<path style="stroke:none;" d="M 1.3125 -8.59375 L 1.3125 -8.1875 C 1.921875 -8.1875 2.53125 -8.296875 3.078125 -8.59375 L 3.078125 -1.03125 C 3.078125 -0.484375 2.546875 -0.40625 2.015625 -0.40625 C 1.796875 -0.40625 1.5625 -0.421875 1.375 -0.421875 L 1.375 -0.015625 L 5.671875 -0.015625 L 5.671875 -0.421875 C 5.453125 -0.421875 5.21875 -0.40625 4.984375 -0.40625 C 4.453125 -0.40625 3.953125 -0.484375 3.953125 -1.015625 L 3.953125 -9.3125 C 3.953125 -9.375 3.9375 -9.515625 3.8125 -9.515625 C 3.765625 -9.515625 3.734375 -9.5 3.703125 -9.484375 L 3.5625 -9.34375 C 2.90625 -8.78125 2.125 -8.59375 1.3125 -8.59375 Z M 1.3125 -8.59375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-35">
|
||||
<path style="stroke:none;" d="M 5.125 -4.71875 L 5.140625 -4.71875 C 5.140625 -3.234375 5.125 -1.265625 3.71875 -0.40625 C 3.40625 -0.203125 3.078125 -0.125 2.734375 -0.125 C 2.234375 -0.125 1.65625 -0.265625 1.34375 -0.6875 L 1.4375 -0.6875 C 1.765625 -0.6875 2.03125 -0.875 2.03125 -1.234375 C 2.03125 -1.515625 1.8125 -1.828125 1.484375 -1.828125 C 1.1875 -1.828125 0.9375 -1.609375 0.90625 -1.296875 L 0.90625 -1.203125 C 0.90625 -0.203125 1.90625 0.25 2.765625 0.25 C 5.1875 0.25 6.203125 -2.609375 6.203125 -4.8125 C 6.203125 -6.40625 5.984375 -8.625 4.25 -9.359375 C 3.984375 -9.46875 3.71875 -9.53125 3.421875 -9.53125 C 1.734375 -9.53125 0.609375 -7.890625 0.609375 -6.3125 C 0.609375 -4.875 1.53125 -3.203125 3.234375 -3.203125 C 4.109375 -3.203125 4.921875 -3.828125 5.125 -4.71875 Z M 5.09375 -6.375 C 5.09375 -6.203125 5.109375 -6.03125 5.109375 -5.875 C 5.046875 -4.890625 4.625 -3.453125 3.328125 -3.453125 C 2.75 -3.453125 2.359375 -3.765625 2.046875 -4.21875 C 1.6875 -4.796875 1.671875 -5.5 1.671875 -6.140625 L 1.671875 -6.296875 C 1.671875 -7.25 1.703125 -8.453125 2.6875 -8.984375 C 2.890625 -9.09375 3.171875 -9.171875 3.421875 -9.171875 C 4.890625 -9.171875 5.09375 -7.203125 5.09375 -6.484375 Z M 5.09375 -6.375 "/>
|
||||
</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 3.4375 -8.5 L 3.4375 -0.890625 L 1.859375 -0.890625 C 1.546875 -0.890625 1.375 -0.734375 1.375 -0.4375 C 1.375 -0.171875 1.546875 -0.015625 1.859375 -0.015625 L 6.734375 -0.015625 C 6.984375 -0.046875 7.078125 -0.25 7.078125 -0.46875 C 7.078125 -0.71875 6.921875 -0.90625 6.59375 -0.90625 C 6.5 -0.90625 6.40625 -0.890625 6.328125 -0.890625 L 5.1875 -0.890625 L 5.1875 -9.703125 C 5.1875 -10.0625 4.9375 -10.109375 4.6875 -10.109375 C 4.265625 -10.109375 4.046875 -9.734375 3.703125 -9.546875 C 3.140625 -9.25 2.5 -9.15625 1.859375 -9.140625 C 1.59375 -9.140625 1.296875 -9.109375 1.296875 -8.671875 C 1.296875 -8.390625 1.484375 -8.25 1.796875 -8.25 C 2.359375 -8.296875 2.890625 -8.328125 3.4375 -8.5 Z M 3.4375 -8.5 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<path style="stroke:none;" d="M 4.65625 -8.609375 L 4.65625 -0.4375 C 4.65625 -0.171875 4.8125 -0.015625 5.109375 -0.015625 L 6 -0.015625 C 6.4375 -0.015625 6.46875 -0.265625 6.46875 -0.5 L 6.46875 -8.609375 C 7.609375 -8.609375 8.765625 -8.546875 9.90625 -8.546875 L 10.078125 -8.546875 C 10.5 -8.546875 10.546875 -8.796875 10.546875 -9.015625 L 10.546875 -9.3125 C 10.546875 -9.5 10.515625 -9.78125 10.125 -9.78125 L 1.34375 -9.78125 C 1.265625 -9.78125 1.171875 -9.796875 1.078125 -9.796875 C 0.765625 -9.796875 0.59375 -9.625 0.59375 -9.328125 L 0.59375 -9.03125 C 0.59375 -8.75 0.640625 -8.53125 1.140625 -8.53125 C 1.265625 -8.53125 1.40625 -8.546875 1.53125 -8.5625 L 1.984375 -8.5625 C 2.125 -8.5625 2.28125 -8.5625 2.4375 -8.578125 L 3.1875 -8.578125 C 3.671875 -8.59375 4.171875 -8.609375 4.65625 -8.609375 Z M 4.65625 -8.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-3">
|
||||
<path style="stroke:none;" d="M 2.765625 -5.21875 C 2.75 -5.328125 2.75 -5.421875 2.75 -5.515625 L 2.75 -6.09375 C 2.75 -6.484375 2.515625 -6.546875 2.25 -6.546875 L 1.5 -6.546875 C 1.265625 -6.546875 1.0625 -6.40625 1.0625 -6.0625 C 1.0625 -5.984375 1.078125 -5.90625 1.078125 -5.84375 L 1.078125 -0.546875 C 1.078125 -0.296875 1.109375 -0.015625 1.5 -0.015625 L 2.3125 -0.015625 C 2.546875 -0.015625 2.8125 -0.078125 2.8125 -0.4375 L 2.8125 -2.765625 C 2.8125 -3.25 2.8125 -3.71875 3.0625 -4.140625 C 3.46875 -4.859375 4.265625 -5.234375 5.0625 -5.3125 L 5.15625 -5.3125 C 5.3125 -5.3125 5.359375 -5.34375 5.359375 -5.515625 L 5.359375 -6.375 C 5.359375 -6.546875 5.3125 -6.609375 5.140625 -6.609375 C 4.21875 -6.609375 3.0625 -5.921875 2.765625 -5.21875 Z M 2.765625 -5.21875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-4">
|
||||
<path style="stroke:none;" d="M 5.671875 -0.765625 C 5.671875 -0.671875 5.65625 -0.59375 5.65625 -0.484375 C 5.65625 -0.140625 5.859375 -0.015625 6.171875 -0.015625 L 6.9375 -0.015625 C 7.1875 -0.015625 7.40625 -0.09375 7.40625 -0.46875 L 7.40625 -6.046875 C 7.40625 -6.453125 7.125 -6.484375 6.90625 -6.484375 L 6.09375 -6.484375 C 5.734375 -6.484375 5.640625 -6.28125 5.640625 -6.03125 L 5.640625 -2.9375 C 5.640625 -2.765625 5.65625 -2.59375 5.65625 -2.421875 C 5.65625 -1.359375 4.9375 -0.6875 3.84375 -0.6875 C 3.25 -0.6875 2.828125 -0.6875 2.828125 -1.71875 L 2.828125 -5.953125 C 2.828125 -6.21875 2.796875 -6.484375 2.359375 -6.484375 L 1.546875 -6.484375 C 1.203125 -6.484375 1.046875 -6.328125 1.046875 -5.984375 C 1.046875 -5.875 1.0625 -5.78125 1.0625 -5.6875 L 1.0625 -1.90625 C 1.0625 -1.46875 1.078125 -1.03125 1.296875 -0.625 C 1.703125 0.109375 2.71875 0.109375 3.40625 0.109375 C 4.265625 0.109375 5.0625 -0.15625 5.671875 -0.765625 Z M 2.015625 -9.828125 C 1.8125 -9.78125 1.71875 -9.609375 1.71875 -9.375 L 1.71875 -8.5 C 1.71875 -8.265625 1.828125 -8.03125 2.109375 -8.03125 L 3.03125 -8.03125 C 3.296875 -8.03125 3.53125 -8.109375 3.53125 -8.453125 L 3.53125 -9.40625 C 3.53125 -9.765625 3.296875 -9.84375 3.0625 -9.84375 L 2.203125 -9.84375 C 2.140625 -9.84375 2.078125 -9.84375 2.015625 -9.828125 Z M 5.21875 -9.828125 C 5 -9.78125 4.9375 -9.625 4.9375 -9.40625 L 4.9375 -8.46875 C 4.9375 -8.1875 5.078125 -8.03125 5.359375 -8.03125 L 6.25 -8.03125 C 6.515625 -8.03125 6.734375 -8.125 6.734375 -8.5 L 6.734375 -9.296875 C 6.734375 -9.625 6.640625 -9.84375 6.28125 -9.84375 L 5.40625 -9.84375 C 5.328125 -9.84375 5.28125 -9.84375 5.21875 -9.828125 Z M 5.21875 -9.828125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-5">
|
||||
<path style="stroke:none;" d="M 1.421875 -6.484375 L 0.953125 -6.484375 C 0.640625 -6.484375 0.4375 -6.359375 0.4375 -6.03125 C 0.4375 -5.75 0.609375 -5.609375 0.953125 -5.609375 L 1.421875 -5.609375 L 1.421875 -0.84375 C 1.421875 -0.75 1.40625 -0.640625 1.40625 -0.53125 C 1.40625 -0.265625 1.484375 -0.015625 1.84375 -0.015625 L 2.65625 -0.015625 C 3.0625 -0.015625 3.15625 -0.234375 3.15625 -0.546875 L 3.15625 -5.609375 L 4.078125 -5.609375 C 4.140625 -5.609375 4.234375 -5.59375 4.296875 -5.59375 C 4.59375 -5.59375 4.75 -5.796875 4.75 -6.046875 C 4.75 -6.328125 4.59375 -6.484375 4.28125 -6.484375 L 3.125 -6.484375 L 3.125 -8.234375 C 3.125 -8.875 3.265625 -9.46875 4.265625 -9.46875 C 4.6875 -9.46875 5.078125 -9.34375 5.390625 -9.0625 C 5.453125 -9.015625 5.515625 -8.984375 5.578125 -8.984375 L 5.609375 -8.984375 C 5.6875 -9.015625 5.703125 -9.109375 5.703125 -9.1875 L 5.703125 -10.125 C 5.65625 -10.40625 4.515625 -10.40625 4.21875 -10.40625 C 3.40625 -10.40625 2.578125 -10.234375 2.015625 -9.65625 C 1.625 -9.234375 1.46875 -8.65625 1.421875 -8.109375 Z M 7.71875 -5.609375 L 8.640625 -5.609375 C 8.703125 -5.609375 8.796875 -5.59375 8.859375 -5.59375 C 9.15625 -5.59375 9.3125 -5.796875 9.3125 -6.046875 C 9.3125 -6.328125 9.15625 -6.484375 8.84375 -6.484375 L 7.6875 -6.484375 L 7.6875 -7.875 C 7.6875 -8.015625 7.671875 -8.15625 7.671875 -8.3125 C 7.671875 -8.921875 7.90625 -9.484375 8.828125 -9.484375 C 9.171875 -9.484375 9.515625 -9.375 9.765625 -9.203125 C 9.875 -9.15625 10.015625 -8.984375 10.140625 -8.984375 C 10.28125 -8.984375 10.28125 -9.125 10.28125 -9.203125 L 10.28125 -10.046875 C 10.28125 -10.390625 9.53125 -10.34375 9.1875 -10.390625 L 8.96875 -10.390625 C 7.953125 -10.390625 6.78125 -10.25 6.25 -9.1875 C 6.015625 -8.6875 5.984375 -8.15625 5.984375 -7.625 L 5.984375 -0.484375 C 5.984375 -0.1875 6.09375 0 6.515625 0 C 6.65625 0 6.8125 -0.015625 6.953125 -0.015625 C 7.046875 -0.015625 7.140625 0 7.234375 0 C 7.46875 0 7.71875 -0.09375 7.71875 -0.421875 Z M 7.71875 -5.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-6">
|
||||
<path style="stroke:none;" d="M 2.15625 -3 L 6.5625 -3 C 6.9375 -3 7.0625 -3.203125 7.0625 -3.484375 C 7.0625 -5.140625 6.375 -6.6875 3.9375 -6.6875 C 3 -6.6875 2 -6.46875 1.3125 -5.796875 C 0.65625 -5.140625 0.453125 -4.171875 0.453125 -3.28125 C 0.453125 -2.5 0.609375 -1.671875 1.125 -1.0625 C 1.84375 -0.140625 3.0625 0.109375 4.15625 0.109375 C 4.984375 0.109375 5.828125 -0.0625 6.5625 -0.40625 C 6.6875 -0.453125 6.921875 -0.53125 6.953125 -0.671875 L 6.953125 -0.734375 C 6.953125 -1.03125 6.9375 -1.65625 6.78125 -1.703125 L 6.75 -1.703125 C 6.625 -1.703125 6.484375 -1.5625 6.390625 -1.484375 C 5.78125 -1.046875 4.984375 -0.796875 4.21875 -0.796875 C 3.234375 -0.796875 2.15625 -1.3125 2.15625 -2.890625 Z M 2.171875 -3.796875 C 2.171875 -4.859375 2.828125 -5.765625 3.9375 -5.765625 C 5.28125 -5.765625 5.4375 -4.6875 5.515625 -3.796875 Z M 2.171875 -3.796875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-7">
|
||||
<path style="stroke:none;" d="M 1.375 -10.234375 C 1.125 -10.234375 1.078125 -9.90625 1.078125 -9.734375 L 1.078125 -0.78125 C 1.078125 -0.703125 1.0625 -0.609375 1.0625 -0.5 C 1.0625 -0.265625 1.171875 -0.046875 1.40625 -0.015625 L 2.265625 -0.015625 C 2.75 -0.015625 2.8125 -0.21875 2.8125 -0.484375 L 2.8125 -9.484375 C 2.8125 -9.5625 2.828125 -9.65625 2.828125 -9.75 C 2.828125 -10 2.734375 -10.234375 2.46875 -10.25 L 1.59375 -10.25 C 1.515625 -10.25 1.453125 -10.25 1.375 -10.234375 Z M 1.375 -10.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-8">
|
||||
<path style="stroke:none;" d="M 2.84375 -6.6875 C 1.84375 -6.578125 0.546875 -6.34375 0.546875 -4.703125 C 0.546875 -3.59375 1.5 -2.9375 2.5 -2.71875 C 3.25 -2.5625 4.640625 -2.53125 4.640625 -1.703125 C 4.640625 -0.96875 3.796875 -0.890625 3.328125 -0.890625 C 2.4375 -0.890625 1.671875 -1.1875 0.984375 -1.828125 C 0.953125 -1.859375 0.859375 -1.9375 0.78125 -1.9375 C 0.609375 -1.9375 0.625 -1.65625 0.609375 -1.5 C 0.578125 -1.25 0.453125 -0.96875 0.453125 -0.703125 C 0.453125 -0.5625 0.578125 -0.53125 0.6875 -0.453125 C 1.515625 -0.09375 2.421875 0.125 3.328125 0.125 C 4.484375 0.125 5.9375 -0.21875 5.9375 -2 C 5.9375 -3.015625 5.109375 -3.75 4.171875 -4.015625 C 3.734375 -4.125 3.265625 -4.1875 2.828125 -4.265625 C 2.4375 -4.34375 1.84375 -4.515625 1.84375 -5 L 1.84375 -5.078125 C 1.96875 -5.71875 2.625 -5.75 3.140625 -5.75 C 3.90625 -5.75 4.5625 -5.53125 5.15625 -5.09375 C 5.203125 -5.0625 5.265625 -5 5.328125 -5 C 5.53125 -5 5.640625 -5.875 5.640625 -6.0625 C 5.640625 -6.265625 5.21875 -6.359375 4.984375 -6.421875 C 4.453125 -6.609375 3.890625 -6.6875 3.3125 -6.6875 Z M 2.84375 -6.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-9">
|
||||
<path style="stroke:none;" d="M 5.671875 -0.765625 C 5.671875 -0.671875 5.65625 -0.59375 5.65625 -0.484375 C 5.65625 -0.140625 5.859375 -0.015625 6.171875 -0.015625 L 6.9375 -0.015625 C 7.1875 -0.015625 7.40625 -0.09375 7.40625 -0.46875 L 7.40625 -6.046875 C 7.40625 -6.453125 7.125 -6.484375 6.90625 -6.484375 L 6.09375 -6.484375 C 5.734375 -6.484375 5.640625 -6.28125 5.640625 -6.03125 L 5.640625 -2.9375 C 5.640625 -2.765625 5.65625 -2.59375 5.65625 -2.421875 C 5.65625 -1.359375 4.9375 -0.6875 3.84375 -0.6875 C 3.25 -0.6875 2.828125 -0.6875 2.828125 -1.71875 L 2.828125 -5.953125 C 2.828125 -6.21875 2.796875 -6.484375 2.359375 -6.484375 L 1.546875 -6.484375 C 1.203125 -6.484375 1.046875 -6.328125 1.046875 -5.984375 C 1.046875 -5.875 1.0625 -5.78125 1.0625 -5.6875 L 1.0625 -1.90625 C 1.0625 -1.46875 1.078125 -1.03125 1.296875 -0.625 C 1.703125 0.109375 2.71875 0.109375 3.40625 0.109375 C 4.265625 0.109375 5.0625 -0.15625 5.671875 -0.765625 Z M 5.671875 -0.765625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-10">
|
||||
<path style="stroke:none;" d="M 3.78125 -6.6875 C 3.578125 -6.65625 3.359375 -6.640625 3.140625 -6.609375 C 2.515625 -6.5 1.890625 -6.25 1.421875 -5.8125 C 0.765625 -5.171875 0.546875 -4.21875 0.546875 -3.3125 C 0.546875 -2.4375 0.703125 -1.53125 1.3125 -0.859375 C 2.015625 -0.09375 3.109375 0.109375 4.109375 0.109375 C 5.015625 0.109375 5.9375 -0.078125 6.734375 -0.5 C 6.828125 -0.546875 6.859375 -0.609375 6.859375 -0.6875 C 6.859375 -1.03125 6.8125 -1.71875 6.65625 -1.734375 L 6.640625 -1.734375 C 6.484375 -1.734375 6.171875 -1.4375 5.953125 -1.3125 C 5.40625 -1 4.78125 -0.859375 4.15625 -0.859375 C 2.53125 -0.859375 2.3125 -2.15625 2.3125 -3.234375 C 2.3125 -4.375 2.484375 -5.703125 4.15625 -5.703125 C 4.953125 -5.703125 5.5 -5.5625 6.203125 -5.015625 C 6.28125 -4.96875 6.375 -4.859375 6.46875 -4.859375 C 6.625 -4.859375 6.625 -5.09375 6.640625 -5.171875 L 6.734375 -5.6875 C 6.734375 -5.765625 6.765625 -5.84375 6.765625 -5.90625 C 6.765625 -6.203125 5.703125 -6.53125 5.296875 -6.59375 C 4.953125 -6.671875 4.609375 -6.6875 4.265625 -6.6875 Z M 3.78125 -6.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-11">
|
||||
<path style="stroke:none;" d="M 2.796875 -5.515625 L 2.796875 -9.765625 C 2.796875 -10.078125 2.703125 -10.265625 2.25 -10.265625 C 2.09375 -10.265625 1.9375 -10.25 1.78125 -10.25 C 1.6875 -10.25 1.609375 -10.265625 1.515625 -10.265625 C 1.296875 -10.265625 1.0625 -10.140625 1.0625 -9.859375 L 1.0625 -0.53125 C 1.0625 -0.296875 1.078125 -0.109375 1.375 -0.015625 L 2.3125 -0.015625 C 2.671875 -0.015625 2.828125 -0.171875 2.828125 -0.53125 L 2.828125 -3.5625 C 2.828125 -4.515625 3.3125 -5.6875 4.53125 -5.6875 C 5.5 -5.6875 5.640625 -5.125 5.640625 -4.484375 L 5.640625 -0.515625 C 5.640625 -0.1875 5.75 -0.015625 6.078125 -0.015625 L 6.90625 -0.015625 C 7.21875 -0.015625 7.421875 -0.15625 7.421875 -0.5 C 7.421875 -0.609375 7.40625 -0.703125 7.40625 -0.78125 L 7.40625 -4.21875 C 7.40625 -4.765625 7.40625 -5.328125 7.125 -5.828125 C 6.734375 -6.53125 5.859375 -6.609375 5.15625 -6.609375 C 4.1875 -6.609375 3.390625 -6.203125 2.796875 -5.515625 Z M 2.796875 -5.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-12">
|
||||
<path style="stroke:none;" d="M 2.40625 -1.25 C 3.34375 -2.0625 4.265625 -2.921875 5.234375 -3.703125 C 6.203125 -4.46875 7.359375 -5.4375 7.40625 -6.8125 L 7.40625 -6.921875 C 7.40625 -8.875 5.765625 -10.109375 3.90625 -10.109375 C 2.6875 -10.109375 1.5625 -9.609375 0.96875 -8.515625 C 0.859375 -8.34375 0.703125 -8.09375 0.703125 -7.953125 L 0.703125 -7.921875 C 0.703125 -7.71875 1.3125 -7.125 1.4375 -6.96875 C 1.46875 -6.9375 1.515625 -6.90625 1.578125 -6.90625 L 1.609375 -6.90625 C 1.734375 -6.953125 1.84375 -7.46875 1.9375 -7.703125 C 2.234375 -8.390625 2.78125 -8.953125 3.640625 -8.953125 C 4.703125 -8.953125 5.625 -8.140625 5.625 -6.90625 C 5.625 -5.65625 4.671875 -4.65625 3.8125 -3.859375 C 2.90625 -3 2.015625 -2.140625 1.140625 -1.25 C 0.984375 -1.109375 0.796875 -0.984375 0.796875 -0.78125 C 0.796875 -0.703125 0.8125 -0.640625 0.8125 -0.59375 L 0.8125 -0.484375 C 0.8125 -0.140625 0.984375 -0.015625 1.296875 -0.015625 L 6.9375 -0.015625 C 7.171875 -0.015625 7.40625 -0.09375 7.40625 -0.4375 L 7.40625 -0.78125 C 7.40625 -1.015625 7.359375 -1.28125 6.984375 -1.28125 L 6.78125 -1.28125 C 6.484375 -1.28125 6.1875 -1.265625 5.875 -1.265625 L 4.546875 -1.265625 C 3.828125 -1.265625 3.125 -1.25 2.40625 -1.25 Z M 2.40625 -1.25 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-13">
|
||||
<path style="stroke:none;" d="M 4.5625 -5.609375 C 4.15625 -5.09375 3.71875 -4.609375 3.28125 -4.109375 C 2.453125 -3.109375 1.640625 -2.140625 0.796875 -1.171875 C 0.65625 -1 0.453125 -0.84375 0.453125 -0.59375 L 0.453125 -0.46875 C 0.453125 -0.171875 0.578125 -0.015625 0.953125 -0.015625 L 5.921875 -0.015625 C 6 -0.015625 6.0625 0 6.15625 0 C 6.578125 0 6.625 -0.265625 6.625 -0.53125 C 6.625 -0.75 6.5625 -1 6.203125 -1 L 6.09375 -1 C 4.890625 -1 3.703125 -0.953125 2.5 -0.953125 C 2.84375 -1.375 3.21875 -1.796875 3.578125 -2.203125 L 6.234375 -5.359375 C 6.40625 -5.546875 6.59375 -5.703125 6.59375 -6.015625 C 6.59375 -6.40625 6.375 -6.484375 6.109375 -6.484375 L 1.171875 -6.484375 C 0.78125 -6.484375 0.6875 -6.28125 0.6875 -6.03125 C 0.6875 -5.78125 0.78125 -5.5625 1.109375 -5.5625 L 1.21875 -5.5625 C 1.390625 -5.5625 1.578125 -5.5625 1.75 -5.578125 L 1.921875 -5.578125 C 2.140625 -5.578125 2.359375 -5.5625 2.5625 -5.5625 C 2.796875 -5.5625 3.015625 -5.59375 3.234375 -5.59375 L 3.625 -5.59375 C 3.9375 -5.59375 4.25 -5.609375 4.5625 -5.609375 Z M 4.5625 -5.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-14">
|
||||
<path style="stroke:none;" d="M 2.8125 -5.875 L 2.8125 -6.03125 C 2.8125 -6.46875 2.53125 -6.484375 2.265625 -6.484375 L 1.59375 -6.484375 C 1.34375 -6.484375 1.078125 -6.421875 1.078125 -6.046875 L 1.078125 2.421875 C 1.109375 2.671875 1.3125 2.765625 1.53125 2.765625 L 2.34375 2.765625 C 2.5625 2.765625 2.84375 2.734375 2.84375 2.359375 L 2.84375 -0.59375 C 3.328125 -0.140625 3.984375 0.109375 4.640625 0.109375 C 5.609375 0.109375 6.703125 -0.125 7.296875 -0.96875 C 7.78125 -1.609375 7.921875 -2.5 7.921875 -3.265625 C 7.921875 -4.75 7.484375 -6.609375 5.09375 -6.609375 C 4.28125 -6.609375 3.453125 -6.390625 2.8125 -5.875 Z M 6.140625 -2.953125 C 6.03125 -1.9375 5.734375 -0.796875 4.203125 -0.796875 C 3.703125 -0.796875 2.84375 -1.15625 2.84375 -1.703125 L 2.84375 -4.921875 C 2.890625 -5.3125 3.78125 -5.640625 4.359375 -5.640625 C 5.84375 -5.640625 6.15625 -4.3125 6.15625 -3.234375 C 6.15625 -3.140625 6.15625 -3.046875 6.140625 -2.953125 Z M 6.140625 -2.953125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-15">
|
||||
<path style="stroke:none;" d="M 1.46875 -6.484375 L 0.75 -6.484375 C 0.46875 -6.484375 0.28125 -6.3125 0.28125 -6.03125 C 0.28125 -5.765625 0.453125 -5.609375 0.71875 -5.609375 L 1.4375 -5.609375 L 1.4375 -1.828125 C 1.4375 -0.890625 1.671875 0.109375 2.890625 0.109375 C 3.703125 0.109375 4.5625 -0.046875 5.265625 -0.421875 C 5.34375 -0.453125 5.46875 -0.5 5.46875 -0.609375 L 5.46875 -0.640625 C 5.46875 -0.828125 5.328125 -1.34375 5.171875 -1.34375 C 5.046875 -1.34375 4.875 -1.1875 4.734375 -1.109375 C 4.453125 -0.953125 4.109375 -0.859375 3.796875 -0.859375 C 3.234375 -0.859375 3.140625 -1.390625 3.140625 -2.140625 L 3.140625 -5.609375 L 4.734375 -5.609375 C 5 -5.609375 5.21875 -5.75 5.21875 -6.03125 C 5.21875 -6.34375 5.03125 -6.484375 4.71875 -6.484375 L 3.140625 -6.484375 L 3.140625 -7.84375 C 3.140625 -8.1875 3.015625 -8.34375 2.609375 -8.34375 C 2.515625 -8.34375 2.390625 -8.328125 2.296875 -8.328125 C 2.1875 -8.328125 2.09375 -8.34375 2 -8.34375 C 1.71875 -8.34375 1.46875 -8.28125 1.46875 -7.84375 Z M 1.46875 -6.484375 "/>
|
||||
<path style="stroke:none;" d="M 2.734375 -4.25 C 2.75 -4.390625 2.75 -4.640625 2.5 -4.640625 C 2.328125 -4.640625 2.203125 -4.5 2.234375 -4.375 L 2.234375 -4.25 L 2.375 -2.703125 L 1.09375 -3.625 C 1 -3.671875 0.984375 -3.703125 0.921875 -3.703125 C 0.78125 -3.703125 0.640625 -3.5625 0.640625 -3.421875 C 0.640625 -3.265625 0.75 -3.21875 0.84375 -3.171875 L 2.265625 -2.5 L 0.890625 -1.828125 C 0.734375 -1.75 0.640625 -1.703125 0.640625 -1.5625 C 0.640625 -1.40625 0.78125 -1.28125 0.921875 -1.28125 C 0.984375 -1.28125 1 -1.28125 1.25 -1.46875 L 2.375 -2.265625 L 2.21875 -0.59375 C 2.21875 -0.390625 2.40625 -0.34375 2.484375 -0.34375 C 2.609375 -0.34375 2.75 -0.40625 2.75 -0.59375 L 2.609375 -2.265625 L 3.875 -1.34375 C 3.96875 -1.296875 3.984375 -1.28125 4.0625 -1.28125 C 4.203125 -1.28125 4.328125 -1.421875 4.328125 -1.5625 C 4.328125 -1.703125 4.234375 -1.75 4.109375 -1.8125 C 3.515625 -2.109375 3.5 -2.109375 2.71875 -2.484375 L 4.09375 -3.15625 C 4.25 -3.234375 4.328125 -3.265625 4.328125 -3.421875 C 4.328125 -3.5625 4.203125 -3.703125 4.0625 -3.703125 C 3.984375 -3.703125 3.96875 -3.703125 3.71875 -3.515625 L 2.609375 -2.703125 Z M 2.734375 -4.25 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-1">
|
||||
<path style="stroke:none;" d="M 2.8125 -6.75 L 2.8125 -0.765625 L 1.84375 -0.765625 C 1.75 -0.765625 1.671875 -0.78125 1.578125 -0.78125 C 1.28125 -0.78125 1.140625 -0.59375 1.140625 -0.375 C 1.140625 -0.15625 1.296875 -0.015625 1.578125 -0.015625 L 5.34375 -0.015625 C 5.609375 -0.015625 5.765625 -0.15625 5.765625 -0.375 C 5.765625 -0.625 5.59375 -0.765625 5.328125 -0.765625 L 4.21875 -0.765625 L 4.21875 -7.703125 C 4.21875 -8.015625 4 -8.09375 3.78125 -8.09375 C 3.515625 -8.09375 3.46875 -7.984375 3.3125 -7.875 C 2.8125 -7.421875 2.109375 -7.34375 1.46875 -7.3125 C 1.25 -7.296875 1.0625 -7.203125 1.0625 -6.9375 C 1.0625 -6.734375 1.1875 -6.5625 1.40625 -6.546875 C 1.875 -6.546875 2.359375 -6.625 2.8125 -6.75 Z M 2.8125 -6.75 "/>
|
||||
<path style="stroke:none;" d="M 3.4375 -8.5 L 3.4375 -0.890625 L 1.859375 -0.890625 C 1.546875 -0.890625 1.375 -0.734375 1.375 -0.4375 C 1.375 -0.171875 1.546875 -0.015625 1.859375 -0.015625 L 6.734375 -0.015625 C 6.984375 -0.046875 7.078125 -0.25 7.078125 -0.46875 C 7.078125 -0.71875 6.921875 -0.90625 6.59375 -0.90625 C 6.5 -0.90625 6.40625 -0.890625 6.328125 -0.890625 L 5.1875 -0.890625 L 5.1875 -9.703125 C 5.1875 -10.0625 4.9375 -10.109375 4.6875 -10.109375 C 4.265625 -10.109375 4.046875 -9.734375 3.703125 -9.546875 C 3.140625 -9.25 2.5 -9.15625 1.859375 -9.140625 C 1.59375 -9.140625 1.296875 -9.109375 1.296875 -8.671875 C 1.296875 -8.390625 1.484375 -8.25 1.796875 -8.25 C 2.359375 -8.296875 2.890625 -8.328125 3.4375 -8.5 Z M 3.4375 -8.5 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-2">
|
||||
<path style="stroke:none;" d="M 1.28125 -1.328125 C 1.203125 -1.296875 1.1875 -1.21875 1.1875 -1.140625 L 1.1875 -0.21875 C 1.1875 -0.0625 1.25 -0.015625 1.40625 -0.015625 L 2.140625 -0.015625 C 2.203125 -0.015625 2.265625 0 2.3125 0 C 2.46875 0 2.515625 -0.078125 2.515625 -0.203125 L 2.515625 -1.140625 C 2.515625 -1.296875 2.46875 -1.34375 2.3125 -1.34375 L 1.578125 -1.34375 C 1.515625 -1.34375 1.453125 -1.34375 1.40625 -1.34375 C 1.34375 -1.34375 1.3125 -1.34375 1.28125 -1.328125 Z M 1.28125 -1.328125 "/>
|
||||
<path style="stroke:none;" d="M 4.65625 -8.609375 L 4.65625 -0.4375 C 4.65625 -0.171875 4.8125 -0.015625 5.109375 -0.015625 L 6 -0.015625 C 6.4375 -0.015625 6.46875 -0.265625 6.46875 -0.5 L 6.46875 -8.609375 C 7.609375 -8.609375 8.765625 -8.546875 9.90625 -8.546875 L 10.078125 -8.546875 C 10.5 -8.546875 10.546875 -8.796875 10.546875 -9.015625 L 10.546875 -9.3125 C 10.546875 -9.5 10.515625 -9.78125 10.125 -9.78125 L 1.34375 -9.78125 C 1.265625 -9.78125 1.171875 -9.796875 1.078125 -9.796875 C 0.765625 -9.796875 0.59375 -9.625 0.59375 -9.328125 L 0.59375 -9.03125 C 0.59375 -8.75 0.640625 -8.53125 1.140625 -8.53125 C 1.265625 -8.53125 1.40625 -8.546875 1.53125 -8.5625 L 1.984375 -8.5625 C 2.125 -8.5625 2.28125 -8.5625 2.4375 -8.578125 L 3.1875 -8.578125 C 3.671875 -8.59375 4.171875 -8.609375 4.65625 -8.609375 Z M 4.65625 -8.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-3">
|
||||
<path style="stroke:none;" d="M 3.40625 -8.5625 C 2.703125 -8.46875 2.046875 -8.40625 1.484375 -7.9375 C 0.953125 -7.5 0.734375 -6.796875 0.734375 -6.140625 C 0.734375 -4.921875 1.75 -4.0625 2.875 -3.78125 C 3.859375 -3.53125 5.4375 -3.484375 5.4375 -2.203125 C 5.4375 -1.140625 4.546875 -0.890625 3.734375 -0.890625 C 2.8125 -0.890625 1.859375 -1.21875 1.15625 -1.765625 C 1.09375 -1.8125 1.015625 -1.921875 0.921875 -1.921875 C 0.78125 -1.921875 0.78125 -1.734375 0.75 -1.640625 C 0.703125 -1.34375 0.59375 -1 0.59375 -0.734375 C 0.59375 -0.640625 0.65625 -0.59375 0.734375 -0.5625 L 0.984375 -0.421875 C 1.828125 0.015625 2.8125 0.25 3.765625 0.25 C 5.15625 0.25 6.71875 -0.28125 6.71875 -2.3125 C 6.71875 -3.53125 5.828125 -4.5 4.703125 -4.84375 C 3.75 -5.125 2.015625 -5.125 2.015625 -6.3125 L 2.015625 -6.34375 C 2.015625 -7.359375 3.0625 -7.5 3.734375 -7.5 C 4.484375 -7.5 5.109375 -7.28125 5.71875 -6.78125 C 5.765625 -6.734375 5.859375 -6.640625 5.9375 -6.640625 C 6.109375 -6.640625 6.234375 -7.609375 6.234375 -7.8125 C 6.234375 -8.015625 5.765625 -8.15625 5.53125 -8.265625 C 4.921875 -8.5 4.265625 -8.5625 3.609375 -8.5625 Z M 3.40625 -8.5625 "/>
|
||||
<path style="stroke:none;" d="M 2.765625 -5.21875 C 2.75 -5.328125 2.75 -5.421875 2.75 -5.515625 L 2.75 -6.09375 C 2.75 -6.484375 2.515625 -6.546875 2.25 -6.546875 L 1.5 -6.546875 C 1.265625 -6.546875 1.0625 -6.40625 1.0625 -6.0625 C 1.0625 -5.984375 1.078125 -5.90625 1.078125 -5.84375 L 1.078125 -0.546875 C 1.078125 -0.296875 1.109375 -0.015625 1.5 -0.015625 L 2.3125 -0.015625 C 2.546875 -0.015625 2.8125 -0.078125 2.8125 -0.4375 L 2.8125 -2.765625 C 2.8125 -3.25 2.8125 -3.71875 3.0625 -4.140625 C 3.46875 -4.859375 4.265625 -5.234375 5.0625 -5.3125 L 5.15625 -5.3125 C 5.3125 -5.3125 5.359375 -5.34375 5.359375 -5.515625 L 5.359375 -6.375 C 5.359375 -6.546875 5.3125 -6.609375 5.140625 -6.609375 C 4.21875 -6.609375 3.0625 -5.921875 2.765625 -5.21875 Z M 2.765625 -5.21875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-4">
|
||||
<path style="stroke:none;" d="M 4.65625 -0.53125 L 4.65625 -0.390625 C 4.65625 -0.046875 4.921875 0 5.140625 0 C 5.21875 0 5.3125 -0.015625 5.40625 -0.015625 L 5.5625 -0.015625 C 5.78125 -0.015625 6.015625 -0.046875 6.015625 -0.484375 L 6.015625 -4.859375 C 6.015625 -4.921875 6.03125 -5 6.03125 -5.0625 C 6.03125 -5.421875 5.765625 -5.484375 5.53125 -5.484375 L 5.0625 -5.484375 C 4.75 -5.484375 4.625 -5.328125 4.625 -5.03125 L 4.625 -2.390625 C 4.625 -2.234375 4.640625 -2.078125 4.640625 -1.90625 C 4.640625 -1.046875 4.03125 -0.53125 3.171875 -0.53125 L 3.0625 -0.53125 C 2.625 -0.53125 2.28125 -0.578125 2.28125 -1.40625 L 2.28125 -5.1875 C 2.25 -5.359375 2.078125 -5.484375 1.90625 -5.484375 L 1.34375 -5.484375 C 1.046875 -5.484375 0.890625 -5.328125 0.890625 -5.015625 C 0.890625 -4.9375 0.890625 -4.859375 0.890625 -4.78125 L 0.890625 -1.5 C 0.890625 -1.171875 0.90625 -0.84375 1.046875 -0.53125 C 1.359375 0.046875 2.125 0.109375 2.703125 0.109375 C 3.40625 0.109375 4.09375 -0.0625 4.65625 -0.53125 Z M 4.65625 -0.53125 "/>
|
||||
<path style="stroke:none;" d="M 5.671875 -0.765625 C 5.671875 -0.671875 5.65625 -0.59375 5.65625 -0.484375 C 5.65625 -0.140625 5.859375 -0.015625 6.171875 -0.015625 L 6.9375 -0.015625 C 7.1875 -0.015625 7.40625 -0.09375 7.40625 -0.46875 L 7.40625 -6.046875 C 7.40625 -6.453125 7.125 -6.484375 6.90625 -6.484375 L 6.09375 -6.484375 C 5.734375 -6.484375 5.640625 -6.28125 5.640625 -6.03125 L 5.640625 -2.9375 C 5.640625 -2.765625 5.65625 -2.59375 5.65625 -2.421875 C 5.65625 -1.359375 4.9375 -0.6875 3.84375 -0.6875 C 3.25 -0.6875 2.828125 -0.6875 2.828125 -1.71875 L 2.828125 -5.953125 C 2.828125 -6.21875 2.796875 -6.484375 2.359375 -6.484375 L 1.546875 -6.484375 C 1.203125 -6.484375 1.046875 -6.328125 1.046875 -5.984375 C 1.046875 -5.875 1.0625 -5.78125 1.0625 -5.6875 L 1.0625 -1.90625 C 1.0625 -1.46875 1.078125 -1.03125 1.296875 -0.625 C 1.703125 0.109375 2.71875 0.109375 3.40625 0.109375 C 4.265625 0.109375 5.0625 -0.15625 5.671875 -0.765625 Z M 2.015625 -9.828125 C 1.8125 -9.78125 1.71875 -9.609375 1.71875 -9.375 L 1.71875 -8.5 C 1.71875 -8.265625 1.828125 -8.03125 2.109375 -8.03125 L 3.03125 -8.03125 C 3.296875 -8.03125 3.53125 -8.109375 3.53125 -8.453125 L 3.53125 -9.40625 C 3.53125 -9.765625 3.296875 -9.84375 3.0625 -9.84375 L 2.203125 -9.84375 C 2.140625 -9.84375 2.078125 -9.84375 2.015625 -9.828125 Z M 5.21875 -9.828125 C 5 -9.78125 4.9375 -9.625 4.9375 -9.40625 L 4.9375 -8.46875 C 4.9375 -8.1875 5.078125 -8.03125 5.359375 -8.03125 L 6.25 -8.03125 C 6.515625 -8.03125 6.734375 -8.125 6.734375 -8.5 L 6.734375 -9.296875 C 6.734375 -9.625 6.640625 -9.84375 6.28125 -9.84375 L 5.40625 -9.84375 C 5.328125 -9.84375 5.28125 -9.84375 5.21875 -9.828125 Z M 5.21875 -9.828125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-5">
|
||||
<path style="stroke:none;" d="M 3.078125 -5.671875 C 1.859375 -5.5 0.4375 -5.171875 0.4375 -2.71875 C 0.4375 -1.984375 0.609375 -1.203125 1.109375 -0.671875 C 1.671875 -0.046875 2.578125 0.109375 3.375 0.109375 C 4.09375 0.109375 4.828125 -0.03125 5.46875 -0.375 C 5.5625 -0.421875 5.59375 -0.484375 5.59375 -0.5625 C 5.59375 -0.75 5.546875 -0.9375 5.53125 -1.125 C 5.53125 -1.203125 5.53125 -1.34375 5.421875 -1.375 L 5.390625 -1.375 C 5.265625 -1.375 5 -1.140625 4.8125 -1.046875 C 4.40625 -0.828125 3.9375 -0.734375 3.484375 -0.703125 L 3.40625 -0.703125 C 2.375 -0.703125 1.828125 -1.296875 1.828125 -2.71875 C 1.828125 -3.28125 1.84375 -3.953125 2.21875 -4.40625 C 2.515625 -4.75 2.96875 -4.859375 3.421875 -4.859375 C 4.046875 -4.859375 4.5 -4.71875 5.0625 -4.265625 C 5.109375 -4.21875 5.1875 -4.140625 5.265625 -4.140625 C 5.453125 -4.140625 5.46875 -4.65625 5.5 -4.84375 C 5.515625 -4.875 5.515625 -4.9375 5.515625 -4.984375 C 5.515625 -5.15625 4.8125 -5.453125 4.453125 -5.5625 C 4.078125 -5.65625 3.671875 -5.671875 3.28125 -5.671875 Z M 3.078125 -5.671875 "/>
|
||||
<path style="stroke:none;" d="M 1.421875 -6.484375 L 0.953125 -6.484375 C 0.640625 -6.484375 0.4375 -6.359375 0.4375 -6.03125 C 0.4375 -5.75 0.609375 -5.609375 0.953125 -5.609375 L 1.421875 -5.609375 L 1.421875 -0.84375 C 1.421875 -0.75 1.40625 -0.640625 1.40625 -0.53125 C 1.40625 -0.265625 1.484375 -0.015625 1.84375 -0.015625 L 2.65625 -0.015625 C 3.0625 -0.015625 3.15625 -0.234375 3.15625 -0.546875 L 3.15625 -5.609375 L 4.078125 -5.609375 C 4.140625 -5.609375 4.234375 -5.59375 4.296875 -5.59375 C 4.59375 -5.59375 4.75 -5.796875 4.75 -6.046875 C 4.75 -6.328125 4.59375 -6.484375 4.28125 -6.484375 L 3.125 -6.484375 L 3.125 -8.234375 C 3.125 -8.875 3.265625 -9.46875 4.265625 -9.46875 C 4.6875 -9.46875 5.078125 -9.34375 5.390625 -9.0625 C 5.453125 -9.015625 5.515625 -8.984375 5.578125 -8.984375 L 5.609375 -8.984375 C 5.6875 -9.015625 5.703125 -9.109375 5.703125 -9.1875 L 5.703125 -10.125 C 5.65625 -10.40625 4.515625 -10.40625 4.21875 -10.40625 C 3.40625 -10.40625 2.578125 -10.234375 2.015625 -9.65625 C 1.625 -9.234375 1.46875 -8.65625 1.421875 -8.109375 Z M 7.71875 -5.609375 L 8.640625 -5.609375 C 8.703125 -5.609375 8.796875 -5.59375 8.859375 -5.59375 C 9.15625 -5.59375 9.3125 -5.796875 9.3125 -6.046875 C 9.3125 -6.328125 9.15625 -6.484375 8.84375 -6.484375 L 7.6875 -6.484375 L 7.6875 -7.875 C 7.6875 -8.015625 7.671875 -8.15625 7.671875 -8.3125 C 7.671875 -8.921875 7.90625 -9.484375 8.828125 -9.484375 C 9.171875 -9.484375 9.515625 -9.375 9.765625 -9.203125 C 9.875 -9.15625 10.015625 -8.984375 10.140625 -8.984375 C 10.28125 -8.984375 10.28125 -9.125 10.28125 -9.203125 L 10.28125 -10.046875 C 10.28125 -10.390625 9.53125 -10.34375 9.1875 -10.390625 L 8.96875 -10.390625 C 7.953125 -10.390625 6.78125 -10.25 6.25 -9.1875 C 6.015625 -8.6875 5.984375 -8.15625 5.984375 -7.625 L 5.984375 -0.484375 C 5.984375 -0.1875 6.09375 0 6.515625 0 C 6.65625 0 6.8125 -0.015625 6.953125 -0.015625 C 7.046875 -0.015625 7.140625 0 7.234375 0 C 7.46875 0 7.71875 -0.09375 7.71875 -0.421875 Z M 7.71875 -5.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-6">
|
||||
<path style="stroke:none;" d="M 2.265625 -4.65625 C 2.265625 -4.703125 2.265625 -4.75 2.265625 -4.8125 L 2.265625 -8.03125 C 2.265625 -8.109375 2.265625 -8.171875 2.265625 -8.265625 C 2.265625 -8.671875 2.015625 -8.71875 1.75 -8.71875 L 1.328125 -8.71875 C 1.09375 -8.71875 0.890625 -8.625 0.890625 -8.3125 L 0.890625 -0.5 C 0.890625 -0.234375 0.9375 -0.015625 1.34375 -0.015625 L 1.796875 -0.015625 C 2.015625 -0.015625 2.28125 -0.0625 2.28125 -0.4375 L 2.28125 -2.75 C 2.28125 -3.640625 2.65625 -4.859375 3.75 -4.859375 L 3.84375 -4.859375 C 4.625 -4.75 4.625 -4.140625 4.625 -3.578125 L 4.625 -0.484375 C 4.625 -0.25 4.703125 -0.015625 5 -0.015625 L 5.5625 -0.015625 C 5.859375 -0.015625 6.015625 -0.15625 6.015625 -0.484375 L 6.015625 -3.578125 C 6.015625 -4.609375 5.828125 -5.609375 4.15625 -5.609375 C 3.46875 -5.609375 2.578125 -5.234375 2.265625 -4.65625 Z M 2.265625 -4.65625 "/>
|
||||
<path style="stroke:none;" d="M 2.15625 -3 L 6.5625 -3 C 6.9375 -3 7.0625 -3.203125 7.0625 -3.484375 C 7.0625 -5.140625 6.375 -6.6875 3.9375 -6.6875 C 3 -6.6875 2 -6.46875 1.3125 -5.796875 C 0.65625 -5.140625 0.453125 -4.171875 0.453125 -3.28125 C 0.453125 -2.5 0.609375 -1.671875 1.125 -1.0625 C 1.84375 -0.140625 3.0625 0.109375 4.15625 0.109375 C 4.984375 0.109375 5.828125 -0.0625 6.5625 -0.40625 C 6.6875 -0.453125 6.921875 -0.53125 6.953125 -0.671875 L 6.953125 -0.734375 C 6.953125 -1.03125 6.9375 -1.65625 6.78125 -1.703125 L 6.75 -1.703125 C 6.625 -1.703125 6.484375 -1.5625 6.390625 -1.484375 C 5.78125 -1.046875 4.984375 -0.796875 4.21875 -0.796875 C 3.234375 -0.796875 2.15625 -1.3125 2.15625 -2.890625 Z M 2.171875 -3.796875 C 2.171875 -4.859375 2.828125 -5.765625 3.9375 -5.765625 C 5.28125 -5.765625 5.4375 -4.6875 5.515625 -3.796875 Z M 2.171875 -3.796875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-7">
|
||||
<path style="stroke:none;" d="M 1.703125 -2.28125 L 5.296875 -2.28125 C 5.609375 -2.28125 5.734375 -2.46875 5.734375 -2.765625 C 5.734375 -3.5625 5.5625 -4.53125 5 -5.0625 C 4.5 -5.515625 3.875 -5.671875 3.21875 -5.671875 C 2.46875 -5.671875 1.65625 -5.484375 1.09375 -4.9375 C 0.546875 -4.390625 0.375 -3.578125 0.375 -2.828125 C 0.375 -2.09375 0.53125 -1.3125 1.015625 -0.75 C 1.5625 -0.125 2.46875 0.109375 3.28125 0.109375 C 3.984375 0.109375 4.65625 0 5.296875 -0.28125 L 5.515625 -0.390625 C 5.59375 -0.421875 5.65625 -0.484375 5.65625 -0.578125 C 5.65625 -0.609375 5.640625 -0.640625 5.640625 -0.6875 L 5.609375 -1.09375 C 5.609375 -1.1875 5.609375 -1.359375 5.46875 -1.359375 C 5.40625 -1.359375 5.3125 -1.296875 5.265625 -1.25 C 4.734375 -0.859375 4.09375 -0.640625 3.421875 -0.640625 C 2.609375 -0.640625 1.75 -1.09375 1.703125 -2.28125 Z M 1.671875 -2.96875 C 1.734375 -3.890625 2 -4.90625 3.21875 -4.90625 C 4.34375 -4.90625 4.578125 -3.84375 4.578125 -2.96875 Z M 1.671875 -2.96875 "/>
|
||||
<path style="stroke:none;" d="M 1.375 -10.234375 C 1.125 -10.234375 1.078125 -9.90625 1.078125 -9.734375 L 1.078125 -0.78125 C 1.078125 -0.703125 1.0625 -0.609375 1.0625 -0.5 C 1.0625 -0.265625 1.171875 -0.046875 1.40625 -0.015625 L 2.265625 -0.015625 C 2.75 -0.015625 2.8125 -0.21875 2.8125 -0.484375 L 2.8125 -9.484375 C 2.8125 -9.5625 2.828125 -9.65625 2.828125 -9.75 C 2.828125 -10 2.734375 -10.234375 2.46875 -10.25 L 1.59375 -10.25 C 1.515625 -10.25 1.453125 -10.25 1.375 -10.234375 Z M 1.375 -10.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-8">
|
||||
<path style="stroke:none;" d="M 2.21875 -4.625 L 2.21875 -5.0625 C 2.21875 -5.453125 2.03125 -5.5625 1.71875 -5.5625 C 1.625 -5.5625 1.53125 -5.546875 1.453125 -5.546875 L 1.296875 -5.546875 C 1.0625 -5.546875 0.890625 -5.40625 0.890625 -5.109375 L 0.890625 -0.4375 C 0.890625 -0.03125 1.1875 -0.015625 1.40625 -0.015625 L 1.859375 -0.015625 C 2.25 -0.015625 2.28125 -0.28125 2.28125 -0.5 L 2.28125 -3.109375 C 2.359375 -3.953125 2.828125 -4.859375 3.734375 -4.859375 C 4.59375 -4.859375 4.625 -4.203125 4.625 -3.671875 L 4.625 -0.4375 C 4.625 -0.03125 4.90625 -0.015625 5.140625 -0.015625 L 5.578125 -0.015625 C 5.84375 -0.015625 6.015625 -0.125 6.015625 -0.484375 L 6.015625 -2.015625 C 6.015625 -2.234375 6 -2.4375 6 -2.65625 C 6 -3.359375 6.109375 -4.34375 6.953125 -4.734375 C 7.109375 -4.8125 7.28125 -4.859375 7.453125 -4.859375 C 8.3125 -4.859375 8.359375 -4.25 8.359375 -3.71875 L 8.359375 -0.328125 C 8.453125 -0.03125 8.625 -0.015625 8.875 -0.015625 L 9.328125 -0.015625 C 9.671875 -0.015625 9.734375 -0.234375 9.734375 -0.46875 L 9.734375 -3.5625 C 9.734375 -4.5625 9.59375 -5.609375 7.859375 -5.609375 C 7.0625 -5.609375 6.359375 -5.1875 5.921875 -4.5625 C 5.65625 -5.375 5.015625 -5.609375 4.25 -5.609375 C 3.40625 -5.609375 2.828125 -5.3125 2.21875 -4.625 Z M 2.21875 -4.625 "/>
|
||||
<path style="stroke:none;" d="M 2.84375 -6.6875 C 1.84375 -6.578125 0.546875 -6.34375 0.546875 -4.703125 C 0.546875 -3.59375 1.5 -2.9375 2.5 -2.71875 C 3.25 -2.5625 4.640625 -2.53125 4.640625 -1.703125 C 4.640625 -0.96875 3.796875 -0.890625 3.328125 -0.890625 C 2.4375 -0.890625 1.671875 -1.1875 0.984375 -1.828125 C 0.953125 -1.859375 0.859375 -1.9375 0.78125 -1.9375 C 0.609375 -1.9375 0.625 -1.65625 0.609375 -1.5 C 0.578125 -1.25 0.453125 -0.96875 0.453125 -0.703125 C 0.453125 -0.5625 0.578125 -0.53125 0.6875 -0.453125 C 1.515625 -0.09375 2.421875 0.125 3.328125 0.125 C 4.484375 0.125 5.9375 -0.21875 5.9375 -2 C 5.9375 -3.015625 5.109375 -3.75 4.171875 -4.015625 C 3.734375 -4.125 3.265625 -4.1875 2.828125 -4.265625 C 2.4375 -4.34375 1.84375 -4.515625 1.84375 -5 L 1.84375 -5.078125 C 1.96875 -5.71875 2.625 -5.75 3.140625 -5.75 C 3.90625 -5.75 4.5625 -5.53125 5.15625 -5.09375 C 5.203125 -5.0625 5.265625 -5 5.328125 -5 C 5.53125 -5 5.640625 -5.875 5.640625 -6.0625 C 5.640625 -6.265625 5.21875 -6.359375 4.984375 -6.421875 C 4.453125 -6.609375 3.890625 -6.6875 3.3125 -6.6875 Z M 2.84375 -6.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-9">
|
||||
<path style="stroke:none;" d="M 1.203125 -5.46875 C 0.953125 -5.4375 0.90625 -5.234375 0.90625 -4.96875 L 0.90625 -0.4375 C 0.90625 -0.0625 1.15625 -0.015625 1.40625 -0.015625 L 1.859375 -0.015625 C 2.046875 -0.015625 2.234375 -0.109375 2.265625 -0.3125 L 2.265625 -5.0625 C 2.265625 -5.375 2.0625 -5.5 1.78125 -5.5 C 1.6875 -5.5 1.578125 -5.484375 1.5 -5.484375 L 1.34375 -5.484375 C 1.296875 -5.484375 1.25 -5.484375 1.203125 -5.46875 Z M 1.140625 -8.578125 C 0.890625 -8.578125 0.828125 -8.296875 0.828125 -8.109375 C 0.828125 -8.03125 0.84375 -7.953125 0.84375 -7.875 L 0.84375 -7.515625 C 0.84375 -7.140625 1.09375 -7.09375 1.34375 -7.09375 L 1.890625 -7.09375 C 2.109375 -7.09375 2.328125 -7.1875 2.328125 -7.484375 L 2.328125 -8.140625 C 2.328125 -8.546875 2.09375 -8.59375 1.828125 -8.59375 L 1.28125 -8.59375 C 1.234375 -8.59375 1.1875 -8.59375 1.140625 -8.578125 Z M 1.140625 -8.578125 "/>
|
||||
<path style="stroke:none;" d="M 5.671875 -0.765625 C 5.671875 -0.671875 5.65625 -0.59375 5.65625 -0.484375 C 5.65625 -0.140625 5.859375 -0.015625 6.171875 -0.015625 L 6.9375 -0.015625 C 7.1875 -0.015625 7.40625 -0.09375 7.40625 -0.46875 L 7.40625 -6.046875 C 7.40625 -6.453125 7.125 -6.484375 6.90625 -6.484375 L 6.09375 -6.484375 C 5.734375 -6.484375 5.640625 -6.28125 5.640625 -6.03125 L 5.640625 -2.9375 C 5.640625 -2.765625 5.65625 -2.59375 5.65625 -2.421875 C 5.65625 -1.359375 4.9375 -0.6875 3.84375 -0.6875 C 3.25 -0.6875 2.828125 -0.6875 2.828125 -1.71875 L 2.828125 -5.953125 C 2.828125 -6.21875 2.796875 -6.484375 2.359375 -6.484375 L 1.546875 -6.484375 C 1.203125 -6.484375 1.046875 -6.328125 1.046875 -5.984375 C 1.046875 -5.875 1.0625 -5.78125 1.0625 -5.6875 L 1.0625 -1.90625 C 1.0625 -1.46875 1.078125 -1.03125 1.296875 -0.625 C 1.703125 0.109375 2.71875 0.109375 3.40625 0.109375 C 4.265625 0.109375 5.0625 -0.15625 5.671875 -0.765625 Z M 5.671875 -0.765625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-10">
|
||||
<path style="stroke:none;" d="M 1.21875 -5.484375 L 0.65625 -5.484375 C 0.40625 -5.484375 0.25 -5.328125 0.25 -5.109375 C 0.25 -4.84375 0.453125 -4.734375 0.734375 -4.734375 L 1.1875 -4.734375 L 1.1875 -1.515625 C 1.1875 -0.734375 1.390625 0.109375 2.40625 0.109375 C 3.0625 0.109375 3.6875 -0.046875 4.296875 -0.3125 C 4.359375 -0.34375 4.453125 -0.375 4.46875 -0.484375 C 4.46875 -0.78125 4.296875 -1.09375 4.21875 -1.09375 C 4.125 -1.09375 3.96875 -0.953125 3.859375 -0.890625 C 3.59375 -0.8125 3.34375 -0.703125 3.0625 -0.703125 C 2.53125 -0.703125 2.515625 -1.28125 2.515625 -1.75 L 2.515625 -4.734375 L 3.796875 -4.734375 C 4 -4.734375 4.25 -4.828125 4.25 -5.109375 C 4.25 -5.359375 4.0625 -5.484375 3.796875 -5.484375 L 2.515625 -5.484375 L 2.515625 -6.609375 C 2.515625 -6.84375 2.421875 -7.046875 2.109375 -7.046875 L 1.96875 -7.046875 C 1.90625 -7.046875 1.8125 -7.0625 1.71875 -7.0625 C 1.453125 -7.0625 1.21875 -6.984375 1.21875 -6.59375 Z M 1.21875 -5.484375 "/>
|
||||
<path style="stroke:none;" d="M 3.78125 -6.6875 C 3.578125 -6.65625 3.359375 -6.640625 3.140625 -6.609375 C 2.515625 -6.5 1.890625 -6.25 1.421875 -5.8125 C 0.765625 -5.171875 0.546875 -4.21875 0.546875 -3.3125 C 0.546875 -2.4375 0.703125 -1.53125 1.3125 -0.859375 C 2.015625 -0.09375 3.109375 0.109375 4.109375 0.109375 C 5.015625 0.109375 5.9375 -0.078125 6.734375 -0.5 C 6.828125 -0.546875 6.859375 -0.609375 6.859375 -0.6875 C 6.859375 -1.03125 6.8125 -1.71875 6.65625 -1.734375 L 6.640625 -1.734375 C 6.484375 -1.734375 6.171875 -1.4375 5.953125 -1.3125 C 5.40625 -1 4.78125 -0.859375 4.15625 -0.859375 C 2.53125 -0.859375 2.3125 -2.15625 2.3125 -3.234375 C 2.3125 -4.375 2.484375 -5.703125 4.15625 -5.703125 C 4.953125 -5.703125 5.5 -5.5625 6.203125 -5.015625 C 6.28125 -4.96875 6.375 -4.859375 6.46875 -4.859375 C 6.625 -4.859375 6.625 -5.09375 6.640625 -5.171875 L 6.734375 -5.6875 C 6.734375 -5.765625 6.765625 -5.84375 6.765625 -5.90625 C 6.765625 -6.203125 5.703125 -6.53125 5.296875 -6.59375 C 4.953125 -6.671875 4.609375 -6.6875 4.265625 -6.6875 Z M 3.78125 -6.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-11">
|
||||
<path style="stroke:none;" d="M 4.375 -4.09375 L 4.390625 -4.09375 C 4.40625 -3.75 4.546875 -3.390625 4.640625 -3.0625 C 4.859375 -2.21875 5.109375 -1.375 5.375 -0.546875 C 5.53125 -0.078125 5.75 -0.015625 6.09375 -0.015625 L 6.84375 -0.015625 C 7.28125 -0.015625 7.359375 -0.265625 7.453125 -0.53125 C 7.921875 -1.953125 8.3125 -3.390625 8.75 -4.8125 C 8.78125 -4.9375 8.859375 -5.078125 8.859375 -5.21875 C 8.859375 -5.421875 8.671875 -5.484375 8.46875 -5.484375 L 8.265625 -5.484375 C 8.03125 -5.484375 7.796875 -5.46875 7.65625 -5.21875 C 7.578125 -5.03125 7.53125 -4.8125 7.46875 -4.609375 C 7.1875 -3.6875 6.890625 -2.765625 6.640625 -1.84375 C 6.546875 -1.578125 6.4375 -1.3125 6.390625 -1.046875 C 6.375 -1.140625 6.328125 -1.234375 6.3125 -1.3125 L 6.171875 -1.78125 C 5.875 -2.703125 5.59375 -3.625 5.328125 -4.546875 C 5.15625 -4.96875 5.21875 -5.484375 4.515625 -5.484375 C 4.09375 -5.484375 3.96875 -5.25 3.890625 -4.953125 C 3.609375 -4.0625 3.34375 -3.171875 3.078125 -2.28125 C 2.96875 -1.921875 2.875 -1.546875 2.734375 -1.203125 C 2.40625 -2.390625 2.046875 -3.5625 1.65625 -4.71875 C 1.53125 -5.109375 1.5 -5.484375 0.90625 -5.484375 L 0.703125 -5.484375 C 0.53125 -5.484375 0.28125 -5.46875 0.28125 -5.203125 C 0.28125 -5.078125 0.359375 -4.953125 0.375 -4.84375 L 1.671875 -0.609375 C 1.71875 -0.453125 1.75 -0.28125 1.859375 -0.171875 C 1.984375 -0.03125 2.171875 0 2.359375 0 C 2.46875 0 2.5625 -0.015625 2.65625 -0.015625 L 2.78125 -0.015625 C 3.375 -0.015625 3.421875 -0.671875 3.53125 -1.046875 C 3.734375 -1.734375 3.9375 -2.421875 4.140625 -3.109375 C 4.21875 -3.4375 4.34375 -3.765625 4.375 -4.09375 Z M 4.375 -4.09375 "/>
|
||||
<path style="stroke:none;" d="M 2.796875 -5.515625 L 2.796875 -9.765625 C 2.796875 -10.078125 2.703125 -10.265625 2.25 -10.265625 C 2.09375 -10.265625 1.9375 -10.25 1.78125 -10.25 C 1.6875 -10.25 1.609375 -10.265625 1.515625 -10.265625 C 1.296875 -10.265625 1.0625 -10.140625 1.0625 -9.859375 L 1.0625 -0.53125 C 1.0625 -0.296875 1.078125 -0.109375 1.375 -0.015625 L 2.3125 -0.015625 C 2.671875 -0.015625 2.828125 -0.171875 2.828125 -0.53125 L 2.828125 -3.5625 C 2.828125 -4.515625 3.3125 -5.6875 4.53125 -5.6875 C 5.5 -5.6875 5.640625 -5.125 5.640625 -4.484375 L 5.640625 -0.515625 C 5.640625 -0.1875 5.75 -0.015625 6.078125 -0.015625 L 6.90625 -0.015625 C 7.21875 -0.015625 7.421875 -0.15625 7.421875 -0.5 C 7.421875 -0.609375 7.40625 -0.703125 7.40625 -0.78125 L 7.40625 -4.21875 C 7.40625 -4.765625 7.40625 -5.328125 7.125 -5.828125 C 6.734375 -6.53125 5.859375 -6.609375 5.15625 -6.609375 C 4.1875 -6.609375 3.390625 -6.203125 2.796875 -5.515625 Z M 2.796875 -5.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-12">
|
||||
<path style="stroke:none;" d="M 2.21875 -4.625 L 2.21875 -5.0625 C 2.21875 -5.3125 2.171875 -5.546875 1.8125 -5.546875 L 1.65625 -5.546875 C 1.578125 -5.546875 1.5 -5.5625 1.40625 -5.5625 C 1.140625 -5.5625 0.890625 -5.5 0.890625 -5.125 L 0.890625 -0.4375 C 0.890625 -0.03125 1.1875 -0.015625 1.40625 -0.015625 L 1.859375 -0.015625 C 2.25 -0.015625 2.28125 -0.265625 2.28125 -0.5 L 2.28125 -2.5625 C 2.28125 -3.03125 2.28125 -3.453125 2.46875 -3.890625 C 2.671875 -4.40625 3.15625 -4.859375 3.75 -4.859375 L 3.84375 -4.859375 C 4.609375 -4.78125 4.625 -4.203125 4.625 -3.671875 L 4.625 -0.484375 C 4.625 -0.25 4.703125 -0.015625 5 -0.015625 L 5.5625 -0.015625 C 5.875 -0.015625 6.03125 -0.171875 6.03125 -0.46875 C 6.03125 -0.546875 6.015625 -0.625 6.015625 -0.6875 L 6.015625 -3.5625 C 6.015625 -4.5625 5.859375 -5.609375 4.140625 -5.609375 L 4 -5.609375 C 3.265625 -5.5625 2.71875 -5.1875 2.21875 -4.625 Z M 2.21875 -4.625 "/>
|
||||
<path style="stroke:none;" d="M 2.40625 -1.25 C 3.34375 -2.0625 4.265625 -2.921875 5.234375 -3.703125 C 6.203125 -4.46875 7.359375 -5.4375 7.40625 -6.8125 L 7.40625 -6.921875 C 7.40625 -8.875 5.765625 -10.109375 3.90625 -10.109375 C 2.6875 -10.109375 1.5625 -9.609375 0.96875 -8.515625 C 0.859375 -8.34375 0.703125 -8.09375 0.703125 -7.953125 L 0.703125 -7.921875 C 0.703125 -7.71875 1.3125 -7.125 1.4375 -6.96875 C 1.46875 -6.9375 1.515625 -6.90625 1.578125 -6.90625 L 1.609375 -6.90625 C 1.734375 -6.953125 1.84375 -7.46875 1.9375 -7.703125 C 2.234375 -8.390625 2.78125 -8.953125 3.640625 -8.953125 C 4.703125 -8.953125 5.625 -8.140625 5.625 -6.90625 C 5.625 -5.65625 4.671875 -4.65625 3.8125 -3.859375 C 2.90625 -3 2.015625 -2.140625 1.140625 -1.25 C 0.984375 -1.109375 0.796875 -0.984375 0.796875 -0.78125 C 0.796875 -0.703125 0.8125 -0.640625 0.8125 -0.59375 L 0.8125 -0.484375 C 0.8125 -0.140625 0.984375 -0.015625 1.296875 -0.015625 L 6.9375 -0.015625 C 7.171875 -0.015625 7.40625 -0.09375 7.40625 -0.4375 L 7.40625 -0.78125 C 7.40625 -1.015625 7.359375 -1.28125 6.984375 -1.28125 L 6.78125 -1.28125 C 6.484375 -1.28125 6.1875 -1.265625 5.875 -1.265625 L 4.546875 -1.265625 C 3.828125 -1.265625 3.125 -1.25 2.40625 -1.25 Z M 2.40625 -1.25 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-13">
|
||||
<path style="stroke:none;" d="M 2.046875 -1.09375 C 2.578125 -1.5625 3.140625 -2.078125 3.703125 -2.515625 L 4.5 -3.125 C 5.21875 -3.6875 5.96875 -4.40625 6.03125 -5.375 L 6.03125 -5.484375 C 6.03125 -7.125 4.65625 -8.09375 3.15625 -8.09375 C 2.0625 -8.09375 1.1875 -7.59375 0.703125 -6.640625 C 0.65625 -6.53125 0.578125 -6.390625 0.578125 -6.296875 L 0.578125 -6.28125 C 0.578125 -6.203125 0.640625 -6.140625 0.6875 -6.078125 L 0.96875 -5.765625 C 1.046875 -5.671875 1.15625 -5.484375 1.265625 -5.484375 C 1.40625 -5.484375 1.484375 -5.90625 1.5625 -6.078125 C 1.8125 -6.640625 2.265625 -7.0625 2.984375 -7.0625 C 3.828125 -7.0625 4.609375 -6.484375 4.609375 -5.515625 C 4.609375 -4.546875 3.9375 -3.875 3.3125 -3.265625 C 2.515625 -2.515625 1.703125 -1.78125 0.921875 -1.046875 C 0.8125 -0.9375 0.65625 -0.84375 0.65625 -0.671875 C 0.65625 -0.328125 0.671875 -0.015625 1.171875 -0.015625 L 5.625 -0.015625 C 6 -0.015625 6.03125 -0.265625 6.03125 -0.484375 L 6.03125 -0.59375 C 6.03125 -0.84375 6.015625 -1.125 5.609375 -1.125 L 4.84375 -1.125 C 3.90625 -1.125 2.96875 -1.125 2.046875 -1.09375 Z M 2.046875 -1.09375 "/>
|
||||
<path style="stroke:none;" d="M 4.5625 -5.609375 C 4.15625 -5.09375 3.71875 -4.609375 3.28125 -4.109375 C 2.453125 -3.109375 1.640625 -2.140625 0.796875 -1.171875 C 0.65625 -1 0.453125 -0.84375 0.453125 -0.59375 L 0.453125 -0.46875 C 0.453125 -0.171875 0.578125 -0.015625 0.953125 -0.015625 L 5.921875 -0.015625 C 6 -0.015625 6.0625 0 6.15625 0 C 6.578125 0 6.625 -0.265625 6.625 -0.53125 C 6.625 -0.75 6.5625 -1 6.203125 -1 L 6.09375 -1 C 4.890625 -1 3.703125 -0.953125 2.5 -0.953125 C 2.84375 -1.375 3.21875 -1.796875 3.578125 -2.203125 L 6.234375 -5.359375 C 6.40625 -5.546875 6.59375 -5.703125 6.59375 -6.015625 C 6.59375 -6.40625 6.375 -6.484375 6.109375 -6.484375 L 1.171875 -6.484375 C 0.78125 -6.484375 0.6875 -6.28125 0.6875 -6.03125 C 0.6875 -5.78125 0.78125 -5.5625 1.109375 -5.5625 L 1.21875 -5.5625 C 1.390625 -5.5625 1.578125 -5.5625 1.75 -5.578125 L 1.921875 -5.578125 C 2.140625 -5.578125 2.359375 -5.5625 2.5625 -5.5625 C 2.796875 -5.5625 3.015625 -5.59375 3.234375 -5.59375 L 3.625 -5.59375 C 3.9375 -5.59375 4.25 -5.609375 4.5625 -5.609375 Z M 4.5625 -5.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-14">
|
||||
<path style="stroke:none;" d="M 3.09375 -5.671875 C 2.375 -5.578125 1.6875 -5.46875 1.140625 -4.953125 C 0.53125 -4.375 0.375 -3.5 0.375 -2.71875 C 0.375 -1.96875 0.53125 -1.15625 1.078125 -0.625 C 1.703125 0 2.625 0.109375 3.484375 0.109375 C 4.21875 0.109375 5.09375 -0.078125 5.640625 -0.640625 C 6.1875 -1.171875 6.328125 -1.953125 6.328125 -2.6875 C 6.328125 -3.453125 6.1875 -4.296875 5.640625 -4.875 C 5.03125 -5.515625 4.109375 -5.671875 3.265625 -5.671875 Z M 1.75 -2.421875 L 1.75 -2.953125 C 1.75 -3.796875 1.84375 -4.90625 3.34375 -4.90625 C 4.8125 -4.90625 4.953125 -3.8125 4.953125 -2.875 L 4.953125 -2.796875 C 4.953125 -1.90625 4.90625 -0.703125 3.328125 -0.703125 C 2.890625 -0.703125 2.421875 -0.828125 2.125 -1.171875 C 1.828125 -1.515625 1.8125 -1.984375 1.75 -2.421875 Z M 1.75 -2.421875 "/>
|
||||
<path style="stroke:none;" d="M 2.8125 -5.875 L 2.8125 -6.03125 C 2.8125 -6.46875 2.53125 -6.484375 2.265625 -6.484375 L 1.59375 -6.484375 C 1.34375 -6.484375 1.078125 -6.421875 1.078125 -6.046875 L 1.078125 2.421875 C 1.109375 2.671875 1.3125 2.765625 1.53125 2.765625 L 2.34375 2.765625 C 2.5625 2.765625 2.84375 2.734375 2.84375 2.359375 L 2.84375 -0.59375 C 3.328125 -0.140625 3.984375 0.109375 4.640625 0.109375 C 5.609375 0.109375 6.703125 -0.125 7.296875 -0.96875 C 7.78125 -1.609375 7.921875 -2.5 7.921875 -3.265625 C 7.921875 -4.75 7.484375 -6.609375 5.09375 -6.609375 C 4.28125 -6.609375 3.453125 -6.390625 2.8125 -5.875 Z M 6.140625 -2.953125 C 6.03125 -1.9375 5.734375 -0.796875 4.203125 -0.796875 C 3.703125 -0.796875 2.84375 -1.15625 2.84375 -1.703125 L 2.84375 -4.921875 C 2.890625 -5.3125 3.78125 -5.640625 4.359375 -5.640625 C 5.84375 -5.640625 6.15625 -4.3125 6.15625 -3.234375 C 6.15625 -3.140625 6.15625 -3.046875 6.140625 -2.953125 Z M 6.140625 -2.953125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-15">
|
||||
<path style="stroke:none;" d="M 1.46875 -6.484375 L 0.75 -6.484375 C 0.46875 -6.484375 0.28125 -6.3125 0.28125 -6.03125 C 0.28125 -5.765625 0.453125 -5.609375 0.71875 -5.609375 L 1.4375 -5.609375 L 1.4375 -1.828125 C 1.4375 -0.890625 1.671875 0.109375 2.890625 0.109375 C 3.703125 0.109375 4.5625 -0.046875 5.265625 -0.421875 C 5.34375 -0.453125 5.46875 -0.5 5.46875 -0.609375 L 5.46875 -0.640625 C 5.46875 -0.828125 5.328125 -1.34375 5.171875 -1.34375 C 5.046875 -1.34375 4.875 -1.1875 4.734375 -1.109375 C 4.453125 -0.953125 4.109375 -0.859375 3.796875 -0.859375 C 3.234375 -0.859375 3.140625 -1.390625 3.140625 -2.140625 L 3.140625 -5.609375 L 4.734375 -5.609375 C 5 -5.609375 5.21875 -5.75 5.21875 -6.03125 C 5.21875 -6.34375 5.03125 -6.484375 4.71875 -6.484375 L 3.140625 -6.484375 L 3.140625 -7.84375 C 3.140625 -8.1875 3.015625 -8.34375 2.609375 -8.34375 C 2.515625 -8.34375 2.390625 -8.328125 2.296875 -8.328125 C 2.1875 -8.328125 2.09375 -8.34375 2 -8.34375 C 1.71875 -8.34375 1.46875 -8.28125 1.46875 -7.84375 Z M 1.46875 -6.484375 "/>
|
||||
</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.203125 -7.421875 L 0.203125 -7.125 L 0.4375 -7.125 C 0.984375 -7.125 1.0625 -6.890625 1.203125 -6.453125 C 1.75 -4.859375 2.234375 -3.265625 2.765625 -1.671875 C 2.9375 -1.171875 3.09375 -0.703125 3.25 -0.203125 C 3.296875 -0.046875 3.328125 0.21875 3.53125 0.21875 L 3.5625 0.21875 C 3.71875 0.1875 3.765625 -0.09375 3.8125 -0.25 C 4.296875 -1.703125 4.765625 -3.15625 5.21875 -4.59375 C 5.328125 -4.921875 5.4375 -5.28125 5.5625 -5.609375 C 5.875 -4.828125 6.078125 -4.046875 6.34375 -3.234375 C 6.640625 -2.25 6.984375 -1.25 7.3125 -0.25 L 7.40625 0.046875 C 7.421875 0.125 7.46875 0.203125 7.5625 0.21875 L 7.59375 0.21875 C 7.78125 0.21875 7.8125 -0.03125 7.875 -0.1875 C 8.015625 -0.671875 8.1875 -1.140625 8.34375 -1.625 C 8.796875 -3.015625 9.234375 -4.421875 9.703125 -5.8125 C 9.90625 -6.390625 9.984375 -7.125 10.921875 -7.125 L 10.921875 -7.453125 L 8.765625 -7.453125 L 8.765625 -7.125 C 9.125 -7.125 9.65625 -6.96875 9.65625 -6.5625 C 9.65625 -6.390625 9.546875 -6.1875 9.484375 -6.015625 C 9.375 -5.65625 9.265625 -5.296875 9.140625 -4.9375 L 8.359375 -2.515625 C 8.21875 -2.078125 8.0625 -1.640625 7.921875 -1.203125 C 7.75 -1.625 7.640625 -2.078125 7.5 -2.515625 C 7.0625 -3.890625 6.65625 -5.296875 6.15625 -6.65625 C 6.140625 -6.703125 6.125 -6.765625 6.125 -6.8125 C 6.125 -7.125 6.65625 -7.125 6.96875 -7.125 L 6.96875 -7.453125 L 5.71875 -7.453125 L 5.484375 -7.421875 L 4.28125 -7.421875 L 4.28125 -7.125 L 4.46875 -7.125 C 4.671875 -7.125 4.890625 -7.125 5.03125 -7.03125 C 5.25 -6.84375 5.328125 -6.328125 5.375 -6.1875 C 5.40625 -6.140625 5.40625 -6.109375 5.40625 -6.0625 L 5.40625 -6.03125 C 5.40625 -5.921875 5.328125 -5.796875 5.296875 -5.6875 C 4.890625 -4.3125 4.390625 -2.953125 3.96875 -1.578125 C 3.921875 -1.453125 3.875 -1.328125 3.84375 -1.203125 C 3.78125 -1.609375 3.5625 -2.078125 3.421875 -2.484375 C 3.015625 -3.796875 2.59375 -5.109375 2.15625 -6.40625 C 2.109375 -6.53125 2.046875 -6.703125 2.046875 -6.828125 L 2.046875 -6.859375 C 2.109375 -7.125 2.546875 -7.125 2.828125 -7.125 L 2.890625 -7.125 L 2.890625 -7.453125 L 1.640625 -7.453125 L 1.40625 -7.421875 Z M 0.203125 -7.421875 "/>
|
||||
<path style="stroke:none;" d="M 2.8125 -6.75 L 2.8125 -0.765625 L 1.84375 -0.765625 C 1.75 -0.765625 1.671875 -0.78125 1.578125 -0.78125 C 1.28125 -0.78125 1.140625 -0.59375 1.140625 -0.375 C 1.140625 -0.15625 1.296875 -0.015625 1.578125 -0.015625 L 5.34375 -0.015625 C 5.609375 -0.015625 5.765625 -0.15625 5.765625 -0.375 C 5.765625 -0.625 5.59375 -0.765625 5.328125 -0.765625 L 4.21875 -0.765625 L 4.21875 -7.703125 C 4.21875 -8.015625 4 -8.09375 3.78125 -8.09375 C 3.515625 -8.09375 3.46875 -7.984375 3.3125 -7.875 C 2.8125 -7.421875 2.109375 -7.34375 1.46875 -7.3125 C 1.25 -7.296875 1.0625 -7.203125 1.0625 -6.9375 C 1.0625 -6.734375 1.1875 -6.5625 1.40625 -6.546875 C 1.875 -6.546875 2.359375 -6.625 2.8125 -6.75 Z M 2.8125 -6.75 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-2">
|
||||
<path style="stroke:none;" d="M 1.1875 -2.546875 L 4.34375 -2.546875 C 4.453125 -2.546875 4.5 -2.59375 4.5 -2.703125 C 4.5 -3.78125 3.921875 -4.859375 2.59375 -4.859375 C 1.28125 -4.859375 0.3125 -3.671875 0.3125 -2.421875 C 0.3125 -1.234375 1.171875 0.09375 2.640625 0.09375 C 3.46875 0.09375 4.171875 -0.34375 4.46875 -1.1875 C 4.484375 -1.234375 4.5 -1.265625 4.5 -1.3125 C 4.5 -1.375 4.4375 -1.421875 4.390625 -1.421875 C 4.203125 -1.421875 4.140625 -1.0625 4.078125 -0.9375 C 3.8125 -0.484375 3.296875 -0.15625 2.765625 -0.15625 C 2.15625 -0.15625 1.625 -0.59375 1.390625 -1.140625 C 1.203125 -1.578125 1.1875 -2.078125 1.1875 -2.546875 Z M 1.203125 -2.765625 C 1.203125 -3.609375 1.671875 -4.640625 2.578125 -4.640625 C 3.515625 -4.640625 3.796875 -3.546875 3.796875 -2.765625 Z M 1.203125 -2.765625 "/>
|
||||
<path style="stroke:none;" d="M 1.28125 -1.328125 C 1.203125 -1.296875 1.1875 -1.21875 1.1875 -1.140625 L 1.1875 -0.21875 C 1.1875 -0.0625 1.25 -0.015625 1.40625 -0.015625 L 2.140625 -0.015625 C 2.203125 -0.015625 2.265625 0 2.3125 0 C 2.46875 0 2.515625 -0.078125 2.515625 -0.203125 L 2.515625 -1.140625 C 2.515625 -1.296875 2.46875 -1.34375 2.3125 -1.34375 L 1.578125 -1.34375 C 1.515625 -1.34375 1.453125 -1.34375 1.40625 -1.34375 C 1.34375 -1.34375 1.3125 -1.34375 1.28125 -1.328125 Z M 1.28125 -1.328125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-3">
|
||||
<path style="stroke:none;" d="M 0.3125 -4.6875 L 0.3125 -4.359375 L 0.484375 -4.359375 C 0.8125 -4.359375 1.140625 -4.328125 1.140625 -3.8125 L 1.140625 -0.796875 C 1.140625 -0.34375 0.84375 -0.34375 0.375 -0.34375 L 0.3125 -0.34375 L 0.3125 -0.015625 L 2.90625 -0.015625 L 2.90625 -0.34375 C 2.78125 -0.34375 2.65625 -0.328125 2.515625 -0.328125 C 2.171875 -0.328125 1.859375 -0.375 1.859375 -0.78125 L 1.859375 -2.265625 C 1.859375 -3.125 2.03125 -4.578125 3.125 -4.578125 C 3.171875 -4.578125 3.21875 -4.5625 3.265625 -4.5625 C 3.109375 -4.5 3.015625 -4.3125 3.015625 -4.15625 C 3.015625 -3.921875 3.203125 -3.734375 3.421875 -3.703125 C 3.734375 -3.703125 3.921875 -3.90625 3.921875 -4.171875 C 3.921875 -4.59375 3.5 -4.8125 3.140625 -4.8125 C 2.453125 -4.8125 1.9375 -4.1875 1.8125 -3.625 L 1.796875 -4.8125 Z M 0.3125 -4.6875 "/>
|
||||
<path style="stroke:none;" d="M 3.40625 -8.5625 C 2.703125 -8.46875 2.046875 -8.40625 1.484375 -7.9375 C 0.953125 -7.5 0.734375 -6.796875 0.734375 -6.140625 C 0.734375 -4.921875 1.75 -4.0625 2.875 -3.78125 C 3.859375 -3.53125 5.4375 -3.484375 5.4375 -2.203125 C 5.4375 -1.140625 4.546875 -0.890625 3.734375 -0.890625 C 2.8125 -0.890625 1.859375 -1.21875 1.15625 -1.765625 C 1.09375 -1.8125 1.015625 -1.921875 0.921875 -1.921875 C 0.78125 -1.921875 0.78125 -1.734375 0.75 -1.640625 C 0.703125 -1.34375 0.59375 -1 0.59375 -0.734375 C 0.59375 -0.640625 0.65625 -0.59375 0.734375 -0.5625 L 0.984375 -0.421875 C 1.828125 0.015625 2.8125 0.25 3.765625 0.25 C 5.15625 0.25 6.71875 -0.28125 6.71875 -2.3125 C 6.71875 -3.53125 5.828125 -4.5 4.703125 -4.84375 C 3.75 -5.125 2.015625 -5.125 2.015625 -6.3125 L 2.015625 -6.34375 C 2.015625 -7.359375 3.0625 -7.5 3.734375 -7.5 C 4.484375 -7.5 5.109375 -7.28125 5.71875 -6.78125 C 5.765625 -6.734375 5.859375 -6.640625 5.9375 -6.640625 C 6.109375 -6.640625 6.234375 -7.609375 6.234375 -7.8125 C 6.234375 -8.015625 5.765625 -8.15625 5.53125 -8.265625 C 4.921875 -8.5 4.265625 -8.5625 3.609375 -8.5625 Z M 3.40625 -8.5625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-4">
|
||||
<path style="stroke:none;" d="M 0.359375 -4.6875 L 0.359375 -4.359375 L 0.53125 -4.359375 C 0.859375 -4.359375 1.1875 -4.328125 1.1875 -3.8125 L 1.1875 -0.796875 C 1.1875 -0.34375 0.890625 -0.34375 0.421875 -0.34375 L 0.359375 -0.34375 L 0.359375 -0.015625 L 2.765625 -0.015625 L 2.765625 -0.34375 L 2.515625 -0.34375 C 2.1875 -0.34375 1.9375 -0.375 1.9375 -0.78125 L 1.9375 -2.828125 C 1.9375 -3.59375 2.359375 -4.578125 3.40625 -4.578125 C 4.0625 -4.578125 4.203125 -3.921875 4.203125 -3.34375 L 4.203125 -0.75 C 4.203125 -0.375 3.90625 -0.34375 3.609375 -0.34375 L 3.375 -0.34375 L 3.375 -0.015625 L 5.765625 -0.015625 L 5.765625 -0.34375 L 5.515625 -0.34375 C 5.203125 -0.34375 4.9375 -0.375 4.9375 -0.78125 L 4.9375 -2.828125 C 4.9375 -3.59375 5.359375 -4.578125 6.421875 -4.578125 C 7.078125 -4.578125 7.203125 -3.921875 7.203125 -3.34375 L 7.203125 -0.75 C 7.203125 -0.375 6.921875 -0.34375 6.625 -0.34375 L 6.375 -0.34375 L 6.375 -0.015625 L 8.78125 -0.015625 L 8.78125 -0.34375 L 8.53125 -0.34375 C 8.234375 -0.34375 7.953125 -0.34375 7.953125 -0.78125 L 7.953125 -3.203125 C 7.953125 -3.5625 7.9375 -3.921875 7.75 -4.21875 C 7.5 -4.6875 6.9375 -4.8125 6.4375 -4.8125 L 6.3125 -4.8125 C 5.734375 -4.75 5.078125 -4.3125 4.921875 -3.75 L 4.90625 -3.75 C 4.78125 -4.53125 4.125 -4.8125 3.46875 -4.8125 C 2.78125 -4.8125 2.109375 -4.375 1.890625 -3.703125 L 1.875 -4.8125 Z M 0.359375 -4.6875 "/>
|
||||
<path style="stroke:none;" d="M 4.65625 -0.53125 L 4.65625 -0.390625 C 4.65625 -0.046875 4.921875 0 5.140625 0 C 5.21875 0 5.3125 -0.015625 5.40625 -0.015625 L 5.5625 -0.015625 C 5.78125 -0.015625 6.015625 -0.046875 6.015625 -0.484375 L 6.015625 -4.859375 C 6.015625 -4.921875 6.03125 -5 6.03125 -5.0625 C 6.03125 -5.421875 5.765625 -5.484375 5.53125 -5.484375 L 5.0625 -5.484375 C 4.75 -5.484375 4.625 -5.328125 4.625 -5.03125 L 4.625 -2.390625 C 4.625 -2.234375 4.640625 -2.078125 4.640625 -1.90625 C 4.640625 -1.046875 4.03125 -0.53125 3.171875 -0.53125 L 3.0625 -0.53125 C 2.625 -0.53125 2.28125 -0.578125 2.28125 -1.40625 L 2.28125 -5.1875 C 2.25 -5.359375 2.078125 -5.484375 1.90625 -5.484375 L 1.34375 -5.484375 C 1.046875 -5.484375 0.890625 -5.328125 0.890625 -5.015625 C 0.890625 -4.9375 0.890625 -4.859375 0.890625 -4.78125 L 0.890625 -1.5 C 0.890625 -1.171875 0.90625 -0.84375 1.046875 -0.53125 C 1.359375 0.046875 2.125 0.109375 2.703125 0.109375 C 3.40625 0.109375 4.09375 -0.0625 4.65625 -0.53125 Z M 4.65625 -0.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-5">
|
||||
<path style="stroke:none;" d="M 1.1875 -4.0625 C 1.46875 -4.40625 1.875 -4.640625 2.328125 -4.640625 C 3.125 -4.640625 3.53125 -3.953125 3.53125 -3.203125 L 3.53125 -2.84375 C 2.296875 -2.84375 0.46875 -2.4375 0.46875 -1.046875 C 0.46875 -0.234375 1.421875 0.09375 2.1875 0.09375 L 2.328125 0.09375 C 2.875 0.046875 3.46875 -0.34375 3.609375 -0.84375 L 3.625 -0.84375 C 3.65625 -0.390625 3.953125 0.046875 4.453125 0.046875 C 4.921875 0.046875 5.296875 -0.328125 5.34375 -0.796875 L 5.34375 -1.59375 L 5.078125 -1.59375 L 5.078125 -1.046875 C 5.078125 -0.75 5.03125 -0.296875 4.671875 -0.296875 C 4.34375 -0.296875 4.265625 -0.734375 4.265625 -1 C 4.265625 -1.125 4.28125 -1.25 4.28125 -1.375 L 4.28125 -2.875 C 4.28125 -3 4.28125 -3.125 4.28125 -3.265625 C 4.28125 -4.28125 3.328125 -4.859375 2.421875 -4.859375 C 1.734375 -4.859375 0.796875 -4.5 0.796875 -3.625 C 0.796875 -3.34375 0.984375 -3.125 1.265625 -3.125 C 1.53125 -3.125 1.734375 -3.328125 1.734375 -3.59375 C 1.734375 -3.84375 1.53125 -4.0625 1.265625 -4.0625 C 1.25 -4.0625 1.203125 -4.0625 1.1875 -4.0625 Z M 3.53125 -2.625 L 3.53125 -1.53125 C 3.53125 -0.78125 3.015625 -0.171875 2.296875 -0.125 L 2.25 -0.125 C 1.75 -0.125 1.28125 -0.53125 1.28125 -1.0625 L 1.28125 -1.109375 C 1.359375 -2.171875 2.515625 -2.59375 3.53125 -2.625 Z M 3.53125 -2.625 "/>
|
||||
<path style="stroke:none;" d="M 3.078125 -5.671875 C 1.859375 -5.5 0.4375 -5.171875 0.4375 -2.71875 C 0.4375 -1.984375 0.609375 -1.203125 1.109375 -0.671875 C 1.671875 -0.046875 2.578125 0.109375 3.375 0.109375 C 4.09375 0.109375 4.828125 -0.03125 5.46875 -0.375 C 5.5625 -0.421875 5.59375 -0.484375 5.59375 -0.5625 C 5.59375 -0.75 5.546875 -0.9375 5.53125 -1.125 C 5.53125 -1.203125 5.53125 -1.34375 5.421875 -1.375 L 5.390625 -1.375 C 5.265625 -1.375 5 -1.140625 4.8125 -1.046875 C 4.40625 -0.828125 3.9375 -0.734375 3.484375 -0.703125 L 3.40625 -0.703125 C 2.375 -0.703125 1.828125 -1.296875 1.828125 -2.71875 C 1.828125 -3.28125 1.84375 -3.953125 2.21875 -4.40625 C 2.515625 -4.75 2.96875 -4.859375 3.421875 -4.859375 C 4.046875 -4.859375 4.5 -4.71875 5.0625 -4.265625 C 5.109375 -4.21875 5.1875 -4.140625 5.265625 -4.140625 C 5.453125 -4.140625 5.46875 -4.65625 5.5 -4.84375 C 5.515625 -4.875 5.515625 -4.9375 5.515625 -4.984375 C 5.515625 -5.15625 4.8125 -5.453125 4.453125 -5.5625 C 4.078125 -5.65625 3.671875 -5.671875 3.28125 -5.671875 Z M 3.078125 -5.671875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-6">
|
||||
<path style="stroke:none;" d="M 3.953125 -4.140625 C 3.671875 -4.140625 3.453125 -3.953125 3.453125 -3.671875 C 3.453125 -3.421875 3.65625 -3.1875 3.921875 -3.1875 C 4.171875 -3.1875 4.390625 -3.390625 4.390625 -3.6875 L 4.390625 -3.78125 C 4.28125 -4.609375 3.296875 -4.859375 2.6875 -4.859375 C 1.359375 -4.859375 0.375 -3.625 0.375 -2.359375 C 0.375 -1.078125 1.359375 0.09375 2.71875 0.09375 C 3.421875 0.09375 4.140625 -0.3125 4.421875 -1.0625 C 4.453125 -1.140625 4.5 -1.21875 4.5 -1.296875 L 4.5 -1.34375 C 4.46875 -1.390625 4.421875 -1.421875 4.375 -1.421875 C 4.203125 -1.421875 4.140625 -0.96875 4 -0.8125 C 3.734375 -0.40625 3.296875 -0.15625 2.8125 -0.15625 C 1.65625 -0.15625 1.25 -1.421875 1.25 -2.359375 C 1.25 -3.265625 1.546875 -4.53125 2.65625 -4.609375 L 2.734375 -4.609375 C 3.140625 -4.609375 3.671875 -4.484375 3.953125 -4.140625 Z M 3.953125 -4.140625 "/>
|
||||
<path style="stroke:none;" d="M 2.265625 -4.65625 C 2.265625 -4.703125 2.265625 -4.75 2.265625 -4.8125 L 2.265625 -8.03125 C 2.265625 -8.109375 2.265625 -8.171875 2.265625 -8.265625 C 2.265625 -8.671875 2.015625 -8.71875 1.75 -8.71875 L 1.328125 -8.71875 C 1.09375 -8.71875 0.890625 -8.625 0.890625 -8.3125 L 0.890625 -0.5 C 0.890625 -0.234375 0.9375 -0.015625 1.34375 -0.015625 L 1.796875 -0.015625 C 2.015625 -0.015625 2.28125 -0.0625 2.28125 -0.4375 L 2.28125 -2.75 C 2.28125 -3.640625 2.65625 -4.859375 3.75 -4.859375 L 3.84375 -4.859375 C 4.625 -4.75 4.625 -4.140625 4.625 -3.578125 L 4.625 -0.484375 C 4.625 -0.25 4.703125 -0.015625 5 -0.015625 L 5.5625 -0.015625 C 5.859375 -0.015625 6.015625 -0.15625 6.015625 -0.484375 L 6.015625 -3.578125 C 6.015625 -4.609375 5.828125 -5.609375 4.15625 -5.609375 C 3.46875 -5.609375 2.578125 -5.234375 2.265625 -4.65625 Z M 2.265625 -4.65625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-7">
|
||||
<path style="stroke:none;" d="M 0.359375 -7.453125 L 0.359375 -7.125 L 0.5625 -7.125 C 0.90625 -7.125 1.1875 -7.09375 1.1875 -6.59375 L 1.1875 -0.78125 C 1.1875 -0.375 0.921875 -0.34375 0.625 -0.34375 L 0.359375 -0.34375 L 0.359375 -0.015625 L 2.765625 -0.015625 L 2.765625 -0.34375 L 2.515625 -0.34375 C 2.1875 -0.34375 1.9375 -0.375 1.9375 -0.78125 L 1.9375 -2.8125 C 1.9375 -3.59375 2.359375 -4.578125 3.40625 -4.578125 C 4.09375 -4.578125 4.1875 -3.875 4.1875 -3.234375 L 4.1875 -0.75 C 4.1875 -0.375 3.890625 -0.34375 3.59375 -0.34375 L 3.359375 -0.34375 L 3.359375 -0.015625 L 5.765625 -0.015625 L 5.765625 -0.34375 L 5.5 -0.34375 C 5.21875 -0.34375 4.921875 -0.34375 4.921875 -0.78125 L 4.921875 -3.21875 C 4.921875 -3.5625 4.921875 -3.921875 4.734375 -4.21875 C 4.484375 -4.65625 3.984375 -4.8125 3.484375 -4.8125 C 2.8125 -4.8125 2.078125 -4.390625 1.90625 -3.75 L 1.890625 -7.578125 Z M 0.359375 -7.453125 "/>
|
||||
<path style="stroke:none;" d="M 1.703125 -2.28125 L 5.296875 -2.28125 C 5.609375 -2.28125 5.734375 -2.46875 5.734375 -2.765625 C 5.734375 -3.5625 5.5625 -4.53125 5 -5.0625 C 4.5 -5.515625 3.875 -5.671875 3.21875 -5.671875 C 2.46875 -5.671875 1.65625 -5.484375 1.09375 -4.9375 C 0.546875 -4.390625 0.375 -3.578125 0.375 -2.828125 C 0.375 -2.09375 0.53125 -1.3125 1.015625 -0.75 C 1.5625 -0.125 2.46875 0.109375 3.28125 0.109375 C 3.984375 0.109375 4.65625 0 5.296875 -0.28125 L 5.515625 -0.390625 C 5.59375 -0.421875 5.65625 -0.484375 5.65625 -0.578125 C 5.65625 -0.609375 5.640625 -0.640625 5.640625 -0.6875 L 5.609375 -1.09375 C 5.609375 -1.1875 5.609375 -1.359375 5.46875 -1.359375 C 5.40625 -1.359375 5.3125 -1.296875 5.265625 -1.25 C 4.734375 -0.859375 4.09375 -0.640625 3.421875 -0.640625 C 2.609375 -0.640625 1.75 -1.09375 1.703125 -2.28125 Z M 1.671875 -2.96875 C 1.734375 -3.890625 2 -4.90625 3.21875 -4.90625 C 4.34375 -4.90625 4.578125 -3.84375 4.578125 -2.96875 Z M 1.671875 -2.96875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-8">
|
||||
<path style="stroke:none;" d="M 1.609375 -6.71875 C 1.609375 -5.984375 1.3125 -4.609375 0.203125 -4.609375 L 0.203125 -4.375 L 1.140625 -4.375 L 1.140625 -1.46875 C 1.140625 -1.140625 1.15625 -0.8125 1.3125 -0.53125 C 1.578125 -0.09375 2.078125 0.09375 2.546875 0.09375 C 3.421875 0.09375 3.609375 -0.859375 3.609375 -1.5625 L 3.609375 -1.984375 L 3.34375 -1.984375 C 3.34375 -1.828125 3.359375 -1.65625 3.359375 -1.5 C 3.359375 -0.984375 3.25 -0.15625 2.609375 -0.15625 C 1.984375 -0.15625 1.875 -0.921875 1.875 -1.421875 L 1.875 -4.375 L 3.421875 -4.375 L 3.421875 -4.703125 L 1.875 -4.703125 L 1.875 -6.71875 Z M 1.609375 -6.71875 "/>
|
||||
<path style="stroke:none;" d="M 2.21875 -4.625 L 2.21875 -5.0625 C 2.21875 -5.453125 2.03125 -5.5625 1.71875 -5.5625 C 1.625 -5.5625 1.53125 -5.546875 1.453125 -5.546875 L 1.296875 -5.546875 C 1.0625 -5.546875 0.890625 -5.40625 0.890625 -5.109375 L 0.890625 -0.4375 C 0.890625 -0.03125 1.1875 -0.015625 1.40625 -0.015625 L 1.859375 -0.015625 C 2.25 -0.015625 2.28125 -0.28125 2.28125 -0.5 L 2.28125 -3.109375 C 2.359375 -3.953125 2.828125 -4.859375 3.734375 -4.859375 C 4.59375 -4.859375 4.625 -4.203125 4.625 -3.671875 L 4.625 -0.4375 C 4.625 -0.03125 4.90625 -0.015625 5.140625 -0.015625 L 5.578125 -0.015625 C 5.84375 -0.015625 6.015625 -0.125 6.015625 -0.484375 L 6.015625 -2.015625 C 6.015625 -2.234375 6 -2.4375 6 -2.65625 C 6 -3.359375 6.109375 -4.34375 6.953125 -4.734375 C 7.109375 -4.8125 7.28125 -4.859375 7.453125 -4.859375 C 8.3125 -4.859375 8.359375 -4.25 8.359375 -3.71875 L 8.359375 -0.328125 C 8.453125 -0.03125 8.625 -0.015625 8.875 -0.015625 L 9.328125 -0.015625 C 9.671875 -0.015625 9.734375 -0.234375 9.734375 -0.46875 L 9.734375 -3.5625 C 9.734375 -4.5625 9.59375 -5.609375 7.859375 -5.609375 C 7.0625 -5.609375 6.359375 -5.1875 5.921875 -4.5625 C 5.65625 -5.375 5.015625 -5.609375 4.25 -5.609375 C 3.40625 -5.609375 2.828125 -5.3125 2.21875 -4.625 Z M 2.21875 -4.625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-9">
|
||||
<path style="stroke:none;" d="M 3.328125 -7.453125 L 3.328125 -7.125 L 3.453125 -7.125 C 3.875 -7.125 4.15625 -7.109375 4.15625 -6.453125 L 4.15625 -4.140625 C 3.796875 -4.546875 3.34375 -4.8125 2.765625 -4.8125 C 1.46875 -4.8125 0.375 -3.703125 0.375 -2.34375 C 0.375 -1.140625 1.296875 0.09375 2.65625 0.09375 C 3.25 0.09375 3.703125 -0.15625 4.125 -0.625 L 4.125 0.09375 L 5.6875 -0.015625 L 5.6875 -0.34375 L 5.546875 -0.34375 C 5.1875 -0.34375 4.859375 -0.375 4.859375 -0.890625 L 4.859375 -7.578125 Z M 1.25 -2.09375 L 1.25 -2.25 C 1.25 -3.0625 1.359375 -3.875 2.109375 -4.390625 C 2.328125 -4.515625 2.578125 -4.5625 2.8125 -4.5625 C 3.375 -4.5625 4.140625 -4.140625 4.140625 -3.453125 C 4.140625 -3.3125 4.125 -3.171875 4.125 -3.03125 L 4.125 -1.21875 C 4.125 -1.0625 4.0625 -0.984375 3.984375 -0.859375 C 3.703125 -0.4375 3.21875 -0.125 2.71875 -0.125 C 1.890625 -0.125 1.390625 -0.90625 1.28125 -1.640625 C 1.265625 -1.78125 1.265625 -1.9375 1.25 -2.09375 Z M 1.25 -2.09375 "/>
|
||||
<path style="stroke:none;" d="M 1.203125 -5.46875 C 0.953125 -5.4375 0.90625 -5.234375 0.90625 -4.96875 L 0.90625 -0.4375 C 0.90625 -0.0625 1.15625 -0.015625 1.40625 -0.015625 L 1.859375 -0.015625 C 2.046875 -0.015625 2.234375 -0.109375 2.265625 -0.3125 L 2.265625 -5.0625 C 2.265625 -5.375 2.0625 -5.5 1.78125 -5.5 C 1.6875 -5.5 1.578125 -5.484375 1.5 -5.484375 L 1.34375 -5.484375 C 1.296875 -5.484375 1.25 -5.484375 1.203125 -5.46875 Z M 1.140625 -8.578125 C 0.890625 -8.578125 0.828125 -8.296875 0.828125 -8.109375 C 0.828125 -8.03125 0.84375 -7.953125 0.84375 -7.875 L 0.84375 -7.515625 C 0.84375 -7.140625 1.09375 -7.09375 1.34375 -7.09375 L 1.890625 -7.09375 C 2.109375 -7.09375 2.328125 -7.1875 2.328125 -7.484375 L 2.328125 -8.140625 C 2.328125 -8.546875 2.09375 -8.59375 1.828125 -8.59375 L 1.28125 -8.59375 C 1.234375 -8.59375 1.1875 -8.59375 1.140625 -8.578125 Z M 1.140625 -8.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-10">
|
||||
<path style="stroke:none;" d="M 0.359375 -4.6875 L 0.359375 -4.359375 L 0.53125 -4.359375 C 0.859375 -4.359375 1.1875 -4.328125 1.1875 -3.8125 L 1.1875 -0.796875 C 1.1875 -0.34375 0.890625 -0.34375 0.421875 -0.34375 L 0.359375 -0.34375 L 0.359375 -0.015625 L 2.765625 -0.015625 L 2.765625 -0.34375 L 2.515625 -0.34375 C 2.1875 -0.34375 1.9375 -0.375 1.9375 -0.78125 L 1.9375 -2.8125 C 1.9375 -3.59375 2.359375 -4.578125 3.40625 -4.578125 C 4.09375 -4.578125 4.1875 -3.875 4.1875 -3.234375 L 4.1875 -0.75 C 4.1875 -0.375 3.890625 -0.34375 3.59375 -0.34375 L 3.359375 -0.34375 L 3.359375 -0.015625 L 5.765625 -0.015625 L 5.765625 -0.34375 L 5.5 -0.34375 C 5.21875 -0.34375 4.921875 -0.34375 4.921875 -0.765625 L 4.921875 -3.234375 C 4.921875 -3.5625 4.921875 -3.890625 4.75 -4.1875 C 4.5 -4.671875 3.953125 -4.8125 3.4375 -4.8125 C 2.75 -4.8125 2.078125 -4.3125 1.890625 -3.703125 L 1.875 -4.8125 Z M 0.359375 -4.6875 "/>
|
||||
<path style="stroke:none;" d="M 1.21875 -5.484375 L 0.65625 -5.484375 C 0.40625 -5.484375 0.25 -5.328125 0.25 -5.109375 C 0.25 -4.84375 0.453125 -4.734375 0.734375 -4.734375 L 1.1875 -4.734375 L 1.1875 -1.515625 C 1.1875 -0.734375 1.390625 0.109375 2.40625 0.109375 C 3.0625 0.109375 3.6875 -0.046875 4.296875 -0.3125 C 4.359375 -0.34375 4.453125 -0.375 4.46875 -0.484375 C 4.46875 -0.78125 4.296875 -1.09375 4.21875 -1.09375 C 4.125 -1.09375 3.96875 -0.953125 3.859375 -0.890625 C 3.59375 -0.8125 3.34375 -0.703125 3.0625 -0.703125 C 2.53125 -0.703125 2.515625 -1.28125 2.515625 -1.75 L 2.515625 -4.734375 L 3.796875 -4.734375 C 4 -4.734375 4.25 -4.828125 4.25 -5.109375 C 4.25 -5.359375 4.0625 -5.484375 3.796875 -5.484375 L 2.515625 -5.484375 L 2.515625 -6.609375 C 2.515625 -6.84375 2.421875 -7.046875 2.109375 -7.046875 L 1.96875 -7.046875 C 1.90625 -7.046875 1.8125 -7.0625 1.71875 -7.0625 C 1.453125 -7.0625 1.21875 -6.984375 1.21875 -6.59375 Z M 1.21875 -5.484375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-11">
|
||||
<path style="stroke:none;" d="M 0.953125 -0.40625 C 1.140625 -0.078125 1.71875 0.09375 2.109375 0.09375 C 2.875 0.09375 3.8125 -0.15625 3.90625 -1.3125 C 3.90625 -2.03125 3.515625 -2.515625 2.90625 -2.765625 C 2.640625 -2.875 2.34375 -2.90625 2.078125 -2.96875 L 1.84375 -3.015625 C 1.421875 -3.09375 0.859375 -3.3125 0.859375 -3.84375 C 0.859375 -4.484375 1.578125 -4.671875 2.109375 -4.671875 C 2.90625 -4.671875 3.28125 -4.171875 3.375 -3.453125 C 3.375 -3.359375 3.375 -3.25 3.5 -3.25 C 3.625 -3.25 3.625 -3.359375 3.625 -3.453125 L 3.625 -4.734375 C 3.625 -4.78125 3.59375 -4.859375 3.515625 -4.859375 C 3.34375 -4.859375 3.234375 -4.5625 3.125 -4.5625 C 3.046875 -4.578125 2.984375 -4.640625 2.921875 -4.671875 C 2.6875 -4.8125 2.40625 -4.859375 2.125 -4.859375 C 1.46875 -4.859375 0.359375 -4.640625 0.359375 -3.5625 C 0.359375 -2.375 1.671875 -2.25 2.4375 -2.09375 C 2.90625 -2 3.390625 -1.671875 3.40625 -1.140625 C 3.40625 -0.34375 2.703125 -0.125 2.140625 -0.125 C 1.28125 -0.125 0.875 -0.796875 0.671875 -1.53125 C 0.640625 -1.640625 0.671875 -1.875 0.484375 -1.875 C 0.421875 -1.875 0.359375 -1.828125 0.359375 -1.75 L 0.359375 -0.3125 C 0.359375 -0.25 0.34375 -0.1875 0.34375 -0.125 C 0.34375 -0.03125 0.375 0.09375 0.484375 0.09375 C 0.640625 0.078125 0.78125 -0.265625 0.953125 -0.40625 Z M 0.953125 -0.40625 "/>
|
||||
<path style="stroke:none;" d="M 4.375 -4.09375 L 4.390625 -4.09375 C 4.40625 -3.75 4.546875 -3.390625 4.640625 -3.0625 C 4.859375 -2.21875 5.109375 -1.375 5.375 -0.546875 C 5.53125 -0.078125 5.75 -0.015625 6.09375 -0.015625 L 6.84375 -0.015625 C 7.28125 -0.015625 7.359375 -0.265625 7.453125 -0.53125 C 7.921875 -1.953125 8.3125 -3.390625 8.75 -4.8125 C 8.78125 -4.9375 8.859375 -5.078125 8.859375 -5.21875 C 8.859375 -5.421875 8.671875 -5.484375 8.46875 -5.484375 L 8.265625 -5.484375 C 8.03125 -5.484375 7.796875 -5.46875 7.65625 -5.21875 C 7.578125 -5.03125 7.53125 -4.8125 7.46875 -4.609375 C 7.1875 -3.6875 6.890625 -2.765625 6.640625 -1.84375 C 6.546875 -1.578125 6.4375 -1.3125 6.390625 -1.046875 C 6.375 -1.140625 6.328125 -1.234375 6.3125 -1.3125 L 6.171875 -1.78125 C 5.875 -2.703125 5.59375 -3.625 5.328125 -4.546875 C 5.15625 -4.96875 5.21875 -5.484375 4.515625 -5.484375 C 4.09375 -5.484375 3.96875 -5.25 3.890625 -4.953125 C 3.609375 -4.0625 3.34375 -3.171875 3.078125 -2.28125 C 2.96875 -1.921875 2.875 -1.546875 2.734375 -1.203125 C 2.40625 -2.390625 2.046875 -3.5625 1.65625 -4.71875 C 1.53125 -5.109375 1.5 -5.484375 0.90625 -5.484375 L 0.703125 -5.484375 C 0.53125 -5.484375 0.28125 -5.46875 0.28125 -5.203125 C 0.28125 -5.078125 0.359375 -4.953125 0.375 -4.84375 L 1.671875 -0.609375 C 1.71875 -0.453125 1.75 -0.28125 1.859375 -0.171875 C 1.984375 -0.03125 2.171875 0 2.359375 0 C 2.46875 0 2.5625 -0.015625 2.65625 -0.015625 L 2.78125 -0.015625 C 3.375 -0.015625 3.421875 -0.671875 3.53125 -1.046875 C 3.734375 -1.734375 3.9375 -2.421875 4.140625 -3.109375 C 4.21875 -3.4375 4.34375 -3.765625 4.375 -4.09375 Z M 4.375 -4.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-12">
|
||||
<path style="stroke:none;" d="M 2.546875 -4.859375 C 1.15625 -4.703125 0.3125 -3.5625 0.3125 -2.328125 C 0.3125 -1.171875 1.203125 0.109375 2.703125 0.109375 C 4.0625 0.109375 5.09375 -1.0625 5.09375 -2.34375 C 5.09375 -3.625 4.125 -4.859375 2.65625 -4.859375 Z M 1.1875 -2.09375 C 1.171875 -2.1875 1.171875 -2.28125 1.171875 -2.359375 C 1.171875 -3.234375 1.375 -4.625 2.703125 -4.625 C 3.84375 -4.625 4.21875 -3.546875 4.21875 -2.5 C 4.21875 -1.609375 4.109375 -0.234375 2.765625 -0.15625 L 2.703125 -0.15625 C 1.828125 -0.15625 1.296875 -0.921875 1.21875 -1.765625 C 1.203125 -1.875 1.203125 -1.984375 1.1875 -2.09375 Z M 1.1875 -2.09375 "/>
|
||||
<path style="stroke:none;" d="M 2.21875 -4.625 L 2.21875 -5.0625 C 2.21875 -5.3125 2.171875 -5.546875 1.8125 -5.546875 L 1.65625 -5.546875 C 1.578125 -5.546875 1.5 -5.5625 1.40625 -5.5625 C 1.140625 -5.5625 0.890625 -5.5 0.890625 -5.125 L 0.890625 -0.4375 C 0.890625 -0.03125 1.1875 -0.015625 1.40625 -0.015625 L 1.859375 -0.015625 C 2.25 -0.015625 2.28125 -0.265625 2.28125 -0.5 L 2.28125 -2.5625 C 2.28125 -3.03125 2.28125 -3.453125 2.46875 -3.890625 C 2.671875 -4.40625 3.15625 -4.859375 3.75 -4.859375 L 3.84375 -4.859375 C 4.609375 -4.78125 4.625 -4.203125 4.625 -3.671875 L 4.625 -0.484375 C 4.625 -0.25 4.703125 -0.015625 5 -0.015625 L 5.5625 -0.015625 C 5.875 -0.015625 6.03125 -0.171875 6.03125 -0.46875 C 6.03125 -0.546875 6.015625 -0.625 6.015625 -0.6875 L 6.015625 -3.5625 C 6.015625 -4.5625 5.859375 -5.609375 4.140625 -5.609375 L 4 -5.609375 C 3.265625 -5.5625 2.71875 -5.1875 2.21875 -4.625 Z M 2.21875 -4.625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-13">
|
||||
<path style="stroke:none;" d="M 0.203125 -4.703125 L 0.203125 -4.375 L 0.34375 -4.375 C 0.953125 -4.375 1 -4 1.25 -3.28125 C 1.609375 -2.234375 1.984375 -1.21875 2.34375 -0.1875 C 2.390625 -0.078125 2.421875 0.078125 2.5625 0.09375 L 2.578125 0.09375 C 2.828125 0.09375 2.984375 -0.625 3.125 -1 C 3.34375 -1.5625 3.53125 -2.125 3.734375 -2.6875 C 3.796875 -2.859375 3.859375 -3.015625 3.90625 -3.203125 L 3.921875 -3.203125 C 4.09375 -2.4375 4.453125 -1.71875 4.703125 -0.984375 C 4.828125 -0.609375 5 0.09375 5.21875 0.09375 L 5.25 0.09375 C 5.40625 0.09375 5.4375 -0.0625 5.46875 -0.1875 C 5.78125 -1.09375 6.125 -2 6.453125 -2.921875 C 6.703125 -3.609375 6.859375 -4.375 7.625 -4.375 L 7.625 -4.703125 L 6.875 -4.671875 L 5.859375 -4.671875 L 5.859375 -4.375 C 6.140625 -4.359375 6.4375 -4.203125 6.46875 -3.90625 L 6.46875 -3.859375 C 6.46875 -3.71875 6.40625 -3.578125 6.34375 -3.4375 C 6.078125 -2.65625 5.8125 -1.875 5.515625 -1.109375 C 5.484375 -1.03125 5.453125 -0.9375 5.4375 -0.84375 L 5.421875 -0.84375 C 5.140625 -1.84375 4.71875 -2.84375 4.359375 -3.8125 C 4.328125 -3.890625 4.28125 -3.984375 4.28125 -4.078125 C 4.28125 -4.359375 4.6875 -4.375 4.90625 -4.375 L 4.90625 -4.703125 L 2.828125 -4.703125 L 2.828125 -4.375 L 2.984375 -4.375 C 3.40625 -4.375 3.546875 -4.25 3.671875 -3.84375 C 3.703125 -3.78125 3.75 -3.671875 3.75 -3.59375 L 3.75 -3.5625 C 3.71875 -3.359375 3.59375 -3.109375 3.515625 -2.890625 C 3.375 -2.46875 3.234375 -2.078125 3.078125 -1.65625 C 3 -1.421875 2.890625 -1.203125 2.828125 -0.953125 C 2.765625 -1.21875 2.65625 -1.46875 2.5625 -1.71875 C 2.3125 -2.4375 2.046875 -3.140625 1.796875 -3.84375 C 1.78125 -3.921875 1.734375 -4 1.734375 -4.078125 C 1.734375 -4.359375 2.109375 -4.375 2.296875 -4.375 L 2.359375 -4.375 L 2.359375 -4.703125 Z M 0.203125 -4.703125 "/>
|
||||
<path style="stroke:none;" d="M 2.046875 -1.09375 C 2.578125 -1.5625 3.140625 -2.078125 3.703125 -2.515625 L 4.5 -3.125 C 5.21875 -3.6875 5.96875 -4.40625 6.03125 -5.375 L 6.03125 -5.484375 C 6.03125 -7.125 4.65625 -8.09375 3.15625 -8.09375 C 2.0625 -8.09375 1.1875 -7.59375 0.703125 -6.640625 C 0.65625 -6.53125 0.578125 -6.390625 0.578125 -6.296875 L 0.578125 -6.28125 C 0.578125 -6.203125 0.640625 -6.140625 0.6875 -6.078125 L 0.96875 -5.765625 C 1.046875 -5.671875 1.15625 -5.484375 1.265625 -5.484375 C 1.40625 -5.484375 1.484375 -5.90625 1.5625 -6.078125 C 1.8125 -6.640625 2.265625 -7.0625 2.984375 -7.0625 C 3.828125 -7.0625 4.609375 -6.484375 4.609375 -5.515625 C 4.609375 -4.546875 3.9375 -3.875 3.3125 -3.265625 C 2.515625 -2.515625 1.703125 -1.78125 0.921875 -1.046875 C 0.8125 -0.9375 0.65625 -0.84375 0.65625 -0.671875 C 0.65625 -0.328125 0.671875 -0.015625 1.171875 -0.015625 L 5.625 -0.015625 C 6 -0.015625 6.03125 -0.265625 6.03125 -0.484375 L 6.03125 -0.59375 C 6.03125 -0.84375 6.015625 -1.125 5.609375 -1.125 L 4.84375 -1.125 C 3.90625 -1.125 2.96875 -1.125 2.046875 -1.09375 Z M 2.046875 -1.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-14">
|
||||
<path style="stroke:none;" d="M 3.09375 -5.671875 C 2.375 -5.578125 1.6875 -5.46875 1.140625 -4.953125 C 0.53125 -4.375 0.375 -3.5 0.375 -2.71875 C 0.375 -1.96875 0.53125 -1.15625 1.078125 -0.625 C 1.703125 0 2.625 0.109375 3.484375 0.109375 C 4.21875 0.109375 5.09375 -0.078125 5.640625 -0.640625 C 6.1875 -1.171875 6.328125 -1.953125 6.328125 -2.6875 C 6.328125 -3.453125 6.1875 -4.296875 5.640625 -4.875 C 5.03125 -5.515625 4.109375 -5.671875 3.265625 -5.671875 Z M 1.75 -2.421875 L 1.75 -2.953125 C 1.75 -3.796875 1.84375 -4.90625 3.34375 -4.90625 C 4.8125 -4.90625 4.953125 -3.8125 4.953125 -2.875 L 4.953125 -2.796875 C 4.953125 -1.90625 4.90625 -0.703125 3.328125 -0.703125 C 2.890625 -0.703125 2.421875 -0.828125 2.125 -1.171875 C 1.828125 -1.515625 1.8125 -1.984375 1.75 -2.421875 Z M 1.75 -2.421875 "/>
|
||||
</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 0.203125 -7.421875 L 0.203125 -7.125 L 0.4375 -7.125 C 0.984375 -7.125 1.0625 -6.890625 1.203125 -6.453125 C 1.75 -4.859375 2.234375 -3.265625 2.765625 -1.671875 C 2.9375 -1.171875 3.09375 -0.703125 3.25 -0.203125 C 3.296875 -0.046875 3.328125 0.21875 3.53125 0.21875 L 3.5625 0.21875 C 3.71875 0.1875 3.765625 -0.09375 3.8125 -0.25 C 4.296875 -1.703125 4.765625 -3.15625 5.21875 -4.59375 C 5.328125 -4.921875 5.4375 -5.28125 5.5625 -5.609375 C 5.875 -4.828125 6.078125 -4.046875 6.34375 -3.234375 C 6.640625 -2.25 6.984375 -1.25 7.3125 -0.25 L 7.40625 0.046875 C 7.421875 0.125 7.46875 0.203125 7.5625 0.21875 L 7.59375 0.21875 C 7.78125 0.21875 7.8125 -0.03125 7.875 -0.1875 C 8.015625 -0.671875 8.1875 -1.140625 8.34375 -1.625 C 8.796875 -3.015625 9.234375 -4.421875 9.703125 -5.8125 C 9.90625 -6.390625 9.984375 -7.125 10.921875 -7.125 L 10.921875 -7.453125 L 8.765625 -7.453125 L 8.765625 -7.125 C 9.125 -7.125 9.65625 -6.96875 9.65625 -6.5625 C 9.65625 -6.390625 9.546875 -6.1875 9.484375 -6.015625 C 9.375 -5.65625 9.265625 -5.296875 9.140625 -4.9375 L 8.359375 -2.515625 C 8.21875 -2.078125 8.0625 -1.640625 7.921875 -1.203125 C 7.75 -1.625 7.640625 -2.078125 7.5 -2.515625 C 7.0625 -3.890625 6.65625 -5.296875 6.15625 -6.65625 C 6.140625 -6.703125 6.125 -6.765625 6.125 -6.8125 C 6.125 -7.125 6.65625 -7.125 6.96875 -7.125 L 6.96875 -7.453125 L 5.71875 -7.453125 L 5.484375 -7.421875 L 4.28125 -7.421875 L 4.28125 -7.125 L 4.46875 -7.125 C 4.671875 -7.125 4.890625 -7.125 5.03125 -7.03125 C 5.25 -6.84375 5.328125 -6.328125 5.375 -6.1875 C 5.40625 -6.140625 5.40625 -6.109375 5.40625 -6.0625 L 5.40625 -6.03125 C 5.40625 -5.921875 5.328125 -5.796875 5.296875 -5.6875 C 4.890625 -4.3125 4.390625 -2.953125 3.96875 -1.578125 C 3.921875 -1.453125 3.875 -1.328125 3.84375 -1.203125 C 3.78125 -1.609375 3.5625 -2.078125 3.421875 -2.484375 C 3.015625 -3.796875 2.59375 -5.109375 2.15625 -6.40625 C 2.109375 -6.53125 2.046875 -6.703125 2.046875 -6.828125 L 2.046875 -6.859375 C 2.109375 -7.125 2.546875 -7.125 2.828125 -7.125 L 2.890625 -7.125 L 2.890625 -7.453125 L 1.640625 -7.453125 L 1.40625 -7.421875 Z M 0.203125 -7.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-2">
|
||||
<path style="stroke:none;" d="M 1.1875 -2.546875 L 4.34375 -2.546875 C 4.453125 -2.546875 4.5 -2.59375 4.5 -2.703125 C 4.5 -3.78125 3.921875 -4.859375 2.59375 -4.859375 C 1.28125 -4.859375 0.3125 -3.671875 0.3125 -2.421875 C 0.3125 -1.234375 1.171875 0.09375 2.640625 0.09375 C 3.46875 0.09375 4.171875 -0.34375 4.46875 -1.1875 C 4.484375 -1.234375 4.5 -1.265625 4.5 -1.3125 C 4.5 -1.375 4.4375 -1.421875 4.390625 -1.421875 C 4.203125 -1.421875 4.140625 -1.0625 4.078125 -0.9375 C 3.8125 -0.484375 3.296875 -0.15625 2.765625 -0.15625 C 2.15625 -0.15625 1.625 -0.59375 1.390625 -1.140625 C 1.203125 -1.578125 1.1875 -2.078125 1.1875 -2.546875 Z M 1.203125 -2.765625 C 1.203125 -3.609375 1.671875 -4.640625 2.578125 -4.640625 C 3.515625 -4.640625 3.796875 -3.546875 3.796875 -2.765625 Z M 1.203125 -2.765625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-3">
|
||||
<path style="stroke:none;" d="M 0.3125 -4.6875 L 0.3125 -4.359375 L 0.484375 -4.359375 C 0.8125 -4.359375 1.140625 -4.328125 1.140625 -3.8125 L 1.140625 -0.796875 C 1.140625 -0.34375 0.84375 -0.34375 0.375 -0.34375 L 0.3125 -0.34375 L 0.3125 -0.015625 L 2.90625 -0.015625 L 2.90625 -0.34375 C 2.78125 -0.34375 2.65625 -0.328125 2.515625 -0.328125 C 2.171875 -0.328125 1.859375 -0.375 1.859375 -0.78125 L 1.859375 -2.265625 C 1.859375 -3.125 2.03125 -4.578125 3.125 -4.578125 C 3.171875 -4.578125 3.21875 -4.5625 3.265625 -4.5625 C 3.109375 -4.5 3.015625 -4.3125 3.015625 -4.15625 C 3.015625 -3.921875 3.203125 -3.734375 3.421875 -3.703125 C 3.734375 -3.703125 3.921875 -3.90625 3.921875 -4.171875 C 3.921875 -4.59375 3.5 -4.8125 3.140625 -4.8125 C 2.453125 -4.8125 1.9375 -4.1875 1.8125 -3.625 L 1.796875 -4.8125 Z M 0.3125 -4.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-4">
|
||||
<path style="stroke:none;" d="M 0.359375 -4.6875 L 0.359375 -4.359375 L 0.53125 -4.359375 C 0.859375 -4.359375 1.1875 -4.328125 1.1875 -3.8125 L 1.1875 -0.796875 C 1.1875 -0.34375 0.890625 -0.34375 0.421875 -0.34375 L 0.359375 -0.34375 L 0.359375 -0.015625 L 2.765625 -0.015625 L 2.765625 -0.34375 L 2.515625 -0.34375 C 2.1875 -0.34375 1.9375 -0.375 1.9375 -0.78125 L 1.9375 -2.828125 C 1.9375 -3.59375 2.359375 -4.578125 3.40625 -4.578125 C 4.0625 -4.578125 4.203125 -3.921875 4.203125 -3.34375 L 4.203125 -0.75 C 4.203125 -0.375 3.90625 -0.34375 3.609375 -0.34375 L 3.375 -0.34375 L 3.375 -0.015625 L 5.765625 -0.015625 L 5.765625 -0.34375 L 5.515625 -0.34375 C 5.203125 -0.34375 4.9375 -0.375 4.9375 -0.78125 L 4.9375 -2.828125 C 4.9375 -3.59375 5.359375 -4.578125 6.421875 -4.578125 C 7.078125 -4.578125 7.203125 -3.921875 7.203125 -3.34375 L 7.203125 -0.75 C 7.203125 -0.375 6.921875 -0.34375 6.625 -0.34375 L 6.375 -0.34375 L 6.375 -0.015625 L 8.78125 -0.015625 L 8.78125 -0.34375 L 8.53125 -0.34375 C 8.234375 -0.34375 7.953125 -0.34375 7.953125 -0.78125 L 7.953125 -3.203125 C 7.953125 -3.5625 7.9375 -3.921875 7.75 -4.21875 C 7.5 -4.6875 6.9375 -4.8125 6.4375 -4.8125 L 6.3125 -4.8125 C 5.734375 -4.75 5.078125 -4.3125 4.921875 -3.75 L 4.90625 -3.75 C 4.78125 -4.53125 4.125 -4.8125 3.46875 -4.8125 C 2.78125 -4.8125 2.109375 -4.375 1.890625 -3.703125 L 1.875 -4.8125 Z M 0.359375 -4.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-5">
|
||||
<path style="stroke:none;" d="M 1.1875 -4.0625 C 1.46875 -4.40625 1.875 -4.640625 2.328125 -4.640625 C 3.125 -4.640625 3.53125 -3.953125 3.53125 -3.203125 L 3.53125 -2.84375 C 2.296875 -2.84375 0.46875 -2.4375 0.46875 -1.046875 C 0.46875 -0.234375 1.421875 0.09375 2.1875 0.09375 L 2.328125 0.09375 C 2.875 0.046875 3.46875 -0.34375 3.609375 -0.84375 L 3.625 -0.84375 C 3.65625 -0.390625 3.953125 0.046875 4.453125 0.046875 C 4.921875 0.046875 5.296875 -0.328125 5.34375 -0.796875 L 5.34375 -1.59375 L 5.078125 -1.59375 L 5.078125 -1.046875 C 5.078125 -0.75 5.03125 -0.296875 4.671875 -0.296875 C 4.34375 -0.296875 4.265625 -0.734375 4.265625 -1 C 4.265625 -1.125 4.28125 -1.25 4.28125 -1.375 L 4.28125 -2.875 C 4.28125 -3 4.28125 -3.125 4.28125 -3.265625 C 4.28125 -4.28125 3.328125 -4.859375 2.421875 -4.859375 C 1.734375 -4.859375 0.796875 -4.5 0.796875 -3.625 C 0.796875 -3.34375 0.984375 -3.125 1.265625 -3.125 C 1.53125 -3.125 1.734375 -3.328125 1.734375 -3.59375 C 1.734375 -3.84375 1.53125 -4.0625 1.265625 -4.0625 C 1.25 -4.0625 1.203125 -4.0625 1.1875 -4.0625 Z M 3.53125 -2.625 L 3.53125 -1.53125 C 3.53125 -0.78125 3.015625 -0.171875 2.296875 -0.125 L 2.25 -0.125 C 1.75 -0.125 1.28125 -0.53125 1.28125 -1.0625 L 1.28125 -1.109375 C 1.359375 -2.171875 2.515625 -2.59375 3.53125 -2.625 Z M 3.53125 -2.625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-6">
|
||||
<path style="stroke:none;" d="M 3.953125 -4.140625 C 3.671875 -4.140625 3.453125 -3.953125 3.453125 -3.671875 C 3.453125 -3.421875 3.65625 -3.1875 3.921875 -3.1875 C 4.171875 -3.1875 4.390625 -3.390625 4.390625 -3.6875 L 4.390625 -3.78125 C 4.28125 -4.609375 3.296875 -4.859375 2.6875 -4.859375 C 1.359375 -4.859375 0.375 -3.625 0.375 -2.359375 C 0.375 -1.078125 1.359375 0.09375 2.71875 0.09375 C 3.421875 0.09375 4.140625 -0.3125 4.421875 -1.0625 C 4.453125 -1.140625 4.5 -1.21875 4.5 -1.296875 L 4.5 -1.34375 C 4.46875 -1.390625 4.421875 -1.421875 4.375 -1.421875 C 4.203125 -1.421875 4.140625 -0.96875 4 -0.8125 C 3.734375 -0.40625 3.296875 -0.15625 2.8125 -0.15625 C 1.65625 -0.15625 1.25 -1.421875 1.25 -2.359375 C 1.25 -3.265625 1.546875 -4.53125 2.65625 -4.609375 L 2.734375 -4.609375 C 3.140625 -4.609375 3.671875 -4.484375 3.953125 -4.140625 Z M 3.953125 -4.140625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-7">
|
||||
<path style="stroke:none;" d="M 0.359375 -7.453125 L 0.359375 -7.125 L 0.5625 -7.125 C 0.90625 -7.125 1.1875 -7.09375 1.1875 -6.59375 L 1.1875 -0.78125 C 1.1875 -0.375 0.921875 -0.34375 0.625 -0.34375 L 0.359375 -0.34375 L 0.359375 -0.015625 L 2.765625 -0.015625 L 2.765625 -0.34375 L 2.515625 -0.34375 C 2.1875 -0.34375 1.9375 -0.375 1.9375 -0.78125 L 1.9375 -2.8125 C 1.9375 -3.59375 2.359375 -4.578125 3.40625 -4.578125 C 4.09375 -4.578125 4.1875 -3.875 4.1875 -3.234375 L 4.1875 -0.75 C 4.1875 -0.375 3.890625 -0.34375 3.59375 -0.34375 L 3.359375 -0.34375 L 3.359375 -0.015625 L 5.765625 -0.015625 L 5.765625 -0.34375 L 5.5 -0.34375 C 5.21875 -0.34375 4.921875 -0.34375 4.921875 -0.78125 L 4.921875 -3.21875 C 4.921875 -3.5625 4.921875 -3.921875 4.734375 -4.21875 C 4.484375 -4.65625 3.984375 -4.8125 3.484375 -4.8125 C 2.8125 -4.8125 2.078125 -4.390625 1.90625 -3.75 L 1.890625 -7.578125 Z M 0.359375 -7.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-8">
|
||||
<path style="stroke:none;" d="M 1.609375 -6.71875 C 1.609375 -5.984375 1.3125 -4.609375 0.203125 -4.609375 L 0.203125 -4.375 L 1.140625 -4.375 L 1.140625 -1.46875 C 1.140625 -1.140625 1.15625 -0.8125 1.3125 -0.53125 C 1.578125 -0.09375 2.078125 0.09375 2.546875 0.09375 C 3.421875 0.09375 3.609375 -0.859375 3.609375 -1.5625 L 3.609375 -1.984375 L 3.34375 -1.984375 C 3.34375 -1.828125 3.359375 -1.65625 3.359375 -1.5 C 3.359375 -0.984375 3.25 -0.15625 2.609375 -0.15625 C 1.984375 -0.15625 1.875 -0.921875 1.875 -1.421875 L 1.875 -4.375 L 3.421875 -4.375 L 3.421875 -4.703125 L 1.875 -4.703125 L 1.875 -6.71875 Z M 1.609375 -6.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-9">
|
||||
<path style="stroke:none;" d="M 3.328125 -7.453125 L 3.328125 -7.125 L 3.453125 -7.125 C 3.875 -7.125 4.15625 -7.109375 4.15625 -6.453125 L 4.15625 -4.140625 C 3.796875 -4.546875 3.34375 -4.8125 2.765625 -4.8125 C 1.46875 -4.8125 0.375 -3.703125 0.375 -2.34375 C 0.375 -1.140625 1.296875 0.09375 2.65625 0.09375 C 3.25 0.09375 3.703125 -0.15625 4.125 -0.625 L 4.125 0.09375 L 5.6875 -0.015625 L 5.6875 -0.34375 L 5.546875 -0.34375 C 5.1875 -0.34375 4.859375 -0.375 4.859375 -0.890625 L 4.859375 -7.578125 Z M 1.25 -2.09375 L 1.25 -2.25 C 1.25 -3.0625 1.359375 -3.875 2.109375 -4.390625 C 2.328125 -4.515625 2.578125 -4.5625 2.8125 -4.5625 C 3.375 -4.5625 4.140625 -4.140625 4.140625 -3.453125 C 4.140625 -3.3125 4.125 -3.171875 4.125 -3.03125 L 4.125 -1.21875 C 4.125 -1.0625 4.0625 -0.984375 3.984375 -0.859375 C 3.703125 -0.4375 3.21875 -0.125 2.71875 -0.125 C 1.890625 -0.125 1.390625 -0.90625 1.28125 -1.640625 C 1.265625 -1.78125 1.265625 -1.9375 1.25 -2.09375 Z M 1.25 -2.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-10">
|
||||
<path style="stroke:none;" d="M 0.359375 -4.6875 L 0.359375 -4.359375 L 0.53125 -4.359375 C 0.859375 -4.359375 1.1875 -4.328125 1.1875 -3.8125 L 1.1875 -0.796875 C 1.1875 -0.34375 0.890625 -0.34375 0.421875 -0.34375 L 0.359375 -0.34375 L 0.359375 -0.015625 L 2.765625 -0.015625 L 2.765625 -0.34375 L 2.515625 -0.34375 C 2.1875 -0.34375 1.9375 -0.375 1.9375 -0.78125 L 1.9375 -2.8125 C 1.9375 -3.59375 2.359375 -4.578125 3.40625 -4.578125 C 4.09375 -4.578125 4.1875 -3.875 4.1875 -3.234375 L 4.1875 -0.75 C 4.1875 -0.375 3.890625 -0.34375 3.59375 -0.34375 L 3.359375 -0.34375 L 3.359375 -0.015625 L 5.765625 -0.015625 L 5.765625 -0.34375 L 5.5 -0.34375 C 5.21875 -0.34375 4.921875 -0.34375 4.921875 -0.765625 L 4.921875 -3.234375 C 4.921875 -3.5625 4.921875 -3.890625 4.75 -4.1875 C 4.5 -4.671875 3.953125 -4.8125 3.4375 -4.8125 C 2.75 -4.8125 2.078125 -4.3125 1.890625 -3.703125 L 1.875 -4.8125 Z M 0.359375 -4.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-11">
|
||||
<path style="stroke:none;" d="M 0.953125 -0.40625 C 1.140625 -0.078125 1.71875 0.09375 2.109375 0.09375 C 2.875 0.09375 3.8125 -0.15625 3.90625 -1.3125 C 3.90625 -2.03125 3.515625 -2.515625 2.90625 -2.765625 C 2.640625 -2.875 2.34375 -2.90625 2.078125 -2.96875 L 1.84375 -3.015625 C 1.421875 -3.09375 0.859375 -3.3125 0.859375 -3.84375 C 0.859375 -4.484375 1.578125 -4.671875 2.109375 -4.671875 C 2.90625 -4.671875 3.28125 -4.171875 3.375 -3.453125 C 3.375 -3.359375 3.375 -3.25 3.5 -3.25 C 3.625 -3.25 3.625 -3.359375 3.625 -3.453125 L 3.625 -4.734375 C 3.625 -4.78125 3.59375 -4.859375 3.515625 -4.859375 C 3.34375 -4.859375 3.234375 -4.5625 3.125 -4.5625 C 3.046875 -4.578125 2.984375 -4.640625 2.921875 -4.671875 C 2.6875 -4.8125 2.40625 -4.859375 2.125 -4.859375 C 1.46875 -4.859375 0.359375 -4.640625 0.359375 -3.5625 C 0.359375 -2.375 1.671875 -2.25 2.4375 -2.09375 C 2.90625 -2 3.390625 -1.671875 3.40625 -1.140625 C 3.40625 -0.34375 2.703125 -0.125 2.140625 -0.125 C 1.28125 -0.125 0.875 -0.796875 0.671875 -1.53125 C 0.640625 -1.640625 0.671875 -1.875 0.484375 -1.875 C 0.421875 -1.875 0.359375 -1.828125 0.359375 -1.75 L 0.359375 -0.3125 C 0.359375 -0.25 0.34375 -0.1875 0.34375 -0.125 C 0.34375 -0.03125 0.375 0.09375 0.484375 0.09375 C 0.640625 0.078125 0.78125 -0.265625 0.953125 -0.40625 Z M 0.953125 -0.40625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-12">
|
||||
<path style="stroke:none;" d="M 2.546875 -4.859375 C 1.15625 -4.703125 0.3125 -3.5625 0.3125 -2.328125 C 0.3125 -1.171875 1.203125 0.109375 2.703125 0.109375 C 4.0625 0.109375 5.09375 -1.0625 5.09375 -2.34375 C 5.09375 -3.625 4.125 -4.859375 2.65625 -4.859375 Z M 1.1875 -2.09375 C 1.171875 -2.1875 1.171875 -2.28125 1.171875 -2.359375 C 1.171875 -3.234375 1.375 -4.625 2.703125 -4.625 C 3.84375 -4.625 4.21875 -3.546875 4.21875 -2.5 C 4.21875 -1.609375 4.109375 -0.234375 2.765625 -0.15625 L 2.703125 -0.15625 C 1.828125 -0.15625 1.296875 -0.921875 1.21875 -1.765625 C 1.203125 -1.875 1.203125 -1.984375 1.1875 -2.09375 Z M 1.1875 -2.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-13">
|
||||
<path style="stroke:none;" d="M 0.203125 -4.703125 L 0.203125 -4.375 L 0.34375 -4.375 C 0.953125 -4.375 1 -4 1.25 -3.28125 C 1.609375 -2.234375 1.984375 -1.21875 2.34375 -0.1875 C 2.390625 -0.078125 2.421875 0.078125 2.5625 0.09375 L 2.578125 0.09375 C 2.828125 0.09375 2.984375 -0.625 3.125 -1 C 3.34375 -1.5625 3.53125 -2.125 3.734375 -2.6875 C 3.796875 -2.859375 3.859375 -3.015625 3.90625 -3.203125 L 3.921875 -3.203125 C 4.09375 -2.4375 4.453125 -1.71875 4.703125 -0.984375 C 4.828125 -0.609375 5 0.09375 5.21875 0.09375 L 5.25 0.09375 C 5.40625 0.09375 5.4375 -0.0625 5.46875 -0.1875 C 5.78125 -1.09375 6.125 -2 6.453125 -2.921875 C 6.703125 -3.609375 6.859375 -4.375 7.625 -4.375 L 7.625 -4.703125 L 6.875 -4.671875 L 5.859375 -4.671875 L 5.859375 -4.375 C 6.140625 -4.359375 6.4375 -4.203125 6.46875 -3.90625 L 6.46875 -3.859375 C 6.46875 -3.71875 6.40625 -3.578125 6.34375 -3.4375 C 6.078125 -2.65625 5.8125 -1.875 5.515625 -1.109375 C 5.484375 -1.03125 5.453125 -0.9375 5.4375 -0.84375 L 5.421875 -0.84375 C 5.140625 -1.84375 4.71875 -2.84375 4.359375 -3.8125 C 4.328125 -3.890625 4.28125 -3.984375 4.28125 -4.078125 C 4.28125 -4.359375 4.6875 -4.375 4.90625 -4.375 L 4.90625 -4.703125 L 2.828125 -4.703125 L 2.828125 -4.375 L 2.984375 -4.375 C 3.40625 -4.375 3.546875 -4.25 3.671875 -3.84375 C 3.703125 -3.78125 3.75 -3.671875 3.75 -3.59375 L 3.75 -3.5625 C 3.71875 -3.359375 3.59375 -3.109375 3.515625 -2.890625 C 3.375 -2.46875 3.234375 -2.078125 3.078125 -1.65625 C 3 -1.421875 2.890625 -1.203125 2.828125 -0.953125 C 2.765625 -1.21875 2.65625 -1.46875 2.5625 -1.71875 C 2.3125 -2.4375 2.046875 -3.140625 1.796875 -3.84375 C 1.78125 -3.921875 1.734375 -4 1.734375 -4.078125 C 1.734375 -4.359375 2.109375 -4.375 2.296875 -4.375 L 2.359375 -4.375 L 2.359375 -4.703125 Z M 0.203125 -4.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-14">
|
||||
<path style="stroke:none;" d="M 0.953125 -6.65625 C 1.296875 -7.21875 1.828125 -7.453125 2.4375 -7.453125 C 3.109375 -7.453125 3.640625 -7.25 3.640625 -6.234375 C 3.640625 -5.78125 3.515625 -5.46875 3.171875 -5.125 C 2.515625 -4.328125 2.28125 -3.5 2.28125 -2.359375 L 2.28125 -2.15625 C 2.28125 -2.078125 2.3125 -2 2.40625 -2 C 2.515625 -2 2.546875 -2.09375 2.546875 -2.203125 C 2.546875 -2.265625 2.546875 -2.328125 2.546875 -2.375 C 2.546875 -3.46875 2.875 -4.265625 3.78125 -4.96875 C 4.21875 -5.328125 4.453125 -5.578125 4.515625 -6.078125 L 4.515625 -6.1875 C 4.515625 -7.125 3.703125 -7.6875 2.40625 -7.6875 L 2.28125 -7.6875 C 1.5 -7.640625 0.59375 -7.125 0.59375 -6.234375 C 0.59375 -5.921875 0.828125 -5.734375 1.0625 -5.734375 C 1.3125 -5.734375 1.53125 -5.921875 1.53125 -6.1875 C 1.53125 -6.46875 1.34375 -6.671875 1.0625 -6.671875 C 1.03125 -6.671875 1 -6.65625 0.953125 -6.65625 Z M 2.328125 -1.09375 C 2.03125 -1.046875 1.875 -0.796875 1.875 -0.5625 C 1.875 -0.3125 2.046875 -0.015625 2.40625 -0.015625 C 2.734375 -0.015625 2.9375 -0.28125 2.9375 -0.5625 C 2.9375 -0.8125 2.765625 -1.09375 2.421875 -1.09375 C 2.390625 -1.09375 2.359375 -1.09375 2.328125 -1.09375 Z M 2.328125 -1.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-15">
|
||||
<symbol overflow="visible" id="glyph5-15">
|
||||
<path style="stroke:none;" d="M 0.484375 -7.453125 L 0.484375 -7.125 C 0.609375 -7.125 0.734375 -7.140625 0.875 -7.140625 C 1.234375 -7.140625 1.5625 -7.09375 1.5625 -6.6875 C 1.5625 -6.609375 1.546875 -6.546875 1.546875 -6.484375 L 1.546875 -1.125 C 1.546875 -0.421875 0.96875 -0.34375 0.484375 -0.34375 L 0.484375 -0.015625 L 2.90625 -0.015625 L 2.90625 -0.34375 C 2.421875 -0.34375 1.828125 -0.421875 1.828125 -1.15625 C 1.828125 -1.28125 1.84375 -1.390625 1.84375 -1.5 L 1.859375 -7.0625 C 1.90625 -6.84375 2 -6.625 2.09375 -6.40625 L 2.515625 -5.328125 C 3.15625 -3.703125 3.8125 -2.046875 4.421875 -0.390625 C 4.46875 -0.265625 4.515625 -0.015625 4.6875 -0.015625 C 4.859375 -0.015625 4.90625 -0.28125 4.953125 -0.40625 L 5.4375 -1.671875 C 6.0625 -3.265625 6.65625 -4.84375 7.28125 -6.421875 C 7.375 -6.65625 7.484375 -6.90625 7.546875 -7.140625 L 7.5625 -1.0625 C 7.5625 -0.984375 7.5625 -0.890625 7.5625 -0.796875 C 7.5625 -0.375 7.234375 -0.328125 6.875 -0.328125 C 6.75 -0.328125 6.609375 -0.34375 6.5 -0.34375 L 6.5 -0.015625 L 7.703125 -0.015625 L 7.96875 -0.046875 L 9.4375 -0.046875 L 9.4375 -0.34375 C 9.3125 -0.34375 9.1875 -0.328125 9.046875 -0.328125 C 8.703125 -0.328125 8.359375 -0.375 8.359375 -0.78125 C 8.359375 -0.84375 8.375 -0.921875 8.375 -0.984375 L 8.375 -6.65625 C 8.375 -7.078125 8.71875 -7.140625 9.046875 -7.140625 C 9.1875 -7.140625 9.3125 -7.125 9.4375 -7.125 L 9.4375 -7.453125 L 7.65625 -7.453125 L 7.453125 -7.421875 L 7.359375 -7.265625 L 4.96875 -1.046875 L 2.578125 -7.265625 L 2.46875 -7.421875 L 2.28125 -7.453125 Z M 0.484375 -7.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-16">
|
||||
<symbol overflow="visible" id="glyph5-16">
|
||||
<path style="stroke:none;" d="M 0.421875 -4.6875 L 0.421875 -4.359375 L 0.59375 -4.359375 C 0.9375 -4.359375 1.203125 -4.3125 1.203125 -3.8125 L 1.203125 -0.796875 C 1.203125 -0.359375 0.921875 -0.34375 0.375 -0.34375 L 0.375 -0.015625 L 2.65625 -0.015625 L 2.65625 -0.34375 L 2.484375 -0.34375 C 2.1875 -0.34375 1.90625 -0.375 1.90625 -0.71875 L 1.90625 -4.8125 Z M 1.3125 -7.265625 C 1 -7.21875 0.84375 -6.96875 0.84375 -6.734375 C 0.84375 -6.484375 1.03125 -6.1875 1.375 -6.1875 C 1.71875 -6.1875 1.921875 -6.453125 1.921875 -6.734375 C 1.921875 -6.984375 1.75 -7.28125 1.390625 -7.28125 C 1.359375 -7.28125 1.328125 -7.265625 1.3125 -7.265625 Z M 1.3125 -7.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-17">
|
||||
<symbol overflow="visible" id="glyph5-17">
|
||||
<path style="stroke:none;" d="M 0.453125 -7.421875 L 0.453125 -7.125 L 0.8125 -7.125 C 1.171875 -7.125 1.515625 -7.09375 1.515625 -6.703125 C 1.515625 -6.625 1.5 -6.546875 1.5 -6.484375 L 1.5 -0.8125 C 1.5 -0.375 1.15625 -0.328125 0.8125 -0.328125 C 0.6875 -0.328125 0.5625 -0.34375 0.453125 -0.34375 L 0.453125 -0.015625 L 6.015625 -0.015625 L 6.3125 -2.8125 L 6.046875 -2.8125 C 5.9375 -1.8125 5.84375 -0.75 4.515625 -0.40625 C 4.203125 -0.34375 3.90625 -0.34375 3.59375 -0.34375 L 2.796875 -0.34375 C 2.578125 -0.34375 2.40625 -0.390625 2.40625 -0.703125 L 2.40625 -6.65625 C 2.40625 -7.09375 2.78125 -7.140625 3.125 -7.140625 C 3.234375 -7.140625 3.34375 -7.125 3.4375 -7.125 L 3.734375 -7.125 L 3.734375 -7.453125 L 2.25 -7.453125 L 1.984375 -7.421875 Z M 0.453125 -7.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-18">
|
||||
<symbol overflow="visible" id="glyph5-18">
|
||||
<path style="stroke:none;" d="M 0.3125 -7.453125 L 0.3125 -7.125 L 0.46875 -7.125 C 0.8125 -7.125 1.140625 -7.09375 1.140625 -6.59375 L 1.140625 -0.015625 L 1.390625 -0.03125 L 1.8125 -0.703125 C 2.078125 -0.1875 2.6875 0.09375 3.25 0.09375 C 4.578125 0.09375 5.640625 -1.0625 5.640625 -2.359375 C 5.640625 -3.59375 4.71875 -4.8125 3.28125 -4.8125 C 2.703125 -4.8125 2.25 -4.53125 1.859375 -4.09375 L 1.859375 -7.578125 Z M 4.75 -2.109375 C 4.71875 -1.578125 4.640625 -1.078125 4.28125 -0.671875 C 4.015625 -0.34375 3.59375 -0.140625 3.171875 -0.140625 C 2.71875 -0.140625 2.328125 -0.375 2.0625 -0.765625 C 1.96875 -0.890625 1.890625 -1.03125 1.890625 -1.1875 L 1.890625 -3.015625 C 1.890625 -3.15625 1.875 -3.28125 1.875 -3.421875 C 1.875 -4.0625 2.640625 -4.578125 3.28125 -4.578125 C 4.46875 -4.578125 4.765625 -3.25 4.765625 -2.34375 C 4.765625 -2.265625 4.765625 -2.1875 4.75 -2.109375 Z M 4.75 -2.109375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-19">
|
||||
<symbol overflow="visible" id="glyph5-19">
|
||||
<path style="stroke:none;" d="M 0.375 -7.453125 L 0.375 -7.125 L 0.5625 -7.125 C 0.921875 -7.125 1.203125 -7.09375 1.203125 -6.578125 L 1.203125 -0.78125 C 1.203125 -0.375 0.90625 -0.34375 0.59375 -0.34375 L 0.375 -0.34375 L 0.375 -0.015625 L 2.734375 -0.015625 L 2.734375 -0.34375 L 2.484375 -0.34375 C 2.1875 -0.34375 1.90625 -0.375 1.90625 -0.765625 L 1.90625 -7.578125 Z M 0.375 -7.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-20">
|
||||
<symbol overflow="visible" id="glyph5-20">
|
||||
<path style="stroke:none;" d="M 1.15625 -2.109375 C 0.9375 -1.890625 0.8125 -1.5 0.8125 -1.203125 C 0.8125 -0.8125 1 -0.53125 1.28125 -0.234375 C 0.78125 -0.140625 0.3125 0.3125 0.3125 0.84375 C 0.3125 1.96875 2.078125 2.234375 2.71875 2.234375 C 3.6875 2.234375 5.109375 1.859375 5.109375 0.796875 C 5.109375 -0.4375 3.859375 -0.71875 2.71875 -0.71875 L 1.96875 -0.71875 C 1.421875 -0.71875 1.140625 -1.015625 1.140625 -1.46875 C 1.140625 -1.671875 1.25 -1.828125 1.3125 -1.96875 C 1.609375 -1.78125 1.9375 -1.65625 2.296875 -1.640625 L 2.375 -1.640625 C 3.25 -1.640625 4 -2.171875 4.140625 -3.09375 L 4.140625 -3.203125 C 4.140625 -3.5625 4.015625 -3.921875 3.78125 -4.1875 C 3.765625 -4.21875 3.734375 -4.25 3.734375 -4.28125 L 3.734375 -4.296875 C 3.875 -4.515625 4.390625 -4.703125 4.703125 -4.703125 C 4.75 -4.703125 4.78125 -4.6875 4.828125 -4.6875 C 4.75 -4.625 4.671875 -4.5625 4.65625 -4.453125 L 4.65625 -4.421875 C 4.65625 -4.25 4.796875 -4.109375 4.96875 -4.109375 C 5.171875 -4.109375 5.25 -4.265625 5.25 -4.421875 C 5.25 -4.765625 4.9375 -4.921875 4.671875 -4.921875 C 4.3125 -4.921875 3.9375 -4.765625 3.65625 -4.53125 C 3.625 -4.5 3.59375 -4.453125 3.546875 -4.453125 L 3.53125 -4.453125 C 3.46875 -4.453125 3.25 -4.640625 3.09375 -4.671875 C 2.875 -4.765625 2.640625 -4.8125 2.40625 -4.8125 C 1.578125 -4.8125 0.75 -4.21875 0.65625 -3.359375 L 0.65625 -3.25 C 0.65625 -2.828125 0.8125 -2.375 1.15625 -2.109375 Z M 0.859375 0.921875 L 0.859375 0.828125 C 0.859375 0.234375 1.390625 -0.09375 1.96875 -0.09375 L 3.015625 -0.09375 C 3.609375 -0.09375 4.4375 0.046875 4.546875 0.765625 L 4.546875 0.84375 C 4.546875 1.65625 3.375 1.984375 2.6875 1.984375 C 1.96875 1.984375 0.96875 1.65625 0.859375 0.921875 Z M 1.4375 -3.015625 L 1.4375 -3.140625 C 1.4375 -3.734375 1.578125 -4.546875 2.390625 -4.546875 C 3.09375 -4.546875 3.359375 -3.921875 3.359375 -3.21875 C 3.359375 -2.671875 3.21875 -1.890625 2.40625 -1.890625 C 1.78125 -1.890625 1.515625 -2.40625 1.4375 -3.015625 Z M 1.4375 -3.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-21">
|
||||
<symbol overflow="visible" id="glyph5-21">
|
||||
<path style="stroke:none;" d="M 0.5625 -4.703125 L 0.453125 -2.953125 L 0.703125 -2.953125 C 0.734375 -3.328125 0.75 -3.78125 1 -4.09375 C 1.25 -4.4375 1.765625 -4.46875 2.203125 -4.46875 L 3.4375 -4.46875 C 2.484375 -3.09375 1.4375 -1.75 0.4375 -0.40625 C 0.375 -0.34375 0.3125 -0.25 0.3125 -0.15625 C 0.3125 -0.046875 0.375 -0.015625 0.46875 -0.015625 L 4.1875 -0.015625 L 4.359375 -2.046875 L 4.09375 -2.046875 C 4.0625 -1.578125 4.03125 -1.046875 3.765625 -0.703125 C 3.453125 -0.3125 2.921875 -0.265625 2.4375 -0.265625 L 1.203125 -0.265625 C 1.296875 -0.421875 1.40625 -0.546875 1.515625 -0.6875 C 2.390625 -1.90625 3.3125 -3.09375 4.1875 -4.3125 C 4.25 -4.390625 4.328125 -4.46875 4.328125 -4.5625 C 4.328125 -4.671875 4.25 -4.703125 4.171875 -4.703125 Z M 0.5625 -4.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-22">
|
||||
<symbol overflow="visible" id="glyph5-22">
|
||||
<path style="stroke:none;" d="M 0.3125 -4.6875 L 0.3125 -4.359375 L 0.546875 -4.359375 C 0.859375 -4.359375 1.140625 -4.3125 1.140625 -3.875 L 1.140625 1.3125 C 1.140625 1.765625 0.84375 1.78125 0.3125 1.78125 L 0.3125 2.109375 L 2.71875 2.109375 L 2.71875 1.78125 L 2.46875 1.78125 C 2.15625 1.78125 1.890625 1.734375 1.890625 1.34375 L 1.890625 -0.578125 C 2.140625 -0.125 2.78125 0.09375 3.265625 0.09375 C 4.578125 0.09375 5.640625 -1.0625 5.640625 -2.359375 C 5.640625 -3.5625 4.734375 -4.8125 3.40625 -4.8125 C 2.796875 -4.8125 2.296875 -4.578125 1.859375 -4.09375 L 1.859375 -4.8125 Z M 4.75 -2.171875 C 4.71875 -1.34375 4.265625 -0.203125 3.265625 -0.125 L 3.15625 -0.125 C 2.640625 -0.125 1.890625 -0.625 1.890625 -1.171875 L 1.890625 -3 C 1.890625 -3.140625 1.875 -3.265625 1.875 -3.40625 C 1.875 -4 2.609375 -4.546875 3.265625 -4.546875 C 4.390625 -4.546875 4.765625 -3.140625 4.765625 -2.34375 C 4.765625 -2.296875 4.765625 -2.21875 4.75 -2.171875 Z M 4.75 -2.171875 "/>
|
||||
</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 2.78125 -0.84375 C 2.9375 -0.734375 2.953125 -0.734375 2.984375 -0.734375 C 3.09375 -0.734375 3.1875 -0.828125 3.1875 -0.953125 C 3.1875 -1.0625 3.09375 -1.09375 3.046875 -1.125 C 2.75 -1.25 2.4375 -1.375 2.125 -1.484375 C 2.734375 -1.734375 2.90625 -1.796875 3.015625 -1.84375 C 3.109375 -1.890625 3.1875 -1.921875 3.1875 -2.046875 C 3.1875 -2.15625 3.09375 -2.25 2.984375 -2.25 C 2.9375 -2.25 2.90625 -2.21875 2.859375 -2.203125 L 2.015625 -1.65625 C 2.015625 -1.734375 2.046875 -1.953125 2.046875 -2.015625 C 2.0625 -2.140625 2.109375 -2.5 2.109375 -2.609375 C 2.109375 -2.703125 2.015625 -2.78125 1.90625 -2.78125 C 1.8125 -2.78125 1.71875 -2.703125 1.71875 -2.609375 C 1.71875 -2.59375 1.765625 -2.046875 1.765625 -2.03125 C 1.78125 -1.96875 1.796875 -1.734375 1.8125 -1.65625 L 0.953125 -2.203125 C 0.90625 -2.21875 0.875 -2.25 0.828125 -2.25 C 0.71875 -2.25 0.625 -2.15625 0.625 -2.046875 C 0.625 -1.921875 0.71875 -1.890625 0.765625 -1.859375 C 1.078125 -1.734375 1.375 -1.609375 1.6875 -1.5 C 1.078125 -1.25 0.90625 -1.1875 0.796875 -1.140625 C 0.71875 -1.09375 0.625 -1.0625 0.625 -0.953125 C 0.625 -0.828125 0.71875 -0.734375 0.828125 -0.734375 C 0.875 -0.734375 0.96875 -0.796875 1.046875 -0.84375 C 1.125 -0.890625 1.328125 -1.03125 1.40625 -1.078125 C 1.609375 -1.203125 1.6875 -1.25 1.8125 -1.328125 C 1.796875 -1.25 1.78125 -1.03125 1.765625 -0.96875 L 1.71875 -0.390625 C 1.71875 -0.28125 1.8125 -0.203125 1.90625 -0.203125 C 2.015625 -0.203125 2.109375 -0.28125 2.109375 -0.390625 C 2.109375 -0.390625 2.046875 -0.921875 2.046875 -0.953125 C 2.046875 -1.015625 2.015625 -1.25 2.015625 -1.328125 Z M 2.78125 -0.84375 "/>
|
||||
</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 0.171875 -6.140625 L 0.171875 -5.859375 L 0.359375 -5.859375 C 0.5625 -5.859375 0.75 -5.84375 0.859375 -5.71875 C 0.96875 -5.59375 1 -5.421875 1.046875 -5.28125 L 1.34375 -4.40625 C 1.6875 -3.40625 2.015625 -2.390625 2.34375 -1.375 L 2.765625 -0.15625 C 2.8125 -0.03125 2.84375 0.1875 3.015625 0.1875 L 3.046875 0.1875 C 3.203125 0.171875 3.234375 -0.078125 3.28125 -0.203125 L 3.6875 -1.421875 C 3.828125 -1.84375 3.96875 -2.265625 4.09375 -2.671875 L 4.65625 -4.328125 C 4.6875 -4.40625 4.703125 -4.484375 4.734375 -4.5625 C 4.75 -4.46875 4.796875 -4.390625 4.8125 -4.3125 L 5.359375 -2.671875 C 5.5 -2.25 5.640625 -1.84375 5.78125 -1.421875 L 6.1875 -0.203125 C 6.234375 -0.078125 6.265625 0.171875 6.421875 0.1875 L 6.453125 0.1875 C 6.625 0.1875 6.65625 -0.015625 6.703125 -0.15625 L 7.09375 -1.34375 C 7.46875 -2.46875 7.859375 -3.609375 8.234375 -4.75 L 8.359375 -5.125 C 8.46875 -5.5 8.6875 -5.859375 9.296875 -5.859375 L 9.296875 -6.140625 L 8.8125 -6.109375 L 7.40625 -6.109375 L 7.40625 -5.859375 C 7.71875 -5.859375 8.140625 -5.734375 8.15625 -5.375 C 8.15625 -5.3125 8.140625 -5.265625 8.109375 -5.203125 L 7.78125 -4.171875 C 7.484375 -3.296875 7.171875 -2.390625 6.875 -1.5 C 6.828125 -1.359375 6.765625 -1.203125 6.734375 -1.046875 C 6.6875 -1.171875 6.640625 -1.296875 6.59375 -1.421875 L 5.3125 -5.265625 C 5.296875 -5.375 5.234375 -5.46875 5.234375 -5.59375 L 5.234375 -5.625 C 5.3125 -5.84375 5.65625 -5.859375 5.921875 -5.859375 L 5.96875 -5.859375 L 5.96875 -6.140625 L 3.609375 -6.140625 L 3.609375 -5.859375 L 3.8125 -5.859375 C 4.234375 -5.859375 4.328125 -5.796875 4.515625 -5.1875 C 4.546875 -5.109375 4.59375 -5.015625 4.59375 -4.953125 C 4.578125 -4.90625 4.5625 -4.859375 4.546875 -4.8125 L 4.46875 -4.5625 C 4.046875 -3.390625 3.671875 -2.21875 3.296875 -1.046875 C 3.234375 -1.1875 3.1875 -1.328125 3.140625 -1.46875 L 2.890625 -2.21875 C 2.65625 -2.9375 2.40625 -3.671875 2.171875 -4.40625 L 1.8125 -5.46875 C 1.796875 -5.5 1.78125 -5.546875 1.78125 -5.578125 C 1.78125 -5.84375 2.265625 -5.859375 2.53125 -5.859375 L 2.53125 -6.140625 Z M 0.171875 -6.140625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-2">
|
||||
<path style="stroke:none;" d="M 0.296875 -6.140625 L 0.296875 -5.859375 C 0.40625 -5.859375 0.53125 -5.859375 0.65625 -5.859375 C 0.984375 -5.859375 1.25 -5.8125 1.25 -5.46875 L 1.25 -0.6875 C 1.25 -0.328125 0.9375 -0.28125 0.625 -0.28125 C 0.515625 -0.28125 0.390625 -0.28125 0.296875 -0.28125 L 0.296875 -0.015625 L 3.015625 -0.015625 L 3.015625 -0.28125 C 2.90625 -0.28125 2.78125 -0.28125 2.65625 -0.28125 C 2.34375 -0.28125 2.0625 -0.328125 2.0625 -0.6875 L 2.0625 -5.453125 C 2.0625 -5.8125 2.375 -5.859375 2.6875 -5.859375 C 2.8125 -5.859375 2.921875 -5.859375 3.015625 -5.859375 L 3.015625 -6.140625 Z M 0.296875 -6.140625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-3">
|
||||
<path style="stroke:none;" d="M 1.03125 -2.0625 L 3.6875 -2.0625 C 3.796875 -2.0625 3.84375 -2.109375 3.84375 -2.21875 C 3.84375 -3.34375 3.140625 -4.015625 2.203125 -4.015625 C 1.109375 -4.015625 0.25 -3.0625 0.25 -1.96875 C 0.25 -0.875 1.125 0.09375 2.34375 0.09375 C 2.984375 0.09375 3.625 -0.359375 3.8125 -0.984375 C 3.828125 -1 3.828125 -1.046875 3.828125 -1.078125 C 3.828125 -1.140625 3.78125 -1.1875 3.71875 -1.1875 C 3.546875 -1.1875 3.546875 -0.921875 3.453125 -0.796875 C 3.234375 -0.421875 2.796875 -0.15625 2.359375 -0.15625 L 2.296875 -0.15625 C 1.828125 -0.171875 1.421875 -0.5 1.21875 -0.921875 C 1.046875 -1.28125 1.03125 -1.671875 1.03125 -2.0625 Z M 1.046875 -2.28125 C 1.046875 -2.875 1.296875 -3.5625 1.953125 -3.765625 C 2.015625 -3.78125 2.09375 -3.796875 2.15625 -3.796875 C 2.9375 -3.796875 3.21875 -3 3.21875 -2.28125 Z M 1.046875 -2.28125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-4">
|
||||
<path style="stroke:none;" d="M 0.3125 -0.28125 L 0.3125 -0.015625 L 0.859375 -0.03125 L 2.21875 -0.03125 L 2.21875 -0.28125 C 1.96875 -0.28125 1.578125 -0.40625 1.578125 -0.734375 C 1.578125 -0.859375 1.625 -0.96875 1.671875 -1.078125 C 1.828125 -1.5 1.953125 -2.0625 2.109375 -2.0625 L 4.25 -2.0625 C 4.40625 -2.0625 4.515625 -1.5625 4.609375 -1.3125 C 4.6875 -1.078125 4.875 -0.71875 4.875 -0.5625 C 4.875 -0.28125 4.375 -0.28125 4.140625 -0.28125 L 4.140625 -0.015625 L 6.59375 -0.015625 L 6.59375 -0.28125 L 6.34375 -0.28125 C 6.140625 -0.28125 5.921875 -0.3125 5.828125 -0.40625 C 5.703125 -0.53125 5.671875 -0.703125 5.609375 -0.84375 C 4.96875 -2.578125 4.375 -4.328125 3.734375 -6.0625 L 3.65625 -6.25 C 3.625 -6.34375 3.59375 -6.4375 3.4375 -6.4375 C 3.25 -6.4375 3.21875 -6.21875 3.171875 -6.078125 C 2.625 -4.546875 2.078125 -3 1.515625 -1.484375 L 1.359375 -1.03125 C 1.171875 -0.46875 0.796875 -0.28125 0.3125 -0.28125 Z M 2.125 -2.34375 L 3.1875 -5.28125 L 4.25 -2.34375 Z M 2.125 -2.34375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-5">
|
||||
<path style="stroke:none;" d="M 0.3125 -3.859375 L 0.3125 -3.59375 L 0.453125 -3.59375 C 0.71875 -3.59375 1 -3.5625 1 -3.140625 L 1 -0.65625 C 1 -0.296875 0.765625 -0.28125 0.3125 -0.28125 L 0.3125 -0.015625 L 0.953125 -0.03125 L 2.359375 -0.03125 L 2.359375 -0.28125 L 2.15625 -0.28125 C 1.890625 -0.28125 1.671875 -0.328125 1.671875 -0.65625 L 1.671875 -2.265625 C 1.671875 -2.953125 2.078125 -3.734375 2.921875 -3.734375 C 3.40625 -3.734375 3.546875 -3.296875 3.546875 -2.734375 L 3.546875 -0.625 C 3.546875 -0.3125 3.296875 -0.28125 3 -0.28125 L 2.859375 -0.28125 L 2.859375 -0.015625 L 3.5 -0.03125 L 4.90625 -0.03125 L 4.90625 -0.28125 L 4.734375 -0.28125 C 4.46875 -0.28125 4.21875 -0.3125 4.21875 -0.640625 L 4.21875 -2.65625 C 4.21875 -2.9375 4.203125 -3.1875 4.078125 -3.4375 C 3.84375 -3.859375 3.375 -3.96875 2.9375 -3.96875 C 2.390625 -3.96875 1.828125 -3.59375 1.625 -3.078125 L 1.609375 -3.96875 Z M 0.3125 -3.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-6">
|
||||
<path style="stroke:none;" d="M 0.359375 -6.140625 L 0.359375 -5.859375 C 0.46875 -5.859375 0.578125 -5.859375 0.703125 -5.859375 C 1 -5.859375 1.28125 -5.8125 1.28125 -5.46875 L 1.28125 -0.6875 C 1.28125 -0.296875 0.953125 -0.28125 0.609375 -0.28125 L 0.359375 -0.28125 L 0.359375 -0.015625 L 3 -0.015625 L 3 -0.28125 L 2.6875 -0.28125 C 2.296875 -0.28125 2.078125 -0.328125 2.078125 -0.703125 L 2.078125 -2.828125 L 3.703125 -2.828125 C 4.578125 -2.875 5.75 -3.375 5.75 -4.453125 C 5.75 -5.484375 4.6875 -6.078125 3.703125 -6.140625 Z M 2.046875 -3.078125 L 2.046875 -5.515625 C 2.046875 -5.75 2.140625 -5.859375 2.390625 -5.859375 L 3.078125 -5.859375 C 3.859375 -5.859375 4.828125 -5.8125 4.828125 -4.453125 C 4.828125 -4.15625 4.796875 -3.78125 4.59375 -3.546875 C 4.265625 -3.140625 3.734375 -3.078125 3.25 -3.078125 Z M 2.046875 -3.078125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-7">
|
||||
<path style="stroke:none;" d="M 0.265625 -3.859375 L 0.265625 -3.59375 L 0.40625 -3.59375 C 0.6875 -3.59375 0.953125 -3.5625 0.953125 -3.140625 L 0.953125 -0.65625 C 0.953125 -0.296875 0.71875 -0.28125 0.265625 -0.28125 L 0.265625 -0.015625 L 0.890625 -0.03125 L 2.453125 -0.03125 L 2.453125 -0.28125 L 2.15625 -0.28125 C 1.84375 -0.28125 1.59375 -0.328125 1.59375 -0.65625 L 1.59375 -2.171875 C 1.65625 -2.796875 1.828125 -3.734375 2.734375 -3.734375 C 2.609375 -3.671875 2.5625 -3.53125 2.5625 -3.40625 C 2.5625 -3.15625 2.75 -3 2.953125 -3 C 3.1875 -3 3.34375 -3.1875 3.34375 -3.40625 C 3.34375 -3.78125 2.984375 -3.96875 2.65625 -3.96875 C 2.109375 -3.96875 1.671875 -3.5 1.546875 -3 L 1.546875 -3.96875 Z M 0.265625 -3.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-8">
|
||||
<path style="stroke:none;" d="M 2.171875 -4.015625 C 1.125 -3.90625 0.265625 -3.0625 0.265625 -1.921875 C 0.265625 -1 0.953125 0.09375 2.3125 0.09375 C 3.359375 0.09375 4.34375 -0.75 4.34375 -1.90625 C 4.34375 -2.984375 3.5 -4.03125 2.296875 -4.03125 C 2.25 -4.03125 2.21875 -4.015625 2.171875 -4.015625 Z M 1.046875 -1.71875 L 1.046875 -2.09375 C 1.046875 -2.8125 1.265625 -3.796875 2.3125 -3.796875 C 3.015625 -3.796875 3.46875 -3.234375 3.546875 -2.515625 C 3.5625 -2.328125 3.5625 -2.140625 3.5625 -1.953125 C 3.5625 -1.484375 3.53125 -0.953125 3.203125 -0.578125 C 2.984375 -0.3125 2.640625 -0.15625 2.296875 -0.15625 C 1.640625 -0.15625 1.1875 -0.65625 1.0625 -1.375 C 1.0625 -1.484375 1.0625 -1.59375 1.046875 -1.71875 Z M 1.046875 -1.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-9">
|
||||
<path style="stroke:none;" d="M 0.953125 -3.859375 L 0.25 -3.859375 L 0.25 -3.59375 L 0.953125 -3.59375 L 0.953125 -0.625 C 0.953125 -0.3125 0.703125 -0.28125 0.40625 -0.28125 L 0.265625 -0.28125 L 0.265625 -0.015625 L 0.921875 -0.03125 L 1.65625 -0.03125 L 2.28125 -0.015625 L 2.28125 -0.28125 L 2.078125 -0.28125 C 1.828125 -0.28125 1.59375 -0.3125 1.59375 -0.625 L 1.59375 -3.59375 L 3.0625 -3.59375 C 3.3125 -3.59375 3.515625 -3.515625 3.515625 -3.171875 L 3.515625 -0.671875 C 3.515625 -0.375 3.421875 -0.28125 2.828125 -0.28125 L 2.828125 -0.015625 L 3.453125 -0.03125 L 4.1875 -0.03125 L 4.84375 -0.015625 L 4.84375 -0.28125 L 4.625 -0.28125 C 4.390625 -0.28125 4.15625 -0.328125 4.15625 -0.65625 L 4.15625 -3.96875 L 2.765625 -3.859375 L 1.5625 -3.859375 L 1.5625 -4.78125 C 1.5625 -4.96875 1.578125 -5.15625 1.65625 -5.34375 C 1.859375 -5.8125 2.40625 -6.109375 2.921875 -6.109375 C 3.203125 -6.109375 3.484375 -6.03125 3.6875 -5.84375 C 3.484375 -5.828125 3.296875 -5.65625 3.296875 -5.421875 C 3.296875 -5.203125 3.46875 -5 3.71875 -5 C 3.9375 -5 4.140625 -5.171875 4.140625 -5.421875 L 4.140625 -5.4375 C 4.140625 -6.0625 3.453125 -6.328125 2.921875 -6.328125 C 2.03125 -6.328125 0.953125 -5.875 0.953125 -4.859375 Z M 0.953125 -3.859375 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
@ -318,177 +411,273 @@
|
||||
<use xlink:href="#glyph1-10" x="339.633225" y="175.953"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-11" x="262.554" y="204.733"/>
|
||||
<use xlink:href="#glyph1-12" x="269.381357" y="204.733"/>
|
||||
<use xlink:href="#glyph1-1" x="246.871" y="193.885"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-13" x="277.719368" y="204.733"/>
|
||||
<use xlink:href="#glyph1-4" x="290.240731" y="204.733"/>
|
||||
<use xlink:href="#glyph1-14" x="297.068088" y="204.733"/>
|
||||
<use xlink:href="#glyph1-4" x="254.652379" y="193.885"/>
|
||||
<use xlink:href="#glyph1-11" x="261.479735" y="193.885"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-15" x="305.406099" y="204.733"/>
|
||||
<use xlink:href="#glyph1-16" x="312.233456" y="204.733"/>
|
||||
<use xlink:href="#glyph1-17" x="319.060813" y="204.733"/>
|
||||
<use xlink:href="#glyph1-18" x="325.888169" y="204.733"/>
|
||||
<use xlink:href="#glyph1-12" x="267.160831" y="193.885"/>
|
||||
<use xlink:href="#glyph1-8" x="274.748536" y="193.885"/>
|
||||
<use xlink:href="#glyph1-11" x="280.134099" y="193.885"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="89.291" y="256.315"/>
|
||||
<use xlink:href="#glyph1-12" x="285.829541" y="193.885"/>
|
||||
<use xlink:href="#glyph1-4" x="293.417246" y="193.885"/>
|
||||
<use xlink:href="#glyph1-13" x="300.244602" y="193.885"/>
|
||||
<use xlink:href="#glyph1-14" x="304.415043" y="193.885"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="105.766176" y="256.315"/>
|
||||
<use xlink:href="#glyph1-15" x="314.272317" y="193.885"/>
|
||||
<use xlink:href="#glyph1-16" x="328.311508" y="193.885"/>
|
||||
<use xlink:href="#glyph1-17" x="333.237993" y="193.885"/>
|
||||
<use xlink:href="#glyph1-16" x="343.48118" y="193.885"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="115.545981" y="256.315"/>
|
||||
<use xlink:href="#glyph2-4" x="121.158214" y="256.315"/>
|
||||
<use xlink:href="#glyph2-5" x="129.633949" y="256.315"/>
|
||||
<use xlink:href="#glyph2-6" x="139.247338" y="256.315"/>
|
||||
<use xlink:href="#glyph2-7" x="146.763312" y="256.315"/>
|
||||
<use xlink:href="#glyph2-8" x="150.661174" y="256.315"/>
|
||||
<use xlink:href="#glyph2-9" x="156.979241" y="256.315"/>
|
||||
<use xlink:href="#glyph2-10" x="165.454976" y="256.315"/>
|
||||
<use xlink:href="#glyph2-11" x="172.780146" y="256.315"/>
|
||||
<use xlink:href="#glyph2-6" x="181.25588" y="256.315"/>
|
||||
<use xlink:href="#glyph2-1" x="348.404" y="188.679"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="89.291" y="281.063"/>
|
||||
<use xlink:href="#glyph3-2" x="96.014604" y="281.063"/>
|
||||
<use xlink:href="#glyph3-1" x="99.749409" y="281.063"/>
|
||||
<use xlink:href="#glyph1-18" x="190.262" y="211.818"/>
|
||||
<use xlink:href="#glyph1-14" x="200.886796" y="211.818"/>
|
||||
<use xlink:href="#glyph1-14" x="206.196324" y="211.818"/>
|
||||
<use xlink:href="#glyph1-2" x="211.505853" y="211.818"/>
|
||||
<use xlink:href="#glyph1-19" x="218.33321" y="211.818"/>
|
||||
<use xlink:href="#glyph1-1" x="222.88239" y="211.818"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-3" x="113.191836" y="281.063"/>
|
||||
<use xlink:href="#glyph3-4" x="120.661445" y="281.063"/>
|
||||
<use xlink:href="#glyph3-5" x="127.578724" y="281.063"/>
|
||||
<use xlink:href="#glyph3-6" x="133.555128" y="281.063"/>
|
||||
<use xlink:href="#glyph3-7" x="140.472407" y="281.063"/>
|
||||
<use xlink:href="#glyph1-5" x="230.663768" y="211.818"/>
|
||||
<use xlink:href="#glyph1-20" x="235.973297" y="211.818"/>
|
||||
<use xlink:href="#glyph1-9" x="239.763563" y="211.818"/>
|
||||
<use xlink:href="#glyph1-21" x="245.832006" y="211.818"/>
|
||||
<use xlink:href="#glyph1-5" x="253.419711" y="211.818"/>
|
||||
<use xlink:href="#glyph1-20" x="258.72924" y="211.818"/>
|
||||
<use xlink:href="#glyph1-11" x="262.519506" y="211.818"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-8" x="151.063518" y="281.063"/>
|
||||
<use xlink:href="#glyph3-9" x="161.715602" y="281.063"/>
|
||||
<use xlink:href="#glyph3-10" x="164.89688" y="281.063"/>
|
||||
<use xlink:href="#glyph1-12" x="268.200601" y="211.818"/>
|
||||
<use xlink:href="#glyph1-19" x="275.788306" y="211.818"/>
|
||||
<use xlink:href="#glyph1-22" x="280.337486" y="211.818"/>
|
||||
<use xlink:href="#glyph1-23" x="290.580673" y="211.818"/>
|
||||
<use xlink:href="#glyph1-20" x="298.168378" y="211.818"/>
|
||||
<use xlink:href="#glyph1-24" x="301.958644" y="211.818"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-3" x="174.235087" y="281.063"/>
|
||||
<use xlink:href="#glyph3-5" x="181.704696" y="281.063"/>
|
||||
<use xlink:href="#glyph3-6" x="187.6811" y="281.063"/>
|
||||
<use xlink:href="#glyph3-11" x="194.598379" y="281.063"/>
|
||||
<use xlink:href="#glyph1-9" x="308.793174" y="211.818"/>
|
||||
<use xlink:href="#glyph1-5" x="314.861616" y="211.818"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-7" x="203.385451" y="281.063"/>
|
||||
<use xlink:href="#glyph3-9" x="209.493363" y="281.063"/>
|
||||
<use xlink:href="#glyph3-12" x="212.674642" y="281.063"/>
|
||||
<use xlink:href="#glyph1-8" x="320.156799" y="211.818"/>
|
||||
<use xlink:href="#glyph1-20" x="325.542362" y="211.818"/>
|
||||
<use xlink:href="#glyph1-14" x="329.332628" y="211.818"/>
|
||||
<use xlink:href="#glyph1-25" x="334.642157" y="211.818"/>
|
||||
<use xlink:href="#glyph1-14" x="341.469513" y="211.818"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="89.291" y="302.054"/>
|
||||
<use xlink:href="#glyph3-2" x="96.014604" y="302.054"/>
|
||||
<use xlink:href="#glyph3-13" x="99.749409" y="302.054"/>
|
||||
<use xlink:href="#glyph1-26" x="351.341134" y="211.818"/>
|
||||
<use xlink:href="#glyph1-4" x="361.014776" y="211.818"/>
|
||||
<use xlink:href="#glyph1-27" x="367.842133" y="211.818"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-3" x="113.191836" y="302.054"/>
|
||||
<use xlink:href="#glyph3-4" x="120.661445" y="302.054"/>
|
||||
<use xlink:href="#glyph3-5" x="127.578724" y="302.054"/>
|
||||
<use xlink:href="#glyph3-6" x="133.555128" y="302.054"/>
|
||||
<use xlink:href="#glyph3-7" x="140.472407" y="302.054"/>
|
||||
<use xlink:href="#glyph1-3" x="378.838495" y="211.818"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-14" x="151.063518" y="302.054"/>
|
||||
<use xlink:href="#glyph3-6" x="157.787123" y="302.054"/>
|
||||
<use xlink:href="#glyph3-12" x="164.704402" y="302.054"/>
|
||||
<use xlink:href="#glyph3-7" x="171.62168" y="302.054"/>
|
||||
<use xlink:href="#glyph1-9" x="386.813548" y="211.818"/>
|
||||
<use xlink:href="#glyph1-5" x="392.88199" y="211.818"/>
|
||||
<use xlink:href="#glyph1-28" x="398.191519" y="211.818"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-3" x="182.212792" y="302.054"/>
|
||||
<use xlink:href="#glyph3-5" x="189.682401" y="302.054"/>
|
||||
<use xlink:href="#glyph3-6" x="195.658805" y="302.054"/>
|
||||
<use xlink:href="#glyph3-11" x="202.576084" y="302.054"/>
|
||||
<use xlink:href="#glyph1-29" x="262.554" y="238.921"/>
|
||||
<use xlink:href="#glyph1-30" x="269.381357" y="238.921"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-7" x="211.363156" y="302.054"/>
|
||||
<use xlink:href="#glyph3-9" x="217.471068" y="302.054"/>
|
||||
<use xlink:href="#glyph3-12" x="220.652347" y="302.054"/>
|
||||
<use xlink:href="#glyph1-31" x="277.719368" y="238.921"/>
|
||||
<use xlink:href="#glyph1-4" x="290.240731" y="238.921"/>
|
||||
<use xlink:href="#glyph1-20" x="297.068088" y="238.921"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="89.291" y="322.647"/>
|
||||
<use xlink:href="#glyph1-32" x="305.406099" y="238.921"/>
|
||||
<use xlink:href="#glyph1-33" x="312.233456" y="238.921"/>
|
||||
<use xlink:href="#glyph1-34" x="319.060813" y="238.921"/>
|
||||
<use xlink:href="#glyph1-35" x="325.888169" y="238.921"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-2" x="99.527009" y="322.647"/>
|
||||
<use xlink:href="#glyph4-3" x="104.348831" y="322.647"/>
|
||||
<use xlink:href="#glyph3-1" x="89.291" y="306.939"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-4" x="112.190292" y="322.647"/>
|
||||
<use xlink:href="#glyph4-5" x="121.22739" y="322.647"/>
|
||||
<use xlink:href="#glyph4-6" x="126.651395" y="322.647"/>
|
||||
<use xlink:href="#glyph3-2" x="105.766176" y="306.939"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-7" x="131.167762" y="322.647"/>
|
||||
<use xlink:href="#glyph3-3" x="115.545981" y="306.939"/>
|
||||
<use xlink:href="#glyph3-4" x="121.158214" y="306.939"/>
|
||||
<use xlink:href="#glyph3-5" x="129.633949" y="306.939"/>
|
||||
<use xlink:href="#glyph3-6" x="139.247338" y="306.939"/>
|
||||
<use xlink:href="#glyph3-7" x="146.763312" y="306.939"/>
|
||||
<use xlink:href="#glyph3-8" x="150.661174" y="306.939"/>
|
||||
<use xlink:href="#glyph3-9" x="156.979241" y="306.939"/>
|
||||
<use xlink:href="#glyph3-10" x="165.454976" y="306.939"/>
|
||||
<use xlink:href="#glyph3-11" x="172.780146" y="306.939"/>
|
||||
<use xlink:href="#glyph3-6" x="181.25588" y="306.939"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-8" x="136.888494" y="322.647"/>
|
||||
<use xlink:href="#glyph4-1" x="89.291" y="331.687"/>
|
||||
<use xlink:href="#glyph4-2" x="96.014604" y="331.687"/>
|
||||
<use xlink:href="#glyph4-1" x="99.749409" y="331.687"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-9" x="144.729955" y="322.647"/>
|
||||
<use xlink:href="#glyph4-2" x="150.756142" y="322.647"/>
|
||||
<use xlink:href="#glyph4-10" x="155.577964" y="322.647"/>
|
||||
<use xlink:href="#glyph4-10" x="161.604151" y="322.647"/>
|
||||
<use xlink:href="#glyph4-3" x="113.191836" y="331.687"/>
|
||||
<use xlink:href="#glyph4-4" x="120.661445" y="331.687"/>
|
||||
<use xlink:href="#glyph4-5" x="127.578724" y="331.687"/>
|
||||
<use xlink:href="#glyph4-6" x="133.555128" y="331.687"/>
|
||||
<use xlink:href="#glyph4-7" x="140.472407" y="331.687"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-11" x="171.24125" y="322.647"/>
|
||||
<use xlink:href="#glyph4-12" x="175.52089" y="322.647"/>
|
||||
<use xlink:href="#glyph4-8" x="151.063518" y="331.687"/>
|
||||
<use xlink:href="#glyph4-9" x="161.715602" y="331.687"/>
|
||||
<use xlink:href="#glyph4-10" x="164.89688" y="331.687"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-13" x="180.650349" y="322.647"/>
|
||||
<use xlink:href="#glyph4-3" x="174.235087" y="331.687"/>
|
||||
<use xlink:href="#glyph4-5" x="181.704696" y="331.687"/>
|
||||
<use xlink:href="#glyph4-6" x="187.6811" y="331.687"/>
|
||||
<use xlink:href="#glyph4-11" x="194.598379" y="331.687"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-5" x="188.177628" y="322.647"/>
|
||||
<use xlink:href="#glyph4-11" x="193.601632" y="322.647"/>
|
||||
<use xlink:href="#glyph4-14" x="197.881272" y="322.647"/>
|
||||
<use xlink:href="#glyph4-7" x="203.385451" y="331.687"/>
|
||||
<use xlink:href="#glyph4-9" x="209.493363" y="331.687"/>
|
||||
<use xlink:href="#glyph4-12" x="212.674642" y="331.687"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-12" x="89.291" y="357.015"/>
|
||||
<use xlink:href="#glyph4-1" x="89.291" y="352.678"/>
|
||||
<use xlink:href="#glyph4-2" x="96.014604" y="352.678"/>
|
||||
<use xlink:href="#glyph4-13" x="99.749409" y="352.678"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="105.766176" y="357.015"/>
|
||||
<use xlink:href="#glyph4-3" x="113.191836" y="352.678"/>
|
||||
<use xlink:href="#glyph4-4" x="120.661445" y="352.678"/>
|
||||
<use xlink:href="#glyph4-5" x="127.578724" y="352.678"/>
|
||||
<use xlink:href="#glyph4-6" x="133.555128" y="352.678"/>
|
||||
<use xlink:href="#glyph4-7" x="140.472407" y="352.678"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="115.545981" y="357.015"/>
|
||||
<use xlink:href="#glyph2-4" x="121.158214" y="357.015"/>
|
||||
<use xlink:href="#glyph2-5" x="129.633949" y="357.015"/>
|
||||
<use xlink:href="#glyph2-6" x="139.247338" y="357.015"/>
|
||||
<use xlink:href="#glyph2-7" x="146.763312" y="357.015"/>
|
||||
<use xlink:href="#glyph2-3" x="150.661174" y="357.015"/>
|
||||
<use xlink:href="#glyph2-6" x="156.273408" y="357.015"/>
|
||||
<use xlink:href="#glyph2-13" x="163.789382" y="357.015"/>
|
||||
<use xlink:href="#glyph2-6" x="170.943832" y="357.015"/>
|
||||
<use xlink:href="#glyph2-14" x="178.459806" y="357.015"/>
|
||||
<use xlink:href="#glyph2-15" x="186.935541" y="357.015"/>
|
||||
<use xlink:href="#glyph2-6" x="192.886345" y="357.015"/>
|
||||
<use xlink:href="#glyph4-14" x="151.063518" y="352.678"/>
|
||||
<use xlink:href="#glyph4-6" x="157.787123" y="352.678"/>
|
||||
<use xlink:href="#glyph4-12" x="164.704402" y="352.678"/>
|
||||
<use xlink:href="#glyph4-7" x="171.62168" y="352.678"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-15" x="89.291" y="381.365"/>
|
||||
<use xlink:href="#glyph4-2" x="99.228099" y="381.365"/>
|
||||
<use xlink:href="#glyph4-16" x="104.049921" y="381.365"/>
|
||||
<use xlink:href="#glyph4-10" x="107.065197" y="381.365"/>
|
||||
<use xlink:href="#glyph4-3" x="182.212792" y="352.678"/>
|
||||
<use xlink:href="#glyph4-5" x="189.682401" y="352.678"/>
|
||||
<use xlink:href="#glyph4-6" x="195.658805" y="352.678"/>
|
||||
<use xlink:href="#glyph4-11" x="202.576084" y="352.678"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-17" x="116.702296" y="381.365"/>
|
||||
<use xlink:href="#glyph4-7" x="211.363156" y="352.678"/>
|
||||
<use xlink:href="#glyph4-9" x="217.471068" y="352.678"/>
|
||||
<use xlink:href="#glyph4-12" x="220.652347" y="352.678"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-16" x="123.489938" y="381.365"/>
|
||||
<use xlink:href="#glyph5-1" x="89.291" y="373.271"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-2" x="126.494304" y="381.365"/>
|
||||
<use xlink:href="#glyph4-18" x="131.316126" y="381.365"/>
|
||||
<use xlink:href="#glyph4-19" x="137.342313" y="381.365"/>
|
||||
<use xlink:href="#glyph4-16" x="140.357588" y="381.365"/>
|
||||
<use xlink:href="#glyph4-10" x="143.372863" y="381.365"/>
|
||||
<use xlink:href="#glyph4-20" x="149.39905" y="381.365"/>
|
||||
<use xlink:href="#glyph4-11" x="154.823055" y="381.365"/>
|
||||
<use xlink:href="#glyph4-3" x="159.102695" y="381.365"/>
|
||||
<use xlink:href="#glyph4-2" x="163.322334" y="381.365"/>
|
||||
<use xlink:href="#glyph4-21" x="168.144157" y="381.365"/>
|
||||
<use xlink:href="#glyph4-2" x="172.965979" y="381.365"/>
|
||||
<use xlink:href="#glyph4-22" x="177.787801" y="381.365"/>
|
||||
<use xlink:href="#glyph4-8" x="183.813988" y="381.365"/>
|
||||
<use xlink:href="#glyph5-2" x="99.527009" y="373.271"/>
|
||||
<use xlink:href="#glyph5-3" x="104.348831" y="373.271"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-4" x="112.190292" y="373.271"/>
|
||||
<use xlink:href="#glyph5-5" x="121.22739" y="373.271"/>
|
||||
<use xlink:href="#glyph5-6" x="126.651395" y="373.271"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-7" x="131.167762" y="373.271"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-8" x="136.888494" y="373.271"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-9" x="144.729955" y="373.271"/>
|
||||
<use xlink:href="#glyph5-2" x="150.756142" y="373.271"/>
|
||||
<use xlink:href="#glyph5-10" x="155.577964" y="373.271"/>
|
||||
<use xlink:href="#glyph5-10" x="161.604151" y="373.271"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-11" x="171.24125" y="373.271"/>
|
||||
<use xlink:href="#glyph5-12" x="175.52089" y="373.271"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-13" x="180.650349" y="373.271"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-5" x="188.177628" y="373.271"/>
|
||||
<use xlink:href="#glyph5-11" x="193.601632" y="373.271"/>
|
||||
<use xlink:href="#glyph5-14" x="197.881272" y="373.271"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-12" x="89.291" y="407.639"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-2" x="105.766176" y="407.639"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-3" x="115.545981" y="407.639"/>
|
||||
<use xlink:href="#glyph3-4" x="121.158214" y="407.639"/>
|
||||
<use xlink:href="#glyph3-5" x="129.633949" y="407.639"/>
|
||||
<use xlink:href="#glyph3-6" x="139.247338" y="407.639"/>
|
||||
<use xlink:href="#glyph3-7" x="146.763312" y="407.639"/>
|
||||
<use xlink:href="#glyph3-3" x="150.661174" y="407.639"/>
|
||||
<use xlink:href="#glyph3-6" x="156.273408" y="407.639"/>
|
||||
<use xlink:href="#glyph3-13" x="163.789382" y="407.639"/>
|
||||
<use xlink:href="#glyph3-6" x="170.943832" y="407.639"/>
|
||||
<use xlink:href="#glyph3-14" x="178.459806" y="407.639"/>
|
||||
<use xlink:href="#glyph3-15" x="186.935541" y="407.639"/>
|
||||
<use xlink:href="#glyph3-6" x="192.886345" y="407.639"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-15" x="89.291" y="431.989"/>
|
||||
<use xlink:href="#glyph5-2" x="99.228099" y="431.989"/>
|
||||
<use xlink:href="#glyph5-16" x="104.049921" y="431.989"/>
|
||||
<use xlink:href="#glyph5-10" x="107.065197" y="431.989"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-17" x="116.702296" y="431.989"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-16" x="123.489938" y="431.989"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-2" x="126.494304" y="431.989"/>
|
||||
<use xlink:href="#glyph5-18" x="131.316126" y="431.989"/>
|
||||
<use xlink:href="#glyph5-19" x="137.342313" y="431.989"/>
|
||||
<use xlink:href="#glyph5-16" x="140.357588" y="431.989"/>
|
||||
<use xlink:href="#glyph5-10" x="143.372863" y="431.989"/>
|
||||
<use xlink:href="#glyph5-20" x="149.39905" y="431.989"/>
|
||||
<use xlink:href="#glyph5-11" x="154.823055" y="431.989"/>
|
||||
<use xlink:href="#glyph5-3" x="159.102695" y="431.989"/>
|
||||
<use xlink:href="#glyph5-2" x="163.322334" y="431.989"/>
|
||||
<use xlink:href="#glyph5-21" x="168.144157" y="431.989"/>
|
||||
<use xlink:href="#glyph5-2" x="172.965979" y="431.989"/>
|
||||
<use xlink:href="#glyph5-22" x="177.787801" y="431.989"/>
|
||||
<use xlink:href="#glyph5-8" x="183.813988" y="431.989"/>
|
||||
</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.0019375 -0.00125 L 166.673844 -0.00125 " transform="matrix(1,0,0,-1,89.291,667.28)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph6-1" x="94.187" y="673.931"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph7-1" x="98.505" y="677.74"/>
|
||||
<use xlink:href="#glyph7-2" x="107.972622" y="677.74"/>
|
||||
<use xlink:href="#glyph7-3" x="111.29826" y="677.74"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph7-4" x="118.46331" y="677.74"/>
|
||||
<use xlink:href="#glyph7-2" x="125.371921" y="677.74"/>
|
||||
<use xlink:href="#glyph7-5" x="128.697559" y="677.74"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph7-6" x="136.891055" y="677.74"/>
|
||||
<use xlink:href="#glyph7-7" x="143.160362" y="677.74"/>
|
||||
<use xlink:href="#glyph7-8" x="146.763958" y="677.74"/>
|
||||
<use xlink:href="#glyph7-9" x="151.370894" y="677.74"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 98 KiB After Width: | Height: | Size: 135 KiB |
@ -2,7 +2,7 @@
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[ngerman]{babel}
|
||||
\author{Fooboar Rüssel}
|
||||
\author{Fooboar Rüssel \\ Fachschaft WIAI\thanks{WIe AIn Profi}\\ Otto-Friedrich-Universität Bamberg}
|
||||
\title{Die Welt der Trüffel}
|
||||
\date{\today}
|
||||
|
||||
|
||||
@ -11,12 +11,12 @@
|
||||
<h2>Zielsetzung</h2>
|
||||
<p>Ein größeres LaTeX-Projekt anlegen und dabei …</p>
|
||||
<ul>
|
||||
<li>verhindern, dass LaTeX-Dokumente zu monströser Größe anwachsen 👹</li>
|
||||
<li>verhindern, dass LaTeX-Dokumente zu monströser Größe anwachsen <span class="emoji">👹</span></li>
|
||||
<li>den Überblick über die Struktur eines Projekts behalten</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/04/langes-dokument.png" style="background: white; padding: .2em;">
|
||||
<img src="sections/german/04/langes-dokument.png" style="padding: .2em;">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -24,13 +24,11 @@
|
||||
|
||||
<div class="layout layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2 class="layout-title">Hauptdatei 👑</h2>
|
||||
<h2>Hauptdatei <span class="emoji">👑</span></h2>
|
||||
<ul>
|
||||
<li>enthält Grundgerüst, Titel, Inhaltsverzeichnis etc.</li>
|
||||
<li>bindet einzelne Kapitel ein mit<br>
|
||||
<code>\input{file.tex}</code> oder <code>\include{file}</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<pre class="lang-tex hljs" data-sourcefile="main.tex"><code>\documentclass{article}
|
||||
\usepackage[ngerman]{babel}
|
||||
@ -45,8 +43,9 @@
|
||||
\end{document}</code></pre>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||

|
||||
<img src="sections/german/04/main-orig.svg">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
@ -57,12 +56,19 @@
|
||||
<li>enthält **keine Präambel**<li>
|
||||
<li>enthält **kein** `\begin{document}` und `\end{document}`</li>
|
||||
</ul>
|
||||
<pre data-source="abschnitt1.tex" class="hljs lang-tex"><code>\section{Dies ist Abschnitt1}
|
||||
<pre data-sourcefile="part1.tex" class="hljs lang-tex"><code>\section{Dies ist Abschnitt 1}
|
||||
Hier ein Absatz zum
|
||||
Inhalt von Abschnitt 1.</code></pre>
|
||||
Inhalt von Abschnitt 1.
|
||||
|
||||
% …</code></pre>
|
||||
<pre data-sourcefile="part2.tex" class="hljs lang-tex"><code>\section{Dies ist Abschnitt 2}
|
||||
Hier ein Absatz zum
|
||||
Inhalt von Abschnitt 2.
|
||||
|
||||
% …</code></pre>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<p><img src="sections/german/04/main_parts.png"></p>
|
||||
<img src="sections/german/04/main_parts.png">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -70,12 +76,12 @@ Inhalt von Abschnitt 1.</code></pre>
|
||||
|
||||
<div class="layout-two-columns">
|
||||
<div class="layout-title">
|
||||
<h2>input oder include?</h2>
|
||||
<h2>`input` oder `include`?</h2>
|
||||
</div>
|
||||
<div class="layout-column-one">
|
||||
<pre class="lang-tex jshl"><code>\input{filename.tex}</code></pre>
|
||||
<ul class="fragment">
|
||||
<li>Dateiendung .tex angeben</li>
|
||||
<li>Dateiendung `.tex` angeben</li>
|
||||
<li>**Schachtelung** möglich: Unterdateien können wiederum per `\input{}` andere Unterunterdateien einbinden</li>
|
||||
<li>Unterdatei wird im fertigen Dokument **ohne Sprung auf neue Seite** in Hauptdatei eingefügt</li>
|
||||
</ul>
|
||||
@ -83,7 +89,7 @@ Inhalt von Abschnitt 1.</code></pre>
|
||||
<div class="layout-column-two">
|
||||
<pre class="lang-tex jshl"><code>\include{filename}</code></pre>
|
||||
<ul class="fragment">
|
||||
<li>Dateiendung .tex **nicht** angeben</li>
|
||||
<li>Dateiendung `.tex` **nicht** angeben</li>
|
||||
<li>**Schachtelung** nicht möglich</li>
|
||||
<li>für jede Unterdatei wird im fertigen Dokument eine **neue Seite** angelegt</li>
|
||||
</ul>
|
||||
@ -94,10 +100,10 @@ Inhalt von Abschnitt 1.</code></pre>
|
||||
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2 data-category="Exkurs">Dateipfade angeben 👣</h2>
|
||||
<h2 data-category="Exkurs">Dateipfade angeben <span class="emoji">👣</span></h2>
|
||||
<ul>
|
||||
<li>wichtig für `\input{}` und `\include{}` sowie später für das Einbinden von Bildern</li>
|
||||
<li>Datei- und Ordnerstruktur = Baumstruktur 🌳</li>
|
||||
<li>Datei- und Ordnerstruktur = Baumstruktur <span class="emoji">🌳</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
@ -109,23 +115,25 @@ Inhalt von Abschnitt 1.</code></pre>
|
||||
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2 data-category="Exkurs">Dateipfade angeben 👣</h2>
|
||||
<h2 data-category="Exkurs">Dateipfade angeben <span class="emoji">👣</span></h2>
|
||||
<h3>Absolute Dateipfade</h3>
|
||||
<ul>
|
||||
<li>Pfad von der Wurzel des Ordnerbaums bis zur jeweiligen Datei</li>
|
||||
<li>die verschiedenen Ebenen des Baums werden dabei durch folgende Zeichen getrennt:
|
||||
<ul>
|
||||
<li>Unter Unix: `/`</li>
|
||||
<li>Unter Windows: `\`</li>
|
||||
<li>Unter Unix: »`/`«</li>
|
||||
<li>Unter Windows: »`\`«</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
Beispiel: Absoluter Pfad zu main.tex
|
||||
<ul>
|
||||
<li>Unix: /home/knut/docs/latex/main.tex</li>
|
||||
<li>Windows: C:\knut\docs\latex\main.tex</li>
|
||||
</ul>
|
||||
<p>Allerdings muss bei LaTeX stets die Unix-Syntax für Pfadangaben verwendet werden. Deshalb werden wir im folgenden diese verwerden.</p>
|
||||
<div class="fragment">
|
||||
<p><strong>Beispiel:</strong> Absoluter Pfad zu `main.tex`</p>
|
||||
<ul>
|
||||
<li>Unix: `/home/knut/docs/latex/main.tex`</li>
|
||||
<li>Windows: `C:\knut\docs\latex\main.tex`</li>
|
||||
</ul>
|
||||
<p>Allerdings muss **bei LaTeX stets die Unix-Syntax** für Pfadangaben verwendet werden. Deshalb werden wir im folgenden diese verwerden.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/04/absolute_path.png">
|
||||
@ -136,16 +144,18 @@ Inhalt von Abschnitt 1.</code></pre>
|
||||
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2 data-category="Exkurs">Dateipfade angeben 👣</h2>
|
||||
<h2 data-category="Exkurs">Dateipfade angeben <span class="emoji">👣</span></h2>
|
||||
<h3>Relative Dateipfade</h3>
|
||||
<ul>
|
||||
<li>Pfad von einem bestimmten Ort irgendwo im Ordnerbaum bis zur jeweiligen Datei</li>
|
||||
<li>kürzer + weniger Schreibarbeit! ☺</li>
|
||||
<li>kürzer + weniger Schreibarbeit! <span class="emoji">☺</span></li>
|
||||
<li>bei `\input{}`und `\include{}` muss der Pfad zu einer Unterdatei relativ zur Hauptdatei angeben werden</li>
|
||||
</ul>
|
||||
Beispiel: Relativer Pfad von main.tex zu part1.tex
|
||||
<p>./part1.tex</p>
|
||||
<p>Der **einfache Punkt .** bezieht sich bei relativen Pfaden auf den Ordner, in dem die Ausgangsdatei liegt (hier: latex).</p>
|
||||
<div class="fragment">
|
||||
<p><strong>Beispiel:</strong> Relativer Pfad <br/>von `main.tex` zu `part1.tex`</p>
|
||||
<p>`./part1.tex`</p>
|
||||
<p>Der **einfache Punkt ».«** bezieht sich bei relativen Pfaden auf den Ordner, in dem die Ausgangsdatei liegt (hier: `latex`).</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/04/relative_path.png">
|
||||
@ -156,10 +166,10 @@ Inhalt von Abschnitt 1.</code></pre>
|
||||
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2 data-category="Exkurs">Dateipfade angeben 👣</h2>
|
||||
<h2 data-category="Exkurs">Dateipfade angeben <span class="emoji">👣</span></h2>
|
||||
<h3>Relative Dateipfade</h3>
|
||||
Beispiel: Relativer Pfad von main.tex zu part1.tex in Unterordner
|
||||
<p>./sections/part1.tex</p>
|
||||
<p><strong>Beispiel:</strong> Relativer Pfad von `main.tex` zu `part1.tex` in Unterordner</p>
|
||||
<p>`./sections/part1.tex`</p>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/04/relative_path_subdir.png">
|
||||
@ -170,11 +180,11 @@ Inhalt von Abschnitt 1.</code></pre>
|
||||
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2 data-category="Exkurs">Dateipfade angeben 👣</h2>
|
||||
<h2 data-category="Exkurs">Dateipfade angeben <span class="emoji">👣</span></h2>
|
||||
<h3>Relative Dateipfade</h3>
|
||||
Beispiel: Relativer Pfad von main.tex in eigenem Unterordner zu part1.tex in anderem Unterordner
|
||||
<p>../sections/part1.tex</p>
|
||||
<p>**Zwei Punkte ..** bezeichnen den Elternordner des aktuellen Ordners (hier: Dokumente, der Elternordner latex des Ordners main).</p>
|
||||
<p><strong>Beispiel:</strong> Relativer Pfad von `main.tex` in eigenem Unterordner zu `part1.tex` in anderem Unterordner</p>
|
||||
<p>`../sections/part1.tex`</p>
|
||||
<p>**Zwei Punkte »..«** bezeichnen den Elternordner des aktuellen Ordners (hier: Dokumente, der Elternordner latex des Ordners main).</p>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/04/relative_path_superdir.png">
|
||||
@ -187,8 +197,8 @@ Inhalt von Abschnitt 1.</code></pre>
|
||||
<div class="layout-content">
|
||||
<h2>Kompilieren des Projekts</h2>
|
||||
<ul>
|
||||
<li>**Nur die Hauptdatei** wird kompiliert, um das fertige PDF-Dokument zu erhalten</li>
|
||||
<li>Fehlermeldungen enthalten dann Verweis, in welcher Unterdatei sie aufgetreten sind</li>
|
||||
<li>**Nur die Hauptdatei** wird kompiliert, um das fertige PDF-Dokument zu erhalten.</li>
|
||||
<li>Fehlermeldungen enthalten dann Verweis, in welcher Unterdatei sie aufgetreten sind.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
@ -199,7 +209,7 @@ Inhalt von Abschnitt 1.</code></pre>
|
||||
<div class="layout-content">
|
||||
<h2>Kompilieren des Projekts</h2>
|
||||
<ul>
|
||||
<li>die Unterdateiten können wegen ihrer fehlenden Präambel nicht selbstständig kompiliert werden</li>
|
||||
<li>Die Unterdateiten können wegen ihrer fehlenden Präambel nicht selbstständig kompiliert werden.</li>
|
||||
<li>Trick bei `\include{}`: `\includeonly{file1,file2,...}` in die Präambel schreiben, um nur einzelne Unterdateien zu kompilieren</li>
|
||||
</ul>
|
||||
</div>
|
||||
@ -210,7 +220,7 @@ Inhalt von Abschnitt 1.</code></pre>
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2>Präambel ausgelagert</h2>
|
||||
<p>Was denkt ihr, passiert, wenn wir den Präambel in eine Unterdatei auslagern?</p>
|
||||
<p>Was denkt ihr, passiert, wenn wir die Präambel in eine Unterdatei auslagern?</p>
|
||||
<p>Wird das Gesamtdokument kompilieren oder nicht?</p>
|
||||
<p class="fragment"><strong>Ja, es kompiliert!</strong><br>
|
||||
Ein einfacher Weg, um die Hauptdatei noch übersichtlicher zu halten.</p>
|
||||
@ -222,15 +232,13 @@ 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">Ein strukturiertes Projekt</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>
|
||||
<li class="fragment">Beobachte, was sich verändert, wenn du stattdessen <code>\include{}</code> einsetzt.</li>
|
||||
<li class="fragment">Verschiebe die Teildateien zur besseren Strukturierung in einen eigenen Unterordner <code>sections</code>. Was musst du nun bei der Angabe des relativen Pfades bei <code>\include{}</code> verändern?</li>
|
||||
<li class="fragment">Lagere nun noch die Präambel aus.</li>
|
||||
<li>Entfernt die Präambel, die beiden `document`-Zeilen und das Inhaltsverzeichnis aus `allgemeines.tex`.</li>
|
||||
<li class="fragment">Kompiliert stattdessen `l2kurz.tex` – das ist ab sofort unsere **Hauptdatei,** `allgemeines.tex` ist bereits eingebunden und wird mit kompiliert.</li>
|
||||
<li class="fragment">Diese Datei ist sehr unübersichtlich. Lagert alles vor `\begin{document}` in eine neue Datei `praeambel.tex` aus und bindet sie mit `\input{praeambel}` ein.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -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 |
@ -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 |
|
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
|
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
BIN
sections/german/04/tikz_src/tikz_path.pdf
Normal file
BIN
sections/german/04/tikz_src/tikz_path.synctex.gz
Normal file
@ -1,6 +1,3 @@
|
||||
<!--
|
||||
SONDERZEICHEN
|
||||
-->
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h1>Sonderzeichen</h1>
|
||||
@ -13,18 +10,18 @@
|
||||
<div class="layout-content">
|
||||
<h2>Leerzeichen</h2>
|
||||
<ul>
|
||||
<li>normale Wortzwischenräume per Leertaste</li>
|
||||
<li>geschützte Leerzeichen: `~`</li>
|
||||
<li>schmale Leerzeichen: `\,`</li>
|
||||
<li>viele weitere Breiten verfügbar</li>
|
||||
<li>normale Wortzwischenräume per Leertaste</li>
|
||||
<li>geschützte Leerzeichen: »`~`«</li>
|
||||
<li>schmale Leerzeichen: »`\,`«</li>
|
||||
<li>viele weitere Breiten verfügbar</li>
|
||||
</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>
|
||||
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">
|
||||
@ -35,177 +32,331 @@ Dr.~Fooboar.</code></pre>
|
||||
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2 data-category="Typografie">Striche</h2>
|
||||
<h2>Die Sache mit den Strichen …</h2>
|
||||
<table>
|
||||
<tr>
|
||||
<th></th>
|
||||
<th>Name</th>
|
||||
<th>Verwendung</th>
|
||||
<th>Code</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>-</td>
|
||||
<td>Bindestrich</td>
|
||||
<td>LaTeX-Wochenende</td>
|
||||
<td>`-`</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>–</td>
|
||||
<td>Halbgeviertstrich</td>
|
||||
<td>als Gedankenstrich – oder als Bis-Strich: 10 – 12 Uhr.
|
||||
<td>Halbgeviert­strich</td>
|
||||
<td>als Gedankenstrich – oder als Bis-Strich: 10 – 12 Uhr.</td>
|
||||
<td>`--`</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>—</td>
|
||||
<td>Geviertstrich</td>
|
||||
<td>A dash — in American English</td>
|
||||
<td>`---`</td>
|
||||
</tr>
|
||||
</table>
|
||||
<!-- <pre class="lang-tex hljs"><code></code></pre> -->
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/05/striche-crop.svg">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2>Silbentrennung</h2>
|
||||
<p>LaTeX trennt Wörter im Normalfall automatisch richtig, wenn die richtige Sprache konfiguriert ist. Es kann aber auch manuell eingegriffen werden:</p>
|
||||
<table>
|
||||
<tr>
|
||||
<td>Ausschließliche Trennung</td>
|
||||
<td>`\-`</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Zusätzliche Trennstelle</td>
|
||||
<td>`"-`</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Bindestrich (verbietet andere Trennstellen)</td>
|
||||
<td>`-`</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Bindestrich (erlaubt andere Trennstellen)</td>
|
||||
<td>`"=`</td>
|
||||
<tr>
|
||||
<td>Trennstelle ohne Strich</td>
|
||||
<td>`""`</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Strich ohne Trennstelle</td>
|
||||
<td>`"~`</td>
|
||||
</tr>
|
||||
</table>
|
||||
<p data-category="Achtung!">Einige der Codes funktionieren nur mit eingebundenem <code>babel</code>-Paket.</p>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/05/silbentrennung-crop.svg">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Anführungszeichen</h2>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Sprache</th>
|
||||
<!-- <th style="text-align: center;">Kürzel</th> -->
|
||||
<th style="text-align: center;">Befehl</th>
|
||||
<th style="text-align: center;">Ergebnis</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Deutsch</td>
|
||||
<!-- <td style="text-align: center;"><code>,,…\`\`</code></td> -->
|
||||
<td style="text-align: center;">`\glqq … \grqq`</td>
|
||||
<td style="text-align: center;">„…“</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> 2. Ebene</td>
|
||||
<!-- <td style="text-align: center;"><code> ,…\` </code></td> -->
|
||||
<td style="text-align: center;">` \glq … \grq `</td>
|
||||
<td style="text-align: center;">‚…‘</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Deutsch altern.</td>
|
||||
<!-- <td style="text-align: center;"><code>,,…\`\`</code></td> -->
|
||||
<td style="text-align: center;">`\frqq … \flqq`</td>
|
||||
<td style="text-align: center;">»…«</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> 2. Ebene</td>
|
||||
<!-- <td style="text-align: center;"><code> ,…\` </code></td> -->
|
||||
<td style="text-align: center;">` \frq … \flq `</td>
|
||||
<td style="text-align: center;">›…‹</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Englisch (A. E.)</td>
|
||||
<td style="text-align: center;"><code>\`\`…''</code></td>
|
||||
<!-- <td style="text-align: center;">–</td> -->
|
||||
<td style="text-align: center;">“…”</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> 2. Ebene</td>
|
||||
<td style="text-align: center;"><code> \`…' </code></td>
|
||||
<!-- <td style="text-align: center;">–</td> -->
|
||||
<td style="text-align: center;">‘…’</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Englisch (B. E.)</td>
|
||||
<td style="text-align: center;"><code> \`…' </code></td>
|
||||
<!-- <td style="text-align: center;">–</td> -->
|
||||
<td style="text-align: center;">‘…’</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> 2. Ebene</td>
|
||||
<td style="text-align: center;"><code>\`\`…''</code></td>
|
||||
<!-- <td style="text-align: center;">–</td> -->
|
||||
<td style="text-align: center;">“…”</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2></h2>
|
||||
<p></p>
|
||||
<pre class="lang-tex hljs"><code></code></pre>
|
||||
<h2>Zitate</h2>
|
||||
<p>Das Paket `csquotes` stellt u. a. den Befehl `\enquote` zur Verfügung:</p>
|
||||
<pre class="lang-tex hljs"><code>\enquote{Ein \enquote{verschachteltes}
|
||||
Zitat.}</code></pre>
|
||||
<p>Wenn das Paket mit `autostyle=true` eingebunden wird, werden bei fremdsprachigen Zitaten die entsprechenden Anführungszeichen verwendet:</p>
|
||||
<pre class="lang-tex hljs"><code>\foreignquote{english}{An English
|
||||
quote.}</code></pre>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
TODO
|
||||
<img src="sections/german/05/">
|
||||
<img src="sections/german/05/zitate-crop.svg">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
TODO: Striche (normaler Bindestrich, LaTeX-Bindestriche, Streckenstriche, Gedankenstriche deutsch/englisch), Silbentrennung in LaTeX mit overfull hboxes
|
||||
|
||||
---
|
||||
|
||||
TODO: Anführungszeichen (einfache LaTeX-Syntax und Befehle, jeweils für deutsch, deutsch-alternativ und englisch)
|
||||
|
||||
---
|
||||
|
||||
TODO: Diakritika (UTF8-Input und https://en.wikibooks.org/wiki/LaTeX/Special_Characters#Escaped_codes)
|
||||
|
||||
---
|
||||
|
||||
TODO: Andere Sonderzeichen: \slash \ldots (https://en.wikibooks.org/wiki/LaTeX/Special_Characters#Other_symbols); manche funktionieren nur in Formeln, kommt später
|
||||
|
||||
---
|
||||
|
||||
TODO: Generell UTF8-Input möglich
|
||||
|
||||
---
|
||||
|
||||
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Sonderzeichen & Symbole</h2>
|
||||
<h3>Escape Sequences 🏃</h3>
|
||||
<ul>
|
||||
<li>In LaTeX werden viele Sonderzeichen für Befehle verwendet (z.B. `%`, `$`, `\`)</li>
|
||||
<li>Character Escaping: Tricks, um diese Sonderzeichen in ihrer eigentlichen Funktion im Fließtext zu benutzen</li>
|
||||
<li>Oft reicht es, einen **Backslash** vorne anzuhängen:</li>
|
||||
</ul>
|
||||
<pre class="lang-tex hljs"><code>\%
|
||||
\$
|
||||
\&
|
||||
</code></pre>
|
||||
</div>
|
||||
<div class="layout-content">
|
||||
<h2>Diakritika</h2>
|
||||
<p>Buchstaben mit Diakritika können entweder direkt über die Tastatur eingegeben werden oder über Escape-Codes:</p>
|
||||
<table>
|
||||
<tr>
|
||||
<td><code>\\\`{o}</code></td>
|
||||
<td>ò  </td>
|
||||
<td><code>\\c{c}</code></td>
|
||||
<td>ç  </td>
|
||||
<td><code>\\d{u}</code></td>
|
||||
<td>ụ</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>\\'{o}</code></td>
|
||||
<td>ó</td>
|
||||
<td><code>\\k{a}</code></td>
|
||||
<td>ą</td>
|
||||
<td><code>\\r{a}</code></td>
|
||||
<td>å</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>\\^{o}</code></td>
|
||||
<td>ô</td>
|
||||
<td><code>\\l{}</code></td>
|
||||
<td>ł</td>
|
||||
<td><code>\\u{o}</code></td>
|
||||
<td>ŏ</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>\\"{o}</code></td>
|
||||
<td>ö</td>
|
||||
<td><code>\\={o}</code></td>
|
||||
<td>ō</td>
|
||||
<td><code>\\v{s}</code></td>
|
||||
<td>š</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>\\H{o}</code></td>
|
||||
<td>ő</td>
|
||||
<td><code>\\b{o}</code></td>
|
||||
<td>o</td>
|
||||
<td><code>\\t{oo}</code></td>
|
||||
<td>o͡o</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>\\~{o}</code></td>
|
||||
<td>õ</td>
|
||||
<td><code>\\.{o}</code></td>
|
||||
<td>ȯ</td>
|
||||
<td><code>\\o</code></td>
|
||||
<td>ø</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Sonderzeichen & Symbole</h2>
|
||||
<h3>Escape Sequences 🏃</h3>
|
||||
<p>Bei anderen Sonderzeichen gibt es **eigene Befehle**:</p>
|
||||
<pre class="lang-tex hljs"><code>\textbackslash % Backslash
|
||||
\textasciitilde % Tilde
|
||||
\copyright % Copyrightzeichen</code></pre>
|
||||
</div>
|
||||
<div class="layout-content">
|
||||
<h2>Sonderzeichen & Symbole</h2>
|
||||
<p>Auch andere Sonderzeichen können entweder direkt eingegeben werden oder per Befehl:</p>
|
||||
<table>
|
||||
<tr>
|
||||
<td>^</td>
|
||||
<td><code>\\textasciicircumflex</code></td>
|
||||
<td>~</td>
|
||||
<td><code>\\textasciitilde</code></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>*</td>
|
||||
<td><code>\\textasteriskcentered</code></td>
|
||||
<td>\</td>
|
||||
<td><code>\\textbackslash</code></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>|</td>
|
||||
<td><code>\\textbar</code></td>
|
||||
<td>∙</td>
|
||||
<td><code>\\textbullet</code></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ⓒ</td>
|
||||
<td><code>\\textcopyright</code></td>
|
||||
<td>†</td>
|
||||
<td><code>\\textdagger</code></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>‡</td>
|
||||
<td><code>\\textdaggerdbl</code></td>
|
||||
<td>…</td>
|
||||
<td><code>\\textellipsis</code></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><</td>
|
||||
<td><code>\\textless</code></td>
|
||||
<td>></td>
|
||||
<td><code>\\textgreater</code></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>‰</td>
|
||||
<td><code>\\textperthousand</code></td>
|
||||
<td>§</td>
|
||||
<td><code>\\textsection</code></td>
|
||||
</tr>
|
||||
</table>
|
||||
<p>… und so ziemlich alles andere.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Sonderzeichen & Symbole</h2>
|
||||
<h3>Mathmode</h3>
|
||||
<p>Einige Sonderzeichen und Symbole funktionieren nur in einer Mathematikumgebung:</p>
|
||||
<pre class="lang-tex hljs"><code>% griechische Buchstaben
|
||||
<div class="layout-content">
|
||||
<h2>Sonderzeichen & Symbole</h2>
|
||||
<h3>Mathmode</h3>
|
||||
<p>Einige Sonderzeichen und Symbole funktionieren nur in einer Mathematikumgebung:</p>
|
||||
<pre class="lang-tex hljs"><code>% griechische Buchstaben
|
||||
$\pi \Sigma \delta$
|
||||
|
||||
% Kreuz
|
||||
$\dagger$</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Sonderzeichen & Symbole</h2>
|
||||
<h3>Euro <span class="emoji">💸</span></h3>
|
||||
<ul>
|
||||
<li>Paket <code>eurosym</code></li>
|
||||
<li>Befehl <code>\euro</code></li>
|
||||
</ul>
|
||||
<pre class="lang-tex hljs"><code>LaTeX zu verwenden kostet 0 \euro.</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Sonderzeichen & Symbole</h2>
|
||||
<h3>Detexify to the rescue! <span class="emoji">⛑️</span></h3>
|
||||
<ul>
|
||||
<li>
|
||||
Symbole malen und erkennen lassen:
|
||||
<a href="http://detexify.kirelabs.org/classify.html">Detexify</a>
|
||||
</li>
|
||||
<li>
|
||||
Ausführliche Liste an verwendbaren Symbolen:
|
||||
<a href="http://tug.ctan.org/info/symbols/comprehensive/symbols-a4.pdf">PDF auf CTAN-Webseite</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Sonderzeichen & Symbole</h2>
|
||||
<h3>Anführungszeichen</h3>
|
||||
<h2 data-category="Aufgabe" data-task="4">Sonderzeichen einfügen</h2>
|
||||
<ul>
|
||||
<li>Englisch: ` ``quote'' ` <br>→ “quote”</li>
|
||||
<li>Deutsch: `"` in Kombination mit dem ngerman-Paket als Umlautakzent definiert: `"Anführungszeichen"` <br>→ Änführungszeichen"</li>
|
||||
<li>Ersatz: german left/right quotes</li>
|
||||
<li>`\glq einfache Anführungszeichen\grq` <br>→ ‚einfache …‘</li>
|
||||
<li>`\glqq doppelte Anführungszeichen\grqq` <br>→ „doppelte …“</li>
|
||||
<li>französische Anführungszeichen: french left/right quotes</li>
|
||||
<li>`\flqq Guillements\frqq` <br>→ »Guillemets«</li>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Sonderzeichen & Symbole</h2>
|
||||
<h3>Die Sache mit den Strichen …</h3>
|
||||
<ul>
|
||||
<li>Bindestrich -</li>
|
||||
</ul>
|
||||
<pre class="lang-tex hljs"><code>Textsatz-System % in zusammengesetzen Wörter
|
||||
Ein- und Ausgabe % als Ergänzungsstrich</code></pre>
|
||||
<ul>
|
||||
<li>Gedankenstrich –</li>
|
||||
</ul>
|
||||
<pre class="lang-tex hljs"><code>LaTeX ist -- wie Typograf*innen bestätigen können -- ein exzellentes Textsatzsystem. % für Einschübe
|
||||
Mit LaTeX kann man sogar Gedichte und Kochrezepte setzen -- der Fantasie sind keine Grenzen gesetzt. % dort, wo in der gesprochenen Sprache eine Pause gemacht wird</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Sonderzeichen & Symbole</h2>
|
||||
<h3>Euro 💸</h3>
|
||||
<ul>
|
||||
<li>Paket <code class="snippet">eurosym</code></li>
|
||||
<li>Befehl <code class="snippet">\euro</code></li>
|
||||
</ul>
|
||||
<pre class="lang-tex hljs"><code>LaTeX zu verwenden kostet 0 \euro.</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Sonderzeichen & Symbole</h2>
|
||||
<h3>Detexify to the rescue! ⛑️</h3>
|
||||
<ul>
|
||||
<li>Symbol malen und erkennen lassen: <a href="http://detexify.kirelabs.org/classify.html">Detexify</a></li>
|
||||
<li>Ausführliche Liste an verwendbaren Symbolen: <a href="http://tug.ctan.org/info/symbols/comprehensive/symbols-a4.pdf">PDF auf CTAN-Webseite</a></li>
|
||||
<li>Ersetzt in Abschnitt 1.1.1 die Leerzeichen vor und nach dem Namen Knuth durch **geschützte Leerzeichen.**</li>
|
||||
<li class="fragment">Fügt in Abschnitt 1.2.1, Absatz 2, ein **halbes Leerzeichen** zwischen ›z.‹ und ›B.‹ von ›z.B.‹ ein.</li>
|
||||
<li class="fragment">In Abschnitt 1.2.2 stehen an mehren Stellen Bindestriche als **Gedankenstriche.** Tauscht sie durch Halbgeviertstriche aus.</li>
|
||||
<li class="fragment">In Abschnitt 1.2.1, Absatz 2, wird ein `"=` verwendet. Was passiert, wenn ihr stattdessen einen einfachen **Bindestrich** verwendet?</li>
|
||||
<li class="fragment">In Abschnitt 1.1.1 sollten »Tech« und »TeX« in **Anführungszeichen** stehen. Nutzt dafür `\enquote{…}`</li>
|
||||
<li class="fragment">Ersetzt die drei Punkte in 1.2.1, Absatz 2, durch eine echte **Ellipse.**</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
2199
sections/german/05/silbentrennung-crop.svg
Normal file
|
After Width: | Height: | Size: 162 KiB |
2199
sections/german/05/silbentrennung-orig.svg
Normal file
|
After Width: | Height: | Size: 163 KiB |
40
sections/german/05/silbentrennung.tex
Normal file
@ -0,0 +1,40 @@
|
||||
\documentclass[a4paper]{scrartcl}
|
||||
\usepackage{lmodern}
|
||||
\usepackage{amssymb,amsmath}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage[ngerman]{babel}
|
||||
\usepackage{hyperref}
|
||||
\usepackage{csquotes}
|
||||
\begin{document}
|
||||
\thispagestyle{empty}
|
||||
\section*{Overfull \textbackslash{}hbox durch einfachen Bindestrich}
|
||||
Im Gegensatz dazu steht der visuell orientierte Entwurf eines
|
||||
Schriftstückes mit Textverarbeitungs- oder \textsc{dtp}-Programmen wie z.\,B.\
|
||||
\textsc{Word}.
|
||||
In diesem Fall legt der Autor das Layout des Textes gleich bei der
|
||||
interaktiven Eingabe fest. Dabei sieht er am Bildschirm das, was
|
||||
auch auf der gedruckten Seite stehen wird. Solche Systeme, die das
|
||||
visuelle Entwerfen unterstützen, werden auch \textsc{wysiwyg}-Systeme
|
||||
(\enquote{what you see is what you get}) genannt.
|
||||
|
||||
\section*{Erlaubte Silbentrennung mit \texttt{\textquotedbl{}=}}
|
||||
Im Gegensatz dazu steht der visuell orientierte Entwurf eines
|
||||
Schriftstückes mit Textverarbeitungs"= oder \textsc{dtp}-Programmen wie z.\,B.\
|
||||
\textsc{Word}.
|
||||
In diesem Fall legt der Autor das Layout des Textes gleich bei der
|
||||
interaktiven Eingabe fest. Dabei sieht er am Bildschirm das, was
|
||||
auch auf der gedruckten Seite stehen wird. Solche Systeme, die das
|
||||
visuelle Entwerfen unterstützen, werden auch \textsc{wysiwyg}-Systeme
|
||||
(\enquote{what you see is what you get}) genannt.
|
||||
|
||||
\section*{Definierte Trennstelle mit \texttt{\textbackslash{}-}}
|
||||
Im Gegensatz dazu steht der visuell orientierte Entwurf eines
|
||||
Schriftstückes mit Text\-verarbeitungs- oder \textsc{dtp}-Programmen wie z.\,B.\
|
||||
\textsc{Word}.
|
||||
In diesem Fall legt der Autor das Layout des Textes gleich bei der
|
||||
interaktiven Eingabe fest. Dabei sieht er am Bildschirm das, was
|
||||
auch auf der gedruckten Seite stehen wird. Solche Systeme, die das
|
||||
visuelle Entwerfen unterstützen, werden auch \textsc{wysiwyg}-Systeme
|
||||
(\enquote{what you see is what you get}) genannt.
|
||||
\end{document}
|
||||
155
sections/german/05/zitate-crop.svg
Normal file
@ -0,0 +1,155 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="123pt" height="34pt" viewBox="0 0 123 34" 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 2.046875 0.015625 C 2.046875 -0.59375 1.8125 -1.03125 1.390625 -1.03125 C 1.03125 -1.03125 0.859375 -0.765625 0.859375 -0.515625 C 0.859375 -0.25 1.03125 0.015625 1.390625 0.015625 C 1.578125 0.015625 1.71875 -0.078125 1.78125 -0.140625 C 1.796875 -0.15625 1.8125 -0.171875 1.8125 -0.171875 C 1.8125 -0.171875 1.828125 -0.03125 1.828125 0.015625 C 1.828125 0.328125 1.765625 1.046875 1.140625 1.671875 C 1.015625 1.78125 1.015625 1.796875 1.015625 1.828125 C 1.015625 1.90625 1.0625 1.9375 1.109375 1.9375 C 1.21875 1.9375 2.046875 1.1875 2.046875 0.015625 Z M 3.984375 0.015625 C 3.984375 -0.59375 3.75 -1.03125 3.3125 -1.03125 C 2.96875 -1.03125 2.796875 -0.765625 2.796875 -0.515625 C 2.796875 -0.25 2.953125 0.015625 3.3125 0.015625 C 3.515625 0.015625 3.65625 -0.078125 3.71875 -0.140625 C 3.734375 -0.15625 3.75 -0.171875 3.75 -0.171875 C 3.75 -0.171875 3.765625 -0.03125 3.765625 0.015625 C 3.765625 0.328125 3.703125 1.046875 3.078125 1.671875 C 2.953125 1.78125 2.953125 1.796875 2.953125 1.828125 C 2.953125 1.90625 3 1.9375 3.046875 1.9375 C 3.15625 1.9375 3.984375 1.1875 3.984375 0.015625 Z M 3.984375 0.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<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-3">
|
||||
<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-4">
|
||||
<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-5">
|
||||
<path style="stroke:none;" d="M 1.984375 0.015625 C 1.984375 -0.59375 1.75 -1.03125 1.3125 -1.03125 C 0.96875 -1.03125 0.78125 -0.765625 0.78125 -0.515625 C 0.78125 -0.25 0.953125 0.015625 1.3125 0.015625 C 1.515625 0.015625 1.65625 -0.078125 1.71875 -0.140625 C 1.71875 -0.15625 1.75 -0.171875 1.75 -0.171875 C 1.75 -0.171875 1.765625 -0.03125 1.765625 0.015625 C 1.765625 0.328125 1.6875 1.046875 1.0625 1.671875 C 0.953125 1.78125 0.953125 1.796875 0.953125 1.828125 C 0.953125 1.90625 1 1.9375 1.046875 1.9375 C 1.15625 1.9375 1.984375 1.1875 1.984375 0.015625 Z M 1.984375 0.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<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-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 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-9">
|
||||
<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-10">
|
||||
<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-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.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-12">
|
||||
<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-13">
|
||||
<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-14">
|
||||
<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-15">
|
||||
<path style="stroke:none;" d="M 1.90625 -4.453125 C 1.90625 -4.71875 1.75 -4.984375 1.390625 -4.984375 C 1.1875 -4.984375 1.046875 -4.890625 0.984375 -4.828125 C 0.984375 -4.8125 0.953125 -4.796875 0.953125 -4.796875 C 0.953125 -4.796875 0.9375 -4.9375 0.9375 -4.96875 C 0.9375 -5.296875 1 -6.015625 1.640625 -6.625 C 1.75 -6.75 1.75 -6.765625 1.75 -6.796875 C 1.75 -6.875 1.703125 -6.90625 1.65625 -6.90625 C 1.546875 -6.90625 0.71875 -6.15625 0.71875 -4.96875 C 0.71875 -4.375 0.953125 -3.921875 1.390625 -3.921875 C 1.734375 -3.921875 1.90625 -4.203125 1.90625 -4.453125 Z M 1.90625 -4.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-16">
|
||||
<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-17">
|
||||
<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-18">
|
||||
<path style="stroke:none;" d="M 1.90625 -4.453125 C 1.90625 -4.71875 1.75 -4.984375 1.390625 -4.984375 C 1.1875 -4.984375 1.046875 -4.890625 0.984375 -4.828125 C 0.984375 -4.8125 0.953125 -4.796875 0.953125 -4.796875 C 0.953125 -4.796875 0.9375 -4.9375 0.9375 -4.96875 C 0.9375 -5.296875 1 -6.015625 1.640625 -6.625 C 1.75 -6.75 1.75 -6.765625 1.75 -6.796875 C 1.75 -6.875 1.703125 -6.90625 1.65625 -6.90625 C 1.546875 -6.90625 0.71875 -6.15625 0.71875 -4.96875 C 0.71875 -4.375 0.953125 -3.921875 1.390625 -3.921875 C 1.734375 -3.921875 1.90625 -4.203125 1.90625 -4.453125 Z M 3.84375 -4.453125 C 3.84375 -4.71875 3.671875 -4.984375 3.3125 -4.984375 C 3.125 -4.984375 2.984375 -4.890625 2.921875 -4.828125 C 2.90625 -4.8125 2.890625 -4.796875 2.890625 -4.796875 C 2.890625 -4.796875 2.875 -4.9375 2.875 -4.96875 C 2.875 -5.296875 2.9375 -6.015625 3.5625 -6.625 C 3.6875 -6.75 3.6875 -6.765625 3.6875 -6.796875 C 3.6875 -6.875 3.640625 -6.90625 3.59375 -6.90625 C 3.484375 -6.90625 2.65625 -6.15625 2.65625 -4.96875 C 2.65625 -4.375 2.890625 -3.921875 3.3125 -3.921875 C 3.671875 -3.921875 3.84375 -4.203125 3.84375 -4.453125 Z M 3.84375 -4.453125 "/>
|
||||
</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 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-21">
|
||||
<path style="stroke:none;" d="M 5.25 1.9375 L 5.25 1.625 C 4.578125 1.625 4.46875 1.625 4.46875 1.171875 L 4.46875 -4.40625 L 4.25 -4.40625 L 3.875 -3.5 C 3.75 -3.78125 3.34375 -4.40625 2.546875 -4.40625 C 1.390625 -4.40625 0.34375 -3.4375 0.34375 -2.140625 C 0.34375 -0.890625 1.3125 0.109375 2.46875 0.109375 C 3.15625 0.109375 3.5625 -0.3125 3.78125 -0.609375 L 3.78125 1.171875 C 3.78125 1.625 3.671875 1.625 3.015625 1.625 L 3.015625 1.9375 L 4.125 1.90625 Z M 3.8125 -1.359375 C 3.8125 -1.03125 3.640625 -0.75 3.421875 -0.515625 C 3.296875 -0.375 2.96875 -0.109375 2.5 -0.109375 C 1.78125 -0.109375 1.171875 -1 1.171875 -2.140625 C 1.171875 -3.328125 1.859375 -4.15625 2.609375 -4.15625 C 3.40625 -4.15625 3.8125 -3.296875 3.8125 -2.765625 Z M 3.8125 -1.359375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-22">
|
||||
<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-23">
|
||||
<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-24">
|
||||
<path style="stroke:none;" d="M 2.046875 -5.875 C 2.046875 -6.46875 1.8125 -6.921875 1.390625 -6.921875 C 1.03125 -6.921875 0.859375 -6.65625 0.859375 -6.390625 C 0.859375 -6.125 1.03125 -5.859375 1.390625 -5.859375 C 1.578125 -5.859375 1.71875 -5.96875 1.78125 -6.015625 C 1.796875 -6.046875 1.8125 -6.046875 1.8125 -6.046875 C 1.8125 -6.046875 1.828125 -5.90625 1.828125 -5.875 C 1.828125 -5.546875 1.765625 -4.828125 1.140625 -4.21875 C 1.015625 -4.09375 1.015625 -4.078125 1.015625 -4.046875 C 1.015625 -3.984375 1.0625 -3.9375 1.109375 -3.9375 C 1.21875 -3.9375 2.046875 -4.6875 2.046875 -5.875 Z M 3.984375 -5.875 C 3.984375 -6.46875 3.75 -6.921875 3.3125 -6.921875 C 2.96875 -6.921875 2.796875 -6.65625 2.796875 -6.390625 C 2.796875 -6.125 2.953125 -5.859375 3.3125 -5.859375 C 3.515625 -5.859375 3.65625 -5.96875 3.71875 -6.015625 C 3.734375 -6.046875 3.75 -6.046875 3.75 -6.046875 C 3.75 -6.046875 3.765625 -5.90625 3.765625 -5.875 C 3.765625 -5.546875 3.703125 -4.828125 3.078125 -4.21875 C 2.953125 -4.09375 2.953125 -4.078125 2.953125 -4.046875 C 2.953125 -3.984375 3 -3.9375 3.046875 -3.9375 C 3.15625 -3.9375 3.984375 -4.6875 3.984375 -5.875 Z M 3.984375 -5.875 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="-0.254" y="7.771"/>
|
||||
<use xlink:href="#glyph0-2" x="4.448347" y="7.771"/>
|
||||
<use xlink:href="#glyph0-3" x="11.228893" y="7.771"/>
|
||||
<use xlink:href="#glyph0-4" x="13.996503" y="7.771"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="22.849269" y="7.771"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="24.789984" y="7.771"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="29.769291" y="7.771"/>
|
||||
<use xlink:href="#glyph0-8" x="34.197667" y="7.771"/>
|
||||
<use xlink:href="#glyph0-9" x="38.100017" y="7.771"/>
|
||||
<use xlink:href="#glyph0-10" x="42.030263" y="7.771"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-11" x="46.179686" y="7.771"/>
|
||||
<use xlink:href="#glyph0-12" x="51.714907" y="7.771"/>
|
||||
<use xlink:href="#glyph0-10" x="56.696207" y="7.771"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-11" x="60.84563" y="7.771"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-13" x="66.101897" y="7.771"/>
|
||||
<use xlink:href="#glyph0-7" x="69.976352" y="7.771"/>
|
||||
<use xlink:href="#glyph0-14" x="74.404728" y="7.771"/>
|
||||
<use xlink:href="#glyph0-13" x="77.172338" y="7.771"/>
|
||||
<use xlink:href="#glyph0-7" x="81.046794" y="7.771"/>
|
||||
<use xlink:href="#glyph0-9" x="85.475169" y="7.771"/>
|
||||
<use xlink:href="#glyph0-15" x="89.405415" y="7.771"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-16" x="95.500534" y="7.771"/>
|
||||
<use xlink:href="#glyph0-3" x="101.588679" y="7.771"/>
|
||||
<use xlink:href="#glyph0-13" x="104.356289" y="7.771"/>
|
||||
<use xlink:href="#glyph0-12" x="108.230744" y="7.771"/>
|
||||
<use xlink:href="#glyph0-13" x="113.212044" y="7.771"/>
|
||||
<use xlink:href="#glyph0-17" x="117.086499" y="7.771"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-18" x="118.469308" y="7.771"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-18" x="-0.254" y="31.682"/>
|
||||
<use xlink:href="#glyph0-19" x="4.448347" y="31.682"/>
|
||||
<use xlink:href="#glyph0-4" x="11.920297" y="31.682"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="20.773064" y="31.682"/>
|
||||
<use xlink:href="#glyph0-4" x="27.553609" y="31.682"/>
|
||||
<use xlink:href="#glyph0-20" x="33.08883" y="31.682"/>
|
||||
<use xlink:href="#glyph0-14" x="38.07013" y="31.682"/>
|
||||
<use xlink:href="#glyph0-3" x="40.83774" y="31.682"/>
|
||||
<use xlink:href="#glyph0-9" x="43.60535" y="31.682"/>
|
||||
<use xlink:href="#glyph0-11" x="47.535596" y="31.682"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-21" x="56.388362" y="31.682"/>
|
||||
<use xlink:href="#glyph0-22" x="61.646623" y="31.682"/>
|
||||
<use xlink:href="#glyph0-23" x="67.181843" y="31.682"/>
|
||||
<use xlink:href="#glyph0-13" x="72.163143" y="31.682"/>
|
||||
<use xlink:href="#glyph0-7" x="76.037598" y="31.682"/>
|
||||
<use xlink:href="#glyph0-17" x="80.465974" y="31.682"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-24" x="81.848783" y="31.682"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 24 KiB |
155
sections/german/05/zitate-orig.svg
Normal file
@ -0,0 +1,155 @@
|
||||
<?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 2.046875 0.015625 C 2.046875 -0.59375 1.8125 -1.03125 1.390625 -1.03125 C 1.03125 -1.03125 0.859375 -0.765625 0.859375 -0.515625 C 0.859375 -0.25 1.03125 0.015625 1.390625 0.015625 C 1.578125 0.015625 1.71875 -0.078125 1.78125 -0.140625 C 1.796875 -0.15625 1.8125 -0.171875 1.8125 -0.171875 C 1.8125 -0.171875 1.828125 -0.03125 1.828125 0.015625 C 1.828125 0.328125 1.765625 1.046875 1.140625 1.671875 C 1.015625 1.78125 1.015625 1.796875 1.015625 1.828125 C 1.015625 1.90625 1.0625 1.9375 1.109375 1.9375 C 1.21875 1.9375 2.046875 1.1875 2.046875 0.015625 Z M 3.984375 0.015625 C 3.984375 -0.59375 3.75 -1.03125 3.3125 -1.03125 C 2.96875 -1.03125 2.796875 -0.765625 2.796875 -0.515625 C 2.796875 -0.25 2.953125 0.015625 3.3125 0.015625 C 3.515625 0.015625 3.65625 -0.078125 3.71875 -0.140625 C 3.734375 -0.15625 3.75 -0.171875 3.75 -0.171875 C 3.75 -0.171875 3.765625 -0.03125 3.765625 0.015625 C 3.765625 0.328125 3.703125 1.046875 3.078125 1.671875 C 2.953125 1.78125 2.953125 1.796875 2.953125 1.828125 C 2.953125 1.90625 3 1.9375 3.046875 1.9375 C 3.15625 1.9375 3.984375 1.1875 3.984375 0.015625 Z M 3.984375 0.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<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-3">
|
||||
<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-4">
|
||||
<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-5">
|
||||
<path style="stroke:none;" d="M 1.984375 0.015625 C 1.984375 -0.59375 1.75 -1.03125 1.3125 -1.03125 C 0.96875 -1.03125 0.78125 -0.765625 0.78125 -0.515625 C 0.78125 -0.25 0.953125 0.015625 1.3125 0.015625 C 1.515625 0.015625 1.65625 -0.078125 1.71875 -0.140625 C 1.71875 -0.15625 1.75 -0.171875 1.75 -0.171875 C 1.75 -0.171875 1.765625 -0.03125 1.765625 0.015625 C 1.765625 0.328125 1.6875 1.046875 1.0625 1.671875 C 0.953125 1.78125 0.953125 1.796875 0.953125 1.828125 C 0.953125 1.90625 1 1.9375 1.046875 1.9375 C 1.15625 1.9375 1.984375 1.1875 1.984375 0.015625 Z M 1.984375 0.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<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-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 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-9">
|
||||
<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-10">
|
||||
<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-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.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-12">
|
||||
<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-13">
|
||||
<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-14">
|
||||
<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-15">
|
||||
<path style="stroke:none;" d="M 1.90625 -4.453125 C 1.90625 -4.71875 1.75 -4.984375 1.390625 -4.984375 C 1.1875 -4.984375 1.046875 -4.890625 0.984375 -4.828125 C 0.984375 -4.8125 0.953125 -4.796875 0.953125 -4.796875 C 0.953125 -4.796875 0.9375 -4.9375 0.9375 -4.96875 C 0.9375 -5.296875 1 -6.015625 1.640625 -6.625 C 1.75 -6.75 1.75 -6.765625 1.75 -6.796875 C 1.75 -6.875 1.703125 -6.90625 1.65625 -6.90625 C 1.546875 -6.90625 0.71875 -6.15625 0.71875 -4.96875 C 0.71875 -4.375 0.953125 -3.921875 1.390625 -3.921875 C 1.734375 -3.921875 1.90625 -4.203125 1.90625 -4.453125 Z M 1.90625 -4.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-16">
|
||||
<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-17">
|
||||
<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-18">
|
||||
<path style="stroke:none;" d="M 1.90625 -4.453125 C 1.90625 -4.71875 1.75 -4.984375 1.390625 -4.984375 C 1.1875 -4.984375 1.046875 -4.890625 0.984375 -4.828125 C 0.984375 -4.8125 0.953125 -4.796875 0.953125 -4.796875 C 0.953125 -4.796875 0.9375 -4.9375 0.9375 -4.96875 C 0.9375 -5.296875 1 -6.015625 1.640625 -6.625 C 1.75 -6.75 1.75 -6.765625 1.75 -6.796875 C 1.75 -6.875 1.703125 -6.90625 1.65625 -6.90625 C 1.546875 -6.90625 0.71875 -6.15625 0.71875 -4.96875 C 0.71875 -4.375 0.953125 -3.921875 1.390625 -3.921875 C 1.734375 -3.921875 1.90625 -4.203125 1.90625 -4.453125 Z M 3.84375 -4.453125 C 3.84375 -4.71875 3.671875 -4.984375 3.3125 -4.984375 C 3.125 -4.984375 2.984375 -4.890625 2.921875 -4.828125 C 2.90625 -4.8125 2.890625 -4.796875 2.890625 -4.796875 C 2.890625 -4.796875 2.875 -4.9375 2.875 -4.96875 C 2.875 -5.296875 2.9375 -6.015625 3.5625 -6.625 C 3.6875 -6.75 3.6875 -6.765625 3.6875 -6.796875 C 3.6875 -6.875 3.640625 -6.90625 3.59375 -6.90625 C 3.484375 -6.90625 2.65625 -6.15625 2.65625 -4.96875 C 2.65625 -4.375 2.890625 -3.921875 3.3125 -3.921875 C 3.671875 -3.921875 3.84375 -4.203125 3.84375 -4.453125 Z M 3.84375 -4.453125 "/>
|
||||
</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 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-21">
|
||||
<path style="stroke:none;" d="M 5.25 1.9375 L 5.25 1.625 C 4.578125 1.625 4.46875 1.625 4.46875 1.171875 L 4.46875 -4.40625 L 4.25 -4.40625 L 3.875 -3.5 C 3.75 -3.78125 3.34375 -4.40625 2.546875 -4.40625 C 1.390625 -4.40625 0.34375 -3.4375 0.34375 -2.140625 C 0.34375 -0.890625 1.3125 0.109375 2.46875 0.109375 C 3.15625 0.109375 3.5625 -0.3125 3.78125 -0.609375 L 3.78125 1.171875 C 3.78125 1.625 3.671875 1.625 3.015625 1.625 L 3.015625 1.9375 L 4.125 1.90625 Z M 3.8125 -1.359375 C 3.8125 -1.03125 3.640625 -0.75 3.421875 -0.515625 C 3.296875 -0.375 2.96875 -0.109375 2.5 -0.109375 C 1.78125 -0.109375 1.171875 -1 1.171875 -2.140625 C 1.171875 -3.328125 1.859375 -4.15625 2.609375 -4.15625 C 3.40625 -4.15625 3.8125 -3.296875 3.8125 -2.765625 Z M 3.8125 -1.359375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-22">
|
||||
<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-23">
|
||||
<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-24">
|
||||
<path style="stroke:none;" d="M 2.046875 -5.875 C 2.046875 -6.46875 1.8125 -6.921875 1.390625 -6.921875 C 1.03125 -6.921875 0.859375 -6.65625 0.859375 -6.390625 C 0.859375 -6.125 1.03125 -5.859375 1.390625 -5.859375 C 1.578125 -5.859375 1.71875 -5.96875 1.78125 -6.015625 C 1.796875 -6.046875 1.8125 -6.046875 1.8125 -6.046875 C 1.8125 -6.046875 1.828125 -5.90625 1.828125 -5.875 C 1.828125 -5.546875 1.765625 -4.828125 1.140625 -4.21875 C 1.015625 -4.09375 1.015625 -4.078125 1.015625 -4.046875 C 1.015625 -3.984375 1.0625 -3.9375 1.109375 -3.9375 C 1.21875 -3.9375 2.046875 -4.6875 2.046875 -5.875 Z M 3.984375 -5.875 C 3.984375 -6.46875 3.75 -6.921875 3.3125 -6.921875 C 2.96875 -6.921875 2.796875 -6.65625 2.796875 -6.390625 C 2.796875 -6.125 2.953125 -5.859375 3.3125 -5.859375 C 3.515625 -5.859375 3.65625 -5.96875 3.71875 -6.015625 C 3.734375 -6.046875 3.75 -6.046875 3.75 -6.046875 C 3.75 -6.046875 3.765625 -5.90625 3.765625 -5.875 C 3.765625 -5.546875 3.703125 -4.828125 3.078125 -4.21875 C 2.953125 -4.09375 2.953125 -4.078125 2.953125 -4.046875 C 2.953125 -3.984375 3 -3.9375 3.046875 -3.9375 C 3.15625 -3.9375 3.984375 -4.6875 3.984375 -5.875 Z M 3.984375 -5.875 "/>
|
||||
</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="132.661"/>
|
||||
<use xlink:href="#glyph0-2" x="144.448347" y="132.661"/>
|
||||
<use xlink:href="#glyph0-3" x="151.228893" y="132.661"/>
|
||||
<use xlink:href="#glyph0-4" x="153.996503" y="132.661"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="162.849269" y="132.661"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="164.789984" y="132.661"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="169.769291" y="132.661"/>
|
||||
<use xlink:href="#glyph0-8" x="174.197667" y="132.661"/>
|
||||
<use xlink:href="#glyph0-9" x="178.100017" y="132.661"/>
|
||||
<use xlink:href="#glyph0-10" x="182.030263" y="132.661"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-11" x="186.179686" y="132.661"/>
|
||||
<use xlink:href="#glyph0-12" x="191.714907" y="132.661"/>
|
||||
<use xlink:href="#glyph0-10" x="196.696207" y="132.661"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-11" x="200.84563" y="132.661"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-13" x="206.101897" y="132.661"/>
|
||||
<use xlink:href="#glyph0-7" x="209.976352" y="132.661"/>
|
||||
<use xlink:href="#glyph0-14" x="214.404728" y="132.661"/>
|
||||
<use xlink:href="#glyph0-13" x="217.172338" y="132.661"/>
|
||||
<use xlink:href="#glyph0-7" x="221.046794" y="132.661"/>
|
||||
<use xlink:href="#glyph0-9" x="225.475169" y="132.661"/>
|
||||
<use xlink:href="#glyph0-15" x="229.405415" y="132.661"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-16" x="235.500534" y="132.661"/>
|
||||
<use xlink:href="#glyph0-3" x="241.588679" y="132.661"/>
|
||||
<use xlink:href="#glyph0-13" x="244.356289" y="132.661"/>
|
||||
<use xlink:href="#glyph0-12" x="248.230744" y="132.661"/>
|
||||
<use xlink:href="#glyph0-13" x="253.212044" y="132.661"/>
|
||||
<use xlink:href="#glyph0-17" x="257.086499" y="132.661"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-18" x="258.469308" y="132.661"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-18" x="139.746" y="156.572"/>
|
||||
<use xlink:href="#glyph0-19" x="144.448347" y="156.572"/>
|
||||
<use xlink:href="#glyph0-4" x="151.920297" y="156.572"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="160.773064" y="156.572"/>
|
||||
<use xlink:href="#glyph0-4" x="167.553609" y="156.572"/>
|
||||
<use xlink:href="#glyph0-20" x="173.08883" y="156.572"/>
|
||||
<use xlink:href="#glyph0-14" x="178.07013" y="156.572"/>
|
||||
<use xlink:href="#glyph0-3" x="180.83774" y="156.572"/>
|
||||
<use xlink:href="#glyph0-9" x="183.60535" y="156.572"/>
|
||||
<use xlink:href="#glyph0-11" x="187.535596" y="156.572"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-21" x="196.388362" y="156.572"/>
|
||||
<use xlink:href="#glyph0-22" x="201.646623" y="156.572"/>
|
||||
<use xlink:href="#glyph0-23" x="207.181843" y="156.572"/>
|
||||
<use xlink:href="#glyph0-13" x="212.163143" y="156.572"/>
|
||||
<use xlink:href="#glyph0-7" x="216.037598" y="156.572"/>
|
||||
<use xlink:href="#glyph0-17" x="220.465974" y="156.572"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-24" x="221.848783" y="156.572"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 24 KiB |
15
sections/german/05/zitate.tex
Normal file
@ -0,0 +1,15 @@
|
||||
\documentclass[a4paper]{article}
|
||||
\usepackage{lmodern}
|
||||
\usepackage{amssymb,amsmath}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage[ngerman]{babel}
|
||||
\usepackage{hyperref}
|
||||
\usepackage[autostyle=true]{csquotes}
|
||||
\begin{document}
|
||||
\thispagestyle{empty}
|
||||
\parbox{.5\linewidth}{
|
||||
\enquote{Ein \enquote{verschachteltes} Zitat.}\\\\
|
||||
\foreignquote{english}{An English quote.}
|
||||
}
|
||||
\end{document}
|
||||
@ -9,20 +9,15 @@
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2>Hervorhebungen</h2>
|
||||
<p>TODO `\emph{}` und was äquivalentes zu `<strong>`</p>
|
||||
<p>Für Hervorhebungen im Fließtext eignet sich am besten der semantische Befehl `\emph{}` *(emphasis)*, der sich auch schachteln lässt:</p>
|
||||
<pre class="lang-tex hljs"><code>\emph{Wenn man in einem ganzen Haufen
|
||||
von wichtigem Text \emph{noch
|
||||
wichtigeren Text} verstecken will,
|
||||
hilft die Verschachtelung von
|
||||
Emphasen.}</code></pre>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
TODO
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Hervorhebungen schachteln</h2>
|
||||
<p>Innerhalb kursiver Hervorhebung kann man auch den Befehl `\emph{text}` verwenden, um Passagen von der Kursivierung auszunehmen:</p>
|
||||
<pre class="lang-tex hljs"><code>\textit{Very \emph{Important} Stuff}</code></pre>
|
||||
<img src="sections/german/06/hervorhebungen-crop.svg">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -31,32 +26,38 @@
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2>Optische Auszeichnungen</h2>
|
||||
<p>
|
||||
<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{Very Important Stuff}</code></td></tr>
|
||||
<tr><td>kursiv (italics)</td><td><code>\textit{Very Important Stuff}</code></td></tr>
|
||||
<tr><td>Kapitälchen (small capitals)</td><td><code>\textsc{Very Important Stuff}</code></td></tr>
|
||||
<tr><td>dicktengleich (teletypefont)</td><td><code>\texttt{Very Important Stuff}</code></td></tr>
|
||||
<tr><td>geneigt (slanted)</td><td><code>\textsl{Very Important Stuff)</code></td></tr>
|
||||
<tr><td>unterstrichen</td><td><code>\underline{Very Important Stuff}</code></td></tr>
|
||||
<tr><td>hochgestellt</td><td><code>\textsuperscript{Very Important Stuff}</code></td></tr>
|
||||
<tr><td>tiefgestellt</td><td><code>\textsubscript{Very Important Stuff}</code></td></tr>
|
||||
<tr><td>fett (bold face)</td><td><code>\textbf{important}</code></td></tr>
|
||||
<tr><td>kursiv (italics)</td><td><code>\textit{important}</code></td></tr>
|
||||
<tr><td>Kapitälchen (small caps)</td><td><code>\textsc{important}</code></td></tr>
|
||||
<tr><td>dicktengleich (teletype)</td><td><code>\texttt{important}</code></td></tr>
|
||||
<tr><td>geneigt (slanted)</td><td><code>\textsl{important)</code></td></tr>
|
||||
<tr><td>unterstrichen</td><td><code>\underline{important}</code></td></tr>
|
||||
<tr><td>tiefgestellt</td><td><code>\textsubscript{…}</code></td></tr>
|
||||
<tr><td>hochgestellt</td><td><code>\textsuperscript{…}</code></td></tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/06/hervorhebungen.png">
|
||||
<img src="sections/german/06/hervorhebungen-crop.svg">
|
||||
<img src="sections/german/06/optische-auszeichnungen-crop.svg">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2>Auszeichnungen schachteln</h2>
|
||||
<p>Problemlos möglich:</p>
|
||||
<pre class="lang-tex hljs"><code>\textbf{Very \textit{Important Stuff}}</code></pre>
|
||||
<p>Möglich, solange die verwendete Schrift den entsprechenden Schnitt enthält:</p>
|
||||
<pre class="lang-tex hljs"><code>\textbf{Very
|
||||
\textit{Important
|
||||
\textsc{Stuff}
|
||||
}
|
||||
}</code></pre>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/06/auszeichnungen-schachteln-crop.svg">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -67,10 +68,9 @@
|
||||
<h2>Schriftgröße</h2>
|
||||
<div class="box warning">
|
||||
<p><strong>Ein gutgemeinter Rat: Better Call ~~Saul~~ LaTeX!</strong></p>
|
||||
<p>Vgl. Abschnitt zu Syntax und Semantik:<br>
|
||||
Konsistentes Aussehen über das gesamte Dokument hinweg gewünscht?</p>
|
||||
<p>Voreinstellungen von LaTeX zur Schriftgröße verschiedener Textelemente (Titel, Fließtext, Fußnoten) vertrauen!<br>
|
||||
Das heißt im Umkehrschluss: Möglichst wenig manuell an Schriftgrößen herumschrauben.</p>
|
||||
<p>Konsistentes Aussehen über das gesamte Dokument hinweg gewünscht?</p>
|
||||
<p>Voreinstellungen von LaTeX zur Schriftgröße verschiedener Textelemente (Titel, Fließtext, Fußnoten) vertrauen!</p>
|
||||
<p>Das heißt im Umkehrschluss: Möglichst wenig manuell an Schriftgrößen herumschrauben.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -80,7 +80,7 @@
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Schriftgröße</h2>
|
||||
<h3>normalsize</h3>
|
||||
<h3>`normalsize`</h3>
|
||||
<ul>
|
||||
<li>Wird für den Fließtext verwendet</li>
|
||||
<li>Standard: 10pt</li>
|
||||
@ -96,9 +96,8 @@
|
||||
<div class="layout-content">
|
||||
<h2>Schriftgröße</h2>
|
||||
<h3>Voreingestellte Schriftgrößen</h3>
|
||||
<p>Syntax:</p>
|
||||
<pre class="lang-tex hljs"><code>{\fontsize ein Textabschnitt}</code></pre>
|
||||
<p>Zur Auswahl: immer relativ zu normalsize</p>
|
||||
<p>Zur Auswahl: immer relativ zu `normalsize`</p>
|
||||
<pre class="lang-tex hljs"><code>{\tiny Wenn}
|
||||
{\footnotesize du}
|
||||
{\small das}
|
||||
@ -110,7 +109,7 @@
|
||||
{\Huge Brille.}</code></pre>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/06/schriftgroesse_optiker.png">
|
||||
<img class="thin-padding" src="sections/german/06/schriftgroesse-optiker-crop.svg">
|
||||
</div>
|
||||
|
||||
---
|
||||
@ -119,7 +118,7 @@
|
||||
<div class="layout-content">
|
||||
<h2>Schriftgröße</h2>
|
||||
<h3>Manuelle Konfiguration möglich</h3>
|
||||
<pre class="lang-tex hljs"><code>\fontsize{<Schriftgröße>}{<Zeilenhöhe>}
|
||||
<pre class="lang-tex hljs"><code>\fontsize{<schriftgröße>}{<zeilenhöhe>}
|
||||
\selectfont</code></pre>
|
||||
<p>Beispiel:</p>
|
||||
<pre class="lang-tex hljs"><code>Das ist Text in normaler Schriftgröße.
|
||||
@ -132,23 +131,39 @@ wirklich riesiger Schrift.
|
||||
Back to normal.</code></pre>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/06/schriftgroesse_fontsize_befehl.png">
|
||||
<img class="thin-padding" src="sections/german/06/schriftgroesse-fontsize-befehl-crop.svg">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
## URLs
|
||||
|
||||
Paket hyperref mit `\url` sorgt für zeichentreue Wiedergabe und bindestrichlose Umbrüche
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2>URLs</h2>
|
||||
<p>Das Paket `hyperref` stellt den Befehl `\url{}` bereit, der URLs</p>
|
||||
<ul>
|
||||
<li>zeichentreu</li>
|
||||
<li>mit bindestrichlosen Umbrüchen</li>
|
||||
<li>mit gut unterscheidbaren Zeichen</li>
|
||||
<li>im PDF anklickbar</li>
|
||||
</ul>
|
||||
<p>wiedergibt.</p>
|
||||
<pre class="lang-tex hljs">`\url{https://www.latex-project.org/}`</pre>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/06/url-crop.svg">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<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="5">Text hervorheben</h2>
|
||||
<ul>
|
||||
<li class="fragment">...</li>
|
||||
<li>**Betont** das Wort »Pakete« in Abschnitt 1.1.2 mit `\emph{…}`.</li>
|
||||
<li class="fragment">Probiert auch an beliebigen Stellen **optische Hervorhebungen** aus, entfernt sie aber wieder, wenn ihr ein aufgeräumtes Dokument erhalten wollt.</li>
|
||||
<li class="fragment">Auf der zweiten Seite des Dokuments steht ein Absatz zum LaTeX-Wochenende. Ergänzt dort einen **Link** zum VC-Kurs.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
90
sections/german/06/auszeichnungen-schachteln-crop.svg
Normal file
@ -0,0 +1,90 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="108pt" height="10pt" viewBox="0 0 108 10" 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 8.390625 -6.375 L 8.390625 -6.84375 L 7.265625 -6.8125 C 6.875 -6.8125 6.34375 -6.8125 5.96875 -6.84375 L 5.96875 -6.375 C 6.046875 -6.375 6.84375 -6.375 6.84375 -6.25 C 6.84375 -6.203125 6.8125 -6.15625 6.796875 -6.125 L 4.78125 -1.59375 L 2.65625 -6.375 L 3.59375 -6.375 L 3.59375 -6.84375 C 3.21875 -6.8125 2.265625 -6.8125 1.828125 -6.8125 C 1.453125 -6.8125 0.609375 -6.8125 0.265625 -6.84375 L 0.265625 -6.375 L 1.171875 -6.375 L 3.921875 -0.171875 C 4 0 4.046875 0.078125 4.328125 0.078125 C 4.484375 0.078125 4.609375 0.078125 4.71875 -0.15625 L 7.375 -6.15625 C 7.4375 -6.28125 7.484375 -6.375 8.203125 -6.375 Z M 8.390625 -6.375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 4.921875 -1.171875 C 4.921875 -1.34375 4.734375 -1.34375 4.6875 -1.34375 C 4.515625 -1.34375 4.5 -1.296875 4.4375 -1.140625 C 4.234375 -0.65625 3.65625 -0.34375 3.015625 -0.34375 C 1.609375 -0.34375 1.59375 -1.671875 1.59375 -2.171875 L 4.609375 -2.171875 C 4.828125 -2.171875 4.921875 -2.171875 4.921875 -2.4375 C 4.921875 -2.75 4.859375 -3.484375 4.359375 -3.984375 C 4 -4.34375 3.46875 -4.515625 2.78125 -4.515625 C 1.1875 -4.515625 0.3125 -3.484375 0.3125 -2.25 C 0.3125 -0.90625 1.3125 0.0625 2.921875 0.0625 C 4.5 0.0625 4.921875 -1 4.921875 -1.171875 Z M 3.984375 -2.5 L 1.59375 -2.5 C 1.609375 -2.890625 1.625 -3.3125 1.828125 -3.640625 C 2.09375 -4.03125 2.5 -4.15625 2.78125 -4.15625 C 3.953125 -4.15625 3.96875 -2.84375 3.984375 -2.5 Z M 3.984375 -2.5 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 4.40625 -3.671875 C 4.40625 -4.203125 3.875 -4.484375 3.34375 -4.484375 C 2.65625 -4.484375 2.25 -3.984375 2.03125 -3.359375 L 2.03125 -4.484375 L 0.375 -4.40625 L 0.375 -3.9375 C 0.984375 -3.9375 1.0625 -3.9375 1.0625 -3.546875 L 1.0625 -0.46875 L 0.375 -0.46875 L 0.375 0 L 1.625 -0.03125 C 2 -0.03125 2.640625 -0.03125 3 0 L 3 -0.46875 L 2.140625 -0.46875 L 2.140625 -2.21875 C 2.140625 -2.90625 2.375 -4.125 3.375 -4.125 C 3.375 -4.125 3.1875 -3.953125 3.1875 -3.671875 C 3.1875 -3.265625 3.515625 -3.0625 3.796875 -3.0625 C 4.09375 -3.0625 4.40625 -3.265625 4.40625 -3.671875 Z M 4.40625 -3.671875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 5.78125 -3.953125 L 5.78125 -4.421875 C 5.546875 -4.40625 5.25 -4.390625 5 -4.390625 L 4.09375 -4.421875 L 4.09375 -3.953125 C 4.09375 -3.953125 4.5625 -3.953125 4.5625 -3.84375 L 4.5 -3.71875 L 3.359375 -1.265625 L 2.09375 -3.953125 L 2.625 -3.953125 L 2.625 -4.421875 L 1.390625 -4.390625 L 0.265625 -4.421875 L 0.265625 -3.953125 L 0.890625 -3.953125 L 2.765625 0 L 2.53125 0.484375 C 2.3125 0.953125 2 1.640625 1.28125 1.640625 C 1.140625 1.640625 1.125 1.625 1.046875 1.59375 C 1.140625 1.5625 1.359375 1.421875 1.359375 1.0625 C 1.359375 0.734375 1.125 0.5 0.78125 0.5 C 0.515625 0.5 0.21875 0.6875 0.21875 1.078125 C 0.21875 1.578125 0.6875 2 1.28125 2 C 2.046875 2 2.625 1.375 2.90625 0.8125 L 5.046875 -3.75 C 5.109375 -3.890625 5.140625 -3.953125 5.78125 -3.953125 Z M 5.78125 -3.953125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 5.71875 -2.03125 C 5.71875 -3.125 4.921875 -3.9375 4 -4.125 L 2.5625 -4.4375 C 2.15625 -4.53125 1.609375 -4.859375 1.609375 -5.46875 C 1.609375 -5.90625 1.890625 -6.515625 2.875 -6.515625 C 3.671875 -6.515625 4.6875 -6.1875 4.921875 -4.828125 C 4.953125 -4.578125 4.953125 -4.5625 5.15625 -4.5625 C 5.40625 -4.5625 5.40625 -4.609375 5.40625 -4.84375 L 5.40625 -6.671875 C 5.40625 -6.859375 5.40625 -6.953125 5.21875 -6.953125 C 5.140625 -6.953125 5.140625 -6.9375 5.03125 -6.84375 L 4.578125 -6.40625 C 4 -6.859375 3.34375 -6.953125 2.875 -6.953125 C 1.359375 -6.953125 0.640625 -5.984375 0.640625 -4.9375 C 0.640625 -4.296875 0.96875 -3.84375 1.171875 -3.625 C 1.671875 -3.125 2 -3.0625 3.09375 -2.828125 C 3.96875 -2.625 4.140625 -2.609375 4.359375 -2.390625 C 4.5 -2.25 4.75 -1.984375 4.75 -1.53125 C 4.75 -1.046875 4.5 -0.359375 3.453125 -0.359375 C 2.703125 -0.359375 1.1875 -0.5625 1.109375 -2.046875 C 1.09375 -2.21875 1.09375 -2.265625 0.875 -2.265625 C 0.640625 -2.265625 0.640625 -2.21875 0.640625 -1.984375 L 0.640625 -0.171875 C 0.640625 0.015625 0.640625 0.109375 0.8125 0.109375 C 0.90625 0.109375 0.921875 0.09375 1 0.015625 L 1.46875 -0.4375 C 2.125 0.046875 3.046875 0.109375 3.453125 0.109375 C 5.109375 0.109375 5.71875 -1.015625 5.71875 -2.03125 Z M 5.71875 -2.03125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 3.8125 -1.234375 L 3.8125 -1.765625 L 3.34375 -1.765625 L 3.34375 -1.25 C 3.34375 -0.578125 3.015625 -0.34375 2.734375 -0.34375 C 2.15625 -0.34375 2.15625 -0.984375 2.15625 -1.203125 L 2.15625 -3.953125 L 3.625 -3.953125 L 3.625 -4.421875 L 2.15625 -4.421875 L 2.15625 -6.328125 L 1.6875 -6.328125 C 1.6875 -5.328125 1.203125 -4.34375 0.203125 -4.3125 L 0.203125 -3.953125 L 1.03125 -3.953125 L 1.03125 -1.21875 C 1.03125 -0.15625 1.890625 0.0625 2.609375 0.0625 C 3.359375 0.0625 3.8125 -0.515625 3.8125 -1.234375 Z M 3.8125 -1.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 6.125 0 L 6.125 -0.46875 C 5.515625 -0.46875 5.4375 -0.46875 5.4375 -0.859375 L 5.4375 -4.484375 L 3.625 -4.40625 L 3.625 -3.9375 C 4.234375 -3.9375 4.3125 -3.9375 4.3125 -3.546875 L 4.3125 -1.640625 C 4.3125 -0.828125 3.796875 -0.296875 3.078125 -0.296875 C 2.296875 -0.296875 2.265625 -0.546875 2.265625 -1.09375 L 2.265625 -4.484375 L 0.453125 -4.40625 L 0.453125 -3.9375 C 1.0625 -3.9375 1.140625 -3.9375 1.140625 -3.546875 L 1.140625 -1.21875 C 1.140625 -0.15625 1.9375 0.0625 2.9375 0.0625 C 3.1875 0.0625 3.90625 0.0625 4.359375 -0.71875 L 4.359375 0.0625 Z M 6.125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 7.4375 -6.109375 C 7.4375 -6.546875 7.0625 -6.984375 6.296875 -6.984375 C 5.9375 -6.984375 5.359375 -6.921875 4.890625 -6.625 C 4.46875 -6.984375 3.921875 -6.984375 3.703125 -6.984375 C 2.484375 -6.984375 1.0625 -6.59375 1.0625 -5.421875 L 1.0625 -4.421875 L 0.3125 -4.421875 L 0.3125 -3.953125 L 1.0625 -3.953125 L 1.0625 -0.46875 L 0.375 -0.46875 L 0.375 0 L 1.59375 -0.03125 L 2.828125 0 L 2.828125 -0.46875 L 2.140625 -0.46875 L 2.140625 -3.953125 L 4.234375 -3.953125 L 4.234375 -0.46875 L 3.53125 -0.46875 L 3.53125 0 L 4.796875 -0.03125 C 5.171875 -0.03125 5.8125 -0.03125 6.171875 0 L 6.171875 -0.46875 L 5.296875 -0.46875 L 5.296875 -3.953125 L 6.46875 -3.953125 L 6.46875 -4.421875 L 5.25 -4.421875 L 5.25 -5.4375 C 5.25 -6.578125 6.078125 -6.625 6.265625 -6.625 C 6.34375 -6.625 6.375 -6.609375 6.4375 -6.59375 C 6.296875 -6.484375 6.203125 -6.296875 6.203125 -6.109375 C 6.203125 -5.6875 6.5625 -5.5 6.8125 -5.5 C 7.125 -5.5 7.4375 -5.703125 7.4375 -6.109375 Z M 4.28125 -6.515625 C 4.25 -6.5 3.984375 -6.34375 3.984375 -5.984375 C 3.984375 -5.8125 4.046875 -5.609375 4.234375 -5.484375 L 4.234375 -4.421875 L 2.078125 -4.421875 L 2.078125 -5.40625 C 2.078125 -6.234375 2.734375 -6.625 3.640625 -6.625 C 3.953125 -6.625 4.171875 -6.5625 4.28125 -6.515625 Z M 4.28125 -6.515625 "/>
|
||||
</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 5.828125 -6.65625 C 5.828125 -6.6875 5.828125 -6.84375 5.609375 -6.84375 C 5.109375 -6.84375 4.578125 -6.8125 4.0625 -6.8125 C 3.53125 -6.8125 2.984375 -6.84375 2.46875 -6.84375 C 2.359375 -6.84375 2.1875 -6.84375 2.1875 -6.546875 C 2.1875 -6.375 2.359375 -6.375 2.5 -6.375 L 2.734375 -6.375 C 2.796875 -6.375 3.140625 -6.34375 3.25 -6.34375 L 1.828125 -0.640625 C 1.796875 -0.515625 1.78125 -0.5 1.578125 -0.484375 C 1.46875 -0.46875 1.28125 -0.46875 1.171875 -0.46875 L 0.9375 -0.46875 C 0.75 -0.46875 0.59375 -0.46875 0.59375 -0.171875 C 0.59375 -0.046875 0.6875 0 0.8125 0 C 1.3125 0 1.84375 -0.03125 2.359375 -0.03125 C 2.875 -0.03125 3.421875 0 3.9375 0 C 4.046875 0 4.234375 0 4.234375 -0.296875 C 4.234375 -0.46875 4.0625 -0.46875 3.921875 -0.46875 L 3.671875 -0.46875 L 3.15625 -0.484375 L 4.578125 -6.1875 C 4.609375 -6.328125 4.625 -6.34375 4.828125 -6.34375 C 4.9375 -6.359375 5.109375 -6.375 5.234375 -6.375 L 5.484375 -6.375 C 5.65625 -6.375 5.828125 -6.375 5.828125 -6.65625 Z M 5.828125 -6.65625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<path style="stroke:none;" d="M 9.75 -1.46875 C 9.75 -1.609375 9.625 -1.609375 9.46875 -1.609375 C 9.28125 -1.609375 9.234375 -1.609375 9.1875 -1.484375 C 9.109375 -1.21875 8.84375 -0.28125 8.28125 -0.28125 C 8.21875 -0.28125 8.140625 -0.28125 8.140625 -0.453125 C 8.140625 -0.671875 8.234375 -0.921875 8.359375 -1.265625 C 8.5 -1.640625 8.953125 -2.8125 8.953125 -3.375 C 8.953125 -4.203125 8.359375 -4.5 7.578125 -4.5 C 6.78125 -4.5 6.3125 -4.09375 5.984375 -3.75 C 5.765625 -4.5 4.859375 -4.5 4.640625 -4.5 C 4.4375 -4.5 3.78125 -4.5 3.125 -3.8125 C 2.921875 -4.390625 2.328125 -4.5 2 -4.5 C 1.53125 -4.5 1.28125 -4.171875 1.15625 -3.96875 C 0.890625 -3.546875 0.765625 -2.984375 0.765625 -2.953125 C 0.765625 -2.8125 0.890625 -2.8125 1.046875 -2.8125 C 1.28125 -2.8125 1.296875 -2.828125 1.359375 -3.078125 C 1.453125 -3.40625 1.625 -4.140625 1.96875 -4.140625 C 2.078125 -4.140625 2.15625 -4.0625 2.15625 -3.84375 C 2.15625 -3.65625 2.140625 -3.5625 2.09375 -3.40625 L 1.390625 -0.5625 C 1.34375 -0.421875 1.34375 -0.40625 1.34375 -0.34375 C 1.34375 -0.046875 1.578125 0.078125 1.796875 0.078125 C 1.859375 0.078125 2.296875 0.0625 2.421875 -0.453125 L 3.046875 -2.9375 C 3.109375 -3.21875 3.671875 -4.140625 4.578125 -4.140625 C 5 -4.140625 5 -3.765625 5 -3.578125 C 5 -3.328125 4.96875 -3.15625 4.859375 -2.734375 L 4.4375 -1.0625 C 4.375 -0.8125 4.28125 -0.421875 4.28125 -0.34375 C 4.28125 -0.046875 4.515625 0.078125 4.71875 0.078125 C 4.84375 0.078125 5.234375 0.03125 5.359375 -0.484375 L 5.96875 -2.9375 C 6.046875 -3.21875 6.609375 -4.140625 7.5 -4.140625 C 7.9375 -4.140625 7.9375 -3.765625 7.9375 -3.578125 C 7.9375 -2.984375 7.484375 -1.75 7.296875 -1.3125 C 7.203125 -1.0625 7.171875 -0.953125 7.171875 -0.8125 C 7.171875 -0.25 7.6875 0.078125 8.21875 0.078125 C 9.265625 0.078125 9.75 -1.265625 9.75 -1.46875 Z M 9.75 -1.46875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-3">
|
||||
<path style="stroke:none;" d="M 5.9375 -2.90625 C 5.9375 -4.09375 5.109375 -4.5 4.34375 -4.5 C 3.734375 -4.5 3.265625 -4.1875 3.03125 -4 C 2.84375 -4.34375 2.390625 -4.5 2 -4.5 C 1.53125 -4.5 1.28125 -4.171875 1.15625 -3.96875 C 0.890625 -3.546875 0.765625 -2.984375 0.765625 -2.953125 C 0.765625 -2.8125 0.890625 -2.8125 1.046875 -2.8125 C 1.28125 -2.8125 1.296875 -2.828125 1.359375 -3.078125 C 1.453125 -3.40625 1.625 -4.140625 1.96875 -4.140625 C 2.078125 -4.140625 2.15625 -4.0625 2.15625 -3.84375 C 2.15625 -3.65625 2.140625 -3.5625 2.09375 -3.40625 L 0.921875 1.3125 C 0.875 1.453125 0.875 1.46875 0.5625 1.46875 C 0.421875 1.46875 0.25 1.46875 0.25 1.75 C 0.25 1.875 0.34375 1.9375 0.4375 1.9375 C 0.71875 1.9375 1.03125 1.90625 1.328125 1.90625 C 1.671875 1.90625 2.03125 1.9375 2.375 1.9375 C 2.4375 1.9375 2.640625 1.9375 2.640625 1.640625 C 2.640625 1.46875 2.46875 1.46875 2.375 1.46875 C 2.234375 1.46875 2.078125 1.46875 1.9375 1.453125 L 2.359375 -0.234375 C 2.6875 0.046875 3.046875 0.078125 3.265625 0.078125 C 4.9375 0.078125 5.9375 -1.578125 5.9375 -2.90625 Z M 4.421875 -1.390625 C 4.078125 -0.421875 3.53125 -0.28125 3.265625 -0.28125 C 2.921875 -0.28125 2.640625 -0.5 2.53125 -0.890625 L 3.125 -3.25 C 3.140625 -3.3125 3.140625 -3.34375 3.15625 -3.421875 C 3.578125 -4 4 -4.140625 4.3125 -4.140625 C 4.53125 -4.140625 4.875 -4 4.875 -3.4375 C 4.875 -2.90625 4.53125 -1.671875 4.421875 -1.390625 Z M 4.421875 -1.390625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-4">
|
||||
<path style="stroke:none;" d="M 5.9375 -2.828125 C 5.9375 -3.859375 5.21875 -4.5 4.03125 -4.5 C 2.0625 -4.5 1.0625 -2.84375 1.0625 -1.59375 C 1.0625 -0.5625 1.78125 0.078125 2.953125 0.078125 C 4.921875 0.078125 5.9375 -1.578125 5.9375 -2.828125 Z M 4.34375 -1.234375 C 4.046875 -0.609375 3.484375 -0.28125 2.984375 -0.28125 C 2.625 -0.28125 2.15625 -0.453125 2.15625 -1.15625 C 2.15625 -1.546875 2.40625 -2.65625 2.65625 -3.1875 C 2.953125 -3.8125 3.515625 -4.140625 4.015625 -4.140625 C 4.359375 -4.140625 4.84375 -3.984375 4.84375 -3.265625 C 4.84375 -2.875 4.578125 -1.765625 4.34375 -1.234375 Z M 4.34375 -1.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-5">
|
||||
<path style="stroke:none;" d="M 5.609375 -3.625 C 5.609375 -4.140625 5.0625 -4.5 4.34375 -4.5 C 3.953125 -4.5 3.484375 -4.390625 3.0625 -3.96875 C 2.890625 -4.28125 2.5 -4.5 2 -4.5 C 1.53125 -4.5 1.28125 -4.171875 1.15625 -3.96875 C 0.890625 -3.546875 0.765625 -2.984375 0.765625 -2.953125 C 0.765625 -2.8125 0.890625 -2.8125 1.046875 -2.8125 C 1.28125 -2.8125 1.296875 -2.828125 1.359375 -3.078125 C 1.453125 -3.40625 1.625 -4.140625 1.96875 -4.140625 C 2.078125 -4.140625 2.15625 -4.0625 2.15625 -3.84375 C 2.15625 -3.65625 2.140625 -3.5625 2.09375 -3.40625 L 1.390625 -0.5625 C 1.34375 -0.421875 1.34375 -0.40625 1.34375 -0.34375 C 1.34375 -0.046875 1.578125 0.078125 1.796875 0.078125 C 1.859375 0.078125 2.296875 0.0625 2.421875 -0.453125 L 3.09375 -3.171875 C 3.15625 -3.40625 3.609375 -4.140625 4.3125 -4.140625 C 4.421875 -4.140625 4.65625 -4.140625 4.859375 -3.984375 C 4.390625 -3.765625 4.390625 -3.34375 4.390625 -3.3125 C 4.390625 -3.0625 4.578125 -2.84375 4.890625 -2.84375 C 5.265625 -2.84375 5.609375 -3.171875 5.609375 -3.625 Z M 5.609375 -3.625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-6">
|
||||
<path style="stroke:none;" d="M 4.171875 -1.46875 C 4.171875 -1.609375 4.046875 -1.609375 3.890625 -1.609375 C 3.671875 -1.609375 3.671875 -1.609375 3.59375 -1.453125 C 3.171875 -0.453125 2.6875 -0.28125 2.421875 -0.28125 C 2.328125 -0.28125 2.21875 -0.296875 2.21875 -0.59375 C 2.21875 -0.78125 2.234375 -0.859375 2.265625 -1.015625 L 3.015625 -3.953125 L 3.8125 -3.953125 C 3.984375 -3.953125 4.140625 -3.953125 4.140625 -4.25 C 4.140625 -4.421875 3.984375 -4.421875 3.84375 -4.421875 L 3.125 -4.421875 L 3.3125 -5.21875 C 3.390625 -5.46875 3.5 -5.90625 3.5 -5.984375 C 3.5 -6.21875 3.328125 -6.40625 3.046875 -6.40625 C 2.921875 -6.40625 2.546875 -6.34375 2.421875 -5.875 L 2.0625 -4.421875 L 1.25 -4.421875 C 1.078125 -4.421875 0.90625 -4.421875 0.90625 -4.140625 C 0.90625 -3.953125 1.078125 -3.953125 1.21875 -3.953125 L 1.9375 -3.953125 L 1.25 -1.171875 C 1.203125 -1.015625 1.203125 -0.953125 1.203125 -0.890625 C 1.203125 -0.265625 1.78125 0.078125 2.375 0.078125 C 3.515625 0.078125 4.171875 -1.3125 4.171875 -1.46875 Z M 4.171875 -1.46875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-7">
|
||||
<path style="stroke:none;" d="M 6.125 -1.46875 C 6.125 -1.609375 6 -1.609375 5.859375 -1.609375 C 5.609375 -1.609375 5.609375 -1.609375 5.53125 -1.359375 C 5.453125 -1.03125 5.28125 -0.28125 4.9375 -0.28125 C 4.8125 -0.28125 4.75 -0.359375 4.75 -0.59375 C 4.75 -0.78125 4.765625 -0.859375 4.8125 -1.015625 L 5.46875 -3.703125 C 5.515625 -3.859375 5.515625 -3.875 5.515625 -3.921875 C 5.515625 -4.140625 5.34375 -4.34375 5.0625 -4.34375 C 4.890625 -4.34375 4.71875 -4.25 4.59375 -4.125 C 4.28125 -4.453125 3.890625 -4.5 3.625 -4.5 C 1.953125 -4.5 0.953125 -2.84375 0.953125 -1.515625 C 0.953125 -0.328125 1.796875 0.078125 2.546875 0.078125 C 3.15625 0.078125 3.625 -0.234375 3.875 -0.421875 C 4.0625 -0.078125 4.5 0.078125 4.890625 0.078125 C 5.359375 0.078125 5.609375 -0.265625 5.734375 -0.453125 C 6 -0.875 6.125 -1.4375 6.125 -1.46875 Z M 3.75 -1 C 3.3125 -0.421875 2.90625 -0.28125 2.59375 -0.28125 C 2.359375 -0.28125 2.03125 -0.421875 2.03125 -0.984375 C 2.03125 -1.53125 2.375 -2.75 2.484375 -3.03125 C 2.828125 -4 3.375 -4.140625 3.625 -4.140625 C 3.984375 -4.140625 4.25 -3.921875 4.359375 -3.53125 L 3.78125 -1.171875 C 3.765625 -1.109375 3.765625 -1.078125 3.75 -1 Z M 3.75 -1 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-8">
|
||||
<path style="stroke:none;" d="M 6.8125 -1.46875 C 6.8125 -1.609375 6.6875 -1.609375 6.546875 -1.609375 C 6.34375 -1.609375 6.296875 -1.609375 6.265625 -1.484375 C 6.1875 -1.21875 5.90625 -0.28125 5.34375 -0.28125 C 5.296875 -0.28125 5.203125 -0.28125 5.203125 -0.453125 C 5.203125 -0.671875 5.296875 -0.921875 5.4375 -1.265625 C 5.578125 -1.640625 6.015625 -2.8125 6.015625 -3.375 C 6.015625 -4.203125 5.4375 -4.5 4.640625 -4.5 C 4.4375 -4.5 3.78125 -4.5 3.125 -3.8125 C 2.921875 -4.390625 2.328125 -4.5 2 -4.5 C 1.53125 -4.5 1.28125 -4.171875 1.15625 -3.96875 C 0.890625 -3.546875 0.765625 -2.984375 0.765625 -2.953125 C 0.765625 -2.8125 0.890625 -2.8125 1.046875 -2.8125 C 1.28125 -2.8125 1.296875 -2.828125 1.359375 -3.078125 C 1.453125 -3.40625 1.625 -4.140625 1.96875 -4.140625 C 2.078125 -4.140625 2.15625 -4.0625 2.15625 -3.84375 C 2.15625 -3.65625 2.140625 -3.5625 2.09375 -3.40625 L 1.390625 -0.5625 C 1.34375 -0.421875 1.34375 -0.40625 1.34375 -0.34375 C 1.34375 -0.046875 1.578125 0.078125 1.796875 0.078125 C 1.859375 0.078125 2.296875 0.0625 2.421875 -0.453125 L 3.046875 -2.9375 C 3.109375 -3.21875 3.671875 -4.140625 4.578125 -4.140625 C 5 -4.140625 5 -3.765625 5 -3.578125 C 5 -2.984375 4.546875 -1.75 4.359375 -1.3125 C 4.28125 -1.0625 4.25 -0.953125 4.25 -0.8125 C 4.25 -0.25 4.75 0.078125 5.296875 0.078125 C 6.328125 0.078125 6.8125 -1.265625 6.8125 -1.46875 Z M 6.8125 -1.46875 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="0.746" y="7.899"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="8.451075" y="7.899"/>
|
||||
<use xlink:href="#glyph0-3" x="13.702361" y="7.899"/>
|
||||
<use xlink:href="#glyph0-4" x="18.420649" y="7.899"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="28.288" y="7.899"/>
|
||||
<use xlink:href="#glyph1-2" x="32.987358" y="7.899"/>
|
||||
<use xlink:href="#glyph1-3" x="42.396038" y="7.899"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="47.697137" y="7.899"/>
|
||||
<use xlink:href="#glyph1-5" x="53.58603" y="7.899"/>
|
||||
<use xlink:href="#glyph1-6" x="58.584267" y="7.899"/>
|
||||
<use xlink:href="#glyph1-7" x="62.419868" y="7.899"/>
|
||||
<use xlink:href="#glyph1-8" x="68.30876" y="7.899"/>
|
||||
<use xlink:href="#glyph1-6" x="74.78445" y="7.899"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="83.364" y="7.899"/>
|
||||
<use xlink:href="#glyph0-6" x="89.729105" y="7.899"/>
|
||||
<use xlink:href="#glyph0-7" x="94.18438" y="7.899"/>
|
||||
<use xlink:href="#glyph0-8" x="100.549485" y="7.899"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 18 KiB |
90
sections/german/06/auszeichnungen-schachteln-orig.svg
Normal file
@ -0,0 +1,90 @@
|
||||
<?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 8.390625 -6.375 L 8.390625 -6.84375 L 7.265625 -6.8125 C 6.875 -6.8125 6.34375 -6.8125 5.96875 -6.84375 L 5.96875 -6.375 C 6.046875 -6.375 6.84375 -6.375 6.84375 -6.25 C 6.84375 -6.203125 6.8125 -6.15625 6.796875 -6.125 L 4.78125 -1.59375 L 2.65625 -6.375 L 3.59375 -6.375 L 3.59375 -6.84375 C 3.21875 -6.8125 2.265625 -6.8125 1.828125 -6.8125 C 1.453125 -6.8125 0.609375 -6.8125 0.265625 -6.84375 L 0.265625 -6.375 L 1.171875 -6.375 L 3.921875 -0.171875 C 4 0 4.046875 0.078125 4.328125 0.078125 C 4.484375 0.078125 4.609375 0.078125 4.71875 -0.15625 L 7.375 -6.15625 C 7.4375 -6.28125 7.484375 -6.375 8.203125 -6.375 Z M 8.390625 -6.375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 4.921875 -1.171875 C 4.921875 -1.34375 4.734375 -1.34375 4.6875 -1.34375 C 4.515625 -1.34375 4.5 -1.296875 4.4375 -1.140625 C 4.234375 -0.65625 3.65625 -0.34375 3.015625 -0.34375 C 1.609375 -0.34375 1.59375 -1.671875 1.59375 -2.171875 L 4.609375 -2.171875 C 4.828125 -2.171875 4.921875 -2.171875 4.921875 -2.4375 C 4.921875 -2.75 4.859375 -3.484375 4.359375 -3.984375 C 4 -4.34375 3.46875 -4.515625 2.78125 -4.515625 C 1.1875 -4.515625 0.3125 -3.484375 0.3125 -2.25 C 0.3125 -0.90625 1.3125 0.0625 2.921875 0.0625 C 4.5 0.0625 4.921875 -1 4.921875 -1.171875 Z M 3.984375 -2.5 L 1.59375 -2.5 C 1.609375 -2.890625 1.625 -3.3125 1.828125 -3.640625 C 2.09375 -4.03125 2.5 -4.15625 2.78125 -4.15625 C 3.953125 -4.15625 3.96875 -2.84375 3.984375 -2.5 Z M 3.984375 -2.5 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 4.40625 -3.671875 C 4.40625 -4.203125 3.875 -4.484375 3.34375 -4.484375 C 2.65625 -4.484375 2.25 -3.984375 2.03125 -3.359375 L 2.03125 -4.484375 L 0.375 -4.40625 L 0.375 -3.9375 C 0.984375 -3.9375 1.0625 -3.9375 1.0625 -3.546875 L 1.0625 -0.46875 L 0.375 -0.46875 L 0.375 0 L 1.625 -0.03125 C 2 -0.03125 2.640625 -0.03125 3 0 L 3 -0.46875 L 2.140625 -0.46875 L 2.140625 -2.21875 C 2.140625 -2.90625 2.375 -4.125 3.375 -4.125 C 3.375 -4.125 3.1875 -3.953125 3.1875 -3.671875 C 3.1875 -3.265625 3.515625 -3.0625 3.796875 -3.0625 C 4.09375 -3.0625 4.40625 -3.265625 4.40625 -3.671875 Z M 4.40625 -3.671875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 5.78125 -3.953125 L 5.78125 -4.421875 C 5.546875 -4.40625 5.25 -4.390625 5 -4.390625 L 4.09375 -4.421875 L 4.09375 -3.953125 C 4.09375 -3.953125 4.5625 -3.953125 4.5625 -3.84375 L 4.5 -3.71875 L 3.359375 -1.265625 L 2.09375 -3.953125 L 2.625 -3.953125 L 2.625 -4.421875 L 1.390625 -4.390625 L 0.265625 -4.421875 L 0.265625 -3.953125 L 0.890625 -3.953125 L 2.765625 0 L 2.53125 0.484375 C 2.3125 0.953125 2 1.640625 1.28125 1.640625 C 1.140625 1.640625 1.125 1.625 1.046875 1.59375 C 1.140625 1.5625 1.359375 1.421875 1.359375 1.0625 C 1.359375 0.734375 1.125 0.5 0.78125 0.5 C 0.515625 0.5 0.21875 0.6875 0.21875 1.078125 C 0.21875 1.578125 0.6875 2 1.28125 2 C 2.046875 2 2.625 1.375 2.90625 0.8125 L 5.046875 -3.75 C 5.109375 -3.890625 5.140625 -3.953125 5.78125 -3.953125 Z M 5.78125 -3.953125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 5.71875 -2.03125 C 5.71875 -3.125 4.921875 -3.9375 4 -4.125 L 2.5625 -4.4375 C 2.15625 -4.53125 1.609375 -4.859375 1.609375 -5.46875 C 1.609375 -5.90625 1.890625 -6.515625 2.875 -6.515625 C 3.671875 -6.515625 4.6875 -6.1875 4.921875 -4.828125 C 4.953125 -4.578125 4.953125 -4.5625 5.15625 -4.5625 C 5.40625 -4.5625 5.40625 -4.609375 5.40625 -4.84375 L 5.40625 -6.671875 C 5.40625 -6.859375 5.40625 -6.953125 5.21875 -6.953125 C 5.140625 -6.953125 5.140625 -6.9375 5.03125 -6.84375 L 4.578125 -6.40625 C 4 -6.859375 3.34375 -6.953125 2.875 -6.953125 C 1.359375 -6.953125 0.640625 -5.984375 0.640625 -4.9375 C 0.640625 -4.296875 0.96875 -3.84375 1.171875 -3.625 C 1.671875 -3.125 2 -3.0625 3.09375 -2.828125 C 3.96875 -2.625 4.140625 -2.609375 4.359375 -2.390625 C 4.5 -2.25 4.75 -1.984375 4.75 -1.53125 C 4.75 -1.046875 4.5 -0.359375 3.453125 -0.359375 C 2.703125 -0.359375 1.1875 -0.5625 1.109375 -2.046875 C 1.09375 -2.21875 1.09375 -2.265625 0.875 -2.265625 C 0.640625 -2.265625 0.640625 -2.21875 0.640625 -1.984375 L 0.640625 -0.171875 C 0.640625 0.015625 0.640625 0.109375 0.8125 0.109375 C 0.90625 0.109375 0.921875 0.09375 1 0.015625 L 1.46875 -0.4375 C 2.125 0.046875 3.046875 0.109375 3.453125 0.109375 C 5.109375 0.109375 5.71875 -1.015625 5.71875 -2.03125 Z M 5.71875 -2.03125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 3.8125 -1.234375 L 3.8125 -1.765625 L 3.34375 -1.765625 L 3.34375 -1.25 C 3.34375 -0.578125 3.015625 -0.34375 2.734375 -0.34375 C 2.15625 -0.34375 2.15625 -0.984375 2.15625 -1.203125 L 2.15625 -3.953125 L 3.625 -3.953125 L 3.625 -4.421875 L 2.15625 -4.421875 L 2.15625 -6.328125 L 1.6875 -6.328125 C 1.6875 -5.328125 1.203125 -4.34375 0.203125 -4.3125 L 0.203125 -3.953125 L 1.03125 -3.953125 L 1.03125 -1.21875 C 1.03125 -0.15625 1.890625 0.0625 2.609375 0.0625 C 3.359375 0.0625 3.8125 -0.515625 3.8125 -1.234375 Z M 3.8125 -1.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 6.125 0 L 6.125 -0.46875 C 5.515625 -0.46875 5.4375 -0.46875 5.4375 -0.859375 L 5.4375 -4.484375 L 3.625 -4.40625 L 3.625 -3.9375 C 4.234375 -3.9375 4.3125 -3.9375 4.3125 -3.546875 L 4.3125 -1.640625 C 4.3125 -0.828125 3.796875 -0.296875 3.078125 -0.296875 C 2.296875 -0.296875 2.265625 -0.546875 2.265625 -1.09375 L 2.265625 -4.484375 L 0.453125 -4.40625 L 0.453125 -3.9375 C 1.0625 -3.9375 1.140625 -3.9375 1.140625 -3.546875 L 1.140625 -1.21875 C 1.140625 -0.15625 1.9375 0.0625 2.9375 0.0625 C 3.1875 0.0625 3.90625 0.0625 4.359375 -0.71875 L 4.359375 0.0625 Z M 6.125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 7.4375 -6.109375 C 7.4375 -6.546875 7.0625 -6.984375 6.296875 -6.984375 C 5.9375 -6.984375 5.359375 -6.921875 4.890625 -6.625 C 4.46875 -6.984375 3.921875 -6.984375 3.703125 -6.984375 C 2.484375 -6.984375 1.0625 -6.59375 1.0625 -5.421875 L 1.0625 -4.421875 L 0.3125 -4.421875 L 0.3125 -3.953125 L 1.0625 -3.953125 L 1.0625 -0.46875 L 0.375 -0.46875 L 0.375 0 L 1.59375 -0.03125 L 2.828125 0 L 2.828125 -0.46875 L 2.140625 -0.46875 L 2.140625 -3.953125 L 4.234375 -3.953125 L 4.234375 -0.46875 L 3.53125 -0.46875 L 3.53125 0 L 4.796875 -0.03125 C 5.171875 -0.03125 5.8125 -0.03125 6.171875 0 L 6.171875 -0.46875 L 5.296875 -0.46875 L 5.296875 -3.953125 L 6.46875 -3.953125 L 6.46875 -4.421875 L 5.25 -4.421875 L 5.25 -5.4375 C 5.25 -6.578125 6.078125 -6.625 6.265625 -6.625 C 6.34375 -6.625 6.375 -6.609375 6.4375 -6.59375 C 6.296875 -6.484375 6.203125 -6.296875 6.203125 -6.109375 C 6.203125 -5.6875 6.5625 -5.5 6.8125 -5.5 C 7.125 -5.5 7.4375 -5.703125 7.4375 -6.109375 Z M 4.28125 -6.515625 C 4.25 -6.5 3.984375 -6.34375 3.984375 -5.984375 C 3.984375 -5.8125 4.046875 -5.609375 4.234375 -5.484375 L 4.234375 -4.421875 L 2.078125 -4.421875 L 2.078125 -5.40625 C 2.078125 -6.234375 2.734375 -6.625 3.640625 -6.625 C 3.953125 -6.625 4.171875 -6.5625 4.28125 -6.515625 Z M 4.28125 -6.515625 "/>
|
||||
</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 5.828125 -6.65625 C 5.828125 -6.6875 5.828125 -6.84375 5.609375 -6.84375 C 5.109375 -6.84375 4.578125 -6.8125 4.0625 -6.8125 C 3.53125 -6.8125 2.984375 -6.84375 2.46875 -6.84375 C 2.359375 -6.84375 2.1875 -6.84375 2.1875 -6.546875 C 2.1875 -6.375 2.359375 -6.375 2.5 -6.375 L 2.734375 -6.375 C 2.796875 -6.375 3.140625 -6.34375 3.25 -6.34375 L 1.828125 -0.640625 C 1.796875 -0.515625 1.78125 -0.5 1.578125 -0.484375 C 1.46875 -0.46875 1.28125 -0.46875 1.171875 -0.46875 L 0.9375 -0.46875 C 0.75 -0.46875 0.59375 -0.46875 0.59375 -0.171875 C 0.59375 -0.046875 0.6875 0 0.8125 0 C 1.3125 0 1.84375 -0.03125 2.359375 -0.03125 C 2.875 -0.03125 3.421875 0 3.9375 0 C 4.046875 0 4.234375 0 4.234375 -0.296875 C 4.234375 -0.46875 4.0625 -0.46875 3.921875 -0.46875 L 3.671875 -0.46875 L 3.15625 -0.484375 L 4.578125 -6.1875 C 4.609375 -6.328125 4.625 -6.34375 4.828125 -6.34375 C 4.9375 -6.359375 5.109375 -6.375 5.234375 -6.375 L 5.484375 -6.375 C 5.65625 -6.375 5.828125 -6.375 5.828125 -6.65625 Z M 5.828125 -6.65625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<path style="stroke:none;" d="M 9.75 -1.46875 C 9.75 -1.609375 9.625 -1.609375 9.46875 -1.609375 C 9.28125 -1.609375 9.234375 -1.609375 9.1875 -1.484375 C 9.109375 -1.21875 8.84375 -0.28125 8.28125 -0.28125 C 8.21875 -0.28125 8.140625 -0.28125 8.140625 -0.453125 C 8.140625 -0.671875 8.234375 -0.921875 8.359375 -1.265625 C 8.5 -1.640625 8.953125 -2.8125 8.953125 -3.375 C 8.953125 -4.203125 8.359375 -4.5 7.578125 -4.5 C 6.78125 -4.5 6.3125 -4.09375 5.984375 -3.75 C 5.765625 -4.5 4.859375 -4.5 4.640625 -4.5 C 4.4375 -4.5 3.78125 -4.5 3.125 -3.8125 C 2.921875 -4.390625 2.328125 -4.5 2 -4.5 C 1.53125 -4.5 1.28125 -4.171875 1.15625 -3.96875 C 0.890625 -3.546875 0.765625 -2.984375 0.765625 -2.953125 C 0.765625 -2.8125 0.890625 -2.8125 1.046875 -2.8125 C 1.28125 -2.8125 1.296875 -2.828125 1.359375 -3.078125 C 1.453125 -3.40625 1.625 -4.140625 1.96875 -4.140625 C 2.078125 -4.140625 2.15625 -4.0625 2.15625 -3.84375 C 2.15625 -3.65625 2.140625 -3.5625 2.09375 -3.40625 L 1.390625 -0.5625 C 1.34375 -0.421875 1.34375 -0.40625 1.34375 -0.34375 C 1.34375 -0.046875 1.578125 0.078125 1.796875 0.078125 C 1.859375 0.078125 2.296875 0.0625 2.421875 -0.453125 L 3.046875 -2.9375 C 3.109375 -3.21875 3.671875 -4.140625 4.578125 -4.140625 C 5 -4.140625 5 -3.765625 5 -3.578125 C 5 -3.328125 4.96875 -3.15625 4.859375 -2.734375 L 4.4375 -1.0625 C 4.375 -0.8125 4.28125 -0.421875 4.28125 -0.34375 C 4.28125 -0.046875 4.515625 0.078125 4.71875 0.078125 C 4.84375 0.078125 5.234375 0.03125 5.359375 -0.484375 L 5.96875 -2.9375 C 6.046875 -3.21875 6.609375 -4.140625 7.5 -4.140625 C 7.9375 -4.140625 7.9375 -3.765625 7.9375 -3.578125 C 7.9375 -2.984375 7.484375 -1.75 7.296875 -1.3125 C 7.203125 -1.0625 7.171875 -0.953125 7.171875 -0.8125 C 7.171875 -0.25 7.6875 0.078125 8.21875 0.078125 C 9.265625 0.078125 9.75 -1.265625 9.75 -1.46875 Z M 9.75 -1.46875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-3">
|
||||
<path style="stroke:none;" d="M 5.9375 -2.90625 C 5.9375 -4.09375 5.109375 -4.5 4.34375 -4.5 C 3.734375 -4.5 3.265625 -4.1875 3.03125 -4 C 2.84375 -4.34375 2.390625 -4.5 2 -4.5 C 1.53125 -4.5 1.28125 -4.171875 1.15625 -3.96875 C 0.890625 -3.546875 0.765625 -2.984375 0.765625 -2.953125 C 0.765625 -2.8125 0.890625 -2.8125 1.046875 -2.8125 C 1.28125 -2.8125 1.296875 -2.828125 1.359375 -3.078125 C 1.453125 -3.40625 1.625 -4.140625 1.96875 -4.140625 C 2.078125 -4.140625 2.15625 -4.0625 2.15625 -3.84375 C 2.15625 -3.65625 2.140625 -3.5625 2.09375 -3.40625 L 0.921875 1.3125 C 0.875 1.453125 0.875 1.46875 0.5625 1.46875 C 0.421875 1.46875 0.25 1.46875 0.25 1.75 C 0.25 1.875 0.34375 1.9375 0.4375 1.9375 C 0.71875 1.9375 1.03125 1.90625 1.328125 1.90625 C 1.671875 1.90625 2.03125 1.9375 2.375 1.9375 C 2.4375 1.9375 2.640625 1.9375 2.640625 1.640625 C 2.640625 1.46875 2.46875 1.46875 2.375 1.46875 C 2.234375 1.46875 2.078125 1.46875 1.9375 1.453125 L 2.359375 -0.234375 C 2.6875 0.046875 3.046875 0.078125 3.265625 0.078125 C 4.9375 0.078125 5.9375 -1.578125 5.9375 -2.90625 Z M 4.421875 -1.390625 C 4.078125 -0.421875 3.53125 -0.28125 3.265625 -0.28125 C 2.921875 -0.28125 2.640625 -0.5 2.53125 -0.890625 L 3.125 -3.25 C 3.140625 -3.3125 3.140625 -3.34375 3.15625 -3.421875 C 3.578125 -4 4 -4.140625 4.3125 -4.140625 C 4.53125 -4.140625 4.875 -4 4.875 -3.4375 C 4.875 -2.90625 4.53125 -1.671875 4.421875 -1.390625 Z M 4.421875 -1.390625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-4">
|
||||
<path style="stroke:none;" d="M 5.9375 -2.828125 C 5.9375 -3.859375 5.21875 -4.5 4.03125 -4.5 C 2.0625 -4.5 1.0625 -2.84375 1.0625 -1.59375 C 1.0625 -0.5625 1.78125 0.078125 2.953125 0.078125 C 4.921875 0.078125 5.9375 -1.578125 5.9375 -2.828125 Z M 4.34375 -1.234375 C 4.046875 -0.609375 3.484375 -0.28125 2.984375 -0.28125 C 2.625 -0.28125 2.15625 -0.453125 2.15625 -1.15625 C 2.15625 -1.546875 2.40625 -2.65625 2.65625 -3.1875 C 2.953125 -3.8125 3.515625 -4.140625 4.015625 -4.140625 C 4.359375 -4.140625 4.84375 -3.984375 4.84375 -3.265625 C 4.84375 -2.875 4.578125 -1.765625 4.34375 -1.234375 Z M 4.34375 -1.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-5">
|
||||
<path style="stroke:none;" d="M 5.609375 -3.625 C 5.609375 -4.140625 5.0625 -4.5 4.34375 -4.5 C 3.953125 -4.5 3.484375 -4.390625 3.0625 -3.96875 C 2.890625 -4.28125 2.5 -4.5 2 -4.5 C 1.53125 -4.5 1.28125 -4.171875 1.15625 -3.96875 C 0.890625 -3.546875 0.765625 -2.984375 0.765625 -2.953125 C 0.765625 -2.8125 0.890625 -2.8125 1.046875 -2.8125 C 1.28125 -2.8125 1.296875 -2.828125 1.359375 -3.078125 C 1.453125 -3.40625 1.625 -4.140625 1.96875 -4.140625 C 2.078125 -4.140625 2.15625 -4.0625 2.15625 -3.84375 C 2.15625 -3.65625 2.140625 -3.5625 2.09375 -3.40625 L 1.390625 -0.5625 C 1.34375 -0.421875 1.34375 -0.40625 1.34375 -0.34375 C 1.34375 -0.046875 1.578125 0.078125 1.796875 0.078125 C 1.859375 0.078125 2.296875 0.0625 2.421875 -0.453125 L 3.09375 -3.171875 C 3.15625 -3.40625 3.609375 -4.140625 4.3125 -4.140625 C 4.421875 -4.140625 4.65625 -4.140625 4.859375 -3.984375 C 4.390625 -3.765625 4.390625 -3.34375 4.390625 -3.3125 C 4.390625 -3.0625 4.578125 -2.84375 4.890625 -2.84375 C 5.265625 -2.84375 5.609375 -3.171875 5.609375 -3.625 Z M 5.609375 -3.625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-6">
|
||||
<path style="stroke:none;" d="M 4.171875 -1.46875 C 4.171875 -1.609375 4.046875 -1.609375 3.890625 -1.609375 C 3.671875 -1.609375 3.671875 -1.609375 3.59375 -1.453125 C 3.171875 -0.453125 2.6875 -0.28125 2.421875 -0.28125 C 2.328125 -0.28125 2.21875 -0.296875 2.21875 -0.59375 C 2.21875 -0.78125 2.234375 -0.859375 2.265625 -1.015625 L 3.015625 -3.953125 L 3.8125 -3.953125 C 3.984375 -3.953125 4.140625 -3.953125 4.140625 -4.25 C 4.140625 -4.421875 3.984375 -4.421875 3.84375 -4.421875 L 3.125 -4.421875 L 3.3125 -5.21875 C 3.390625 -5.46875 3.5 -5.90625 3.5 -5.984375 C 3.5 -6.21875 3.328125 -6.40625 3.046875 -6.40625 C 2.921875 -6.40625 2.546875 -6.34375 2.421875 -5.875 L 2.0625 -4.421875 L 1.25 -4.421875 C 1.078125 -4.421875 0.90625 -4.421875 0.90625 -4.140625 C 0.90625 -3.953125 1.078125 -3.953125 1.21875 -3.953125 L 1.9375 -3.953125 L 1.25 -1.171875 C 1.203125 -1.015625 1.203125 -0.953125 1.203125 -0.890625 C 1.203125 -0.265625 1.78125 0.078125 2.375 0.078125 C 3.515625 0.078125 4.171875 -1.3125 4.171875 -1.46875 Z M 4.171875 -1.46875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-7">
|
||||
<path style="stroke:none;" d="M 6.125 -1.46875 C 6.125 -1.609375 6 -1.609375 5.859375 -1.609375 C 5.609375 -1.609375 5.609375 -1.609375 5.53125 -1.359375 C 5.453125 -1.03125 5.28125 -0.28125 4.9375 -0.28125 C 4.8125 -0.28125 4.75 -0.359375 4.75 -0.59375 C 4.75 -0.78125 4.765625 -0.859375 4.8125 -1.015625 L 5.46875 -3.703125 C 5.515625 -3.859375 5.515625 -3.875 5.515625 -3.921875 C 5.515625 -4.140625 5.34375 -4.34375 5.0625 -4.34375 C 4.890625 -4.34375 4.71875 -4.25 4.59375 -4.125 C 4.28125 -4.453125 3.890625 -4.5 3.625 -4.5 C 1.953125 -4.5 0.953125 -2.84375 0.953125 -1.515625 C 0.953125 -0.328125 1.796875 0.078125 2.546875 0.078125 C 3.15625 0.078125 3.625 -0.234375 3.875 -0.421875 C 4.0625 -0.078125 4.5 0.078125 4.890625 0.078125 C 5.359375 0.078125 5.609375 -0.265625 5.734375 -0.453125 C 6 -0.875 6.125 -1.4375 6.125 -1.46875 Z M 3.75 -1 C 3.3125 -0.421875 2.90625 -0.28125 2.59375 -0.28125 C 2.359375 -0.28125 2.03125 -0.421875 2.03125 -0.984375 C 2.03125 -1.53125 2.375 -2.75 2.484375 -3.03125 C 2.828125 -4 3.375 -4.140625 3.625 -4.140625 C 3.984375 -4.140625 4.25 -3.921875 4.359375 -3.53125 L 3.78125 -1.171875 C 3.765625 -1.109375 3.765625 -1.078125 3.75 -1 Z M 3.75 -1 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-8">
|
||||
<path style="stroke:none;" d="M 6.8125 -1.46875 C 6.8125 -1.609375 6.6875 -1.609375 6.546875 -1.609375 C 6.34375 -1.609375 6.296875 -1.609375 6.265625 -1.484375 C 6.1875 -1.21875 5.90625 -0.28125 5.34375 -0.28125 C 5.296875 -0.28125 5.203125 -0.28125 5.203125 -0.453125 C 5.203125 -0.671875 5.296875 -0.921875 5.4375 -1.265625 C 5.578125 -1.640625 6.015625 -2.8125 6.015625 -3.375 C 6.015625 -4.203125 5.4375 -4.5 4.640625 -4.5 C 4.4375 -4.5 3.78125 -4.5 3.125 -3.8125 C 2.921875 -4.390625 2.328125 -4.5 2 -4.5 C 1.53125 -4.5 1.28125 -4.171875 1.15625 -3.96875 C 0.890625 -3.546875 0.765625 -2.984375 0.765625 -2.953125 C 0.765625 -2.8125 0.890625 -2.8125 1.046875 -2.8125 C 1.28125 -2.8125 1.296875 -2.828125 1.359375 -3.078125 C 1.453125 -3.40625 1.625 -4.140625 1.96875 -4.140625 C 2.078125 -4.140625 2.15625 -4.0625 2.15625 -3.84375 C 2.15625 -3.65625 2.140625 -3.5625 2.09375 -3.40625 L 1.390625 -0.5625 C 1.34375 -0.421875 1.34375 -0.40625 1.34375 -0.34375 C 1.34375 -0.046875 1.578125 0.078125 1.796875 0.078125 C 1.859375 0.078125 2.296875 0.0625 2.421875 -0.453125 L 3.046875 -2.9375 C 3.109375 -3.21875 3.671875 -4.140625 4.578125 -4.140625 C 5 -4.140625 5 -3.765625 5 -3.578125 C 5 -2.984375 4.546875 -1.75 4.359375 -1.3125 C 4.28125 -1.0625 4.25 -0.953125 4.25 -0.8125 C 4.25 -0.25 4.75 0.078125 5.296875 0.078125 C 6.328125 0.078125 6.8125 -1.265625 6.8125 -1.46875 Z M 6.8125 -1.46875 "/>
|
||||
</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="135.789"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="147.451075" y="135.789"/>
|
||||
<use xlink:href="#glyph0-3" x="152.702361" y="135.789"/>
|
||||
<use xlink:href="#glyph0-4" x="157.420649" y="135.789"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="167.288" y="135.789"/>
|
||||
<use xlink:href="#glyph1-2" x="171.987358" y="135.789"/>
|
||||
<use xlink:href="#glyph1-3" x="181.396038" y="135.789"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="186.697137" y="135.789"/>
|
||||
<use xlink:href="#glyph1-5" x="192.58603" y="135.789"/>
|
||||
<use xlink:href="#glyph1-6" x="197.584267" y="135.789"/>
|
||||
<use xlink:href="#glyph1-7" x="201.419868" y="135.789"/>
|
||||
<use xlink:href="#glyph1-8" x="207.30876" y="135.789"/>
|
||||
<use xlink:href="#glyph1-6" x="213.78445" y="135.789"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="222.364" y="135.789"/>
|
||||
<use xlink:href="#glyph0-6" x="228.729105" y="135.789"/>
|
||||
<use xlink:href="#glyph0-7" x="233.18438" y="135.789"/>
|
||||
<use xlink:href="#glyph0-8" x="239.549485" y="135.789"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 18 KiB |
12
sections/german/06/auszeichnungen-schachteln.tex
Normal file
@ -0,0 +1,12 @@
|
||||
\documentclass[a4paper]{article}
|
||||
\usepackage{lmodern}
|
||||
\usepackage{amssymb,amsmath}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage{hyperref}
|
||||
\begin{document}
|
||||
\thispagestyle{empty}
|
||||
\parbox{.5\linewidth}{\noindent
|
||||
\textbf{Very \textit{Important \textsc{Stuff}}}
|
||||
}
|
||||
\end{document}
|
||||
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 113 KiB |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 114 KiB |
@ -6,5 +6,11 @@
|
||||
\usepackage{hyperref}
|
||||
\begin{document}
|
||||
\thispagestyle{empty}
|
||||
Text \emph{Text \emph{Text} Text} Text
|
||||
\parbox{.5\linewidth}{
|
||||
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.
|
||||
\emph{Wenn man in einem ganzen Haufen von wichtigem Text \emph{noch wichtigeren Text} verstecken will, hilft die Verschachtelung von Emphasen.}
|
||||
% 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.
|
||||
}
|
||||
\end{document}
|
||||
|
||||
310
sections/german/06/optische-auszeichnungen-crop.svg
Normal file
@ -0,0 +1,310 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="69pt" height="92pt" viewBox="0 0 69 92" 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.359375 -6.109375 C 4.359375 -6.53125 4 -6.984375 3.21875 -6.984375 C 2.25 -6.984375 1.171875 -6.5625 1.171875 -5.4375 L 1.171875 -4.421875 L 0.421875 -4.421875 L 0.421875 -3.953125 L 1.171875 -3.953125 L 1.171875 -0.46875 L 0.484375 -0.46875 L 0.484375 0 L 1.734375 -0.03125 C 2.109375 -0.03125 2.75 -0.03125 3.109375 0 L 3.109375 -0.46875 L 2.25 -0.46875 L 2.25 -3.953125 L 3.390625 -3.953125 L 3.390625 -4.421875 L 2.1875 -4.421875 L 2.1875 -5.4375 C 2.1875 -6.53125 2.9375 -6.625 3.1875 -6.625 C 3.234375 -6.625 3.296875 -6.625 3.359375 -6.59375 C 3.203125 -6.484375 3.125 -6.296875 3.125 -6.109375 C 3.125 -5.6875 3.484375 -5.5 3.734375 -5.5 C 4.03125 -5.5 4.359375 -5.703125 4.359375 -6.109375 Z M 4.359375 -6.109375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 4.921875 -1.171875 C 4.921875 -1.34375 4.734375 -1.34375 4.6875 -1.34375 C 4.515625 -1.34375 4.5 -1.296875 4.4375 -1.140625 C 4.234375 -0.65625 3.65625 -0.34375 3.015625 -0.34375 C 1.609375 -0.34375 1.59375 -1.671875 1.59375 -2.171875 L 4.609375 -2.171875 C 4.828125 -2.171875 4.921875 -2.171875 4.921875 -2.4375 C 4.921875 -2.75 4.859375 -3.484375 4.359375 -3.984375 C 4 -4.34375 3.46875 -4.515625 2.78125 -4.515625 C 1.1875 -4.515625 0.3125 -3.484375 0.3125 -2.25 C 0.3125 -0.90625 1.3125 0.0625 2.921875 0.0625 C 4.5 0.0625 4.921875 -1 4.921875 -1.171875 Z M 3.984375 -2.5 L 1.59375 -2.5 C 1.609375 -2.890625 1.625 -3.3125 1.828125 -3.640625 C 2.09375 -4.03125 2.5 -4.15625 2.78125 -4.15625 C 3.953125 -4.15625 3.96875 -2.84375 3.984375 -2.5 Z M 3.984375 -2.5 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 3.8125 -1.234375 L 3.8125 -1.765625 L 3.34375 -1.765625 L 3.34375 -1.25 C 3.34375 -0.578125 3.015625 -0.34375 2.734375 -0.34375 C 2.15625 -0.34375 2.15625 -0.984375 2.15625 -1.203125 L 2.15625 -3.953125 L 3.625 -3.953125 L 3.625 -4.421875 L 2.15625 -4.421875 L 2.15625 -6.328125 L 1.6875 -6.328125 C 1.6875 -5.328125 1.203125 -4.34375 0.203125 -4.3125 L 0.203125 -3.953125 L 1.03125 -3.953125 L 1.03125 -1.21875 C 1.03125 -0.15625 1.890625 0.0625 2.609375 0.0625 C 3.359375 0.0625 3.8125 -0.515625 3.8125 -1.234375 Z M 3.8125 -1.234375 "/>
|
||||
</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.828125 -1.421875 C 4.828125 -1.53125 4.75 -1.53125 4.671875 -1.53125 C 4.5625 -1.53125 4.546875 -1.515625 4.484375 -1.296875 C 4.359375 -0.78125 4.171875 -0.109375 3.734375 -0.109375 C 3.453125 -0.109375 3.4375 -0.34375 3.4375 -0.53125 C 3.4375 -0.765625 3.515625 -1.046875 3.515625 -1.09375 C 3.5625 -1.3125 3.5625 -1.3125 3.5625 -1.453125 C 3.5625 -2.125 2.875 -2.390625 2.25 -2.484375 C 2.46875 -2.625 2.6875 -2.828125 2.953125 -3.140625 C 3.46875 -3.734375 3.859375 -4.1875 4.359375 -4.1875 C 4.546875 -4.1875 4.625 -4.0625 4.625 -4.0625 C 4.203125 -4 4.15625 -3.65625 4.15625 -3.5625 C 4.15625 -3.4375 4.25 -3.25 4.5 -3.25 C 4.71875 -3.25 5 -3.421875 5 -3.8125 C 5 -4.0625 4.828125 -4.40625 4.375 -4.40625 C 3.84375 -4.40625 3.421875 -3.984375 3.078125 -3.59375 C 2.515625 -2.9375 2.359375 -2.765625 2 -2.609375 L 3.015625 -6.671875 C 3.03125 -6.703125 3.046875 -6.796875 3.046875 -6.796875 C 3.046875 -6.890625 2.984375 -6.921875 2.90625 -6.921875 C 2.875 -6.921875 2.78125 -6.90625 2.75 -6.890625 L 1.765625 -6.8125 C 1.640625 -6.8125 1.53125 -6.796875 1.53125 -6.609375 C 1.53125 -6.5 1.640625 -6.5 1.78125 -6.5 C 2.25 -6.5 2.265625 -6.4375 2.265625 -6.328125 C 2.265625 -6.296875 2.25 -6.15625 2.25 -6.15625 L 0.765625 -0.28125 C 0.75 -0.265625 0.75 -0.15625 0.75 -0.15625 C 0.75 -0.046875 0.84375 0.109375 1.03125 0.109375 C 1.328125 0.109375 1.390625 -0.171875 1.421875 -0.265625 L 1.921875 -2.28125 C 2.296875 -2.234375 2.9375 -2.03125 2.9375 -1.453125 C 2.9375 -1.375 2.9375 -1.328125 2.90625 -1.203125 C 2.859375 -1.03125 2.859375 -0.953125 2.859375 -0.859375 C 2.859375 -0.140625 3.328125 0.109375 3.703125 0.109375 C 4.140625 0.109375 4.359375 -0.21875 4.46875 -0.40625 C 4.6875 -0.78125 4.828125 -1.390625 4.828125 -1.421875 Z M 4.828125 -1.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<path style="stroke:none;" d="M 5.59375 -1.421875 C 5.59375 -1.53125 5.515625 -1.53125 5.4375 -1.53125 C 5.328125 -1.53125 5.3125 -1.515625 5.25 -1.296875 C 5.109375 -0.734375 4.921875 -0.109375 4.578125 -0.109375 C 4.328125 -0.109375 4.328125 -0.375 4.328125 -0.515625 C 4.328125 -0.59375 4.328125 -0.75 4.390625 -1.03125 L 5.109375 -3.890625 C 5.140625 -3.953125 5.140625 -4 5.140625 -4.03125 C 5.140625 -4.140625 5.0625 -4.296875 4.859375 -4.296875 C 4.5625 -4.296875 4.5 -4 4.46875 -3.921875 L 3.75 -1.015625 C 3.703125 -0.84375 3.703125 -0.8125 3.609375 -0.6875 C 3.421875 -0.40625 3.125 -0.109375 2.6875 -0.109375 C 2.25 -0.109375 2.15625 -0.546875 2.15625 -0.875 C 2.15625 -1.484375 2.484375 -2.375 2.734375 -3.0625 C 2.8125 -3.265625 2.859375 -3.40625 2.859375 -3.59375 C 2.859375 -4.09375 2.53125 -4.40625 2.109375 -4.40625 C 1.171875 -4.40625 0.828125 -2.9375 0.828125 -2.875 C 0.828125 -2.765625 0.921875 -2.765625 0.984375 -2.765625 C 1.109375 -2.765625 1.109375 -2.796875 1.15625 -2.9375 C 1.234375 -3.234375 1.5 -4.1875 2.078125 -4.1875 C 2.1875 -4.1875 2.296875 -4.15625 2.296875 -3.890625 C 2.296875 -3.65625 2.203125 -3.390625 2.0625 -3 C 1.796875 -2.296875 1.546875 -1.5625 1.546875 -1.046875 C 1.546875 -0.171875 2.125 0.109375 2.65625 0.109375 C 3.1875 0.109375 3.53125 -0.1875 3.765625 -0.484375 C 3.953125 0.046875 4.375 0.109375 4.5625 0.109375 C 4.9375 0.109375 5.140625 -0.140625 5.296875 -0.453125 C 5.46875 -0.828125 5.59375 -1.421875 5.59375 -1.421875 Z M 5.59375 -1.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-3">
|
||||
<path style="stroke:none;" d="M 4.875 -3.78125 C 4.875 -4.296875 4.234375 -4.40625 3.890625 -4.40625 C 3.203125 -4.40625 2.84375 -3.90625 2.6875 -3.6875 C 2.578125 -4.21875 2.1875 -4.40625 1.859375 -4.40625 C 1.5 -4.40625 1.3125 -4.171875 1.140625 -3.875 C 0.953125 -3.484375 0.828125 -2.875 0.828125 -2.875 C 0.828125 -2.765625 0.921875 -2.765625 0.984375 -2.765625 C 1.109375 -2.765625 1.109375 -2.78125 1.171875 -3 C 1.34375 -3.703125 1.53125 -4.1875 1.84375 -4.1875 C 2.109375 -4.1875 2.109375 -3.890625 2.109375 -3.78125 C 2.109375 -3.625 2.078125 -3.4375 2.03125 -3.28125 L 1.28125 -0.296875 C 1.265625 -0.234375 1.25 -0.171875 1.25 -0.15625 C 1.25 -0.046875 1.328125 0.109375 1.53125 0.109375 C 1.828125 0.109375 1.90625 -0.171875 1.921875 -0.265625 L 2.578125 -2.875 C 2.578125 -2.90625 3.03125 -4.1875 3.890625 -4.1875 C 3.9375 -4.1875 4.21875 -4.1875 4.421875 -4.046875 C 4.0625 -3.9375 4.03125 -3.625 4.03125 -3.5625 C 4.03125 -3.4375 4.125 -3.25 4.390625 -3.25 C 4.5625 -3.25 4.875 -3.390625 4.875 -3.78125 Z M 4.875 -3.78125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-4">
|
||||
<path style="stroke:none;" d="M 3.921875 -1.5625 C 3.921875 -2.4375 3.140625 -2.609375 2.734375 -2.703125 C 2.453125 -2.765625 2.09375 -2.84375 2.09375 -3.265625 C 2.09375 -3.515625 2.296875 -4.1875 3.09375 -4.1875 C 3.375 -4.1875 3.734375 -4.09375 3.84375 -3.703125 C 3.53125 -3.65625 3.453125 -3.390625 3.453125 -3.296875 C 3.453125 -3.1875 3.515625 -3.015625 3.75 -3.015625 C 3.921875 -3.015625 4.171875 -3.125 4.171875 -3.5625 C 4.171875 -4.015625 3.765625 -4.40625 3.109375 -4.40625 C 1.9375 -4.40625 1.53125 -3.453125 1.53125 -2.9375 C 1.53125 -2.15625 2.1875 -2.03125 2.46875 -1.96875 C 2.90625 -1.859375 3.34375 -1.765625 3.34375 -1.21875 C 3.34375 -0.90625 3.078125 -0.109375 2.046875 -0.109375 C 1.828125 -0.109375 1.25 -0.15625 1.09375 -0.671875 C 1.609375 -0.71875 1.609375 -1.15625 1.609375 -1.15625 C 1.609375 -1.34375 1.46875 -1.46875 1.265625 -1.46875 C 1.03125 -1.46875 0.75 -1.3125 0.75 -0.859375 C 0.75 -0.25 1.328125 0.109375 2.046875 0.109375 C 3.53125 0.109375 3.921875 -1.109375 3.921875 -1.5625 Z M 3.921875 -1.5625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-5">
|
||||
<path style="stroke:none;" d="M 3.296875 -1.421875 C 3.296875 -1.53125 3.21875 -1.53125 3.15625 -1.53125 C 3.015625 -1.53125 3.015625 -1.5 2.984375 -1.359375 C 2.90625 -1.0625 2.625 -0.109375 2.046875 -0.109375 C 1.96875 -0.109375 1.828125 -0.125 1.828125 -0.390625 C 1.828125 -0.640625 1.96875 -0.984375 2.09375 -1.34375 L 2.734375 -3.046875 C 2.828125 -3.34375 2.84375 -3.421875 2.84375 -3.609375 C 2.84375 -4.15625 2.46875 -4.40625 2.109375 -4.40625 C 1.171875 -4.40625 0.828125 -2.921875 0.828125 -2.875 C 0.828125 -2.765625 0.921875 -2.765625 0.984375 -2.765625 C 1.109375 -2.765625 1.109375 -2.796875 1.15625 -2.9375 C 1.25 -3.265625 1.5 -4.1875 2.078125 -4.1875 C 2.1875 -4.1875 2.296875 -4.140625 2.296875 -3.90625 C 2.296875 -3.671875 2.1875 -3.375 2.125 -3.1875 L 1.828125 -2.359375 L 1.453125 -1.375 C 1.3125 -1 1.28125 -0.890625 1.28125 -0.6875 C 1.28125 -0.296875 1.515625 0.109375 2.03125 0.109375 C 2.96875 0.109375 3.296875 -1.390625 3.296875 -1.421875 Z M 3.5625 -6.09375 C 3.5625 -6.296875 3.421875 -6.515625 3.125 -6.515625 C 2.796875 -6.515625 2.484375 -6.203125 2.484375 -5.890625 C 2.484375 -5.671875 2.640625 -5.46875 2.9375 -5.46875 C 3.25 -5.46875 3.5625 -5.765625 3.5625 -6.09375 Z M 3.5625 -6.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-6">
|
||||
<path style="stroke:none;" d="M 4.921875 -3.75 C 4.921875 -4.09375 4.796875 -4.40625 4.5 -4.40625 C 4.28125 -4.40625 4.03125 -4.171875 4.03125 -3.953125 C 4.03125 -3.8125 4.09375 -3.75 4.15625 -3.671875 C 4.390625 -3.421875 4.421875 -3.09375 4.421875 -2.890625 C 4.421875 -2.609375 3.953125 -0.109375 2.8125 -0.109375 C 2.265625 -0.109375 2.15625 -0.609375 2.15625 -0.9375 C 2.15625 -1.515625 2.484375 -2.375 2.75 -3.09375 C 2.796875 -3.265625 2.859375 -3.40625 2.859375 -3.59375 C 2.859375 -4.09375 2.53125 -4.40625 2.109375 -4.40625 C 1.171875 -4.40625 0.828125 -2.9375 0.828125 -2.875 C 0.828125 -2.765625 0.921875 -2.765625 0.984375 -2.765625 C 1.109375 -2.765625 1.109375 -2.796875 1.15625 -2.9375 C 1.234375 -3.234375 1.5 -4.1875 2.078125 -4.1875 C 2.1875 -4.1875 2.296875 -4.15625 2.296875 -3.890625 C 2.296875 -3.65625 2.203125 -3.390625 2.0625 -3 C 1.75 -2.15625 1.5625 -1.5625 1.5625 -1.09375 C 1.5625 -0.171875 2.1875 0.109375 2.78125 0.109375 C 4.453125 0.109375 4.921875 -3.484375 4.921875 -3.75 Z M 4.921875 -3.75 "/>
|
||||
</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 7.828125 0 L 7.828125 -0.3125 C 7.359375 -0.3125 7.078125 -0.3125 6.71875 -0.8125 L 4.328125 -4.171875 L 6.203125 -5.890625 C 6.578125 -6.234375 7.078125 -6.484375 7.671875 -6.5 L 7.671875 -6.8125 C 7.421875 -6.78125 7.09375 -6.78125 6.828125 -6.78125 C 6.46875 -6.78125 5.90625 -6.78125 5.5625 -6.8125 L 5.5625 -6.5 C 5.9375 -6.484375 5.984375 -6.265625 5.984375 -6.1875 C 5.984375 -6.09375 5.9375 -5.984375 5.78125 -5.828125 L 2.46875 -2.84375 L 2.46875 -6.03125 C 2.46875 -6.390625 2.484375 -6.5 3.25 -6.5 L 3.484375 -6.5 L 3.484375 -6.8125 C 3.140625 -6.78125 2.40625 -6.78125 2.03125 -6.78125 C 1.640625 -6.78125 0.890625 -6.78125 0.546875 -6.8125 L 0.546875 -6.5 L 0.78125 -6.5 C 1.5625 -6.5 1.578125 -6.390625 1.578125 -6.03125 L 1.578125 -0.78125 C 1.578125 -0.421875 1.5625 -0.3125 0.78125 -0.3125 L 0.546875 -0.3125 L 0.546875 0 C 0.890625 -0.03125 1.640625 -0.03125 2.015625 -0.03125 C 2.390625 -0.03125 3.140625 -0.03125 3.484375 0 L 3.484375 -0.3125 L 3.25 -0.3125 C 2.484375 -0.3125 2.46875 -0.421875 2.46875 -0.78125 L 2.46875 -2.5 L 3.71875 -3.640625 L 5.65625 -0.9375 C 5.71875 -0.859375 5.8125 -0.703125 5.8125 -0.59375 C 5.8125 -0.3125 5.4375 -0.3125 5.25 -0.3125 L 5.25 0 C 5.59375 -0.03125 6.296875 -0.03125 6.671875 -0.03125 Z M 7.828125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<path style="stroke:none;" d="M 5.765625 0 L 5.765625 -0.25 C 5.21875 -0.25 5.125 -0.296875 5 -0.640625 L 3.28125 -5.078125 C 3.21875 -5.234375 3.171875 -5.296875 3.0625 -5.296875 C 2.921875 -5.296875 2.90625 -5.234375 2.84375 -5.109375 L 1.25 -0.984375 C 1.140625 -0.71875 0.96875 -0.265625 0.34375 -0.25 L 0.34375 0 C 0.5625 -0.015625 0.84375 -0.03125 1.0625 -0.03125 L 1.890625 0 L 1.890625 -0.25 C 1.46875 -0.265625 1.453125 -0.609375 1.453125 -0.703125 C 1.453125 -0.78125 1.453125 -0.796875 1.78125 -1.6875 L 3.84375 -1.6875 L 4.0625 -1.125 C 4.140625 -0.921875 4.28125 -0.59375 4.28125 -0.53125 C 4.28125 -0.25 3.921875 -0.25 3.75 -0.25 L 3.75 0 L 4.8125 -0.03125 C 5.140625 -0.03125 5.53125 -0.015625 5.765625 0 Z M 3.75 -1.9375 L 1.890625 -1.9375 L 2.828125 -4.34375 Z M 3.75 -1.9375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-3">
|
||||
<path style="stroke:none;" d="M 5.046875 -3.71875 C 5.046875 -4.4375 4.296875 -5.125 3.15625 -5.125 L 0.453125 -5.125 L 0.453125 -4.875 C 1.109375 -4.875 1.171875 -4.8125 1.171875 -4.40625 L 1.171875 -0.71875 C 1.171875 -0.3125 1.109375 -0.25 0.453125 -0.25 L 0.453125 0 L 1.53125 -0.03125 L 2.609375 0 L 2.609375 -0.25 C 1.9375 -0.25 1.890625 -0.3125 1.890625 -0.71875 L 1.890625 -2.328125 L 3.21875 -2.328125 C 4.21875 -2.328125 5.046875 -2.953125 5.046875 -3.71875 Z M 4.203125 -3.71875 C 4.203125 -3.328125 4.203125 -2.5625 2.9375 -2.5625 L 1.859375 -2.5625 L 1.859375 -4.453125 C 1.859375 -4.84375 1.90625 -4.875 2.25 -4.875 L 2.9375 -4.875 C 4.203125 -4.875 4.203125 -4.109375 4.203125 -3.71875 Z M 4.203125 -3.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-4">
|
||||
<path style="stroke:none;" d="M 2.625 0 L 2.625 -0.25 C 1.90625 -0.25 1.859375 -0.296875 1.859375 -0.734375 L 1.859375 -4.390625 C 1.859375 -4.828125 1.90625 -4.875 2.625 -4.875 L 2.625 -5.125 L 1.5 -5.09375 L 0.390625 -5.125 L 0.390625 -4.875 C 1.09375 -4.875 1.140625 -4.828125 1.140625 -4.390625 L 1.140625 -0.734375 C 1.140625 -0.296875 1.09375 -0.25 0.390625 -0.25 L 0.390625 0 L 1.5 -0.03125 Z M 2.625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-5">
|
||||
<path style="stroke:none;" d="M 5.53125 -3.375 L 5.390625 -5.0625 L 0.5 -5.0625 L 0.359375 -3.375 L 0.609375 -3.375 C 0.703125 -4.640625 0.890625 -4.8125 2 -4.8125 C 2.5625 -4.8125 2.59375 -4.8125 2.59375 -4.390625 L 2.59375 -0.75 C 2.59375 -0.359375 2.546875 -0.25 1.78125 -0.25 L 1.578125 -0.25 L 1.578125 0 C 1.96875 -0.03125 2.546875 -0.03125 2.953125 -0.03125 C 3.34375 -0.03125 3.9375 -0.03125 4.328125 0 L 4.328125 -0.25 L 4.109375 -0.25 C 3.34375 -0.25 3.3125 -0.359375 3.3125 -0.75 L 3.3125 -4.390625 C 3.3125 -4.8125 3.34375 -4.8125 3.890625 -4.8125 C 4.96875 -4.8125 5.1875 -4.640625 5.28125 -3.375 Z M 5.53125 -3.375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-6">
|
||||
<path style="stroke:none;" d="M 5.765625 0 L 5.765625 -0.25 C 5.21875 -0.25 5.125 -0.296875 5 -0.640625 L 3.28125 -5.078125 C 3.21875 -5.234375 3.171875 -5.296875 3.0625 -5.296875 C 2.921875 -5.296875 2.90625 -5.234375 2.84375 -5.109375 L 1.25 -0.984375 C 1.140625 -0.71875 0.96875 -0.265625 0.34375 -0.25 L 0.34375 0 C 0.5625 -0.015625 0.84375 -0.03125 1.0625 -0.03125 L 1.890625 0 L 1.890625 -0.25 C 1.46875 -0.265625 1.453125 -0.609375 1.453125 -0.703125 C 1.453125 -0.78125 1.453125 -0.796875 1.78125 -1.6875 L 3.84375 -1.6875 L 4.0625 -1.125 C 4.140625 -0.921875 4.28125 -0.59375 4.28125 -0.53125 C 4.28125 -0.25 3.921875 -0.25 3.75 -0.25 L 3.75 0 L 4.8125 -0.03125 C 5.140625 -0.03125 5.53125 -0.015625 5.765625 0 Z M 3.75 -1.9375 L 1.890625 -1.9375 L 2.828125 -4.34375 Z M 2.65625 -6.8125 C 2.65625 -7.078125 2.4375 -7.296875 2.171875 -7.296875 C 1.90625 -7.296875 1.6875 -7.078125 1.6875 -6.8125 C 1.6875 -6.5625 1.90625 -6.34375 2.171875 -6.34375 C 2.4375 -6.34375 2.65625 -6.5625 2.65625 -6.8125 Z M 4.40625 -6.8125 C 4.40625 -7.078125 4.1875 -7.296875 3.921875 -7.296875 C 3.671875 -7.296875 3.453125 -7.078125 3.453125 -6.8125 C 3.453125 -6.5625 3.671875 -6.34375 3.921875 -6.34375 C 4.1875 -6.34375 4.40625 -6.5625 4.40625 -6.8125 Z M 4.40625 -6.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-7">
|
||||
<path style="stroke:none;" d="M 4.71875 -1.9375 L 4.46875 -1.9375 C 4.390625 -1.140625 4.28125 -0.25 2.890625 -0.25 L 2.265625 -0.25 C 1.90625 -0.25 1.859375 -0.28125 1.859375 -0.671875 L 1.859375 -4.375 C 1.859375 -4.875 2.015625 -4.875 2.765625 -4.875 L 2.765625 -5.125 L 1.53125 -5.09375 L 0.421875 -5.125 L 0.421875 -4.875 C 1.09375 -4.875 1.140625 -4.8125 1.140625 -4.40625 L 1.140625 -0.71875 C 1.140625 -0.3125 1.09375 -0.25 0.421875 -0.25 L 0.421875 0 L 4.53125 0 Z M 4.71875 -1.9375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-8">
|
||||
<path style="stroke:none;" d="M 5.390625 -1.765625 C 5.390625 -1.859375 5.390625 -1.921875 5.25 -1.921875 C 5.140625 -1.921875 5.140625 -1.859375 5.140625 -1.765625 C 5.0625 -0.703125 4.203125 -0.109375 3.375 -0.109375 C 2.875 -0.109375 1.359375 -0.375 1.359375 -2.5625 C 1.359375 -4.78125 2.90625 -5.015625 3.359375 -5.015625 C 4.09375 -5.015625 4.9375 -4.5 5.125 -3.234375 C 5.140625 -3.15625 5.15625 -3.09375 5.25 -3.09375 C 5.390625 -3.09375 5.390625 -3.15625 5.390625 -3.34375 L 5.390625 -5.03125 C 5.390625 -5.1875 5.390625 -5.265625 5.28125 -5.265625 C 5.21875 -5.265625 5.21875 -5.25 5.140625 -5.140625 L 4.75 -4.640625 C 4.53125 -4.859375 4.046875 -5.265625 3.296875 -5.265625 C 1.796875 -5.265625 0.515625 -4.078125 0.515625 -2.5625 C 0.515625 -1.046875 1.796875 0.140625 3.296875 0.140625 C 4.59375 0.140625 5.390625 -0.890625 5.390625 -1.765625 Z M 5.390625 -1.765625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-9">
|
||||
<path style="stroke:none;" d="M 5.6875 0 L 5.6875 -0.25 C 5.015625 -0.25 4.96875 -0.3125 4.96875 -0.71875 L 4.96875 -4.40625 C 4.96875 -4.8125 5.015625 -4.875 5.6875 -4.875 L 5.6875 -5.125 L 4.609375 -5.09375 L 3.53125 -5.125 L 3.53125 -4.875 C 4.203125 -4.875 4.25 -4.8125 4.25 -4.40625 L 4.25 -2.796875 L 1.859375 -2.796875 L 1.859375 -4.40625 C 1.859375 -4.8125 1.90625 -4.875 2.578125 -4.875 L 2.578125 -5.125 L 1.5 -5.09375 L 0.421875 -5.125 L 0.421875 -4.875 C 1.09375 -4.875 1.140625 -4.8125 1.140625 -4.40625 L 1.140625 -0.71875 C 1.140625 -0.3125 1.09375 -0.25 0.421875 -0.25 L 0.421875 0 L 1.5 -0.03125 L 2.578125 0 L 2.578125 -0.25 C 1.90625 -0.25 1.859375 -0.3125 1.859375 -0.71875 L 1.859375 -2.546875 L 4.25 -2.546875 L 4.25 -0.71875 C 4.25 -0.3125 4.203125 -0.25 3.53125 -0.25 L 3.53125 0 L 4.609375 -0.03125 Z M 5.6875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-10">
|
||||
<path style="stroke:none;" d="M 5.28125 -1.9375 L 5.03125 -1.9375 C 4.859375 -0.734375 4.609375 -0.25 3.34375 -0.25 L 2.265625 -0.25 C 1.90625 -0.25 1.859375 -0.28125 1.859375 -0.671875 L 1.859375 -2.515625 L 2.5625 -2.515625 C 3.296875 -2.515625 3.421875 -2.328125 3.421875 -1.65625 L 3.671875 -1.65625 L 3.671875 -3.640625 L 3.421875 -3.640625 C 3.421875 -2.96875 3.296875 -2.765625 2.5625 -2.765625 L 1.859375 -2.765625 L 1.859375 -4.421875 C 1.859375 -4.8125 1.90625 -4.84375 2.265625 -4.84375 L 3.28125 -4.84375 C 4.4375 -4.84375 4.6875 -4.5 4.8125 -3.40625 L 5.046875 -3.40625 L 4.859375 -5.09375 L 0.421875 -5.09375 L 0.421875 -4.84375 C 1.09375 -4.84375 1.140625 -4.78125 1.140625 -4.375 L 1.140625 -0.71875 C 1.140625 -0.3125 1.09375 -0.25 0.421875 -0.25 L 0.421875 0 L 4.984375 0 Z M 5.28125 -1.9375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-11">
|
||||
<path style="stroke:none;" d="M 5.6875 -4.875 L 5.6875 -5.125 L 4.828125 -5.09375 C 4.671875 -5.09375 4.21875 -5.109375 3.96875 -5.125 L 3.96875 -4.875 C 4.6875 -4.875 4.6875 -4.34375 4.6875 -4.109375 L 4.6875 -1.15625 L 1.921875 -5 C 1.828125 -5.125 1.8125 -5.125 1.625 -5.125 L 0.421875 -5.125 L 0.421875 -4.875 C 0.671875 -4.875 0.953125 -4.875 1.140625 -4.8125 L 1.140625 -1 C 1.140625 -0.78125 1.140625 -0.25 0.421875 -0.25 L 0.421875 0 L 1.28125 -0.03125 C 1.4375 -0.03125 1.890625 -0.015625 2.140625 0 L 2.140625 -0.25 C 1.421875 -0.25 1.421875 -0.78125 1.421875 -1 L 1.421875 -4.578125 L 1.53125 -4.453125 L 4.65625 -0.109375 C 4.734375 0 4.765625 0 4.828125 0 C 4.96875 0 4.96875 -0.0625 4.96875 -0.265625 L 4.96875 -4.109375 C 4.96875 -4.34375 4.96875 -4.875 5.6875 -4.875 Z M 5.6875 -4.875 "/>
|
||||
</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.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="glyph3-2">
|
||||
<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="glyph3-3">
|
||||
<path style="stroke:none;" d="M 4.640625 -1.09375 C 4.640625 -1.359375 4.359375 -1.359375 4.296875 -1.359375 C 4.140625 -1.359375 4.03125 -1.34375 3.96875 -1.140625 C 3.90625 -1.015625 3.71875 -0.546875 2.984375 -0.546875 C 2.140625 -0.546875 1.421875 -1.25 1.421875 -2.15625 C 1.421875 -2.625 1.6875 -3.78125 3.046875 -3.78125 C 3.25 -3.78125 3.640625 -3.78125 3.640625 -3.6875 C 3.65625 -3.34375 3.84375 -3.203125 4.078125 -3.203125 C 4.3125 -3.203125 4.53125 -3.375 4.53125 -3.65625 C 4.53125 -4.390625 3.484375 -4.390625 3.046875 -4.390625 C 1.328125 -4.390625 0.734375 -3.03125 0.734375 -2.15625 C 0.734375 -0.953125 1.671875 0.0625 2.921875 0.0625 C 4.3125 0.0625 4.640625 -0.921875 4.640625 -1.09375 Z M 4.640625 -1.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-4">
|
||||
<path style="stroke:none;" d="M 5.0625 -0.296875 C 5.0625 -0.609375 4.8125 -0.609375 4.65625 -0.609375 L 4.34375 -0.609375 L 2.859375 -2.546875 L 4.09375 -3.6875 L 4.4375 -3.6875 C 4.578125 -3.6875 4.84375 -3.6875 4.84375 -3.984375 C 4.84375 -4.296875 4.578125 -4.296875 4.4375 -4.296875 L 2.90625 -4.296875 C 2.734375 -4.296875 2.5 -4.296875 2.5 -3.984375 C 2.5 -3.6875 2.75 -3.6875 2.90625 -3.6875 L 3.265625 -3.6875 L 1.65625 -2.171875 L 1.65625 -5.6875 C 1.65625 -5.984375 1.59375 -6.09375 1.25 -6.09375 L 0.609375 -6.09375 C 0.453125 -6.09375 0.203125 -6.09375 0.203125 -5.796875 C 0.203125 -5.484375 0.453125 -5.484375 0.609375 -5.484375 L 1.09375 -5.484375 L 1.09375 -0.609375 L 0.609375 -0.609375 C 0.453125 -0.609375 0.203125 -0.609375 0.203125 -0.3125 C 0.203125 0 0.453125 0 0.609375 0 L 2.140625 0 C 2.296875 0 2.546875 0 2.546875 -0.296875 C 2.546875 -0.609375 2.296875 -0.609375 2.140625 -0.609375 L 1.65625 -0.609375 L 1.65625 -1.421875 L 2.453125 -2.15625 L 3.640625 -0.609375 C 3.28125 -0.609375 3.078125 -0.609375 3.078125 -0.296875 C 3.078125 0 3.328125 0 3.484375 0 L 4.65625 0 C 4.8125 0 5.0625 0 5.0625 -0.296875 Z M 5.0625 -0.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-5">
|
||||
<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="glyph3-6">
|
||||
<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="glyph3-7">
|
||||
<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="glyph3-8">
|
||||
<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="glyph3-9">
|
||||
<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="glyph3-10">
|
||||
<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 L 1.65625 -5.6875 C 1.65625 -5.984375 1.59375 -6.09375 1.25 -6.09375 L 0.53125 -6.09375 C 0.375 -6.09375 0.125 -6.09375 0.125 -5.78125 C 0.125 -5.484375 0.375 -5.484375 0.515625 -5.484375 L 0.96875 -5.484375 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="glyph4-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-1">
|
||||
<path style="stroke:none;" d="M 3.796875 -1.28125 C 3.890625 -1.796875 3.640625 -2.109375 3.53125 -2.21875 C 3.265625 -2.546875 2.890625 -2.625 2.484375 -2.703125 C 1.9375 -2.8125 1.296875 -2.9375 1.390625 -3.515625 C 1.453125 -3.875 1.78125 -4.28125 2.640625 -4.28125 C 3.734375 -4.28125 3.640625 -3.375 3.59375 -3.078125 C 3.59375 -2.984375 3.703125 -2.984375 3.703125 -2.984375 C 3.84375 -2.984375 3.84375 -3.03125 3.875 -3.21875 L 4.046875 -4.234375 C 4.078125 -4.390625 4.09375 -4.46875 3.984375 -4.46875 C 3.921875 -4.46875 3.90625 -4.46875 3.765625 -4.34375 C 3.71875 -4.3125 3.609375 -4.21875 3.5625 -4.1875 C 3.234375 -4.46875 2.828125 -4.46875 2.671875 -4.46875 C 1.453125 -4.46875 0.96875 -3.796875 0.875 -3.234375 C 0.8125 -2.890625 0.921875 -2.609375 1.15625 -2.390625 C 1.4375 -2.140625 1.703125 -2.078125 2.390625 -1.9375 C 2.609375 -1.890625 3.40625 -1.734375 3.28125 -1.015625 C 3.203125 -0.515625 2.78125 -0.109375 2 -0.109375 C 1.171875 -0.109375 0.890625 -0.671875 0.859375 -1.53125 C 0.84375 -1.65625 0.84375 -1.6875 0.734375 -1.6875 C 0.609375 -1.6875 0.59375 -1.625 0.5625 -1.453125 L 0.34375 -0.125 C 0.3125 0.046875 0.3125 0.109375 0.421875 0.109375 C 0.46875 0.109375 0.484375 0.09375 0.703125 -0.09375 C 0.734375 -0.109375 0.734375 -0.125 0.9375 -0.3125 C 1.3125 0.09375 1.75 0.109375 1.96875 0.109375 C 3.109375 0.109375 3.671875 -0.5625 3.796875 -1.28125 Z M 3.796875 -1.28125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-2">
|
||||
<path style="stroke:none;" d="M 4.34375 -1.1875 C 4.359375 -1.28125 4.25 -1.28125 4.234375 -1.28125 C 4.140625 -1.28125 4.109375 -1.25 4.078125 -1.1875 C 3.625 -0.265625 2.953125 -0.140625 2.59375 -0.140625 C 2.0625 -0.140625 1.265625 -0.5625 1.53125 -2.171875 C 1.796875 -3.796875 2.6875 -4.21875 3.21875 -4.21875 C 3.3125 -4.21875 3.921875 -4.203125 4.21875 -3.84375 C 3.8125 -3.8125 3.703125 -3.515625 3.671875 -3.390625 C 3.625 -3.125 3.78125 -2.9375 4.0625 -2.9375 C 4.3125 -2.9375 4.546875 -3.09375 4.59375 -3.40625 C 4.703125 -4.078125 4.015625 -4.46875 3.25 -4.46875 C 2 -4.46875 0.90625 -3.390625 0.703125 -2.15625 C 0.484375 -0.875 1.3125 0.109375 2.46875 0.109375 C 3.796875 0.109375 4.3125 -1.09375 4.34375 -1.1875 Z M 4.34375 -1.1875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-3">
|
||||
<path style="stroke:none;" d="M 5.328125 0 L 5.390625 -0.3125 C 4.859375 -0.3125 4.609375 -0.3125 4.65625 -0.609375 L 4.96875 -2.515625 C 5.109375 -3.375 5.171875 -3.671875 4.921875 -4.03125 C 4.8125 -4.203125 4.515625 -4.40625 3.9375 -4.40625 C 3.09375 -4.40625 2.5625 -3.8125 2.34375 -3.453125 L 2.328125 -3.453125 L 2.90625 -6.921875 L 1.453125 -6.8125 L 1.40625 -6.5 C 2.109375 -6.5 2.171875 -6.4375 2.078125 -5.9375 L 1.21875 -0.75 C 1.140625 -0.3125 1.03125 -0.3125 0.375 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.609375 -0.3125 C 1.9375 -0.3125 1.828125 -0.3125 1.90625 -0.75 L 2.21875 -2.59375 C 2.390625 -3.625 3.1875 -4.1875 3.828125 -4.1875 C 4.453125 -4.1875 4.46875 -3.65625 4.390625 -3.078125 L 4 -0.75 C 3.921875 -0.3125 3.8125 -0.3125 3.140625 -0.3125 L 3.09375 0 L 4.234375 -0.03125 Z M 5.328125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-4">
|
||||
<path style="stroke:none;" d="M 4.265625 -3.796875 C 4.3125 -4.109375 4.0625 -4.40625 3.625 -4.40625 C 2.90625 -4.40625 2.4375 -3.734375 2.21875 -3.3125 L 2.40625 -4.40625 L 1 -4.296875 L 0.953125 -3.984375 C 1.640625 -3.984375 1.71875 -3.921875 1.625 -3.421875 L 1.1875 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.28125 0 L 1.421875 -0.03125 C 1.828125 -0.03125 2.296875 -0.03125 2.6875 0 L 2.734375 -0.3125 L 2.515625 -0.3125 C 1.78125 -0.3125 1.78125 -0.421875 1.84375 -0.78125 L 2.109375 -2.3125 C 2.265625 -3.296875 2.828125 -4.1875 3.59375 -4.1875 C 3.65625 -4.1875 3.671875 -4.1875 3.703125 -4.171875 C 3.671875 -4.171875 3.453125 -4.046875 3.40625 -3.78125 C 3.359375 -3.515625 3.53125 -3.359375 3.765625 -3.359375 C 3.9375 -3.359375 4.203125 -3.484375 4.265625 -3.796875 Z M 4.265625 -3.796875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-5">
|
||||
<path style="stroke:none;" d="M 4.96875 -0.890625 L 5.046875 -1.453125 L 4.8125 -1.453125 L 4.71875 -0.890625 C 4.609375 -0.3125 4.359375 -0.25 4.25 -0.25 C 3.921875 -0.25 3.953125 -0.703125 3.96875 -0.75 L 4.296875 -2.734375 C 4.359375 -3.15625 4.421875 -3.546875 4.140625 -3.921875 C 3.8125 -4.3125 3.34375 -4.46875 2.859375 -4.46875 C 2.046875 -4.46875 1.28125 -4 1.171875 -3.34375 C 1.109375 -3.046875 1.28125 -2.875 1.546875 -2.875 C 1.828125 -2.875 2.03125 -3.078125 2.078125 -3.328125 C 2.109375 -3.453125 2.109375 -3.78125 1.640625 -3.78125 C 1.96875 -4.140625 2.484375 -4.25 2.796875 -4.25 C 3.296875 -4.25 3.796875 -3.859375 3.65625 -2.96875 L 3.59375 -2.609375 C 3.078125 -2.578125 2.375 -2.546875 1.6875 -2.25 C 0.890625 -1.90625 0.546875 -1.390625 0.484375 -0.953125 C 0.34375 -0.140625 1.265625 0.109375 1.890625 0.109375 C 2.546875 0.109375 3.078125 -0.296875 3.34375 -0.75 C 3.3125 -0.359375 3.515625 0.0625 3.984375 0.0625 C 4.203125 0.0625 4.828125 -0.078125 4.96875 -0.890625 Z M 3.375 -1.390625 C 3.234375 -0.453125 2.453125 -0.109375 2 -0.109375 C 1.515625 -0.109375 1.171875 -0.453125 1.25 -0.953125 C 1.328125 -1.5 1.890625 -2.328125 3.546875 -2.390625 Z M 3.09375 -6.03125 C 3.140625 -6.265625 2.96875 -6.5 2.703125 -6.5 C 2.390625 -6.5 2.171875 -6.25 2.140625 -6.03125 C 2.09375 -5.78125 2.265625 -5.546875 2.53125 -5.546875 C 2.84375 -5.546875 3.0625 -5.796875 3.09375 -6.03125 Z M 4.875 -6.03125 C 4.921875 -6.265625 4.75 -6.5 4.46875 -6.5 C 4.171875 -6.5 3.953125 -6.25 3.90625 -6.03125 C 3.875 -5.78125 4.03125 -5.546875 4.3125 -5.546875 C 4.609375 -5.546875 4.828125 -5.796875 4.875 -6.03125 Z M 4.875 -6.03125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-6">
|
||||
<path style="stroke:none;" d="M 5.5 -4.03125 C 5.53125 -4.203125 5.46875 -4.515625 5.078125 -4.515625 C 4.890625 -4.515625 4.4375 -4.453125 3.953125 -4.046875 C 3.578125 -4.375 3.171875 -4.40625 2.953125 -4.40625 C 2.03125 -4.40625 1.21875 -3.71875 1.09375 -2.953125 C 1.015625 -2.515625 1.171875 -2.140625 1.390625 -1.921875 C 1.234375 -1.78125 1 -1.453125 0.9375 -1.09375 C 0.890625 -0.78125 0.953125 -0.40625 1.234375 -0.203125 C 0.609375 -0.046875 0.203125 0.390625 0.15625 0.78125 C 0.03125 1.5 0.921875 2.046875 2.140625 2.046875 C 3.3125 2.046875 4.4375 1.546875 4.5625 0.765625 C 4.625 0.421875 4.578125 -0.09375 4.109375 -0.375 C 3.625 -0.640625 3.046875 -0.640625 2.4375 -0.640625 C 2.1875 -0.640625 1.765625 -0.640625 1.6875 -0.65625 C 1.390625 -0.703125 1.21875 -1 1.28125 -1.328125 C 1.28125 -1.359375 1.328125 -1.59375 1.53125 -1.796875 C 1.859375 -1.515625 2.265625 -1.484375 2.46875 -1.484375 C 3.390625 -1.484375 4.1875 -2.171875 4.3125 -2.9375 C 4.375 -3.3125 4.28125 -3.671875 4.0625 -3.90625 C 4.484375 -4.25 4.859375 -4.296875 5.03125 -4.296875 C 5.03125 -4.296875 5.109375 -4.296875 5.140625 -4.28125 C 5.015625 -4.25 4.9375 -4.140625 4.921875 -4.015625 C 4.890625 -3.84375 5 -3.734375 5.15625 -3.734375 C 5.265625 -3.734375 5.46875 -3.796875 5.5 -4.03125 Z M 3.5625 -2.953125 C 3.53125 -2.6875 3.46875 -2.359375 3.265625 -2.109375 C 3.171875 -2 2.90625 -1.71875 2.5 -1.71875 C 1.640625 -1.71875 1.796875 -2.71875 1.828125 -2.9375 C 1.890625 -3.203125 1.9375 -3.53125 2.140625 -3.78125 C 2.234375 -3.890625 2.515625 -4.171875 2.90625 -4.171875 C 3.78125 -4.171875 3.609375 -3.1875 3.5625 -2.953125 Z M 4.046875 0.78125 C 3.953125 1.328125 3.15625 1.828125 2.1875 1.828125 C 1.171875 1.828125 0.578125 1.3125 0.671875 0.78125 C 0.734375 0.328125 1.1875 -0.046875 1.625 -0.0625 L 2.21875 -0.0625 C 3.078125 -0.0625 4.1875 -0.0625 4.046875 0.78125 Z M 4.046875 0.78125 "/>
|
||||
</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 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="glyph5-2">
|
||||
<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="glyph5-3">
|
||||
<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="glyph5-4">
|
||||
<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="glyph5-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="glyph5-6">
|
||||
<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="glyph5-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="glyph5-8">
|
||||
<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="glyph5-9">
|
||||
<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="glyph5-10">
|
||||
<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="glyph6-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-1">
|
||||
<path style="stroke:none;" d="M 2.609375 -0.875 L 2.609375 -1.265625 L 2.375 -1.265625 L 2.375 -0.890625 C 2.375 -0.40625 2.15625 -0.15625 1.875 -0.15625 C 1.40625 -0.15625 1.40625 -0.734375 1.40625 -0.859375 L 1.40625 -2.75 L 2.484375 -2.75 L 2.484375 -3 L 1.40625 -3 L 1.40625 -4.28125 L 1.15625 -4.28125 C 1.15625 -3.65625 0.875 -2.96875 0.203125 -2.953125 L 0.203125 -2.75 L 0.84375 -2.75 L 0.84375 -0.875 C 0.84375 -0.09375 1.4375 0.0625 1.828125 0.0625 C 2.296875 0.0625 2.609375 -0.328125 2.609375 -0.875 Z M 2.609375 -0.875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-2">
|
||||
<path style="stroke:none;" d="M 1.90625 0 L 1.90625 -0.25 C 1.5 -0.25 1.4375 -0.25 1.4375 -0.546875 L 1.4375 -3.078125 L 0.40625 -3 L 0.40625 -2.75 C 0.84375 -2.75 0.90625 -2.703125 0.90625 -2.359375 L 0.90625 -0.546875 C 0.90625 -0.25 0.84375 -0.25 0.390625 -0.25 L 0.390625 0 C 0.390625 0 0.890625 -0.03125 1.171875 -0.03125 C 1.421875 -0.03125 1.671875 -0.015625 1.90625 0 Z M 1.53125 -4.1875 C 1.53125 -4.421875 1.359375 -4.59375 1.125 -4.59375 C 0.890625 -4.59375 0.734375 -4.40625 0.734375 -4.203125 C 0.734375 -3.984375 0.90625 -3.796875 1.125 -3.796875 C 1.359375 -3.796875 1.53125 -4 1.53125 -4.1875 Z M 1.53125 -4.1875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-3">
|
||||
<path style="stroke:none;" d="M 3.265625 -0.84375 C 3.265625 -0.859375 3.25 -0.9375 3.140625 -0.9375 C 3.046875 -0.9375 3.03125 -0.890625 3.015625 -0.828125 C 2.796875 -0.265625 2.265625 -0.15625 2.015625 -0.15625 C 1.6875 -0.15625 1.375 -0.296875 1.171875 -0.5625 C 0.90625 -0.890625 0.90625 -1.3125 0.90625 -1.59375 L 3.0625 -1.59375 C 3.21875 -1.59375 3.265625 -1.59375 3.265625 -1.734375 C 3.265625 -2.359375 2.921875 -3.109375 1.875 -3.109375 C 0.96875 -3.109375 0.265625 -2.390625 0.265625 -1.53125 C 0.265625 -0.640625 1.046875 0.0625 1.96875 0.0625 C 2.90625 0.0625 3.265625 -0.6875 3.265625 -0.84375 Z M 2.78125 -1.765625 L 0.90625 -1.765625 C 0.984375 -2.75 1.609375 -2.90625 1.875 -2.90625 C 2.734375 -2.90625 2.765625 -1.9375 2.78125 -1.765625 Z M 2.78125 -1.765625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-4">
|
||||
<path style="stroke:none;" d="M 2.78125 -4.390625 C 2.78125 -4.703125 2.46875 -4.90625 2.09375 -4.90625 C 1.546875 -4.90625 0.90625 -4.515625 0.90625 -3.78125 L 0.90625 -3 L 0.3125 -3 L 0.3125 -2.75 L 0.90625 -2.75 L 0.90625 -0.546875 C 0.90625 -0.25 0.84375 -0.25 0.390625 -0.25 L 0.390625 0 C 0.421875 0 0.90625 -0.03125 1.1875 -0.03125 L 2.09375 0 L 2.09375 -0.25 L 1.953125 -0.25 C 1.4375 -0.25 1.4375 -0.328125 1.4375 -0.5625 L 1.4375 -2.75 L 2.3125 -2.75 L 2.3125 -3 L 1.40625 -3 L 1.40625 -3.78125 C 1.40625 -4.421875 1.78125 -4.703125 2.078125 -4.703125 C 2.140625 -4.703125 2.21875 -4.703125 2.28125 -4.671875 C 2.1875 -4.625 2.125 -4.515625 2.125 -4.390625 C 2.125 -4.203125 2.265625 -4.078125 2.453125 -4.078125 C 2.640625 -4.078125 2.78125 -4.203125 2.78125 -4.390625 Z M 2.78125 -4.390625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-5">
|
||||
<path style="stroke:none;" d="M 3.796875 -2.78125 C 3.796875 -2.953125 3.671875 -3.140625 3.390625 -3.140625 C 3.28125 -3.140625 2.90625 -3.125 2.578125 -2.828125 C 2.375 -2.96875 2.078125 -3.078125 1.765625 -3.078125 C 1.046875 -3.078125 0.53125 -2.59375 0.53125 -2.046875 C 0.53125 -1.78125 0.671875 -1.53125 0.859375 -1.34375 C 0.8125 -1.28125 0.65625 -1.046875 0.65625 -0.78125 C 0.65625 -0.6875 0.671875 -0.359375 0.953125 -0.15625 C 0.640625 -0.0625 0.265625 0.171875 0.265625 0.53125 C 0.265625 1.046875 1.03125 1.421875 1.984375 1.421875 C 2.859375 1.421875 3.6875 1.078125 3.6875 0.515625 C 3.6875 0.3125 3.609375 -0.0625 3.21875 -0.265625 C 2.8125 -0.484375 2.390625 -0.484375 1.71875 -0.484375 C 1.5625 -0.484375 1.3125 -0.484375 1.265625 -0.5 C 1.03125 -0.546875 0.90625 -0.75 0.90625 -0.953125 C 0.90625 -1.125 0.96875 -1.1875 1 -1.234375 C 1.109375 -1.171875 1.359375 -1.03125 1.765625 -1.03125 C 2.484375 -1.03125 3 -1.5 3 -2.046875 C 3 -2.328125 2.875 -2.53125 2.703125 -2.71875 C 3.03125 -2.9375 3.296875 -2.953125 3.421875 -2.953125 C 3.390625 -2.921875 3.359375 -2.890625 3.359375 -2.78125 C 3.359375 -2.640625 3.453125 -2.5625 3.578125 -2.5625 C 3.671875 -2.5625 3.796875 -2.625 3.796875 -2.78125 Z M 2.453125 -2.046875 C 2.453125 -1.9375 2.453125 -1.65625 2.3125 -1.484375 C 2.203125 -1.359375 2.015625 -1.234375 1.765625 -1.234375 C 1.09375 -1.234375 1.09375 -1.90625 1.09375 -2.046875 C 1.09375 -2.15625 1.09375 -2.4375 1.21875 -2.625 C 1.328125 -2.734375 1.515625 -2.859375 1.765625 -2.859375 C 2.453125 -2.859375 2.453125 -2.1875 2.453125 -2.046875 Z M 3.265625 0.53125 C 3.265625 0.90625 2.703125 1.21875 1.984375 1.21875 C 1.25 1.21875 0.703125 0.890625 0.703125 0.53125 C 0.703125 0.28125 0.921875 -0.015625 1.359375 -0.015625 L 1.765625 -0.015625 C 2.390625 -0.015625 3.265625 -0.015625 3.265625 0.53125 Z M 3.265625 0.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-6">
|
||||
<path style="stroke:none;" d="M 2.84375 -0.90625 C 2.84375 -1.171875 2.71875 -1.390625 2.53125 -1.546875 C 2.265625 -1.796875 1.953125 -1.859375 1.703125 -1.890625 C 1.15625 -2 0.703125 -2.078125 0.703125 -2.453125 C 0.703125 -2.671875 0.890625 -2.9375 1.546875 -2.9375 C 2.359375 -2.9375 2.390625 -2.375 2.40625 -2.171875 C 2.40625 -2.09375 2.5 -2.09375 2.515625 -2.09375 C 2.640625 -2.09375 2.640625 -2.140625 2.640625 -2.28125 L 2.640625 -2.921875 C 2.640625 -3.046875 2.640625 -3.109375 2.546875 -3.109375 C 2.515625 -3.109375 2.5 -3.109375 2.40625 -3.03125 C 2.390625 -3.015625 2.328125 -2.953125 2.28125 -2.921875 C 2.0625 -3.0625 1.8125 -3.109375 1.546875 -3.109375 C 0.546875 -3.109375 0.3125 -2.578125 0.3125 -2.234375 C 0.3125 -2.015625 0.40625 -1.828125 0.578125 -1.6875 C 0.84375 -1.46875 1.109375 -1.421875 1.546875 -1.34375 C 1.890625 -1.28125 2.453125 -1.1875 2.453125 -0.71875 C 2.453125 -0.453125 2.265625 -0.125 1.59375 -0.125 C 0.921875 -0.125 0.6875 -0.5625 0.5625 -1.03125 C 0.53125 -1.125 0.53125 -1.15625 0.4375 -1.15625 C 0.3125 -1.15625 0.3125 -1.109375 0.3125 -0.96875 L 0.3125 -0.109375 C 0.3125 0 0.3125 0.0625 0.40625 0.0625 C 0.46875 0.0625 0.609375 -0.078125 0.75 -0.234375 C 1.046875 0.0625 1.421875 0.0625 1.59375 0.0625 C 2.5 0.0625 2.84375 -0.421875 2.84375 -0.90625 Z M 2.84375 -0.90625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-7">
|
||||
<path style="stroke:none;" d="M 1.953125 0 L 1.953125 -0.25 C 1.5 -0.25 1.4375 -0.25 1.4375 -0.546875 L 1.4375 -4.84375 L 0.390625 -4.765625 L 0.390625 -4.515625 C 0.859375 -4.515625 0.90625 -4.453125 0.90625 -4.125 L 0.90625 -0.546875 C 0.90625 -0.25 0.84375 -0.25 0.390625 -0.25 L 0.390625 0 C 0.390625 0 0.890625 -0.03125 1.171875 -0.03125 C 1.4375 -0.03125 1.6875 -0.015625 1.953125 0 Z M 1.953125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-8">
|
||||
<path style="stroke:none;" d="M 4.109375 0 L 4.109375 -0.25 C 3.65625 -0.25 3.59375 -0.25 3.59375 -0.546875 L 3.59375 -2.109375 C 3.59375 -2.71875 3.296875 -3.078125 2.546875 -3.078125 C 1.921875 -3.078125 1.578125 -2.703125 1.421875 -2.4375 L 1.421875 -4.84375 L 0.375 -4.765625 L 0.375 -4.515625 C 0.84375 -4.515625 0.90625 -4.453125 0.90625 -4.125 L 0.90625 -0.546875 C 0.90625 -0.25 0.828125 -0.25 0.375 -0.25 L 0.375 0 C 0.375 0 0.875 -0.03125 1.171875 -0.03125 C 1.421875 -0.03125 1.90625 0 1.96875 0 L 1.96875 -0.25 C 1.515625 -0.25 1.453125 -0.25 1.453125 -0.546875 L 1.453125 -1.8125 C 1.453125 -2.53125 2.03125 -2.875 2.484375 -2.875 C 2.96875 -2.875 3.03125 -2.5 3.03125 -2.140625 L 3.03125 -0.546875 C 3.03125 -0.25 2.96875 -0.25 2.515625 -0.25 L 2.515625 0 C 2.515625 0 3.015625 -0.03125 3.3125 -0.03125 C 3.5625 -0.03125 4.046875 0 4.109375 0 Z M 4.109375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-9">
|
||||
<path style="stroke:none;" d="M 3.6875 -1.484375 C 3.6875 -2.359375 2.9375 -3.109375 1.984375 -3.109375 C 1.015625 -3.109375 0.265625 -2.359375 0.265625 -1.484375 C 0.265625 -0.625 1.03125 0.0625 1.984375 0.0625 C 2.921875 0.0625 3.6875 -0.625 3.6875 -1.484375 Z M 3.046875 -1.546875 C 3.046875 -1.21875 3.03125 -0.84375 2.828125 -0.5625 C 2.640625 -0.296875 2.328125 -0.15625 1.984375 -0.15625 C 1.71875 -0.15625 1.34375 -0.234375 1.109375 -0.578125 C 0.921875 -0.859375 0.90625 -1.21875 0.90625 -1.546875 C 0.90625 -1.84375 0.90625 -2.265625 1.15625 -2.5625 C 1.328125 -2.765625 1.625 -2.90625 1.984375 -2.90625 C 2.390625 -2.90625 2.6875 -2.71875 2.84375 -2.5 C 3.03125 -2.234375 3.046875 -1.875 3.046875 -1.546875 Z M 3.046875 -1.546875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-10">
|
||||
<path style="stroke:none;" d="M 3.265625 -0.84375 C 3.265625 -0.921875 3.171875 -0.921875 3.140625 -0.921875 C 3.046875 -0.921875 3.046875 -0.90625 3.015625 -0.796875 C 2.859375 -0.375 2.484375 -0.15625 2.0625 -0.15625 C 1.578125 -0.15625 0.953125 -0.515625 0.953125 -1.515625 C 0.953125 -2.390625 1.390625 -2.890625 2.03125 -2.890625 C 2.125 -2.890625 2.453125 -2.890625 2.703125 -2.78125 C 2.578125 -2.71875 2.515625 -2.609375 2.515625 -2.46875 C 2.515625 -2.28125 2.640625 -2.140625 2.84375 -2.140625 C 3.03125 -2.140625 3.171875 -2.265625 3.171875 -2.484375 C 3.171875 -3.109375 2.203125 -3.109375 2.015625 -3.109375 C 0.96875 -3.109375 0.328125 -2.3125 0.328125 -1.5 C 0.328125 -0.625 1.0625 0.0625 1.984375 0.0625 C 3.015625 0.0625 3.265625 -0.75 3.265625 -0.84375 Z M 3.265625 -0.84375 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="0.746" y="7.873"/>
|
||||
<use xlink:href="#glyph0-2" x="4.246858" y="7.873"/>
|
||||
<use xlink:href="#glyph0-3" x="9.498144" y="7.873"/>
|
||||
<use xlink:href="#glyph0-3" x="13.953419" y="7.873"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="0.746" y="19.828"/>
|
||||
<use xlink:href="#glyph1-2" x="5.328796" y="19.828"/>
|
||||
<use xlink:href="#glyph1-3" x="10.675723" y="19.828"/>
|
||||
<use xlink:href="#glyph1-4" x="14.876952" y="19.828"/>
|
||||
<use xlink:href="#glyph1-5" x="18.950659" y="19.828"/>
|
||||
<use xlink:href="#glyph1-6" x="22.006188" y="19.828"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="0.746" y="31.783"/>
|
||||
<use xlink:href="#glyph2-2" x="9.144472" y="31.783"/>
|
||||
<use xlink:href="#glyph2-3" x="15.254534" y="31.783"/>
|
||||
<use xlink:href="#glyph2-4" x="20.811673" y="31.783"/>
|
||||
<use xlink:href="#glyph2-5" x="23.82237" y="31.783"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-6" x="29.043769" y="31.783"/>
|
||||
<use xlink:href="#glyph2-7" x="35.153832" y="31.783"/>
|
||||
<use xlink:href="#glyph2-8" x="40.267634" y="31.783"/>
|
||||
<use xlink:href="#glyph2-9" x="46.156527" y="31.783"/>
|
||||
<use xlink:href="#glyph2-10" x="52.26659" y="31.783"/>
|
||||
<use xlink:href="#glyph2-11" x="57.823728" y="31.783"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="0.746" y="43.738"/>
|
||||
<use xlink:href="#glyph3-2" x="5.976365" y="43.738"/>
|
||||
<use xlink:href="#glyph3-3" x="11.20673" y="43.738"/>
|
||||
<use xlink:href="#glyph3-4" x="16.437095" y="43.738"/>
|
||||
<use xlink:href="#glyph3-5" x="21.66746" y="43.738"/>
|
||||
<use xlink:href="#glyph3-6" x="26.897825" y="43.738"/>
|
||||
<use xlink:href="#glyph3-7" x="32.12819" y="43.738"/>
|
||||
<use xlink:href="#glyph3-8" x="37.358555" y="43.738"/>
|
||||
<use xlink:href="#glyph3-9" x="42.58892" y="43.738"/>
|
||||
<use xlink:href="#glyph3-6" x="47.819285" y="43.738"/>
|
||||
<use xlink:href="#glyph3-2" x="53.04965" y="43.738"/>
|
||||
<use xlink:href="#glyph3-3" x="58.280015" y="43.738"/>
|
||||
<use xlink:href="#glyph3-10" x="63.51038" y="43.738"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="0.746" y="55.694"/>
|
||||
<use xlink:href="#glyph4-2" x="4.676246" y="55.694"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-3" x="8.825669" y="55.694"/>
|
||||
<use xlink:href="#glyph4-4" x="14.360889" y="55.694"/>
|
||||
<use xlink:href="#glyph4-5" x="18.26324" y="55.694"/>
|
||||
<use xlink:href="#glyph4-6" x="23.24454" y="55.694"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-1" x="0.746" y="67.649"/>
|
||||
<use xlink:href="#glyph5-2" x="6.281221" y="67.649"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-3" x="11.537488" y="67.649"/>
|
||||
<use xlink:href="#glyph5-4" x="15.411943" y="67.649"/>
|
||||
<use xlink:href="#glyph5-5" x="19.840319" y="67.649"/>
|
||||
<use xlink:href="#glyph5-6" x="23.74267" y="67.649"/>
|
||||
<use xlink:href="#glyph5-3" x="27.672915" y="67.649"/>
|
||||
<use xlink:href="#glyph5-5" x="31.54737" y="67.649"/>
|
||||
<use xlink:href="#glyph5-7" x="35.449721" y="67.649"/>
|
||||
<use xlink:href="#glyph5-8" x="38.217331" y="67.649"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-9" x="42.366754" y="67.649"/>
|
||||
<use xlink:href="#glyph5-4" x="47.901975" y="67.649"/>
|
||||
<use xlink:href="#glyph5-2" x="52.33035" y="67.649"/>
|
||||
</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.00009375 0.00003125 L 57.117281 0.00003125 " transform="matrix(1,0,0,-1,0.746,69.043)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-10" x="0.746" y="79.604"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph6-1" x="6.004" y="81.098"/>
|
||||
<use xlink:href="#glyph6-2" x="9.117104" y="81.098"/>
|
||||
<use xlink:href="#glyph6-3" x="11.372431" y="81.098"/>
|
||||
<use xlink:href="#glyph6-4" x="14.914424" y="81.098"/>
|
||||
<use xlink:href="#glyph6-5" x="17.384544" y="81.098"/>
|
||||
<use xlink:href="#glyph6-3" x="21.355426" y="81.098"/>
|
||||
<use xlink:href="#glyph6-6" x="24.897419" y="81.098"/>
|
||||
<use xlink:href="#glyph6-1" x="28.053761" y="81.098"/>
|
||||
<use xlink:href="#glyph6-3" x="31.166865" y="81.098"/>
|
||||
<use xlink:href="#glyph6-7" x="34.708858" y="81.098"/>
|
||||
<use xlink:href="#glyph6-7" x="36.964185" y="81.098"/>
|
||||
<use xlink:href="#glyph6-1" x="39.219512" y="81.098"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-10" x="0.746" y="91.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph6-8" x="6.004" y="87.944"/>
|
||||
<use xlink:href="#glyph6-9" x="10.404468" y="87.944"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph6-10" x="14.591537" y="87.944"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph6-8" x="17.917343" y="87.944"/>
|
||||
<use xlink:href="#glyph6-5" x="22.31781" y="87.944"/>
|
||||
<use xlink:href="#glyph6-3" x="26.288692" y="87.944"/>
|
||||
<use xlink:href="#glyph6-6" x="29.830685" y="87.944"/>
|
||||
<use xlink:href="#glyph6-1" x="32.987027" y="87.944"/>
|
||||
<use xlink:href="#glyph6-3" x="36.100131" y="87.944"/>
|
||||
<use xlink:href="#glyph6-7" x="39.642124" y="87.944"/>
|
||||
<use xlink:href="#glyph6-7" x="41.897451" y="87.944"/>
|
||||
<use xlink:href="#glyph6-1" x="44.152778" y="87.944"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 61 KiB |
310
sections/german/06/optische-auszeichnungen-orig.svg
Normal file
@ -0,0 +1,310 @@
|
||||
<?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.359375 -6.109375 C 4.359375 -6.53125 4 -6.984375 3.21875 -6.984375 C 2.25 -6.984375 1.171875 -6.5625 1.171875 -5.4375 L 1.171875 -4.421875 L 0.421875 -4.421875 L 0.421875 -3.953125 L 1.171875 -3.953125 L 1.171875 -0.46875 L 0.484375 -0.46875 L 0.484375 0 L 1.734375 -0.03125 C 2.109375 -0.03125 2.75 -0.03125 3.109375 0 L 3.109375 -0.46875 L 2.25 -0.46875 L 2.25 -3.953125 L 3.390625 -3.953125 L 3.390625 -4.421875 L 2.1875 -4.421875 L 2.1875 -5.4375 C 2.1875 -6.53125 2.9375 -6.625 3.1875 -6.625 C 3.234375 -6.625 3.296875 -6.625 3.359375 -6.59375 C 3.203125 -6.484375 3.125 -6.296875 3.125 -6.109375 C 3.125 -5.6875 3.484375 -5.5 3.734375 -5.5 C 4.03125 -5.5 4.359375 -5.703125 4.359375 -6.109375 Z M 4.359375 -6.109375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 4.921875 -1.171875 C 4.921875 -1.34375 4.734375 -1.34375 4.6875 -1.34375 C 4.515625 -1.34375 4.5 -1.296875 4.4375 -1.140625 C 4.234375 -0.65625 3.65625 -0.34375 3.015625 -0.34375 C 1.609375 -0.34375 1.59375 -1.671875 1.59375 -2.171875 L 4.609375 -2.171875 C 4.828125 -2.171875 4.921875 -2.171875 4.921875 -2.4375 C 4.921875 -2.75 4.859375 -3.484375 4.359375 -3.984375 C 4 -4.34375 3.46875 -4.515625 2.78125 -4.515625 C 1.1875 -4.515625 0.3125 -3.484375 0.3125 -2.25 C 0.3125 -0.90625 1.3125 0.0625 2.921875 0.0625 C 4.5 0.0625 4.921875 -1 4.921875 -1.171875 Z M 3.984375 -2.5 L 1.59375 -2.5 C 1.609375 -2.890625 1.625 -3.3125 1.828125 -3.640625 C 2.09375 -4.03125 2.5 -4.15625 2.78125 -4.15625 C 3.953125 -4.15625 3.96875 -2.84375 3.984375 -2.5 Z M 3.984375 -2.5 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 3.8125 -1.234375 L 3.8125 -1.765625 L 3.34375 -1.765625 L 3.34375 -1.25 C 3.34375 -0.578125 3.015625 -0.34375 2.734375 -0.34375 C 2.15625 -0.34375 2.15625 -0.984375 2.15625 -1.203125 L 2.15625 -3.953125 L 3.625 -3.953125 L 3.625 -4.421875 L 2.15625 -4.421875 L 2.15625 -6.328125 L 1.6875 -6.328125 C 1.6875 -5.328125 1.203125 -4.34375 0.203125 -4.3125 L 0.203125 -3.953125 L 1.03125 -3.953125 L 1.03125 -1.21875 C 1.03125 -0.15625 1.890625 0.0625 2.609375 0.0625 C 3.359375 0.0625 3.8125 -0.515625 3.8125 -1.234375 Z M 3.8125 -1.234375 "/>
|
||||
</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.828125 -1.421875 C 4.828125 -1.53125 4.75 -1.53125 4.671875 -1.53125 C 4.5625 -1.53125 4.546875 -1.515625 4.484375 -1.296875 C 4.359375 -0.78125 4.171875 -0.109375 3.734375 -0.109375 C 3.453125 -0.109375 3.4375 -0.34375 3.4375 -0.53125 C 3.4375 -0.765625 3.515625 -1.046875 3.515625 -1.09375 C 3.5625 -1.3125 3.5625 -1.3125 3.5625 -1.453125 C 3.5625 -2.125 2.875 -2.390625 2.25 -2.484375 C 2.46875 -2.625 2.6875 -2.828125 2.953125 -3.140625 C 3.46875 -3.734375 3.859375 -4.1875 4.359375 -4.1875 C 4.546875 -4.1875 4.625 -4.0625 4.625 -4.0625 C 4.203125 -4 4.15625 -3.65625 4.15625 -3.5625 C 4.15625 -3.4375 4.25 -3.25 4.5 -3.25 C 4.71875 -3.25 5 -3.421875 5 -3.8125 C 5 -4.0625 4.828125 -4.40625 4.375 -4.40625 C 3.84375 -4.40625 3.421875 -3.984375 3.078125 -3.59375 C 2.515625 -2.9375 2.359375 -2.765625 2 -2.609375 L 3.015625 -6.671875 C 3.03125 -6.703125 3.046875 -6.796875 3.046875 -6.796875 C 3.046875 -6.890625 2.984375 -6.921875 2.90625 -6.921875 C 2.875 -6.921875 2.78125 -6.90625 2.75 -6.890625 L 1.765625 -6.8125 C 1.640625 -6.8125 1.53125 -6.796875 1.53125 -6.609375 C 1.53125 -6.5 1.640625 -6.5 1.78125 -6.5 C 2.25 -6.5 2.265625 -6.4375 2.265625 -6.328125 C 2.265625 -6.296875 2.25 -6.15625 2.25 -6.15625 L 0.765625 -0.28125 C 0.75 -0.265625 0.75 -0.15625 0.75 -0.15625 C 0.75 -0.046875 0.84375 0.109375 1.03125 0.109375 C 1.328125 0.109375 1.390625 -0.171875 1.421875 -0.265625 L 1.921875 -2.28125 C 2.296875 -2.234375 2.9375 -2.03125 2.9375 -1.453125 C 2.9375 -1.375 2.9375 -1.328125 2.90625 -1.203125 C 2.859375 -1.03125 2.859375 -0.953125 2.859375 -0.859375 C 2.859375 -0.140625 3.328125 0.109375 3.703125 0.109375 C 4.140625 0.109375 4.359375 -0.21875 4.46875 -0.40625 C 4.6875 -0.78125 4.828125 -1.390625 4.828125 -1.421875 Z M 4.828125 -1.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<path style="stroke:none;" d="M 5.59375 -1.421875 C 5.59375 -1.53125 5.515625 -1.53125 5.4375 -1.53125 C 5.328125 -1.53125 5.3125 -1.515625 5.25 -1.296875 C 5.109375 -0.734375 4.921875 -0.109375 4.578125 -0.109375 C 4.328125 -0.109375 4.328125 -0.375 4.328125 -0.515625 C 4.328125 -0.59375 4.328125 -0.75 4.390625 -1.03125 L 5.109375 -3.890625 C 5.140625 -3.953125 5.140625 -4 5.140625 -4.03125 C 5.140625 -4.140625 5.0625 -4.296875 4.859375 -4.296875 C 4.5625 -4.296875 4.5 -4 4.46875 -3.921875 L 3.75 -1.015625 C 3.703125 -0.84375 3.703125 -0.8125 3.609375 -0.6875 C 3.421875 -0.40625 3.125 -0.109375 2.6875 -0.109375 C 2.25 -0.109375 2.15625 -0.546875 2.15625 -0.875 C 2.15625 -1.484375 2.484375 -2.375 2.734375 -3.0625 C 2.8125 -3.265625 2.859375 -3.40625 2.859375 -3.59375 C 2.859375 -4.09375 2.53125 -4.40625 2.109375 -4.40625 C 1.171875 -4.40625 0.828125 -2.9375 0.828125 -2.875 C 0.828125 -2.765625 0.921875 -2.765625 0.984375 -2.765625 C 1.109375 -2.765625 1.109375 -2.796875 1.15625 -2.9375 C 1.234375 -3.234375 1.5 -4.1875 2.078125 -4.1875 C 2.1875 -4.1875 2.296875 -4.15625 2.296875 -3.890625 C 2.296875 -3.65625 2.203125 -3.390625 2.0625 -3 C 1.796875 -2.296875 1.546875 -1.5625 1.546875 -1.046875 C 1.546875 -0.171875 2.125 0.109375 2.65625 0.109375 C 3.1875 0.109375 3.53125 -0.1875 3.765625 -0.484375 C 3.953125 0.046875 4.375 0.109375 4.5625 0.109375 C 4.9375 0.109375 5.140625 -0.140625 5.296875 -0.453125 C 5.46875 -0.828125 5.59375 -1.421875 5.59375 -1.421875 Z M 5.59375 -1.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-3">
|
||||
<path style="stroke:none;" d="M 4.875 -3.78125 C 4.875 -4.296875 4.234375 -4.40625 3.890625 -4.40625 C 3.203125 -4.40625 2.84375 -3.90625 2.6875 -3.6875 C 2.578125 -4.21875 2.1875 -4.40625 1.859375 -4.40625 C 1.5 -4.40625 1.3125 -4.171875 1.140625 -3.875 C 0.953125 -3.484375 0.828125 -2.875 0.828125 -2.875 C 0.828125 -2.765625 0.921875 -2.765625 0.984375 -2.765625 C 1.109375 -2.765625 1.109375 -2.78125 1.171875 -3 C 1.34375 -3.703125 1.53125 -4.1875 1.84375 -4.1875 C 2.109375 -4.1875 2.109375 -3.890625 2.109375 -3.78125 C 2.109375 -3.625 2.078125 -3.4375 2.03125 -3.28125 L 1.28125 -0.296875 C 1.265625 -0.234375 1.25 -0.171875 1.25 -0.15625 C 1.25 -0.046875 1.328125 0.109375 1.53125 0.109375 C 1.828125 0.109375 1.90625 -0.171875 1.921875 -0.265625 L 2.578125 -2.875 C 2.578125 -2.90625 3.03125 -4.1875 3.890625 -4.1875 C 3.9375 -4.1875 4.21875 -4.1875 4.421875 -4.046875 C 4.0625 -3.9375 4.03125 -3.625 4.03125 -3.5625 C 4.03125 -3.4375 4.125 -3.25 4.390625 -3.25 C 4.5625 -3.25 4.875 -3.390625 4.875 -3.78125 Z M 4.875 -3.78125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-4">
|
||||
<path style="stroke:none;" d="M 3.921875 -1.5625 C 3.921875 -2.4375 3.140625 -2.609375 2.734375 -2.703125 C 2.453125 -2.765625 2.09375 -2.84375 2.09375 -3.265625 C 2.09375 -3.515625 2.296875 -4.1875 3.09375 -4.1875 C 3.375 -4.1875 3.734375 -4.09375 3.84375 -3.703125 C 3.53125 -3.65625 3.453125 -3.390625 3.453125 -3.296875 C 3.453125 -3.1875 3.515625 -3.015625 3.75 -3.015625 C 3.921875 -3.015625 4.171875 -3.125 4.171875 -3.5625 C 4.171875 -4.015625 3.765625 -4.40625 3.109375 -4.40625 C 1.9375 -4.40625 1.53125 -3.453125 1.53125 -2.9375 C 1.53125 -2.15625 2.1875 -2.03125 2.46875 -1.96875 C 2.90625 -1.859375 3.34375 -1.765625 3.34375 -1.21875 C 3.34375 -0.90625 3.078125 -0.109375 2.046875 -0.109375 C 1.828125 -0.109375 1.25 -0.15625 1.09375 -0.671875 C 1.609375 -0.71875 1.609375 -1.15625 1.609375 -1.15625 C 1.609375 -1.34375 1.46875 -1.46875 1.265625 -1.46875 C 1.03125 -1.46875 0.75 -1.3125 0.75 -0.859375 C 0.75 -0.25 1.328125 0.109375 2.046875 0.109375 C 3.53125 0.109375 3.921875 -1.109375 3.921875 -1.5625 Z M 3.921875 -1.5625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-5">
|
||||
<path style="stroke:none;" d="M 3.296875 -1.421875 C 3.296875 -1.53125 3.21875 -1.53125 3.15625 -1.53125 C 3.015625 -1.53125 3.015625 -1.5 2.984375 -1.359375 C 2.90625 -1.0625 2.625 -0.109375 2.046875 -0.109375 C 1.96875 -0.109375 1.828125 -0.125 1.828125 -0.390625 C 1.828125 -0.640625 1.96875 -0.984375 2.09375 -1.34375 L 2.734375 -3.046875 C 2.828125 -3.34375 2.84375 -3.421875 2.84375 -3.609375 C 2.84375 -4.15625 2.46875 -4.40625 2.109375 -4.40625 C 1.171875 -4.40625 0.828125 -2.921875 0.828125 -2.875 C 0.828125 -2.765625 0.921875 -2.765625 0.984375 -2.765625 C 1.109375 -2.765625 1.109375 -2.796875 1.15625 -2.9375 C 1.25 -3.265625 1.5 -4.1875 2.078125 -4.1875 C 2.1875 -4.1875 2.296875 -4.140625 2.296875 -3.90625 C 2.296875 -3.671875 2.1875 -3.375 2.125 -3.1875 L 1.828125 -2.359375 L 1.453125 -1.375 C 1.3125 -1 1.28125 -0.890625 1.28125 -0.6875 C 1.28125 -0.296875 1.515625 0.109375 2.03125 0.109375 C 2.96875 0.109375 3.296875 -1.390625 3.296875 -1.421875 Z M 3.5625 -6.09375 C 3.5625 -6.296875 3.421875 -6.515625 3.125 -6.515625 C 2.796875 -6.515625 2.484375 -6.203125 2.484375 -5.890625 C 2.484375 -5.671875 2.640625 -5.46875 2.9375 -5.46875 C 3.25 -5.46875 3.5625 -5.765625 3.5625 -6.09375 Z M 3.5625 -6.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-6">
|
||||
<path style="stroke:none;" d="M 4.921875 -3.75 C 4.921875 -4.09375 4.796875 -4.40625 4.5 -4.40625 C 4.28125 -4.40625 4.03125 -4.171875 4.03125 -3.953125 C 4.03125 -3.8125 4.09375 -3.75 4.15625 -3.671875 C 4.390625 -3.421875 4.421875 -3.09375 4.421875 -2.890625 C 4.421875 -2.609375 3.953125 -0.109375 2.8125 -0.109375 C 2.265625 -0.109375 2.15625 -0.609375 2.15625 -0.9375 C 2.15625 -1.515625 2.484375 -2.375 2.75 -3.09375 C 2.796875 -3.265625 2.859375 -3.40625 2.859375 -3.59375 C 2.859375 -4.09375 2.53125 -4.40625 2.109375 -4.40625 C 1.171875 -4.40625 0.828125 -2.9375 0.828125 -2.875 C 0.828125 -2.765625 0.921875 -2.765625 0.984375 -2.765625 C 1.109375 -2.765625 1.109375 -2.796875 1.15625 -2.9375 C 1.234375 -3.234375 1.5 -4.1875 2.078125 -4.1875 C 2.1875 -4.1875 2.296875 -4.15625 2.296875 -3.890625 C 2.296875 -3.65625 2.203125 -3.390625 2.0625 -3 C 1.75 -2.15625 1.5625 -1.5625 1.5625 -1.09375 C 1.5625 -0.171875 2.1875 0.109375 2.78125 0.109375 C 4.453125 0.109375 4.921875 -3.484375 4.921875 -3.75 Z M 4.921875 -3.75 "/>
|
||||
</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 7.828125 0 L 7.828125 -0.3125 C 7.359375 -0.3125 7.078125 -0.3125 6.71875 -0.8125 L 4.328125 -4.171875 L 6.203125 -5.890625 C 6.578125 -6.234375 7.078125 -6.484375 7.671875 -6.5 L 7.671875 -6.8125 C 7.421875 -6.78125 7.09375 -6.78125 6.828125 -6.78125 C 6.46875 -6.78125 5.90625 -6.78125 5.5625 -6.8125 L 5.5625 -6.5 C 5.9375 -6.484375 5.984375 -6.265625 5.984375 -6.1875 C 5.984375 -6.09375 5.9375 -5.984375 5.78125 -5.828125 L 2.46875 -2.84375 L 2.46875 -6.03125 C 2.46875 -6.390625 2.484375 -6.5 3.25 -6.5 L 3.484375 -6.5 L 3.484375 -6.8125 C 3.140625 -6.78125 2.40625 -6.78125 2.03125 -6.78125 C 1.640625 -6.78125 0.890625 -6.78125 0.546875 -6.8125 L 0.546875 -6.5 L 0.78125 -6.5 C 1.5625 -6.5 1.578125 -6.390625 1.578125 -6.03125 L 1.578125 -0.78125 C 1.578125 -0.421875 1.5625 -0.3125 0.78125 -0.3125 L 0.546875 -0.3125 L 0.546875 0 C 0.890625 -0.03125 1.640625 -0.03125 2.015625 -0.03125 C 2.390625 -0.03125 3.140625 -0.03125 3.484375 0 L 3.484375 -0.3125 L 3.25 -0.3125 C 2.484375 -0.3125 2.46875 -0.421875 2.46875 -0.78125 L 2.46875 -2.5 L 3.71875 -3.640625 L 5.65625 -0.9375 C 5.71875 -0.859375 5.8125 -0.703125 5.8125 -0.59375 C 5.8125 -0.3125 5.4375 -0.3125 5.25 -0.3125 L 5.25 0 C 5.59375 -0.03125 6.296875 -0.03125 6.671875 -0.03125 Z M 7.828125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<path style="stroke:none;" d="M 5.765625 0 L 5.765625 -0.25 C 5.21875 -0.25 5.125 -0.296875 5 -0.640625 L 3.28125 -5.078125 C 3.21875 -5.234375 3.171875 -5.296875 3.0625 -5.296875 C 2.921875 -5.296875 2.90625 -5.234375 2.84375 -5.109375 L 1.25 -0.984375 C 1.140625 -0.71875 0.96875 -0.265625 0.34375 -0.25 L 0.34375 0 C 0.5625 -0.015625 0.84375 -0.03125 1.0625 -0.03125 L 1.890625 0 L 1.890625 -0.25 C 1.46875 -0.265625 1.453125 -0.609375 1.453125 -0.703125 C 1.453125 -0.78125 1.453125 -0.796875 1.78125 -1.6875 L 3.84375 -1.6875 L 4.0625 -1.125 C 4.140625 -0.921875 4.28125 -0.59375 4.28125 -0.53125 C 4.28125 -0.25 3.921875 -0.25 3.75 -0.25 L 3.75 0 L 4.8125 -0.03125 C 5.140625 -0.03125 5.53125 -0.015625 5.765625 0 Z M 3.75 -1.9375 L 1.890625 -1.9375 L 2.828125 -4.34375 Z M 3.75 -1.9375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-3">
|
||||
<path style="stroke:none;" d="M 5.046875 -3.71875 C 5.046875 -4.4375 4.296875 -5.125 3.15625 -5.125 L 0.453125 -5.125 L 0.453125 -4.875 C 1.109375 -4.875 1.171875 -4.8125 1.171875 -4.40625 L 1.171875 -0.71875 C 1.171875 -0.3125 1.109375 -0.25 0.453125 -0.25 L 0.453125 0 L 1.53125 -0.03125 L 2.609375 0 L 2.609375 -0.25 C 1.9375 -0.25 1.890625 -0.3125 1.890625 -0.71875 L 1.890625 -2.328125 L 3.21875 -2.328125 C 4.21875 -2.328125 5.046875 -2.953125 5.046875 -3.71875 Z M 4.203125 -3.71875 C 4.203125 -3.328125 4.203125 -2.5625 2.9375 -2.5625 L 1.859375 -2.5625 L 1.859375 -4.453125 C 1.859375 -4.84375 1.90625 -4.875 2.25 -4.875 L 2.9375 -4.875 C 4.203125 -4.875 4.203125 -4.109375 4.203125 -3.71875 Z M 4.203125 -3.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-4">
|
||||
<path style="stroke:none;" d="M 2.625 0 L 2.625 -0.25 C 1.90625 -0.25 1.859375 -0.296875 1.859375 -0.734375 L 1.859375 -4.390625 C 1.859375 -4.828125 1.90625 -4.875 2.625 -4.875 L 2.625 -5.125 L 1.5 -5.09375 L 0.390625 -5.125 L 0.390625 -4.875 C 1.09375 -4.875 1.140625 -4.828125 1.140625 -4.390625 L 1.140625 -0.734375 C 1.140625 -0.296875 1.09375 -0.25 0.390625 -0.25 L 0.390625 0 L 1.5 -0.03125 Z M 2.625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-5">
|
||||
<path style="stroke:none;" d="M 5.53125 -3.375 L 5.390625 -5.0625 L 0.5 -5.0625 L 0.359375 -3.375 L 0.609375 -3.375 C 0.703125 -4.640625 0.890625 -4.8125 2 -4.8125 C 2.5625 -4.8125 2.59375 -4.8125 2.59375 -4.390625 L 2.59375 -0.75 C 2.59375 -0.359375 2.546875 -0.25 1.78125 -0.25 L 1.578125 -0.25 L 1.578125 0 C 1.96875 -0.03125 2.546875 -0.03125 2.953125 -0.03125 C 3.34375 -0.03125 3.9375 -0.03125 4.328125 0 L 4.328125 -0.25 L 4.109375 -0.25 C 3.34375 -0.25 3.3125 -0.359375 3.3125 -0.75 L 3.3125 -4.390625 C 3.3125 -4.8125 3.34375 -4.8125 3.890625 -4.8125 C 4.96875 -4.8125 5.1875 -4.640625 5.28125 -3.375 Z M 5.53125 -3.375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-6">
|
||||
<path style="stroke:none;" d="M 5.765625 0 L 5.765625 -0.25 C 5.21875 -0.25 5.125 -0.296875 5 -0.640625 L 3.28125 -5.078125 C 3.21875 -5.234375 3.171875 -5.296875 3.0625 -5.296875 C 2.921875 -5.296875 2.90625 -5.234375 2.84375 -5.109375 L 1.25 -0.984375 C 1.140625 -0.71875 0.96875 -0.265625 0.34375 -0.25 L 0.34375 0 C 0.5625 -0.015625 0.84375 -0.03125 1.0625 -0.03125 L 1.890625 0 L 1.890625 -0.25 C 1.46875 -0.265625 1.453125 -0.609375 1.453125 -0.703125 C 1.453125 -0.78125 1.453125 -0.796875 1.78125 -1.6875 L 3.84375 -1.6875 L 4.0625 -1.125 C 4.140625 -0.921875 4.28125 -0.59375 4.28125 -0.53125 C 4.28125 -0.25 3.921875 -0.25 3.75 -0.25 L 3.75 0 L 4.8125 -0.03125 C 5.140625 -0.03125 5.53125 -0.015625 5.765625 0 Z M 3.75 -1.9375 L 1.890625 -1.9375 L 2.828125 -4.34375 Z M 2.65625 -6.8125 C 2.65625 -7.078125 2.4375 -7.296875 2.171875 -7.296875 C 1.90625 -7.296875 1.6875 -7.078125 1.6875 -6.8125 C 1.6875 -6.5625 1.90625 -6.34375 2.171875 -6.34375 C 2.4375 -6.34375 2.65625 -6.5625 2.65625 -6.8125 Z M 4.40625 -6.8125 C 4.40625 -7.078125 4.1875 -7.296875 3.921875 -7.296875 C 3.671875 -7.296875 3.453125 -7.078125 3.453125 -6.8125 C 3.453125 -6.5625 3.671875 -6.34375 3.921875 -6.34375 C 4.1875 -6.34375 4.40625 -6.5625 4.40625 -6.8125 Z M 4.40625 -6.8125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-7">
|
||||
<path style="stroke:none;" d="M 4.71875 -1.9375 L 4.46875 -1.9375 C 4.390625 -1.140625 4.28125 -0.25 2.890625 -0.25 L 2.265625 -0.25 C 1.90625 -0.25 1.859375 -0.28125 1.859375 -0.671875 L 1.859375 -4.375 C 1.859375 -4.875 2.015625 -4.875 2.765625 -4.875 L 2.765625 -5.125 L 1.53125 -5.09375 L 0.421875 -5.125 L 0.421875 -4.875 C 1.09375 -4.875 1.140625 -4.8125 1.140625 -4.40625 L 1.140625 -0.71875 C 1.140625 -0.3125 1.09375 -0.25 0.421875 -0.25 L 0.421875 0 L 4.53125 0 Z M 4.71875 -1.9375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-8">
|
||||
<path style="stroke:none;" d="M 5.390625 -1.765625 C 5.390625 -1.859375 5.390625 -1.921875 5.25 -1.921875 C 5.140625 -1.921875 5.140625 -1.859375 5.140625 -1.765625 C 5.0625 -0.703125 4.203125 -0.109375 3.375 -0.109375 C 2.875 -0.109375 1.359375 -0.375 1.359375 -2.5625 C 1.359375 -4.78125 2.90625 -5.015625 3.359375 -5.015625 C 4.09375 -5.015625 4.9375 -4.5 5.125 -3.234375 C 5.140625 -3.15625 5.15625 -3.09375 5.25 -3.09375 C 5.390625 -3.09375 5.390625 -3.15625 5.390625 -3.34375 L 5.390625 -5.03125 C 5.390625 -5.1875 5.390625 -5.265625 5.28125 -5.265625 C 5.21875 -5.265625 5.21875 -5.25 5.140625 -5.140625 L 4.75 -4.640625 C 4.53125 -4.859375 4.046875 -5.265625 3.296875 -5.265625 C 1.796875 -5.265625 0.515625 -4.078125 0.515625 -2.5625 C 0.515625 -1.046875 1.796875 0.140625 3.296875 0.140625 C 4.59375 0.140625 5.390625 -0.890625 5.390625 -1.765625 Z M 5.390625 -1.765625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-9">
|
||||
<path style="stroke:none;" d="M 5.6875 0 L 5.6875 -0.25 C 5.015625 -0.25 4.96875 -0.3125 4.96875 -0.71875 L 4.96875 -4.40625 C 4.96875 -4.8125 5.015625 -4.875 5.6875 -4.875 L 5.6875 -5.125 L 4.609375 -5.09375 L 3.53125 -5.125 L 3.53125 -4.875 C 4.203125 -4.875 4.25 -4.8125 4.25 -4.40625 L 4.25 -2.796875 L 1.859375 -2.796875 L 1.859375 -4.40625 C 1.859375 -4.8125 1.90625 -4.875 2.578125 -4.875 L 2.578125 -5.125 L 1.5 -5.09375 L 0.421875 -5.125 L 0.421875 -4.875 C 1.09375 -4.875 1.140625 -4.8125 1.140625 -4.40625 L 1.140625 -0.71875 C 1.140625 -0.3125 1.09375 -0.25 0.421875 -0.25 L 0.421875 0 L 1.5 -0.03125 L 2.578125 0 L 2.578125 -0.25 C 1.90625 -0.25 1.859375 -0.3125 1.859375 -0.71875 L 1.859375 -2.546875 L 4.25 -2.546875 L 4.25 -0.71875 C 4.25 -0.3125 4.203125 -0.25 3.53125 -0.25 L 3.53125 0 L 4.609375 -0.03125 Z M 5.6875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-10">
|
||||
<path style="stroke:none;" d="M 5.28125 -1.9375 L 5.03125 -1.9375 C 4.859375 -0.734375 4.609375 -0.25 3.34375 -0.25 L 2.265625 -0.25 C 1.90625 -0.25 1.859375 -0.28125 1.859375 -0.671875 L 1.859375 -2.515625 L 2.5625 -2.515625 C 3.296875 -2.515625 3.421875 -2.328125 3.421875 -1.65625 L 3.671875 -1.65625 L 3.671875 -3.640625 L 3.421875 -3.640625 C 3.421875 -2.96875 3.296875 -2.765625 2.5625 -2.765625 L 1.859375 -2.765625 L 1.859375 -4.421875 C 1.859375 -4.8125 1.90625 -4.84375 2.265625 -4.84375 L 3.28125 -4.84375 C 4.4375 -4.84375 4.6875 -4.5 4.8125 -3.40625 L 5.046875 -3.40625 L 4.859375 -5.09375 L 0.421875 -5.09375 L 0.421875 -4.84375 C 1.09375 -4.84375 1.140625 -4.78125 1.140625 -4.375 L 1.140625 -0.71875 C 1.140625 -0.3125 1.09375 -0.25 0.421875 -0.25 L 0.421875 0 L 4.984375 0 Z M 5.28125 -1.9375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-11">
|
||||
<path style="stroke:none;" d="M 5.6875 -4.875 L 5.6875 -5.125 L 4.828125 -5.09375 C 4.671875 -5.09375 4.21875 -5.109375 3.96875 -5.125 L 3.96875 -4.875 C 4.6875 -4.875 4.6875 -4.34375 4.6875 -4.109375 L 4.6875 -1.15625 L 1.921875 -5 C 1.828125 -5.125 1.8125 -5.125 1.625 -5.125 L 0.421875 -5.125 L 0.421875 -4.875 C 0.671875 -4.875 0.953125 -4.875 1.140625 -4.8125 L 1.140625 -1 C 1.140625 -0.78125 1.140625 -0.25 0.421875 -0.25 L 0.421875 0 L 1.28125 -0.03125 C 1.4375 -0.03125 1.890625 -0.015625 2.140625 0 L 2.140625 -0.25 C 1.421875 -0.25 1.421875 -0.78125 1.421875 -1 L 1.421875 -4.578125 L 1.53125 -4.453125 L 4.65625 -0.109375 C 4.734375 0 4.765625 0 4.828125 0 C 4.96875 0 4.96875 -0.0625 4.96875 -0.265625 L 4.96875 -4.109375 C 4.96875 -4.34375 4.96875 -4.875 5.6875 -4.875 Z M 5.6875 -4.875 "/>
|
||||
</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.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="glyph3-2">
|
||||
<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="glyph3-3">
|
||||
<path style="stroke:none;" d="M 4.640625 -1.09375 C 4.640625 -1.359375 4.359375 -1.359375 4.296875 -1.359375 C 4.140625 -1.359375 4.03125 -1.34375 3.96875 -1.140625 C 3.90625 -1.015625 3.71875 -0.546875 2.984375 -0.546875 C 2.140625 -0.546875 1.421875 -1.25 1.421875 -2.15625 C 1.421875 -2.625 1.6875 -3.78125 3.046875 -3.78125 C 3.25 -3.78125 3.640625 -3.78125 3.640625 -3.6875 C 3.65625 -3.34375 3.84375 -3.203125 4.078125 -3.203125 C 4.3125 -3.203125 4.53125 -3.375 4.53125 -3.65625 C 4.53125 -4.390625 3.484375 -4.390625 3.046875 -4.390625 C 1.328125 -4.390625 0.734375 -3.03125 0.734375 -2.15625 C 0.734375 -0.953125 1.671875 0.0625 2.921875 0.0625 C 4.3125 0.0625 4.640625 -0.921875 4.640625 -1.09375 Z M 4.640625 -1.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-4">
|
||||
<path style="stroke:none;" d="M 5.0625 -0.296875 C 5.0625 -0.609375 4.8125 -0.609375 4.65625 -0.609375 L 4.34375 -0.609375 L 2.859375 -2.546875 L 4.09375 -3.6875 L 4.4375 -3.6875 C 4.578125 -3.6875 4.84375 -3.6875 4.84375 -3.984375 C 4.84375 -4.296875 4.578125 -4.296875 4.4375 -4.296875 L 2.90625 -4.296875 C 2.734375 -4.296875 2.5 -4.296875 2.5 -3.984375 C 2.5 -3.6875 2.75 -3.6875 2.90625 -3.6875 L 3.265625 -3.6875 L 1.65625 -2.171875 L 1.65625 -5.6875 C 1.65625 -5.984375 1.59375 -6.09375 1.25 -6.09375 L 0.609375 -6.09375 C 0.453125 -6.09375 0.203125 -6.09375 0.203125 -5.796875 C 0.203125 -5.484375 0.453125 -5.484375 0.609375 -5.484375 L 1.09375 -5.484375 L 1.09375 -0.609375 L 0.609375 -0.609375 C 0.453125 -0.609375 0.203125 -0.609375 0.203125 -0.3125 C 0.203125 0 0.453125 0 0.609375 0 L 2.140625 0 C 2.296875 0 2.546875 0 2.546875 -0.296875 C 2.546875 -0.609375 2.296875 -0.609375 2.140625 -0.609375 L 1.65625 -0.609375 L 1.65625 -1.421875 L 2.453125 -2.15625 L 3.640625 -0.609375 C 3.28125 -0.609375 3.078125 -0.609375 3.078125 -0.296875 C 3.078125 0 3.328125 0 3.484375 0 L 4.65625 0 C 4.8125 0 5.0625 0 5.0625 -0.296875 Z M 5.0625 -0.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-5">
|
||||
<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="glyph3-6">
|
||||
<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="glyph3-7">
|
||||
<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="glyph3-8">
|
||||
<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="glyph3-9">
|
||||
<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="glyph3-10">
|
||||
<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 L 1.65625 -5.6875 C 1.65625 -5.984375 1.59375 -6.09375 1.25 -6.09375 L 0.53125 -6.09375 C 0.375 -6.09375 0.125 -6.09375 0.125 -5.78125 C 0.125 -5.484375 0.375 -5.484375 0.515625 -5.484375 L 0.96875 -5.484375 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="glyph4-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-1">
|
||||
<path style="stroke:none;" d="M 3.796875 -1.28125 C 3.890625 -1.796875 3.640625 -2.109375 3.53125 -2.21875 C 3.265625 -2.546875 2.890625 -2.625 2.484375 -2.703125 C 1.9375 -2.8125 1.296875 -2.9375 1.390625 -3.515625 C 1.453125 -3.875 1.78125 -4.28125 2.640625 -4.28125 C 3.734375 -4.28125 3.640625 -3.375 3.59375 -3.078125 C 3.59375 -2.984375 3.703125 -2.984375 3.703125 -2.984375 C 3.84375 -2.984375 3.84375 -3.03125 3.875 -3.21875 L 4.046875 -4.234375 C 4.078125 -4.390625 4.09375 -4.46875 3.984375 -4.46875 C 3.921875 -4.46875 3.90625 -4.46875 3.765625 -4.34375 C 3.71875 -4.3125 3.609375 -4.21875 3.5625 -4.1875 C 3.234375 -4.46875 2.828125 -4.46875 2.671875 -4.46875 C 1.453125 -4.46875 0.96875 -3.796875 0.875 -3.234375 C 0.8125 -2.890625 0.921875 -2.609375 1.15625 -2.390625 C 1.4375 -2.140625 1.703125 -2.078125 2.390625 -1.9375 C 2.609375 -1.890625 3.40625 -1.734375 3.28125 -1.015625 C 3.203125 -0.515625 2.78125 -0.109375 2 -0.109375 C 1.171875 -0.109375 0.890625 -0.671875 0.859375 -1.53125 C 0.84375 -1.65625 0.84375 -1.6875 0.734375 -1.6875 C 0.609375 -1.6875 0.59375 -1.625 0.5625 -1.453125 L 0.34375 -0.125 C 0.3125 0.046875 0.3125 0.109375 0.421875 0.109375 C 0.46875 0.109375 0.484375 0.09375 0.703125 -0.09375 C 0.734375 -0.109375 0.734375 -0.125 0.9375 -0.3125 C 1.3125 0.09375 1.75 0.109375 1.96875 0.109375 C 3.109375 0.109375 3.671875 -0.5625 3.796875 -1.28125 Z M 3.796875 -1.28125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-2">
|
||||
<path style="stroke:none;" d="M 4.34375 -1.1875 C 4.359375 -1.28125 4.25 -1.28125 4.234375 -1.28125 C 4.140625 -1.28125 4.109375 -1.25 4.078125 -1.1875 C 3.625 -0.265625 2.953125 -0.140625 2.59375 -0.140625 C 2.0625 -0.140625 1.265625 -0.5625 1.53125 -2.171875 C 1.796875 -3.796875 2.6875 -4.21875 3.21875 -4.21875 C 3.3125 -4.21875 3.921875 -4.203125 4.21875 -3.84375 C 3.8125 -3.8125 3.703125 -3.515625 3.671875 -3.390625 C 3.625 -3.125 3.78125 -2.9375 4.0625 -2.9375 C 4.3125 -2.9375 4.546875 -3.09375 4.59375 -3.40625 C 4.703125 -4.078125 4.015625 -4.46875 3.25 -4.46875 C 2 -4.46875 0.90625 -3.390625 0.703125 -2.15625 C 0.484375 -0.875 1.3125 0.109375 2.46875 0.109375 C 3.796875 0.109375 4.3125 -1.09375 4.34375 -1.1875 Z M 4.34375 -1.1875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-3">
|
||||
<path style="stroke:none;" d="M 5.328125 0 L 5.390625 -0.3125 C 4.859375 -0.3125 4.609375 -0.3125 4.65625 -0.609375 L 4.96875 -2.515625 C 5.109375 -3.375 5.171875 -3.671875 4.921875 -4.03125 C 4.8125 -4.203125 4.515625 -4.40625 3.9375 -4.40625 C 3.09375 -4.40625 2.5625 -3.8125 2.34375 -3.453125 L 2.328125 -3.453125 L 2.90625 -6.921875 L 1.453125 -6.8125 L 1.40625 -6.5 C 2.109375 -6.5 2.171875 -6.4375 2.078125 -5.9375 L 1.21875 -0.75 C 1.140625 -0.3125 1.03125 -0.3125 0.375 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.609375 -0.3125 C 1.9375 -0.3125 1.828125 -0.3125 1.90625 -0.75 L 2.21875 -2.59375 C 2.390625 -3.625 3.1875 -4.1875 3.828125 -4.1875 C 4.453125 -4.1875 4.46875 -3.65625 4.390625 -3.078125 L 4 -0.75 C 3.921875 -0.3125 3.8125 -0.3125 3.140625 -0.3125 L 3.09375 0 L 4.234375 -0.03125 Z M 5.328125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-4">
|
||||
<path style="stroke:none;" d="M 4.265625 -3.796875 C 4.3125 -4.109375 4.0625 -4.40625 3.625 -4.40625 C 2.90625 -4.40625 2.4375 -3.734375 2.21875 -3.3125 L 2.40625 -4.40625 L 1 -4.296875 L 0.953125 -3.984375 C 1.640625 -3.984375 1.71875 -3.921875 1.625 -3.421875 L 1.1875 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.28125 0 L 1.421875 -0.03125 C 1.828125 -0.03125 2.296875 -0.03125 2.6875 0 L 2.734375 -0.3125 L 2.515625 -0.3125 C 1.78125 -0.3125 1.78125 -0.421875 1.84375 -0.78125 L 2.109375 -2.3125 C 2.265625 -3.296875 2.828125 -4.1875 3.59375 -4.1875 C 3.65625 -4.1875 3.671875 -4.1875 3.703125 -4.171875 C 3.671875 -4.171875 3.453125 -4.046875 3.40625 -3.78125 C 3.359375 -3.515625 3.53125 -3.359375 3.765625 -3.359375 C 3.9375 -3.359375 4.203125 -3.484375 4.265625 -3.796875 Z M 4.265625 -3.796875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-5">
|
||||
<path style="stroke:none;" d="M 4.96875 -0.890625 L 5.046875 -1.453125 L 4.8125 -1.453125 L 4.71875 -0.890625 C 4.609375 -0.3125 4.359375 -0.25 4.25 -0.25 C 3.921875 -0.25 3.953125 -0.703125 3.96875 -0.75 L 4.296875 -2.734375 C 4.359375 -3.15625 4.421875 -3.546875 4.140625 -3.921875 C 3.8125 -4.3125 3.34375 -4.46875 2.859375 -4.46875 C 2.046875 -4.46875 1.28125 -4 1.171875 -3.34375 C 1.109375 -3.046875 1.28125 -2.875 1.546875 -2.875 C 1.828125 -2.875 2.03125 -3.078125 2.078125 -3.328125 C 2.109375 -3.453125 2.109375 -3.78125 1.640625 -3.78125 C 1.96875 -4.140625 2.484375 -4.25 2.796875 -4.25 C 3.296875 -4.25 3.796875 -3.859375 3.65625 -2.96875 L 3.59375 -2.609375 C 3.078125 -2.578125 2.375 -2.546875 1.6875 -2.25 C 0.890625 -1.90625 0.546875 -1.390625 0.484375 -0.953125 C 0.34375 -0.140625 1.265625 0.109375 1.890625 0.109375 C 2.546875 0.109375 3.078125 -0.296875 3.34375 -0.75 C 3.3125 -0.359375 3.515625 0.0625 3.984375 0.0625 C 4.203125 0.0625 4.828125 -0.078125 4.96875 -0.890625 Z M 3.375 -1.390625 C 3.234375 -0.453125 2.453125 -0.109375 2 -0.109375 C 1.515625 -0.109375 1.171875 -0.453125 1.25 -0.953125 C 1.328125 -1.5 1.890625 -2.328125 3.546875 -2.390625 Z M 3.09375 -6.03125 C 3.140625 -6.265625 2.96875 -6.5 2.703125 -6.5 C 2.390625 -6.5 2.171875 -6.25 2.140625 -6.03125 C 2.09375 -5.78125 2.265625 -5.546875 2.53125 -5.546875 C 2.84375 -5.546875 3.0625 -5.796875 3.09375 -6.03125 Z M 4.875 -6.03125 C 4.921875 -6.265625 4.75 -6.5 4.46875 -6.5 C 4.171875 -6.5 3.953125 -6.25 3.90625 -6.03125 C 3.875 -5.78125 4.03125 -5.546875 4.3125 -5.546875 C 4.609375 -5.546875 4.828125 -5.796875 4.875 -6.03125 Z M 4.875 -6.03125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-6">
|
||||
<path style="stroke:none;" d="M 5.5 -4.03125 C 5.53125 -4.203125 5.46875 -4.515625 5.078125 -4.515625 C 4.890625 -4.515625 4.4375 -4.453125 3.953125 -4.046875 C 3.578125 -4.375 3.171875 -4.40625 2.953125 -4.40625 C 2.03125 -4.40625 1.21875 -3.71875 1.09375 -2.953125 C 1.015625 -2.515625 1.171875 -2.140625 1.390625 -1.921875 C 1.234375 -1.78125 1 -1.453125 0.9375 -1.09375 C 0.890625 -0.78125 0.953125 -0.40625 1.234375 -0.203125 C 0.609375 -0.046875 0.203125 0.390625 0.15625 0.78125 C 0.03125 1.5 0.921875 2.046875 2.140625 2.046875 C 3.3125 2.046875 4.4375 1.546875 4.5625 0.765625 C 4.625 0.421875 4.578125 -0.09375 4.109375 -0.375 C 3.625 -0.640625 3.046875 -0.640625 2.4375 -0.640625 C 2.1875 -0.640625 1.765625 -0.640625 1.6875 -0.65625 C 1.390625 -0.703125 1.21875 -1 1.28125 -1.328125 C 1.28125 -1.359375 1.328125 -1.59375 1.53125 -1.796875 C 1.859375 -1.515625 2.265625 -1.484375 2.46875 -1.484375 C 3.390625 -1.484375 4.1875 -2.171875 4.3125 -2.9375 C 4.375 -3.3125 4.28125 -3.671875 4.0625 -3.90625 C 4.484375 -4.25 4.859375 -4.296875 5.03125 -4.296875 C 5.03125 -4.296875 5.109375 -4.296875 5.140625 -4.28125 C 5.015625 -4.25 4.9375 -4.140625 4.921875 -4.015625 C 4.890625 -3.84375 5 -3.734375 5.15625 -3.734375 C 5.265625 -3.734375 5.46875 -3.796875 5.5 -4.03125 Z M 3.5625 -2.953125 C 3.53125 -2.6875 3.46875 -2.359375 3.265625 -2.109375 C 3.171875 -2 2.90625 -1.71875 2.5 -1.71875 C 1.640625 -1.71875 1.796875 -2.71875 1.828125 -2.9375 C 1.890625 -3.203125 1.9375 -3.53125 2.140625 -3.78125 C 2.234375 -3.890625 2.515625 -4.171875 2.90625 -4.171875 C 3.78125 -4.171875 3.609375 -3.1875 3.5625 -2.953125 Z M 4.046875 0.78125 C 3.953125 1.328125 3.15625 1.828125 2.1875 1.828125 C 1.171875 1.828125 0.578125 1.3125 0.671875 0.78125 C 0.734375 0.328125 1.1875 -0.046875 1.625 -0.0625 L 2.21875 -0.0625 C 3.078125 -0.0625 4.1875 -0.0625 4.046875 0.78125 Z M 4.046875 0.78125 "/>
|
||||
</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 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="glyph5-2">
|
||||
<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="glyph5-3">
|
||||
<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="glyph5-4">
|
||||
<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="glyph5-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="glyph5-6">
|
||||
<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="glyph5-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="glyph5-8">
|
||||
<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="glyph5-9">
|
||||
<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="glyph5-10">
|
||||
<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="glyph6-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-1">
|
||||
<path style="stroke:none;" d="M 2.609375 -0.875 L 2.609375 -1.265625 L 2.375 -1.265625 L 2.375 -0.890625 C 2.375 -0.40625 2.15625 -0.15625 1.875 -0.15625 C 1.40625 -0.15625 1.40625 -0.734375 1.40625 -0.859375 L 1.40625 -2.75 L 2.484375 -2.75 L 2.484375 -3 L 1.40625 -3 L 1.40625 -4.28125 L 1.15625 -4.28125 C 1.15625 -3.65625 0.875 -2.96875 0.203125 -2.953125 L 0.203125 -2.75 L 0.84375 -2.75 L 0.84375 -0.875 C 0.84375 -0.09375 1.4375 0.0625 1.828125 0.0625 C 2.296875 0.0625 2.609375 -0.328125 2.609375 -0.875 Z M 2.609375 -0.875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-2">
|
||||
<path style="stroke:none;" d="M 1.90625 0 L 1.90625 -0.25 C 1.5 -0.25 1.4375 -0.25 1.4375 -0.546875 L 1.4375 -3.078125 L 0.40625 -3 L 0.40625 -2.75 C 0.84375 -2.75 0.90625 -2.703125 0.90625 -2.359375 L 0.90625 -0.546875 C 0.90625 -0.25 0.84375 -0.25 0.390625 -0.25 L 0.390625 0 C 0.390625 0 0.890625 -0.03125 1.171875 -0.03125 C 1.421875 -0.03125 1.671875 -0.015625 1.90625 0 Z M 1.53125 -4.1875 C 1.53125 -4.421875 1.359375 -4.59375 1.125 -4.59375 C 0.890625 -4.59375 0.734375 -4.40625 0.734375 -4.203125 C 0.734375 -3.984375 0.90625 -3.796875 1.125 -3.796875 C 1.359375 -3.796875 1.53125 -4 1.53125 -4.1875 Z M 1.53125 -4.1875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-3">
|
||||
<path style="stroke:none;" d="M 3.265625 -0.84375 C 3.265625 -0.859375 3.25 -0.9375 3.140625 -0.9375 C 3.046875 -0.9375 3.03125 -0.890625 3.015625 -0.828125 C 2.796875 -0.265625 2.265625 -0.15625 2.015625 -0.15625 C 1.6875 -0.15625 1.375 -0.296875 1.171875 -0.5625 C 0.90625 -0.890625 0.90625 -1.3125 0.90625 -1.59375 L 3.0625 -1.59375 C 3.21875 -1.59375 3.265625 -1.59375 3.265625 -1.734375 C 3.265625 -2.359375 2.921875 -3.109375 1.875 -3.109375 C 0.96875 -3.109375 0.265625 -2.390625 0.265625 -1.53125 C 0.265625 -0.640625 1.046875 0.0625 1.96875 0.0625 C 2.90625 0.0625 3.265625 -0.6875 3.265625 -0.84375 Z M 2.78125 -1.765625 L 0.90625 -1.765625 C 0.984375 -2.75 1.609375 -2.90625 1.875 -2.90625 C 2.734375 -2.90625 2.765625 -1.9375 2.78125 -1.765625 Z M 2.78125 -1.765625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-4">
|
||||
<path style="stroke:none;" d="M 2.78125 -4.390625 C 2.78125 -4.703125 2.46875 -4.90625 2.09375 -4.90625 C 1.546875 -4.90625 0.90625 -4.515625 0.90625 -3.78125 L 0.90625 -3 L 0.3125 -3 L 0.3125 -2.75 L 0.90625 -2.75 L 0.90625 -0.546875 C 0.90625 -0.25 0.84375 -0.25 0.390625 -0.25 L 0.390625 0 C 0.421875 0 0.90625 -0.03125 1.1875 -0.03125 L 2.09375 0 L 2.09375 -0.25 L 1.953125 -0.25 C 1.4375 -0.25 1.4375 -0.328125 1.4375 -0.5625 L 1.4375 -2.75 L 2.3125 -2.75 L 2.3125 -3 L 1.40625 -3 L 1.40625 -3.78125 C 1.40625 -4.421875 1.78125 -4.703125 2.078125 -4.703125 C 2.140625 -4.703125 2.21875 -4.703125 2.28125 -4.671875 C 2.1875 -4.625 2.125 -4.515625 2.125 -4.390625 C 2.125 -4.203125 2.265625 -4.078125 2.453125 -4.078125 C 2.640625 -4.078125 2.78125 -4.203125 2.78125 -4.390625 Z M 2.78125 -4.390625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-5">
|
||||
<path style="stroke:none;" d="M 3.796875 -2.78125 C 3.796875 -2.953125 3.671875 -3.140625 3.390625 -3.140625 C 3.28125 -3.140625 2.90625 -3.125 2.578125 -2.828125 C 2.375 -2.96875 2.078125 -3.078125 1.765625 -3.078125 C 1.046875 -3.078125 0.53125 -2.59375 0.53125 -2.046875 C 0.53125 -1.78125 0.671875 -1.53125 0.859375 -1.34375 C 0.8125 -1.28125 0.65625 -1.046875 0.65625 -0.78125 C 0.65625 -0.6875 0.671875 -0.359375 0.953125 -0.15625 C 0.640625 -0.0625 0.265625 0.171875 0.265625 0.53125 C 0.265625 1.046875 1.03125 1.421875 1.984375 1.421875 C 2.859375 1.421875 3.6875 1.078125 3.6875 0.515625 C 3.6875 0.3125 3.609375 -0.0625 3.21875 -0.265625 C 2.8125 -0.484375 2.390625 -0.484375 1.71875 -0.484375 C 1.5625 -0.484375 1.3125 -0.484375 1.265625 -0.5 C 1.03125 -0.546875 0.90625 -0.75 0.90625 -0.953125 C 0.90625 -1.125 0.96875 -1.1875 1 -1.234375 C 1.109375 -1.171875 1.359375 -1.03125 1.765625 -1.03125 C 2.484375 -1.03125 3 -1.5 3 -2.046875 C 3 -2.328125 2.875 -2.53125 2.703125 -2.71875 C 3.03125 -2.9375 3.296875 -2.953125 3.421875 -2.953125 C 3.390625 -2.921875 3.359375 -2.890625 3.359375 -2.78125 C 3.359375 -2.640625 3.453125 -2.5625 3.578125 -2.5625 C 3.671875 -2.5625 3.796875 -2.625 3.796875 -2.78125 Z M 2.453125 -2.046875 C 2.453125 -1.9375 2.453125 -1.65625 2.3125 -1.484375 C 2.203125 -1.359375 2.015625 -1.234375 1.765625 -1.234375 C 1.09375 -1.234375 1.09375 -1.90625 1.09375 -2.046875 C 1.09375 -2.15625 1.09375 -2.4375 1.21875 -2.625 C 1.328125 -2.734375 1.515625 -2.859375 1.765625 -2.859375 C 2.453125 -2.859375 2.453125 -2.1875 2.453125 -2.046875 Z M 3.265625 0.53125 C 3.265625 0.90625 2.703125 1.21875 1.984375 1.21875 C 1.25 1.21875 0.703125 0.890625 0.703125 0.53125 C 0.703125 0.28125 0.921875 -0.015625 1.359375 -0.015625 L 1.765625 -0.015625 C 2.390625 -0.015625 3.265625 -0.015625 3.265625 0.53125 Z M 3.265625 0.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-6">
|
||||
<path style="stroke:none;" d="M 2.84375 -0.90625 C 2.84375 -1.171875 2.71875 -1.390625 2.53125 -1.546875 C 2.265625 -1.796875 1.953125 -1.859375 1.703125 -1.890625 C 1.15625 -2 0.703125 -2.078125 0.703125 -2.453125 C 0.703125 -2.671875 0.890625 -2.9375 1.546875 -2.9375 C 2.359375 -2.9375 2.390625 -2.375 2.40625 -2.171875 C 2.40625 -2.09375 2.5 -2.09375 2.515625 -2.09375 C 2.640625 -2.09375 2.640625 -2.140625 2.640625 -2.28125 L 2.640625 -2.921875 C 2.640625 -3.046875 2.640625 -3.109375 2.546875 -3.109375 C 2.515625 -3.109375 2.5 -3.109375 2.40625 -3.03125 C 2.390625 -3.015625 2.328125 -2.953125 2.28125 -2.921875 C 2.0625 -3.0625 1.8125 -3.109375 1.546875 -3.109375 C 0.546875 -3.109375 0.3125 -2.578125 0.3125 -2.234375 C 0.3125 -2.015625 0.40625 -1.828125 0.578125 -1.6875 C 0.84375 -1.46875 1.109375 -1.421875 1.546875 -1.34375 C 1.890625 -1.28125 2.453125 -1.1875 2.453125 -0.71875 C 2.453125 -0.453125 2.265625 -0.125 1.59375 -0.125 C 0.921875 -0.125 0.6875 -0.5625 0.5625 -1.03125 C 0.53125 -1.125 0.53125 -1.15625 0.4375 -1.15625 C 0.3125 -1.15625 0.3125 -1.109375 0.3125 -0.96875 L 0.3125 -0.109375 C 0.3125 0 0.3125 0.0625 0.40625 0.0625 C 0.46875 0.0625 0.609375 -0.078125 0.75 -0.234375 C 1.046875 0.0625 1.421875 0.0625 1.59375 0.0625 C 2.5 0.0625 2.84375 -0.421875 2.84375 -0.90625 Z M 2.84375 -0.90625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-7">
|
||||
<path style="stroke:none;" d="M 1.953125 0 L 1.953125 -0.25 C 1.5 -0.25 1.4375 -0.25 1.4375 -0.546875 L 1.4375 -4.84375 L 0.390625 -4.765625 L 0.390625 -4.515625 C 0.859375 -4.515625 0.90625 -4.453125 0.90625 -4.125 L 0.90625 -0.546875 C 0.90625 -0.25 0.84375 -0.25 0.390625 -0.25 L 0.390625 0 C 0.390625 0 0.890625 -0.03125 1.171875 -0.03125 C 1.4375 -0.03125 1.6875 -0.015625 1.953125 0 Z M 1.953125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-8">
|
||||
<path style="stroke:none;" d="M 4.109375 0 L 4.109375 -0.25 C 3.65625 -0.25 3.59375 -0.25 3.59375 -0.546875 L 3.59375 -2.109375 C 3.59375 -2.71875 3.296875 -3.078125 2.546875 -3.078125 C 1.921875 -3.078125 1.578125 -2.703125 1.421875 -2.4375 L 1.421875 -4.84375 L 0.375 -4.765625 L 0.375 -4.515625 C 0.84375 -4.515625 0.90625 -4.453125 0.90625 -4.125 L 0.90625 -0.546875 C 0.90625 -0.25 0.828125 -0.25 0.375 -0.25 L 0.375 0 C 0.375 0 0.875 -0.03125 1.171875 -0.03125 C 1.421875 -0.03125 1.90625 0 1.96875 0 L 1.96875 -0.25 C 1.515625 -0.25 1.453125 -0.25 1.453125 -0.546875 L 1.453125 -1.8125 C 1.453125 -2.53125 2.03125 -2.875 2.484375 -2.875 C 2.96875 -2.875 3.03125 -2.5 3.03125 -2.140625 L 3.03125 -0.546875 C 3.03125 -0.25 2.96875 -0.25 2.515625 -0.25 L 2.515625 0 C 2.515625 0 3.015625 -0.03125 3.3125 -0.03125 C 3.5625 -0.03125 4.046875 0 4.109375 0 Z M 4.109375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-9">
|
||||
<path style="stroke:none;" d="M 3.6875 -1.484375 C 3.6875 -2.359375 2.9375 -3.109375 1.984375 -3.109375 C 1.015625 -3.109375 0.265625 -2.359375 0.265625 -1.484375 C 0.265625 -0.625 1.03125 0.0625 1.984375 0.0625 C 2.921875 0.0625 3.6875 -0.625 3.6875 -1.484375 Z M 3.046875 -1.546875 C 3.046875 -1.21875 3.03125 -0.84375 2.828125 -0.5625 C 2.640625 -0.296875 2.328125 -0.15625 1.984375 -0.15625 C 1.71875 -0.15625 1.34375 -0.234375 1.109375 -0.578125 C 0.921875 -0.859375 0.90625 -1.21875 0.90625 -1.546875 C 0.90625 -1.84375 0.90625 -2.265625 1.15625 -2.5625 C 1.328125 -2.765625 1.625 -2.90625 1.984375 -2.90625 C 2.390625 -2.90625 2.6875 -2.71875 2.84375 -2.5 C 3.03125 -2.234375 3.046875 -1.875 3.046875 -1.546875 Z M 3.046875 -1.546875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-10">
|
||||
<path style="stroke:none;" d="M 3.265625 -0.84375 C 3.265625 -0.921875 3.171875 -0.921875 3.140625 -0.921875 C 3.046875 -0.921875 3.046875 -0.90625 3.015625 -0.796875 C 2.859375 -0.375 2.484375 -0.15625 2.0625 -0.15625 C 1.578125 -0.15625 0.953125 -0.515625 0.953125 -1.515625 C 0.953125 -2.390625 1.390625 -2.890625 2.03125 -2.890625 C 2.125 -2.890625 2.453125 -2.890625 2.703125 -2.78125 C 2.578125 -2.71875 2.515625 -2.609375 2.515625 -2.46875 C 2.515625 -2.28125 2.640625 -2.140625 2.84375 -2.140625 C 3.03125 -2.140625 3.171875 -2.265625 3.171875 -2.484375 C 3.171875 -3.109375 2.203125 -3.109375 2.015625 -3.109375 C 0.96875 -3.109375 0.328125 -2.3125 0.328125 -1.5 C 0.328125 -0.625 1.0625 0.0625 1.984375 0.0625 C 3.015625 0.0625 3.265625 -0.75 3.265625 -0.84375 Z M 3.265625 -0.84375 "/>
|
||||
</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="132.763"/>
|
||||
<use xlink:href="#glyph0-2" x="143.246858" y="132.763"/>
|
||||
<use xlink:href="#glyph0-3" x="148.498144" y="132.763"/>
|
||||
<use xlink:href="#glyph0-3" x="152.953419" y="132.763"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="139.746" y="144.718"/>
|
||||
<use xlink:href="#glyph1-2" x="144.328796" y="144.718"/>
|
||||
<use xlink:href="#glyph1-3" x="149.675723" y="144.718"/>
|
||||
<use xlink:href="#glyph1-4" x="153.876952" y="144.718"/>
|
||||
<use xlink:href="#glyph1-5" x="157.950659" y="144.718"/>
|
||||
<use xlink:href="#glyph1-6" x="161.006188" y="144.718"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="139.746" y="156.673"/>
|
||||
<use xlink:href="#glyph2-2" x="148.144472" y="156.673"/>
|
||||
<use xlink:href="#glyph2-3" x="154.254534" y="156.673"/>
|
||||
<use xlink:href="#glyph2-4" x="159.811673" y="156.673"/>
|
||||
<use xlink:href="#glyph2-5" x="162.82237" y="156.673"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-6" x="168.043769" y="156.673"/>
|
||||
<use xlink:href="#glyph2-7" x="174.153832" y="156.673"/>
|
||||
<use xlink:href="#glyph2-8" x="179.267634" y="156.673"/>
|
||||
<use xlink:href="#glyph2-9" x="185.156527" y="156.673"/>
|
||||
<use xlink:href="#glyph2-10" x="191.26659" y="156.673"/>
|
||||
<use xlink:href="#glyph2-11" x="196.823728" y="156.673"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="139.746" y="168.628"/>
|
||||
<use xlink:href="#glyph3-2" x="144.976365" y="168.628"/>
|
||||
<use xlink:href="#glyph3-3" x="150.20673" y="168.628"/>
|
||||
<use xlink:href="#glyph3-4" x="155.437095" y="168.628"/>
|
||||
<use xlink:href="#glyph3-5" x="160.66746" y="168.628"/>
|
||||
<use xlink:href="#glyph3-6" x="165.897825" y="168.628"/>
|
||||
<use xlink:href="#glyph3-7" x="171.12819" y="168.628"/>
|
||||
<use xlink:href="#glyph3-8" x="176.358555" y="168.628"/>
|
||||
<use xlink:href="#glyph3-9" x="181.58892" y="168.628"/>
|
||||
<use xlink:href="#glyph3-6" x="186.819285" y="168.628"/>
|
||||
<use xlink:href="#glyph3-2" x="192.04965" y="168.628"/>
|
||||
<use xlink:href="#glyph3-3" x="197.280015" y="168.628"/>
|
||||
<use xlink:href="#glyph3-10" x="202.51038" y="168.628"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="139.746" y="180.584"/>
|
||||
<use xlink:href="#glyph4-2" x="143.676246" y="180.584"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-3" x="147.825669" y="180.584"/>
|
||||
<use xlink:href="#glyph4-4" x="153.360889" y="180.584"/>
|
||||
<use xlink:href="#glyph4-5" x="157.26324" y="180.584"/>
|
||||
<use xlink:href="#glyph4-6" x="162.24454" y="180.584"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-1" x="139.746" y="192.539"/>
|
||||
<use xlink:href="#glyph5-2" x="145.281221" y="192.539"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-3" x="150.537488" y="192.539"/>
|
||||
<use xlink:href="#glyph5-4" x="154.411943" y="192.539"/>
|
||||
<use xlink:href="#glyph5-5" x="158.840319" y="192.539"/>
|
||||
<use xlink:href="#glyph5-6" x="162.74267" y="192.539"/>
|
||||
<use xlink:href="#glyph5-3" x="166.672915" y="192.539"/>
|
||||
<use xlink:href="#glyph5-5" x="170.54737" y="192.539"/>
|
||||
<use xlink:href="#glyph5-7" x="174.449721" y="192.539"/>
|
||||
<use xlink:href="#glyph5-8" x="177.217331" y="192.539"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-9" x="181.366754" y="192.539"/>
|
||||
<use xlink:href="#glyph5-4" x="186.901975" y="192.539"/>
|
||||
<use xlink:href="#glyph5-2" x="191.33035" y="192.539"/>
|
||||
</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.00009375 -0.00059375 L 57.117281 -0.00059375 " transform="matrix(1,0,0,-1,139.746,193.933)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-10" x="139.746" y="204.494"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph6-1" x="145.004" y="205.988"/>
|
||||
<use xlink:href="#glyph6-2" x="148.117104" y="205.988"/>
|
||||
<use xlink:href="#glyph6-3" x="150.372431" y="205.988"/>
|
||||
<use xlink:href="#glyph6-4" x="153.914424" y="205.988"/>
|
||||
<use xlink:href="#glyph6-5" x="156.384544" y="205.988"/>
|
||||
<use xlink:href="#glyph6-3" x="160.355426" y="205.988"/>
|
||||
<use xlink:href="#glyph6-6" x="163.897419" y="205.988"/>
|
||||
<use xlink:href="#glyph6-1" x="167.053761" y="205.988"/>
|
||||
<use xlink:href="#glyph6-3" x="170.166865" y="205.988"/>
|
||||
<use xlink:href="#glyph6-7" x="173.708858" y="205.988"/>
|
||||
<use xlink:href="#glyph6-7" x="175.964185" y="205.988"/>
|
||||
<use xlink:href="#glyph6-1" x="178.219512" y="205.988"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-10" x="139.746" y="216.449"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph6-8" x="145.004" y="212.834"/>
|
||||
<use xlink:href="#glyph6-9" x="149.404468" y="212.834"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph6-10" x="153.591537" y="212.834"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph6-8" x="156.917343" y="212.834"/>
|
||||
<use xlink:href="#glyph6-5" x="161.31781" y="212.834"/>
|
||||
<use xlink:href="#glyph6-3" x="165.288692" y="212.834"/>
|
||||
<use xlink:href="#glyph6-6" x="168.830685" y="212.834"/>
|
||||
<use xlink:href="#glyph6-1" x="171.987027" y="212.834"/>
|
||||
<use xlink:href="#glyph6-3" x="175.100131" y="212.834"/>
|
||||
<use xlink:href="#glyph6-7" x="178.642124" y="212.834"/>
|
||||
<use xlink:href="#glyph6-7" x="180.897451" y="212.834"/>
|
||||
<use xlink:href="#glyph6-1" x="183.152778" y="212.834"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 61 KiB |
27
sections/german/06/optische-auszeichnungen.tex
Normal file
@ -0,0 +1,27 @@
|
||||
\documentclass[a4paper]{article}
|
||||
\usepackage{lmodern}
|
||||
\usepackage{amssymb,amsmath}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage{hyperref}
|
||||
\begin{document}
|
||||
\thispagestyle{empty}
|
||||
\parbox{.5\linewidth}{\noindent
|
||||
\textbf{fett}\\
|
||||
\textit{kursiv}\\
|
||||
\textsc{Kapitälchen}\\
|
||||
\texttt{dicktengleich}\\
|
||||
\textsl{schräg}\\
|
||||
\underline{unterstrichen}\\
|
||||
x\textsubscript{tiefgestellt}\\
|
||||
x\textsuperscript{hochgestellt}\\
|
||||
% \textbf{important}\\
|
||||
% \textit{important}\\
|
||||
% \textsc{important}\\
|
||||
% \texttt{important}\\
|
||||
% \textsl{important}\\
|
||||
% \underline{important}\\
|
||||
% x\textsubscript{subscript}\\
|
||||
% x\textsuperscript{superscript}\\
|
||||
}
|
||||
\end{document}
|
||||
289
sections/german/06/schriftgroesse-fontsize-befehl-crop.svg
Normal file
@ -0,0 +1,289 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="388pt" height="81pt" viewBox="0 0 388 81" 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 8.28125 -4 C 8.28125 -6.3125 6.671875 -8.15625 4.6875 -8.15625 L 0.5 -8.15625 L 0.5 -7.8125 L 0.734375 -7.8125 C 1.609375 -7.8125 1.640625 -7.703125 1.640625 -7.25 L 1.640625 -0.90625 C 1.640625 -0.46875 1.609375 -0.34375 0.734375 -0.34375 L 0.5 -0.34375 L 0.5 0 L 4.6875 0 C 6.6875 0 8.28125 -1.796875 8.28125 -4 Z M 7.203125 -4.015625 C 7.203125 -3.34375 7.1875 -2.21875 6.5 -1.34375 C 6.109375 -0.84375 5.390625 -0.34375 4.390625 -0.34375 L 3.125 -0.34375 C 2.609375 -0.34375 2.578125 -0.4375 2.578125 -0.828125 L 2.578125 -7.34375 C 2.578125 -7.734375 2.609375 -7.8125 3.125 -7.8125 L 4.390625 -7.8125 C 5.375 -7.8125 6.171875 -7.34375 6.65625 -6.546875 C 7.203125 -5.703125 7.203125 -4.5 7.203125 -4.015625 Z M 7.203125 -4.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 5.671875 -1.0625 L 5.671875 -1.734375 L 5.40625 -1.734375 L 5.40625 -1.0625 C 5.40625 -0.375 5.109375 -0.28125 4.953125 -0.28125 C 4.5 -0.28125 4.5 -0.921875 4.5 -1.09375 L 4.5 -3.1875 C 4.5 -3.84375 4.5 -4.3125 3.96875 -4.78125 C 3.546875 -5.15625 3.015625 -5.328125 2.484375 -5.328125 C 1.5 -5.328125 0.75 -4.6875 0.75 -3.90625 C 0.75 -3.5625 0.984375 -3.390625 1.25 -3.390625 C 1.546875 -3.390625 1.75 -3.59375 1.75 -3.890625 C 1.75 -4.375 1.3125 -4.375 1.140625 -4.375 C 1.40625 -4.875 1.984375 -5.09375 2.46875 -5.09375 C 3.015625 -5.09375 3.71875 -4.640625 3.71875 -3.5625 L 3.71875 -3.078125 C 1.3125 -3.046875 0.40625 -2.046875 0.40625 -1.125 C 0.40625 -0.171875 1.5 0.125 2.234375 0.125 C 3.03125 0.125 3.5625 -0.359375 3.796875 -0.9375 C 3.84375 -0.375 4.203125 0.0625 4.71875 0.0625 C 4.96875 0.0625 5.671875 -0.109375 5.671875 -1.0625 Z M 3.71875 -1.6875 C 3.71875 -0.515625 2.84375 -0.125 2.328125 -0.125 C 1.75 -0.125 1.25 -0.546875 1.25 -1.125 C 1.25 -2.703125 3.28125 -2.84375 3.71875 -2.875 Z M 3.71875 -1.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 4.203125 -1.515625 C 4.203125 -2.15625 3.8125 -2.546875 3.703125 -2.65625 C 3.28125 -3.03125 2.953125 -3.09375 2.15625 -3.234375 C 1.8125 -3.3125 0.9375 -3.484375 0.9375 -4.203125 C 0.9375 -4.5625 1.1875 -5.109375 2.265625 -5.109375 C 3.5625 -5.109375 3.640625 -4 3.65625 -3.640625 C 3.671875 -3.53125 3.75 -3.53125 3.796875 -3.53125 C 3.921875 -3.53125 3.921875 -3.59375 3.921875 -3.8125 L 3.921875 -5.0625 C 3.921875 -5.265625 3.921875 -5.328125 3.796875 -5.328125 C 3.703125 -5.328125 3.484375 -5.0625 3.390625 -4.953125 C 3.03125 -5.265625 2.65625 -5.328125 2.265625 -5.328125 C 0.828125 -5.328125 0.390625 -4.546875 0.390625 -3.890625 C 0.390625 -3.75 0.390625 -3.328125 0.84375 -2.921875 C 1.234375 -2.578125 1.640625 -2.5 2.1875 -2.390625 C 2.84375 -2.265625 3 -2.21875 3.296875 -1.984375 C 3.515625 -1.8125 3.671875 -1.546875 3.671875 -1.203125 C 3.671875 -0.6875 3.375 -0.125 2.3125 -0.125 C 1.53125 -0.125 0.953125 -0.578125 0.6875 -1.765625 C 0.640625 -1.984375 0.640625 -2.015625 0.640625 -2.015625 C 0.609375 -2.0625 0.5625 -2.0625 0.53125 -2.0625 C 0.390625 -2.0625 0.390625 -2 0.390625 -1.78125 L 0.390625 -0.15625 C 0.390625 0.0625 0.390625 0.125 0.515625 0.125 C 0.578125 0.125 0.578125 0.109375 0.78125 -0.140625 C 0.84375 -0.234375 0.84375 -0.25 1.03125 -0.4375 C 1.484375 0.125 2.125 0.125 2.328125 0.125 C 3.578125 0.125 4.203125 -0.578125 4.203125 -1.515625 Z M 4.203125 -1.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 2.875 0 L 2.875 -0.34375 C 2.109375 -0.34375 2.0625 -0.40625 2.0625 -0.875 L 2.0625 -5.265625 L 0.4375 -5.140625 L 0.4375 -4.796875 C 1.1875 -4.796875 1.296875 -4.71875 1.296875 -4.140625 L 1.296875 -0.890625 C 1.296875 -0.34375 1.171875 -0.34375 0.390625 -0.34375 L 0.390625 0 C 0.734375 -0.03125 1.296875 -0.03125 1.65625 -0.03125 C 1.78125 -0.03125 2.46875 -0.03125 2.875 0 Z M 2.21875 -7.21875 C 2.21875 -7.578125 1.921875 -7.8125 1.640625 -7.8125 C 1.296875 -7.8125 1.046875 -7.546875 1.046875 -7.21875 C 1.046875 -6.90625 1.3125 -6.640625 1.625 -6.640625 C 1.984375 -6.640625 2.21875 -6.9375 2.21875 -7.21875 Z M 2.21875 -7.21875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 3.890625 -1.484375 L 3.890625 -2.15625 L 3.640625 -2.15625 L 3.640625 -1.5 C 3.640625 -0.640625 3.28125 -0.140625 2.828125 -0.140625 C 2.015625 -0.140625 2.015625 -1.25 2.015625 -1.453125 L 2.015625 -4.8125 L 3.6875 -4.8125 L 3.6875 -5.15625 L 2.015625 -5.15625 L 2.015625 -7.34375 L 1.75 -7.34375 C 1.734375 -6.234375 1.296875 -5.078125 0.21875 -5.046875 L 0.21875 -4.8125 L 1.234375 -4.8125 L 1.234375 -1.484375 C 1.234375 -0.15625 2.109375 0.125 2.75 0.125 C 3.5 0.125 3.890625 -0.625 3.890625 -1.484375 Z M 3.890625 -1.484375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 8.015625 -5.4375 L 7.8125 -8.109375 L 0.640625 -8.109375 L 0.421875 -5.4375 L 0.6875 -5.4375 C 0.84375 -7.328125 0.953125 -7.75 2.84375 -7.75 C 3.0625 -7.75 3.390625 -7.75 3.484375 -7.734375 C 3.734375 -7.703125 3.734375 -7.546875 3.734375 -7.28125 L 3.734375 -0.921875 C 3.734375 -0.515625 3.734375 -0.34375 2.5625 -0.34375 L 2.140625 -0.34375 L 2.140625 0 C 2.515625 -0.03125 3.75 -0.03125 4.21875 -0.03125 C 4.6875 -0.03125 5.921875 -0.03125 6.3125 0 L 6.3125 -0.34375 L 5.875 -0.34375 C 4.703125 -0.34375 4.703125 -0.515625 4.703125 -0.921875 L 4.703125 -7.28125 C 4.703125 -7.578125 4.734375 -7.6875 4.921875 -7.734375 C 5.015625 -7.75 5.359375 -7.75 5.59375 -7.75 C 7.484375 -7.75 7.59375 -7.328125 7.75 -5.4375 Z M 8.015625 -5.4375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 4.859375 -1.421875 C 4.859375 -1.5 4.8125 -1.546875 4.734375 -1.546875 C 4.640625 -1.546875 4.609375 -1.484375 4.59375 -1.421875 C 4.28125 -0.421875 3.484375 -0.140625 2.96875 -0.140625 C 2.46875 -0.140625 1.265625 -0.484375 1.265625 -2.546875 L 1.265625 -2.765625 L 4.578125 -2.765625 C 4.84375 -2.765625 4.859375 -2.765625 4.859375 -3 C 4.859375 -4.203125 4.21875 -5.328125 2.765625 -5.328125 C 1.40625 -5.328125 0.359375 -4.09375 0.359375 -2.625 C 0.359375 -1.046875 1.578125 0.125 2.90625 0.125 C 4.328125 0.125 4.859375 -1.171875 4.859375 -1.421875 Z M 4.125 -3 L 1.28125 -3 C 1.375 -4.875 2.421875 -5.09375 2.765625 -5.09375 C 4.046875 -5.09375 4.109375 -3.40625 4.125 -3 Z M 4.125 -3 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 6.046875 0 L 6.046875 -0.34375 C 5.421875 -0.34375 5.203125 -0.375 4.90625 -0.75 L 3.34375 -2.828125 C 3.6875 -3.28125 4.203125 -3.921875 4.421875 -4.171875 C 4.90625 -4.71875 5.46875 -4.8125 5.859375 -4.8125 L 5.859375 -5.15625 C 5.34375 -5.125 5.3125 -5.125 4.859375 -5.125 L 3.78125 -5.15625 L 3.78125 -4.8125 C 3.9375 -4.78125 4.125 -4.703125 4.125 -4.4375 C 4.125 -4.234375 4.015625 -4.09375 3.9375 -4 L 3.171875 -3.03125 L 2.25 -4.265625 C 2.21875 -4.3125 2.140625 -4.421875 2.140625 -4.5 C 2.140625 -4.578125 2.203125 -4.796875 2.5625 -4.8125 L 2.5625 -5.15625 C 2.265625 -5.125 1.65625 -5.125 1.328125 -5.125 L 0.171875 -5.15625 L 0.171875 -4.8125 C 0.78125 -4.8125 1.015625 -4.78125 1.265625 -4.453125 L 2.671875 -2.625 C 2.6875 -2.609375 2.734375 -2.53125 2.734375 -2.5 C 2.734375 -2.46875 1.8125 -1.296875 1.6875 -1.140625 C 1.15625 -0.484375 0.640625 -0.359375 0.125 -0.34375 L 0.125 0 C 0.578125 -0.03125 0.59375 -0.03125 1.109375 -0.03125 L 2.1875 0 L 2.1875 -0.34375 C 1.90625 -0.375 1.859375 -0.5625 1.859375 -0.734375 C 1.859375 -0.921875 1.9375 -1.015625 2.0625 -1.171875 L 2.921875 -2.28125 L 3.890625 -1 C 4.09375 -0.734375 4.09375 -0.71875 4.09375 -0.640625 C 4.09375 -0.546875 4 -0.359375 3.6875 -0.34375 L 3.6875 0 C 4 -0.03125 4.578125 -0.03125 4.90625 -0.03125 Z M 6.046875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-9">
|
||||
<path style="stroke:none;" d="M 6.234375 0 L 6.234375 -0.34375 C 5.625 -0.34375 5.328125 -0.34375 5.3125 -0.703125 L 5.3125 -2.90625 C 5.3125 -4.015625 5.3125 -4.34375 5.046875 -4.734375 C 4.703125 -5.203125 4.140625 -5.265625 3.734375 -5.265625 C 2.5625 -5.265625 2.109375 -4.28125 2.015625 -4.046875 L 2.015625 -5.265625 L 0.375 -5.140625 L 0.375 -4.796875 C 1.1875 -4.796875 1.296875 -4.703125 1.296875 -4.125 L 1.296875 -0.890625 C 1.296875 -0.34375 1.15625 -0.34375 0.375 -0.34375 L 0.375 0 C 0.6875 -0.03125 1.34375 -0.03125 1.671875 -0.03125 C 2.015625 -0.03125 2.671875 -0.03125 2.96875 0 L 2.96875 -0.34375 C 2.21875 -0.34375 2.0625 -0.34375 2.0625 -0.890625 L 2.0625 -3.109375 C 2.0625 -4.359375 2.890625 -5.03125 3.640625 -5.03125 C 4.375 -5.03125 4.546875 -4.421875 4.546875 -3.6875 L 4.546875 -0.890625 C 4.546875 -0.34375 4.40625 -0.34375 3.640625 -0.34375 L 3.640625 0 C 3.9375 -0.03125 4.59375 -0.03125 4.921875 -0.03125 C 5.265625 -0.03125 5.921875 -0.03125 6.234375 0 Z M 6.234375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-10">
|
||||
<path style="stroke:none;" d="M 5.484375 -2.5625 C 5.484375 -4.09375 4.3125 -5.328125 2.921875 -5.328125 C 1.5 -5.328125 0.359375 -4.0625 0.359375 -2.5625 C 0.359375 -1.03125 1.546875 0.125 2.921875 0.125 C 4.328125 0.125 5.484375 -1.046875 5.484375 -2.5625 Z M 4.578125 -2.671875 C 4.578125 -2.25 4.578125 -1.5 4.265625 -0.9375 C 3.9375 -0.375 3.375 -0.140625 2.921875 -0.140625 C 2.484375 -0.140625 1.953125 -0.328125 1.609375 -0.921875 C 1.28125 -1.453125 1.265625 -2.15625 1.265625 -2.671875 C 1.265625 -3.125 1.265625 -3.84375 1.640625 -4.390625 C 1.96875 -4.90625 2.5 -5.09375 2.921875 -5.09375 C 3.375 -5.09375 3.890625 -4.875 4.203125 -4.40625 C 4.578125 -3.859375 4.578125 -3.109375 4.578125 -2.671875 Z M 4.578125 -2.671875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-11">
|
||||
<path style="stroke:none;" d="M 4.21875 -4.578125 C 4.21875 -4.9375 3.890625 -5.265625 3.375 -5.265625 C 2.359375 -5.265625 2.015625 -4.171875 1.953125 -3.9375 L 1.9375 -3.9375 L 1.9375 -5.265625 L 0.328125 -5.140625 L 0.328125 -4.796875 C 1.140625 -4.796875 1.25 -4.703125 1.25 -4.125 L 1.25 -0.890625 C 1.25 -0.34375 1.109375 -0.34375 0.328125 -0.34375 L 0.328125 0 C 0.671875 -0.03125 1.328125 -0.03125 1.6875 -0.03125 C 2.015625 -0.03125 2.859375 -0.03125 3.125 0 L 3.125 -0.34375 L 2.890625 -0.34375 C 2.015625 -0.34375 2 -0.484375 2 -0.90625 L 2 -2.78125 C 2 -3.9375 2.46875 -5.03125 3.390625 -5.03125 C 3.484375 -5.03125 3.515625 -5.03125 3.5625 -5.015625 C 3.46875 -4.96875 3.28125 -4.90625 3.28125 -4.578125 C 3.28125 -4.234375 3.546875 -4.09375 3.734375 -4.09375 C 3.984375 -4.09375 4.21875 -4.25 4.21875 -4.578125 Z M 4.21875 -4.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-12">
|
||||
<path style="stroke:none;" d="M 9.484375 0 L 9.484375 -0.34375 C 8.875 -0.34375 8.578125 -0.34375 8.578125 -0.703125 L 8.578125 -2.90625 C 8.578125 -4.015625 8.578125 -4.34375 8.296875 -4.734375 C 7.953125 -5.203125 7.390625 -5.265625 6.984375 -5.265625 C 5.984375 -5.265625 5.484375 -4.546875 5.296875 -4.09375 C 5.125 -5.015625 4.484375 -5.265625 3.734375 -5.265625 C 2.5625 -5.265625 2.109375 -4.28125 2.015625 -4.046875 L 2.015625 -5.265625 L 0.375 -5.140625 L 0.375 -4.796875 C 1.1875 -4.796875 1.296875 -4.703125 1.296875 -4.125 L 1.296875 -0.890625 C 1.296875 -0.34375 1.15625 -0.34375 0.375 -0.34375 L 0.375 0 C 0.6875 -0.03125 1.34375 -0.03125 1.671875 -0.03125 C 2.015625 -0.03125 2.671875 -0.03125 2.96875 0 L 2.96875 -0.34375 C 2.21875 -0.34375 2.0625 -0.34375 2.0625 -0.890625 L 2.0625 -3.109375 C 2.0625 -4.359375 2.890625 -5.03125 3.640625 -5.03125 C 4.375 -5.03125 4.546875 -4.421875 4.546875 -3.6875 L 4.546875 -0.890625 C 4.546875 -0.34375 4.40625 -0.34375 3.640625 -0.34375 L 3.640625 0 C 3.9375 -0.03125 4.59375 -0.03125 4.921875 -0.03125 C 5.265625 -0.03125 5.921875 -0.03125 6.234375 0 L 6.234375 -0.34375 C 5.46875 -0.34375 5.3125 -0.34375 5.3125 -0.890625 L 5.3125 -3.109375 C 5.3125 -4.359375 6.140625 -5.03125 6.890625 -5.03125 C 7.625 -5.03125 7.796875 -4.421875 7.796875 -3.6875 L 7.796875 -0.890625 C 7.796875 -0.34375 7.65625 -0.34375 6.890625 -0.34375 L 6.890625 0 C 7.203125 -0.03125 7.84375 -0.03125 8.171875 -0.03125 C 8.515625 -0.03125 9.171875 -0.03125 9.484375 0 Z M 9.484375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-13">
|
||||
<path style="stroke:none;" d="M 2.96875 0 L 2.96875 -0.34375 C 2.203125 -0.34375 2.0625 -0.34375 2.0625 -0.890625 L 2.0625 -8.296875 L 0.390625 -8.15625 L 0.390625 -7.8125 C 1.203125 -7.8125 1.296875 -7.734375 1.296875 -7.140625 L 1.296875 -0.890625 C 1.296875 -0.34375 1.171875 -0.34375 0.390625 -0.34375 L 0.390625 0 C 0.734375 -0.03125 1.3125 -0.03125 1.671875 -0.03125 C 2.03125 -0.03125 2.625 -0.03125 2.96875 0 Z M 2.96875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-14">
|
||||
<path style="stroke:none;" d="M 5.84375 -2.203125 C 5.84375 -2.921875 5.5625 -3.46875 5.25 -3.859375 C 4.8125 -4.40625 4.265625 -4.53125 3.796875 -4.65625 L 2.484375 -4.984375 C 1.875 -5.140625 1.34375 -5.734375 1.34375 -6.5 C 1.34375 -7.34375 2.015625 -8.09375 2.9375 -8.09375 C 4.90625 -8.09375 5.15625 -6.15625 5.234375 -5.640625 C 5.265625 -5.5 5.265625 -5.453125 5.375 -5.453125 C 5.515625 -5.453125 5.515625 -5.515625 5.515625 -5.71875 L 5.515625 -8.140625 C 5.515625 -8.359375 5.515625 -8.421875 5.390625 -8.421875 C 5.359375 -8.421875 5.3125 -8.421875 5.21875 -8.265625 L 4.828125 -7.53125 C 4.25 -8.265625 3.46875 -8.421875 2.9375 -8.421875 C 1.609375 -8.421875 0.640625 -7.34375 0.640625 -6.125 C 0.640625 -5.5625 0.84375 -5.03125 1.296875 -4.546875 C 1.703125 -4.09375 2.125 -3.984375 2.96875 -3.765625 C 3.390625 -3.671875 4.046875 -3.5 4.21875 -3.4375 C 4.78125 -3.15625 5.15625 -2.515625 5.15625 -1.84375 C 5.15625 -0.9375 4.515625 -0.09375 3.53125 -0.09375 C 2.984375 -0.09375 2.25 -0.234375 1.65625 -0.734375 C 0.96875 -1.359375 0.921875 -2.21875 0.90625 -2.625 C 0.890625 -2.71875 0.78125 -2.71875 0.78125 -2.71875 C 0.640625 -2.71875 0.640625 -2.65625 0.640625 -2.4375 L 0.640625 -0.03125 C 0.640625 0.1875 0.640625 0.25 0.765625 0.25 C 0.84375 0.25 0.84375 0.234375 0.9375 0.078125 L 1.328125 -0.640625 C 1.75 -0.15625 2.515625 0.25 3.53125 0.25 C 4.875 0.25 5.84375 -0.890625 5.84375 -2.203125 Z M 5.84375 -2.203125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-15">
|
||||
<path style="stroke:none;" d="M 4.859375 -1.421875 C 4.859375 -1.53125 4.765625 -1.53125 4.734375 -1.53125 C 4.625 -1.53125 4.609375 -1.5 4.578125 -1.34375 C 4.3125 -0.5 3.671875 -0.140625 3.03125 -0.140625 C 2.296875 -0.140625 1.328125 -0.78125 1.328125 -2.59375 C 1.328125 -4.578125 2.34375 -5.0625 2.9375 -5.0625 C 3.390625 -5.0625 4.046875 -4.890625 4.328125 -4.421875 C 4.1875 -4.421875 3.734375 -4.421875 3.734375 -3.9375 C 3.734375 -3.640625 3.9375 -3.4375 4.234375 -3.4375 C 4.5 -3.4375 4.734375 -3.609375 4.734375 -3.953125 C 4.734375 -4.75 3.890625 -5.328125 2.921875 -5.328125 C 1.53125 -5.328125 0.421875 -4.09375 0.421875 -2.578125 C 0.421875 -1.046875 1.5625 0.125 2.921875 0.125 C 4.5 0.125 4.859375 -1.3125 4.859375 -1.421875 Z M 4.859375 -1.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-16">
|
||||
<path style="stroke:none;" d="M 6.234375 0 L 6.234375 -0.34375 C 5.625 -0.34375 5.328125 -0.34375 5.3125 -0.703125 L 5.3125 -2.90625 C 5.3125 -4.015625 5.3125 -4.34375 5.046875 -4.734375 C 4.703125 -5.203125 4.140625 -5.265625 3.734375 -5.265625 C 2.703125 -5.265625 2.21875 -4.5 2.0625 -4.125 L 2.046875 -4.125 L 2.046875 -8.296875 L 0.375 -8.15625 L 0.375 -7.8125 C 1.1875 -7.8125 1.296875 -7.734375 1.296875 -7.140625 L 1.296875 -0.890625 C 1.296875 -0.34375 1.15625 -0.34375 0.375 -0.34375 L 0.375 0 C 0.6875 -0.03125 1.34375 -0.03125 1.671875 -0.03125 C 2.015625 -0.03125 2.671875 -0.03125 2.96875 0 L 2.96875 -0.34375 C 2.21875 -0.34375 2.0625 -0.34375 2.0625 -0.890625 L 2.0625 -3.109375 C 2.0625 -4.359375 2.890625 -5.03125 3.640625 -5.03125 C 4.375 -5.03125 4.546875 -4.421875 4.546875 -3.6875 L 4.546875 -0.890625 C 4.546875 -0.34375 4.40625 -0.34375 3.640625 -0.34375 L 3.640625 0 C 3.9375 -0.03125 4.59375 -0.03125 4.921875 -0.03125 C 5.265625 -0.03125 5.921875 -0.03125 6.234375 0 Z M 6.234375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-17">
|
||||
<path style="stroke:none;" d="M 4.09375 -7.625 C 4.09375 -8.0625 3.65625 -8.421875 3.078125 -8.421875 C 2.25 -8.421875 1.296875 -7.765625 1.296875 -6.546875 L 1.296875 -5.15625 L 0.375 -5.15625 L 0.375 -4.8125 L 1.296875 -4.8125 L 1.296875 -0.890625 C 1.296875 -0.34375 1.171875 -0.34375 0.390625 -0.34375 L 0.390625 0 C 0.734375 -0.03125 1.390625 -0.03125 1.75 -0.03125 C 2.0625 -0.03125 2.921875 -0.03125 3.1875 0 L 3.1875 -0.34375 L 2.953125 -0.34375 C 2.078125 -0.34375 2.0625 -0.484375 2.0625 -0.90625 L 2.0625 -4.8125 L 3.40625 -4.8125 L 3.40625 -5.15625 L 2.03125 -5.15625 L 2.03125 -6.546875 C 2.03125 -7.625 2.578125 -8.171875 3.078125 -8.171875 C 3.171875 -8.171875 3.34375 -8.15625 3.484375 -8.078125 C 3.4375 -8.0625 3.140625 -7.953125 3.140625 -7.609375 C 3.140625 -7.34375 3.328125 -7.140625 3.609375 -7.140625 C 3.890625 -7.140625 4.09375 -7.34375 4.09375 -7.625 Z M 4.09375 -7.625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-18">
|
||||
<path style="stroke:none;" d="M 5.671875 -4.859375 C 5.671875 -5.0625 5.515625 -5.40625 5.09375 -5.40625 C 4.46875 -5.40625 4 -5.015625 3.84375 -4.84375 C 3.484375 -5.109375 3.0625 -5.265625 2.609375 -5.265625 C 1.53125 -5.265625 0.734375 -4.453125 0.734375 -3.53125 C 0.734375 -2.859375 1.140625 -2.421875 1.265625 -2.3125 C 1.125 -2.125 0.90625 -1.78125 0.90625 -1.3125 C 0.90625 -0.625 1.328125 -0.328125 1.421875 -0.265625 C 0.875 -0.109375 0.328125 0.328125 0.328125 0.9375 C 0.328125 1.765625 1.453125 2.453125 2.921875 2.453125 C 4.34375 2.453125 5.515625 1.8125 5.515625 0.921875 C 5.515625 0.625 5.4375 -0.078125 4.71875 -0.453125 C 4.109375 -0.765625 3.515625 -0.765625 2.484375 -0.765625 C 1.75 -0.765625 1.671875 -0.765625 1.453125 -0.984375 C 1.34375 -1.109375 1.234375 -1.34375 1.234375 -1.59375 C 1.234375 -1.796875 1.296875 -2 1.421875 -2.15625 C 1.984375 -1.796875 2.46875 -1.796875 2.59375 -1.796875 C 3.671875 -1.796875 4.46875 -2.609375 4.46875 -3.53125 C 4.46875 -3.84375 4.375 -4.296875 4 -4.6875 C 4.453125 -5.15625 5.015625 -5.15625 5.078125 -5.15625 C 5.125 -5.15625 5.1875 -5.15625 5.234375 -5.140625 C 5.109375 -5.09375 5.0625 -4.96875 5.0625 -4.84375 C 5.0625 -4.671875 5.171875 -4.53125 5.359375 -4.53125 C 5.46875 -4.53125 5.671875 -4.59375 5.671875 -4.859375 Z M 3.640625 -3.53125 C 3.640625 -3.328125 3.640625 -2.828125 3.4375 -2.515625 C 3.21875 -2.15625 2.859375 -2.046875 2.609375 -2.046875 C 1.546875 -2.046875 1.546875 -3.25 1.546875 -3.53125 C 1.546875 -3.734375 1.546875 -4.234375 1.75 -4.546875 C 1.984375 -4.90625 2.34375 -5.015625 2.59375 -5.015625 C 3.640625 -5.015625 3.640625 -3.8125 3.640625 -3.53125 Z M 4.9375 0.9375 C 4.9375 1.640625 4.03125 2.203125 2.921875 2.203125 C 1.78125 2.203125 0.90625 1.609375 0.90625 0.9375 C 0.90625 0.84375 0.9375 0.375 1.390625 0.0625 C 1.65625 -0.109375 1.75 -0.109375 2.59375 -0.109375 C 3.578125 -0.109375 4.9375 -0.109375 4.9375 0.9375 Z M 4.9375 0.9375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-19">
|
||||
<path style="stroke:none;" d="M 5.484375 -2.5625 C 5.484375 -4.09375 4.3125 -5.328125 2.921875 -5.328125 C 1.5 -5.328125 0.359375 -4.0625 0.359375 -2.5625 C 0.359375 -1.03125 1.546875 0.125 2.921875 0.125 C 4.328125 0.125 5.484375 -1.046875 5.484375 -2.5625 Z M 4.578125 -2.671875 C 4.578125 -2.25 4.578125 -1.5 4.265625 -0.9375 C 3.9375 -0.375 3.375 -0.140625 2.921875 -0.140625 C 2.484375 -0.140625 1.953125 -0.328125 1.609375 -0.921875 C 1.28125 -1.453125 1.265625 -2.15625 1.265625 -2.671875 C 1.265625 -3.125 1.265625 -3.84375 1.640625 -4.390625 C 1.96875 -4.90625 2.5 -5.09375 2.921875 -5.09375 C 3.375 -5.09375 3.890625 -4.875 4.203125 -4.40625 C 4.578125 -3.859375 4.578125 -3.109375 4.578125 -2.671875 Z M 2.5 -7.21875 C 2.5 -7.546875 2.25 -7.75 1.984375 -7.75 C 1.6875 -7.75 1.453125 -7.5 1.453125 -7.21875 C 1.453125 -6.9375 1.703125 -6.703125 1.96875 -6.703125 C 2.296875 -6.703125 2.5 -6.96875 2.5 -7.21875 Z M 4.40625 -7.21875 C 4.40625 -7.546875 4.15625 -7.75 3.890625 -7.75 C 3.59375 -7.75 3.375 -7.5 3.375 -7.21875 C 3.375 -6.9375 3.609375 -6.703125 3.890625 -6.703125 C 4.203125 -6.703125 4.40625 -6.96875 4.40625 -7.21875 Z M 4.40625 -7.21875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-20">
|
||||
<path style="stroke:none;" d="M 5.515625 -2.078125 C 5.515625 -3.390625 4.75 -4.609375 3.5625 -5.015625 C 4.453125 -5.25 5.203125 -5.890625 5.203125 -6.734375 C 5.203125 -7.625 4.34375 -8.421875 3.203125 -8.421875 C 2.25 -8.421875 1.25 -7.8125 1.25 -6.65625 L 1.25 -5.15625 L 0.328125 -5.15625 L 0.328125 -4.8125 L 1.25 -4.8125 L 1.25 -0.890625 C 1.25 -0.34375 1.109375 -0.34375 0.328125 -0.34375 L 0.328125 0 C 0.65625 -0.03125 1.015625 -0.03125 1.34375 -0.03125 C 1.546875 -0.03125 1.828125 -0.03125 2 0 L 2 -6.65625 C 2 -8.109375 3.03125 -8.171875 3.203125 -8.171875 C 3.6875 -8.171875 4.359375 -7.796875 4.359375 -6.734375 C 4.359375 -5.28125 3.03125 -5.171875 2.71875 -5.15625 C 2.640625 -5.140625 2.640625 -5.03125 2.640625 -5.03125 C 2.640625 -4.921875 2.703125 -4.921875 2.78125 -4.90625 C 4.0625 -4.796875 4.6875 -3.484375 4.6875 -2.078125 C 4.6875 -0.5 3.875 -0.125 3.4375 -0.125 C 3.359375 -0.125 3.015625 -0.125 2.765625 -0.359375 C 3.03125 -0.40625 3.109375 -0.59375 3.109375 -0.734375 C 3.109375 -1 2.921875 -1.140625 2.71875 -1.140625 C 2.515625 -1.140625 2.328125 -1 2.328125 -0.734375 C 2.328125 -0.28125 2.765625 0.125 3.453125 0.125 C 4.5 0.125 5.515625 -0.765625 5.515625 -2.078125 Z M 5.515625 -2.078125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-21">
|
||||
<path style="stroke:none;" d="M 2.203125 -0.578125 C 2.203125 -0.90625 1.921875 -1.15625 1.625 -1.15625 C 1.28125 -1.15625 1.046875 -0.890625 1.046875 -0.578125 C 1.046875 -0.234375 1.34375 0 1.609375 0 C 1.9375 0 2.203125 -0.25 2.203125 -0.578125 Z M 2.203125 -0.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-22">
|
||||
<path style="stroke:none;" d="M 7.625 -2.1875 C 7.625 -3.15625 6.75 -4.109375 5.328125 -4.265625 C 6.46875 -4.484375 7.296875 -5.25 7.296875 -6.140625 C 7.296875 -7.171875 6.25 -8.15625 4.6875 -8.15625 L 0.515625 -8.15625 L 0.515625 -7.8125 L 0.75 -7.8125 C 1.609375 -7.8125 1.65625 -7.703125 1.65625 -7.25 L 1.65625 -0.90625 C 1.65625 -0.46875 1.609375 -0.34375 0.75 -0.34375 L 0.515625 -0.34375 L 0.515625 0 L 5.015625 0 C 6.546875 0 7.625 -1.046875 7.625 -2.1875 Z M 6.234375 -6.140625 C 6.234375 -5.359375 5.625 -4.359375 4.296875 -4.359375 L 2.5625 -4.359375 L 2.5625 -7.34375 C 2.5625 -7.734375 2.578125 -7.8125 3.109375 -7.8125 L 4.609375 -7.8125 C 5.8125 -7.8125 6.234375 -6.796875 6.234375 -6.140625 Z M 6.53125 -2.203125 C 6.53125 -1.234375 5.8125 -0.34375 4.640625 -0.34375 L 3.109375 -0.34375 C 2.578125 -0.34375 2.5625 -0.4375 2.5625 -0.828125 L 2.5625 -4.125 L 4.796875 -4.125 C 5.9375 -4.125 6.53125 -3.125 6.53125 -2.203125 Z M 6.53125 -2.203125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-23">
|
||||
<path style="stroke:none;" d="M 5.96875 0 L 5.96875 -0.34375 C 5.65625 -0.34375 5.28125 -0.34375 4.953125 -0.84375 L 3.34375 -3.171875 L 3.265625 -3.28125 C 3.265625 -3.328125 4.015625 -3.96875 4.109375 -4.0625 C 4.9375 -4.78125 5.46875 -4.796875 5.71875 -4.8125 L 5.71875 -5.15625 C 5.46875 -5.125 5.15625 -5.125 4.8125 -5.125 C 4.5 -5.125 3.890625 -5.125 3.609375 -5.15625 L 3.609375 -4.8125 C 3.8125 -4.796875 3.953125 -4.6875 3.953125 -4.5 C 3.953125 -4.25 3.703125 -4.046875 3.703125 -4.046875 L 2 -2.53125 L 2 -8.296875 L 0.328125 -8.15625 L 0.328125 -7.8125 C 1.140625 -7.8125 1.25 -7.734375 1.25 -7.140625 L 1.25 -0.890625 C 1.25 -0.34375 1.109375 -0.34375 0.328125 -0.34375 L 0.328125 0 C 0.671875 -0.03125 1.25 -0.03125 1.609375 -0.03125 C 1.953125 -0.03125 2.53125 -0.03125 2.875 0 L 2.875 -0.34375 C 2.109375 -0.34375 1.953125 -0.34375 1.953125 -0.890625 L 1.953125 -2.15625 L 2.71875 -2.828125 L 3.875 -1.171875 C 4.046875 -0.921875 4.140625 -0.78125 4.140625 -0.625 C 4.140625 -0.40625 3.96875 -0.34375 3.71875 -0.34375 L 3.71875 0 C 4.015625 -0.03125 4.609375 -0.03125 4.921875 -0.03125 C 5.4375 -0.03125 5.46875 -0.03125 5.96875 0 Z M 5.96875 0 "/>
|
||||
</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 18.703125 -9.53125 C 18.703125 -14.875 15.109375 -19.359375 10.484375 -19.359375 L 1.46875 -19.359375 L 1.46875 -18.625 C 3.421875 -18.625 3.734375 -18.625 3.734375 -17.34375 L 3.734375 -2.015625 C 3.734375 -0.734375 3.421875 -0.734375 1.46875 -0.734375 L 1.46875 0 L 10.484375 0 C 15.046875 0 18.703125 -4.1875 18.703125 -9.53125 Z M 16.609375 -9.53125 C 16.609375 -5.53125 15.453125 -3.90625 14.90625 -3.140625 C 14.234375 -2.265625 12.609375 -0.734375 9.921875 -0.734375 L 6.75 -0.734375 C 5.609375 -0.734375 5.5625 -0.875 5.5625 -1.84375 L 5.5625 -17.515625 C 5.5625 -18.484375 5.609375 -18.625 6.75 -18.625 L 9.921875 -18.625 C 12.265625 -18.625 16.609375 -17.234375 16.609375 -9.53125 Z M 16.609375 -9.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<path style="stroke:none;" d="M 12.71875 -2.515625 L 12.71875 -4.109375 L 12.21875 -4.109375 L 12.21875 -2.5 C 12.21875 -0.765625 11.453125 -0.53125 11.078125 -0.53125 C 9.921875 -0.53125 9.921875 -2.015625 9.921875 -3.265625 L 9.921875 -7.34375 C 9.921875 -9.21875 9.921875 -10.203125 8.734375 -11.3125 C 7.6875 -12.25 6.46875 -12.53125 5.5 -12.53125 C 3.265625 -12.53125 1.640625 -10.765625 1.640625 -8.90625 C 1.640625 -7.84375 2.5 -7.796875 2.671875 -7.796875 C 3.03125 -7.796875 3.6875 -8.015625 3.6875 -8.8125 C 3.6875 -9.53125 3.140625 -9.828125 2.671875 -9.828125 C 2.546875 -9.828125 2.40625 -9.8125 2.328125 -9.78125 C 2.921875 -11.5625 4.453125 -12.078125 5.4375 -12.078125 C 6.859375 -12.078125 8.421875 -10.828125 8.421875 -8.453125 L 8.421875 -7.203125 C 6.75 -7.140625 4.734375 -6.921875 3.140625 -6.0625 C 1.359375 -5.078125 0.84375 -3.65625 0.84375 -2.578125 C 0.84375 -0.390625 3.40625 0.234375 4.90625 0.234375 C 6.46875 0.234375 7.90625 -0.65625 8.53125 -2.265625 C 8.59375 -1.015625 9.375 0.109375 10.625 0.109375 C 11.21875 0.109375 12.71875 -0.28125 12.71875 -2.515625 Z M 8.421875 -3.9375 C 8.421875 -1.46875 6.65625 -0.234375 5.109375 -0.234375 C 3.6875 -0.234375 2.578125 -1.28125 2.578125 -2.578125 C 2.578125 -3.421875 2.953125 -4.9375 4.59375 -5.84375 C 5.953125 -6.609375 7.515625 -6.71875 8.421875 -6.78125 Z M 8.421875 -3.9375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-3">
|
||||
<path style="stroke:none;" d="M 9.4375 -3.515625 C 9.4375 -4.953125 8.671875 -5.71875 8.3125 -6.0625 C 7.453125 -6.9375 6.46875 -7.140625 5.265625 -7.375 C 3.71875 -7.703125 1.734375 -8.109375 1.734375 -9.828125 C 1.734375 -10.578125 2.125 -12.125 4.984375 -12.125 C 8.015625 -12.125 8.1875 -9.296875 8.25 -8.390625 C 8.28125 -8.25 8.421875 -8.21875 8.5 -8.21875 C 8.765625 -8.21875 8.765625 -8.3125 8.765625 -8.78125 L 8.765625 -11.96875 C 8.765625 -12.46875 8.734375 -12.5 8.5625 -12.5 C 8.453125 -12.5 8.421875 -12.46875 8.078125 -12.046875 C 8 -11.9375 7.734375 -11.65625 7.65625 -11.53125 C 6.75 -12.5 5.46875 -12.53125 4.984375 -12.53125 C 1.84375 -12.53125 0.703125 -10.890625 0.703125 -9.234375 C 0.703125 -6.6875 3.59375 -6.09375 4.421875 -5.921875 C 6.203125 -5.5625 6.828125 -5.4375 7.421875 -4.9375 C 7.796875 -4.59375 8.421875 -3.96875 8.421875 -2.953125 C 8.421875 -1.75 7.734375 -0.234375 5.125 -0.234375 C 2.671875 -0.234375 1.78125 -2.09375 1.28125 -4.59375 C 1.1875 -4.984375 1.1875 -5.015625 0.96875 -5.015625 C 0.734375 -5.015625 0.703125 -4.984375 0.703125 -4.421875 L 0.703125 -0.34375 C 0.703125 0.171875 0.734375 0.203125 0.90625 0.203125 C 1.046875 0.203125 1.078125 0.171875 1.21875 -0.0625 L 1.984375 -1.28125 C 2.546875 -0.515625 3.546875 0.234375 5.125 0.234375 C 7.9375 0.234375 9.4375 -1.296875 9.4375 -3.515625 Z M 9.4375 -3.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-4">
|
||||
<path style="stroke:none;" d="M 6.0625 0 L 6.0625 -0.734375 C 4.390625 -0.734375 4.34375 -0.90625 4.34375 -1.921875 L 4.34375 -12.421875 L 1.078125 -12.109375 L 1.078125 -11.359375 C 2.671875 -11.359375 2.890625 -11.203125 2.890625 -9.828125 L 2.890625 -1.953125 C 2.890625 -0.875 2.78125 -0.734375 0.96875 -0.734375 L 0.96875 0 C 1.640625 -0.0625 2.859375 -0.0625 3.578125 -0.0625 C 4.25 -0.0625 5.40625 -0.0625 6.0625 0 Z M 4.671875 -17.125 C 4.671875 -17.796875 4.140625 -18.28125 3.546875 -18.28125 C 2.859375 -18.28125 2.375 -17.75 2.375 -17.125 C 2.375 -16.4375 2.921875 -15.953125 3.515625 -15.953125 C 4.1875 -15.953125 4.671875 -16.5 4.671875 -17.125 Z M 4.671875 -17.125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-5">
|
||||
<path style="stroke:none;" d="M 8.703125 -3.515625 L 8.703125 -5.125 L 8.1875 -5.125 L 8.1875 -3.546875 C 8.1875 -1.59375 7.421875 -0.28125 6.234375 -0.28125 C 5.40625 -0.28125 4.28125 -0.84375 4.28125 -3.421875 L 4.28125 -11.453125 L 8.25 -11.453125 L 8.25 -12.1875 L 4.28125 -12.1875 L 4.28125 -17.4375 L 3.765625 -17.4375 C 3.71875 -14.515625 2.71875 -11.96875 0.3125 -11.90625 L 0.3125 -11.453125 L 2.78125 -11.453125 L 2.78125 -3.484375 C 2.78125 -2.953125 2.78125 0.234375 6.0625 0.234375 C 7.734375 0.234375 8.703125 -1.421875 8.703125 -3.515625 Z M 8.703125 -3.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-6">
|
||||
<path style="stroke:none;" d="M 10.90625 -7.109375 C 10.90625 -10 9.375 -12.53125 6.15625 -12.53125 C 3.140625 -12.53125 0.765625 -9.671875 0.765625 -6.171875 C 0.765625 -2.5 3.453125 0.234375 6.46875 0.234375 C 9.640625 0.234375 10.890625 -2.78125 10.890625 -3.375 C 10.890625 -3.578125 10.65625 -3.578125 10.65625 -3.578125 C 10.453125 -3.578125 10.4375 -3.515625 10.3125 -3.171875 C 9.6875 -1.25 8.140625 -0.28125 6.65625 -0.28125 C 5.4375 -0.28125 4.21875 -0.96875 3.453125 -2.203125 C 2.578125 -3.65625 2.578125 -5.328125 2.578125 -6.65625 L 10.796875 -6.65625 C 10.90625 -6.78125 10.90625 -6.828125 10.90625 -7.109375 Z M 9.375 -7.078125 L 2.609375 -7.078125 C 2.8125 -11.171875 4.984375 -12.078125 6.125 -12.078125 C 8.046875 -12.078125 9.359375 -10.265625 9.375 -7.078125 Z M 9.375 -7.078125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-7">
|
||||
<path style="stroke:none;" d="M 13.6875 0 L 13.6875 -0.734375 C 11.875 -0.734375 11.765625 -0.84375 11.765625 -1.953125 L 11.765625 -8.609375 C 11.765625 -10.0625 11.484375 -12.421875 8.140625 -12.421875 C 5.890625 -12.421875 4.734375 -10.6875 4.3125 -9.546875 L 4.28125 -9.546875 L 4.28125 -12.421875 L 0.9375 -12.109375 L 0.9375 -11.359375 C 2.609375 -11.359375 2.859375 -11.203125 2.859375 -9.828125 L 2.859375 -1.953125 C 2.859375 -0.875 2.75 -0.734375 0.9375 -0.734375 L 0.9375 0 C 1.609375 -0.0625 2.859375 -0.0625 3.59375 -0.0625 C 4.34375 -0.0625 5.609375 -0.0625 6.296875 0 L 6.296875 -0.734375 C 4.484375 -0.734375 4.359375 -0.84375 4.359375 -1.953125 L 4.359375 -7.390625 C 4.359375 -10 5.953125 -11.96875 7.9375 -11.96875 C 10.03125 -11.96875 10.265625 -10.09375 10.265625 -8.734375 L 10.265625 -1.953125 C 10.265625 -0.875 10.140625 -0.734375 8.328125 -0.734375 L 8.328125 0 C 9.015625 -0.0625 10.265625 -0.0625 11 -0.0625 C 11.734375 -0.0625 13.015625 -0.0625 13.6875 0 Z M 13.6875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-8">
|
||||
<path style="stroke:none;" d="M 18.109375 -13.015625 L 17.625 -19.28125 L 1.28125 -19.28125 L 0.796875 -13.015625 L 1.296875 -13.015625 C 1.671875 -17.71875 2.0625 -18.53125 6.4375 -18.53125 C 6.9375 -18.53125 7.765625 -18.53125 8 -18.515625 C 8.53125 -18.421875 8.53125 -18.078125 8.53125 -17.4375 L 8.53125 -2.0625 C 8.53125 -1.046875 8.453125 -0.734375 6.09375 -0.734375 L 5.296875 -0.734375 L 5.296875 0 L 9.46875 -0.0625 L 13.640625 0 L 13.640625 -0.734375 L 12.84375 -0.734375 C 10.484375 -0.734375 10.40625 -1.046875 10.40625 -2.0625 L 10.40625 -17.4375 C 10.40625 -18.0625 10.40625 -18.390625 10.90625 -18.515625 C 11.140625 -18.53125 11.96875 -18.53125 12.46875 -18.53125 C 16.8125 -18.53125 17.234375 -17.71875 17.59375 -13.015625 Z M 18.109375 -13.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-9">
|
||||
<path style="stroke:none;" d="M 13.6875 0 L 13.6875 -0.734375 C 12.265625 -0.734375 11.84375 -0.796875 11.171875 -1.671875 L 7.375 -6.609375 L 9.984375 -9.890625 C 10.90625 -10.96875 11.984375 -11.421875 13.234375 -11.453125 L 13.234375 -12.1875 L 11.25 -12.125 C 10.484375 -12.125 9.609375 -12.125 8.953125 -12.1875 L 8.953125 -11.453125 C 9.359375 -11.390625 9.578125 -11.109375 9.578125 -10.71875 C 9.578125 -10.203125 9.296875 -9.890625 9.15625 -9.6875 L 7.0625 -7.03125 L 4.5625 -10.28125 C 4.3125 -10.59375 4.3125 -10.65625 4.3125 -10.796875 C 4.3125 -11.140625 4.59375 -11.421875 5.078125 -11.453125 L 5.078125 -12.1875 C 4.390625 -12.125 3.171875 -12.125 2.46875 -12.125 C 1.703125 -12.125 0.796875 -12.125 0.171875 -12.1875 L 0.171875 -11.453125 C 1.703125 -11.453125 2.046875 -11.34375 2.71875 -10.484375 L 5.984375 -6.265625 C 6.03125 -6.203125 6.171875 -6.03125 6.171875 -5.953125 C 6.171875 -5.84375 3.71875 -2.8125 3.40625 -2.40625 C 2.125 -0.875 0.796875 -0.765625 0.03125 -0.734375 L 0.03125 0 L 2.015625 -0.0625 C 2.578125 -0.0625 3.828125 -0.0625 4.34375 0 L 4.34375 -0.734375 C 4.171875 -0.765625 3.71875 -0.828125 3.71875 -1.46875 C 3.71875 -1.984375 3.9375 -2.296875 4.1875 -2.640625 L 6.546875 -5.53125 L 9.015625 -2.328125 C 9.234375 -2.015625 9.578125 -1.59375 9.578125 -1.390625 C 9.578125 -0.984375 9.234375 -0.765625 8.78125 -0.734375 L 8.78125 0 C 9.46875 -0.0625 10.6875 -0.0625 11.390625 -0.0625 C 12.15625 -0.0625 13.0625 -0.0625 13.6875 0 Z M 13.6875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-10">
|
||||
<path style="stroke:none;" d="M 13.515625 -6.125 C 13.515625 -9.6875 11.046875 -12.421875 8.140625 -12.421875 C 6.4375 -12.421875 5.046875 -11.484375 4.25 -10.34375 L 4.25 -12.421875 L 0.875 -12.109375 L 0.875 -11.359375 C 2.546875 -11.359375 2.8125 -11.203125 2.8125 -9.828125 L 2.8125 3.578125 C 2.8125 4.640625 2.6875 4.796875 0.875 4.796875 L 0.875 5.53125 C 1.5625 5.46875 2.8125 5.46875 3.546875 5.46875 C 4.28125 5.46875 5.5625 5.46875 6.234375 5.53125 L 6.234375 4.796875 C 4.421875 4.796875 4.3125 4.671875 4.3125 3.578125 L 4.3125 -1.734375 C 5.125 -0.53125 6.328125 0.234375 7.828125 0.234375 C 10.65625 0.234375 13.515625 -2.265625 13.515625 -6.125 Z M 11.703125 -6.09375 C 11.703125 -2.859375 9.890625 -0.234375 7.65625 -0.234375 C 6.625 -0.234375 5.53125 -0.703125 4.671875 -2.046875 C 4.3125 -2.671875 4.3125 -2.828125 4.3125 -3.28125 L 4.3125 -8.90625 C 4.3125 -9.296875 4.3125 -9.890625 5.40625 -10.9375 C 5.5625 -11.046875 6.515625 -11.90625 7.9375 -11.90625 C 10 -11.90625 11.703125 -9.328125 11.703125 -6.09375 Z M 11.703125 -6.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-11">
|
||||
<path style="stroke:none;" d="M 12.78125 -11.53125 C 12.78125 -12.078125 12.359375 -12.640625 11.453125 -12.640625 C 10.3125 -12.640625 9.328125 -12.109375 8.53125 -11.359375 C 7.6875 -12.125 6.65625 -12.421875 5.75 -12.421875 C 3.515625 -12.421875 1.59375 -10.65625 1.59375 -8.3125 C 1.59375 -6.6875 2.515625 -5.671875 2.8125 -5.390625 C 1.953125 -4.390625 1.953125 -3.234375 1.953125 -3.09375 C 1.953125 -2.359375 2.234375 -1.28125 3.203125 -0.6875 C 1.734375 -0.3125 0.5625 0.828125 0.5625 2.234375 C 0.5625 4.28125 3.265625 5.78125 6.484375 5.78125 C 9.609375 5.78125 12.421875 4.34375 12.421875 2.203125 C 12.421875 -1.640625 8.21875 -1.640625 6.03125 -1.640625 C 5.390625 -1.640625 4.21875 -1.640625 4.078125 -1.671875 C 3.203125 -1.8125 2.609375 -2.609375 2.609375 -3.59375 C 2.609375 -3.859375 2.609375 -4.484375 3.140625 -5.109375 C 3.6875 -4.671875 4.625 -4.1875 5.75 -4.1875 C 8 -4.1875 9.921875 -5.953125 9.921875 -8.3125 C 9.921875 -9.046875 9.6875 -10.171875 8.84375 -11.046875 C 9.640625 -11.90625 10.796875 -12.1875 11.453125 -12.1875 C 11.5625 -12.1875 11.734375 -12.1875 11.875 -12.109375 C 11.765625 -12.078125 11.5 -11.96875 11.5 -11.5 C 11.5 -11.140625 11.765625 -10.890625 12.125 -10.890625 C 12.5625 -10.890625 12.78125 -11.171875 12.78125 -11.53125 Z M 8.25 -8.3125 C 8.25 -7.734375 8.25 -4.671875 5.75 -4.671875 C 3.265625 -4.671875 3.265625 -7.734375 3.265625 -8.3125 C 3.265625 -8.875 3.265625 -11.9375 5.75 -11.9375 C 8.25 -11.9375 8.25 -8.875 8.25 -8.3125 Z M 11.28125 2.234375 C 11.28125 3.796875 9.328125 5.296875 6.484375 5.296875 C 3.65625 5.296875 1.703125 3.796875 1.703125 2.234375 C 1.703125 1.359375 2.1875 0.53125 2.8125 0.078125 C 3.515625 -0.390625 3.796875 -0.390625 5.71875 -0.390625 C 8.046875 -0.390625 11.28125 -0.390625 11.28125 2.234375 Z M 11.28125 2.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-12">
|
||||
<path style="stroke:none;" d="M 18.625 -11.453125 L 18.625 -12.1875 C 18.0625 -12.15625 17.484375 -12.125 16.921875 -12.125 C 16.375 -12.125 15.15625 -12.125 14.6875 -12.1875 L 14.6875 -11.453125 C 15.5625 -11.390625 16.046875 -10.890625 16.046875 -10.171875 C 16.046875 -9.984375 15.984375 -9.71875 15.921875 -9.53125 L 13.265625 -1.8125 L 10.375 -10.171875 C 10.3125 -10.375 10.234375 -10.59375 10.234375 -10.71875 C 10.234375 -11.453125 11.203125 -11.453125 11.65625 -11.453125 L 11.65625 -12.1875 C 11 -12.125 9.8125 -12.125 9.125 -12.125 C 8.421875 -12.125 7.6875 -12.125 7.03125 -12.1875 L 7.03125 -11.453125 C 8.59375 -11.453125 8.59375 -11.390625 9.1875 -9.609375 L 6.578125 -2.015625 L 3.765625 -10.203125 C 3.625 -10.578125 3.625 -10.625 3.625 -10.71875 C 3.625 -11.453125 4.59375 -11.453125 5.046875 -11.453125 L 5.046875 -12.1875 C 4.359375 -12.125 3.171875 -12.125 2.46875 -12.125 C 1.84375 -12.125 0.875 -12.125 0.28125 -12.1875 L 0.28125 -11.453125 C 1.53125 -11.453125 1.84375 -11.359375 2.15625 -10.4375 L 5.640625 -0.234375 C 5.75 0.140625 5.84375 0.234375 6.0625 0.234375 C 6.265625 0.234375 6.375 0.171875 6.515625 -0.25 L 9.4375 -8.8125 L 12.390625 -0.25 C 12.53125 0.171875 12.640625 0.234375 12.84375 0.234375 C 13.0625 0.234375 13.15625 0.140625 13.265625 -0.234375 L 16.5 -9.6875 C 17.0625 -11.359375 18.203125 -11.421875 18.625 -11.453125 Z M 18.625 -11.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-13">
|
||||
<path style="stroke:none;" d="M 9.4375 -10.9375 C 9.4375 -11.84375 8.53125 -12.421875 7.5625 -12.421875 C 5.40625 -12.421875 4.484375 -10.3125 4.1875 -9.328125 L 4.171875 -9.328125 L 4.171875 -12.421875 L 0.875 -12.109375 L 0.875 -11.359375 C 2.546875 -11.359375 2.8125 -11.203125 2.8125 -9.828125 L 2.8125 -1.953125 C 2.8125 -0.875 2.6875 -0.734375 0.875 -0.734375 L 0.875 0 C 1.5625 -0.0625 2.859375 -0.0625 3.59375 -0.0625 C 4.421875 -0.0625 5.859375 -0.0625 6.625 0 L 6.625 -0.734375 C 4.59375 -0.734375 4.25 -0.734375 4.25 -2.015625 L 4.25 -6.6875 C 4.25 -9.40625 5.40625 -11.96875 7.546875 -11.96875 C 7.734375 -11.96875 7.9375 -11.9375 8.140625 -11.84375 C 8.140625 -11.84375 7.515625 -11.65625 7.515625 -10.90625 C 7.515625 -10.234375 8.046875 -9.953125 8.46875 -9.953125 C 8.8125 -9.953125 9.4375 -10.140625 9.4375 -10.9375 Z M 9.4375 -10.9375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-14">
|
||||
<path style="stroke:none;" d="M 13.46875 0 L 13.46875 -0.734375 C 12.125 -0.734375 11.8125 -0.984375 10.96875 -2.234375 L 7.390625 -7.484375 C 7.375 -7.546875 7.234375 -7.703125 7.234375 -7.796875 L 9.5 -9.921875 C 11.109375 -11.28125 12.125 -11.421875 12.875 -11.453125 L 12.875 -12.1875 C 12.703125 -12.1875 12.609375 -12.15625 12.609375 -12.15625 L 11.21875 -12.125 C 10.4375 -12.125 9.21875 -12.125 8.453125 -12.1875 L 8.453125 -11.453125 C 8.84375 -11.421875 9.125 -11.203125 9.125 -10.796875 C 9.125 -10.234375 8.53125 -9.6875 8.53125 -9.6875 L 4.25 -5.78125 L 4.25 -19.671875 L 0.875 -19.359375 L 0.875 -18.625 C 2.546875 -18.625 2.8125 -18.453125 2.8125 -17.09375 L 2.8125 -1.953125 C 2.8125 -0.875 2.6875 -0.734375 0.875 -0.734375 L 0.875 0 C 1.5625 -0.0625 2.8125 -0.0625 3.515625 -0.0625 C 4.21875 -0.0625 5.46875 -0.0625 6.15625 0 L 6.15625 -0.734375 C 4.34375 -0.734375 4.21875 -0.84375 4.21875 -1.953125 L 4.21875 -5.078125 L 6.171875 -6.859375 L 9.046875 -2.609375 C 9.375 -2.09375 9.671875 -1.703125 9.671875 -1.328125 C 9.671875 -0.828125 9.15625 -0.734375 8.8125 -0.734375 L 8.8125 0 C 9.5 -0.0625 10.71875 -0.0625 11.421875 -0.0625 Z M 13.46875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-15">
|
||||
<path style="stroke:none;" d="M 7.234375 -5.46875 L 7.234375 -6.71875 L 0.109375 -6.71875 L 0.109375 -5.46875 Z M 7.234375 -5.46875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-16">
|
||||
<path style="stroke:none;" d="M 6.265625 0 L 6.265625 -0.734375 C 4.453125 -0.734375 4.34375 -0.84375 4.34375 -1.953125 L 4.34375 -19.671875 L 0.96875 -19.359375 L 0.96875 -18.625 C 2.640625 -18.625 2.890625 -18.453125 2.890625 -17.09375 L 2.890625 -1.953125 C 2.890625 -0.875 2.78125 -0.734375 0.96875 -0.734375 L 0.96875 0 C 1.640625 -0.0625 2.890625 -0.0625 3.59375 -0.0625 C 4.34375 -0.0625 5.578125 -0.0625 6.265625 0 Z M 6.265625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-17">
|
||||
<path style="stroke:none;" d="M 10.890625 -3.34375 C 10.890625 -3.453125 10.859375 -3.546875 10.65625 -3.546875 C 10.453125 -3.546875 10.4375 -3.515625 10.3125 -3.140625 C 9.578125 -0.84375 7.96875 -0.28125 6.75 -0.28125 C 4.9375 -0.28125 2.75 -1.953125 2.75 -6.15625 C 2.75 -10.453125 4.84375 -12.015625 6.515625 -12.015625 C 7.625 -12.015625 9.265625 -11.484375 9.890625 -9.921875 C 9.359375 -9.921875 8.5625 -9.921875 8.5625 -8.921875 C 8.5625 -8.140625 9.21875 -7.90625 9.578125 -7.90625 C 9.78125 -7.90625 10.59375 -8 10.59375 -8.984375 C 10.59375 -11 8.671875 -12.53125 6.484375 -12.53125 C 3.484375 -12.53125 0.9375 -9.75 0.9375 -6.125 C 0.9375 -2.359375 3.59375 0.234375 6.484375 0.234375 C 10 0.234375 10.890625 -3.03125 10.890625 -3.34375 Z M 10.890625 -3.34375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-18">
|
||||
<path style="stroke:none;" d="M 13.6875 0 L 13.6875 -0.734375 C 11.875 -0.734375 11.765625 -0.84375 11.765625 -1.953125 L 11.765625 -8.609375 C 11.765625 -10.0625 11.484375 -12.421875 8.140625 -12.421875 C 5.8125 -12.421875 4.671875 -10.546875 4.34375 -9.609375 L 4.3125 -9.609375 L 4.3125 -19.671875 L 0.9375 -19.359375 L 0.9375 -18.625 C 2.609375 -18.625 2.859375 -18.453125 2.859375 -17.09375 L 2.859375 -1.953125 C 2.859375 -0.875 2.75 -0.734375 0.9375 -0.734375 L 0.9375 0 C 1.609375 -0.0625 2.859375 -0.0625 3.59375 -0.0625 C 4.34375 -0.0625 5.609375 -0.0625 6.296875 0 L 6.296875 -0.734375 C 4.484375 -0.734375 4.359375 -0.84375 4.359375 -1.953125 L 4.359375 -7.390625 C 4.359375 -10 5.953125 -11.96875 7.9375 -11.96875 C 10.03125 -11.96875 10.265625 -10.09375 10.265625 -8.734375 L 10.265625 -1.953125 C 10.265625 -0.875 10.140625 -0.734375 8.328125 -0.734375 L 8.328125 0 C 9.015625 -0.0625 10.265625 -0.0625 11 -0.0625 C 11.734375 -0.0625 13.015625 -0.0625 13.6875 0 Z M 13.6875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-19">
|
||||
<path style="stroke:none;" d="M 13.15625 -5.125 C 13.15625 -6.609375 12.609375 -7.734375 12.296875 -8.25 C 11.109375 -10.0625 9.828125 -10.40625 8.46875 -10.75 C 8.28125 -10.828125 8.21875 -10.828125 6.625 -11.21875 C 5.109375 -11.625 4.453125 -11.8125 3.734375 -12.578125 C 2.953125 -13.46875 2.671875 -14.375 2.671875 -15.28125 C 2.671875 -17.125 4.140625 -19.125 6.546875 -19.125 C 9.546875 -19.125 11.421875 -17 11.84375 -13.46875 C 11.9375 -12.953125 11.96875 -12.921875 12.15625 -12.921875 C 12.421875 -12.921875 12.421875 -13.015625 12.421875 -13.484375 L 12.421875 -19.25 C 12.421875 -19.75 12.390625 -19.78125 12.21875 -19.78125 C 12.046875 -19.78125 11.984375 -19.671875 11.875 -19.421875 L 11.03125 -17.546875 C 9.953125 -19.109375 8.3125 -19.8125 6.515625 -19.8125 C 3.625 -19.8125 1.296875 -17.515625 1.296875 -14.625 C 1.296875 -13.75 1.5 -12.5 2.46875 -11.3125 C 3.515625 -10 4.5 -9.78125 6.78125 -9.1875 C 7.625 -8.953125 9.046875 -8.59375 9.328125 -8.46875 C 10.9375 -7.796875 11.796875 -6.09375 11.796875 -4.5 C 11.796875 -2.46875 10.34375 -0.28125 7.875 -0.28125 C 4.84375 -0.28125 2.015625 -1.984375 1.8125 -5.953125 C 1.78125 -6.40625 1.75 -6.4375 1.5625 -6.4375 C 1.328125 -6.4375 1.296875 -6.40625 1.296875 -5.84375 L 1.296875 -0.109375 C 1.296875 0.390625 1.328125 0.421875 1.5 0.421875 C 1.703125 0.421875 1.75 0.28125 2.15625 -0.59375 C 2.1875 -0.6875 2.1875 -0.734375 2.71875 -1.8125 C 4.140625 0.0625 6.515625 0.453125 7.875 0.453125 C 10.96875 0.453125 13.15625 -2.125 13.15625 -5.125 Z M 13.15625 -5.125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-20">
|
||||
<path style="stroke:none;" d="M 8.875 -18.171875 C 8.875 -19.25 7.84375 -19.890625 6.71875 -19.890625 C 5.109375 -19.890625 2.890625 -18.5625 2.890625 -15.5625 L 2.890625 -12.1875 L 0.625 -12.1875 L 0.625 -11.453125 L 2.890625 -11.453125 L 2.890625 -1.953125 C 2.890625 -0.875 2.78125 -0.734375 0.96875 -0.734375 L 0.96875 0 C 1.640625 -0.0625 2.953125 -0.0625 3.6875 -0.0625 C 4.5 -0.0625 5.953125 -0.0625 6.71875 0 L 6.71875 -0.734375 C 4.671875 -0.734375 4.34375 -0.734375 4.34375 -2.015625 L 4.34375 -11.453125 L 7.5625 -11.453125 L 7.5625 -12.1875 L 4.28125 -12.1875 L 4.28125 -15.625 C 4.28125 -17.96875 5.46875 -19.4375 6.6875 -19.4375 C 7.0625 -19.4375 7.484375 -19.328125 7.765625 -19.125 C 7.546875 -19.078125 6.9375 -18.875 6.9375 -18.171875 C 6.9375 -17.4375 7.515625 -17.203125 7.90625 -17.203125 C 8.3125 -17.203125 8.875 -17.4375 8.875 -18.171875 Z M 8.875 -18.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-21">
|
||||
<path style="stroke:none;" d="M 4.703125 -1.15625 C 4.703125 -1.875 4.140625 -2.328125 3.546875 -2.328125 C 2.96875 -2.328125 2.375 -1.875 2.375 -1.15625 C 2.375 -0.453125 2.953125 0 3.546875 0 C 4.109375 0 4.703125 -0.453125 4.703125 -1.15625 Z M 4.703125 -1.15625 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="17.443" y="8.852"/>
|
||||
<use xlink:href="#glyph0-2" x="26.383099" y="8.852"/>
|
||||
<use xlink:href="#glyph0-3" x="32.236364" y="8.852"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-4" x="40.750858" y="8.852"/>
|
||||
<use xlink:href="#glyph0-3" x="44.002672" y="8.852"/>
|
||||
<use xlink:href="#glyph0-5" x="48.619771" y="8.852"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="57.081661" y="8.852"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="64.556052" y="8.852"/>
|
||||
<use xlink:href="#glyph0-8" x="69.758955" y="8.852"/>
|
||||
<use xlink:href="#glyph0-5" x="75.937403" y="8.852"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-4" x="84.387338" y="8.852"/>
|
||||
<use xlink:href="#glyph0-9" x="87.639152" y="8.852"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-9" x="98.052132" y="8.852"/>
|
||||
<use xlink:href="#glyph0-10" x="104.55576" y="8.852"/>
|
||||
<use xlink:href="#glyph0-11" x="110.409026" y="8.852"/>
|
||||
<use xlink:href="#glyph0-12" x="114.961566" y="8.852"/>
|
||||
<use xlink:href="#glyph0-2" x="124.71701" y="8.852"/>
|
||||
<use xlink:href="#glyph0-13" x="130.570276" y="8.852"/>
|
||||
<use xlink:href="#glyph0-7" x="133.82209" y="8.852"/>
|
||||
<use xlink:href="#glyph0-11" x="139.024993" y="8.852"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-14" x="147.474928" y="8.852"/>
|
||||
<use xlink:href="#glyph0-15" x="153.978557" y="8.852"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-16" x="158.85867" y="8.852"/>
|
||||
<use xlink:href="#glyph0-11" x="165.362299" y="8.852"/>
|
||||
<use xlink:href="#glyph0-4" x="169.914839" y="8.852"/>
|
||||
<use xlink:href="#glyph0-17" x="173.166653" y="8.852"/>
|
||||
<use xlink:href="#glyph0-5" x="176.743649" y="8.852"/>
|
||||
<use xlink:href="#glyph0-18" x="181.296189" y="8.852"/>
|
||||
<use xlink:href="#glyph0-11" x="187.149455" y="8.852"/>
|
||||
<use xlink:href="#glyph0-19" x="191.701995" y="8.852"/>
|
||||
<use xlink:href="#glyph0-20" x="197.555261" y="8.852"/>
|
||||
<use xlink:href="#glyph0-7" x="203.408527" y="8.852"/>
|
||||
<use xlink:href="#glyph0-21" x="208.61143" y="8.852"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="17.443" y="37.199"/>
|
||||
<use xlink:href="#glyph1-2" x="37.472566" y="37.199"/>
|
||||
<use xlink:href="#glyph1-3" x="50.472225" y="37.199"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="68.370142" y="37.199"/>
|
||||
<use xlink:href="#glyph1-3" x="75.448238" y="37.199"/>
|
||||
<use xlink:href="#glyph1-5" x="85.635934" y="37.199"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="103.411962" y="37.199"/>
|
||||
<use xlink:href="#glyph1-4" x="114.931939" y="37.199"/>
|
||||
<use xlink:href="#glyph1-7" x="122.010035" y="37.199"/>
|
||||
<use xlink:href="#glyph1-6" x="136.492211" y="37.199"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-8" x="155.722408" y="37.199"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="172.4071" y="37.199"/>
|
||||
<use xlink:href="#glyph1-9" x="183.927076" y="37.199"/>
|
||||
<use xlink:href="#glyph1-5" x="197.666577" y="37.199"/>
|
||||
<use xlink:href="#glyph1-10" x="207.704037" y="37.199"/>
|
||||
<use xlink:href="#glyph1-2" x="222.186213" y="37.199"/>
|
||||
<use xlink:href="#glyph1-3" x="235.185872" y="37.199"/>
|
||||
<use xlink:href="#glyph1-3" x="245.373568" y="37.199"/>
|
||||
<use xlink:href="#glyph1-2" x="255.561264" y="37.199"/>
|
||||
<use xlink:href="#glyph1-11" x="268.560923" y="37.199"/>
|
||||
<use xlink:href="#glyph1-6" x="281.560582" y="37.199"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="300.819126" y="37.199"/>
|
||||
<use xlink:href="#glyph1-7" x="307.897222" y="37.199"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-12" x="330.089619" y="37.199"/>
|
||||
<use xlink:href="#glyph1-4" x="349.013675" y="37.199"/>
|
||||
<use xlink:href="#glyph1-13" x="356.091772" y="37.199"/>
|
||||
<use xlink:href="#glyph1-14" x="366.129232" y="37.199"/>
|
||||
<use xlink:href="#glyph1-15" x="379.868732" y="37.199"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-16" x="-0.116" y="65.545"/>
|
||||
<use xlink:href="#glyph1-4" x="6.962096" y="65.545"/>
|
||||
<use xlink:href="#glyph1-17" x="14.040192" y="65.545"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-18" x="24.823163" y="65.545"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-13" x="47.865951" y="65.545"/>
|
||||
<use xlink:href="#glyph1-4" x="57.903412" y="65.545"/>
|
||||
<use xlink:href="#glyph1-6" x="64.981508" y="65.545"/>
|
||||
<use xlink:href="#glyph1-3" x="76.501485" y="65.545"/>
|
||||
<use xlink:href="#glyph1-4" x="86.689181" y="65.545"/>
|
||||
<use xlink:href="#glyph1-11" x="93.767277" y="65.545"/>
|
||||
<use xlink:href="#glyph1-6" x="106.766936" y="65.545"/>
|
||||
<use xlink:href="#glyph1-13" x="118.286913" y="65.545"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-19" x="136.856639" y="65.545"/>
|
||||
<use xlink:href="#glyph1-17" x="151.338815" y="65.545"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-18" x="162.121786" y="65.545"/>
|
||||
<use xlink:href="#glyph1-13" x="176.603962" y="65.545"/>
|
||||
<use xlink:href="#glyph1-4" x="186.641422" y="65.545"/>
|
||||
<use xlink:href="#glyph1-20" x="193.719518" y="65.545"/>
|
||||
<use xlink:href="#glyph1-5" x="201.537455" y="65.545"/>
|
||||
<use xlink:href="#glyph1-21" x="211.574915" y="65.545"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-22" x="17.443" y="79.991"/>
|
||||
<use xlink:href="#glyph0-2" x="25.732736" y="79.991"/>
|
||||
<use xlink:href="#glyph0-15" x="31.586002" y="79.991"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-23" x="36.466114" y="79.991"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="46.541957" y="79.991"/>
|
||||
<use xlink:href="#glyph0-10" x="51.094497" y="79.991"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-9" x="60.845158" y="79.991"/>
|
||||
<use xlink:href="#glyph0-10" x="67.348787" y="79.991"/>
|
||||
<use xlink:href="#glyph0-11" x="73.202053" y="79.991"/>
|
||||
<use xlink:href="#glyph0-12" x="77.754593" y="79.991"/>
|
||||
<use xlink:href="#glyph0-2" x="87.510036" y="79.991"/>
|
||||
<use xlink:href="#glyph0-13" x="93.363302" y="79.991"/>
|
||||
<use xlink:href="#glyph0-21" x="96.615116" y="79.991"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 51 KiB |
289
sections/german/06/schriftgroesse-fontsize-befehl-orig.svg
Normal file
@ -0,0 +1,289 @@
|
||||
<?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 8.28125 -4 C 8.28125 -6.3125 6.671875 -8.15625 4.6875 -8.15625 L 0.5 -8.15625 L 0.5 -7.8125 L 0.734375 -7.8125 C 1.609375 -7.8125 1.640625 -7.703125 1.640625 -7.25 L 1.640625 -0.90625 C 1.640625 -0.46875 1.609375 -0.34375 0.734375 -0.34375 L 0.5 -0.34375 L 0.5 0 L 4.6875 0 C 6.6875 0 8.28125 -1.796875 8.28125 -4 Z M 7.203125 -4.015625 C 7.203125 -3.34375 7.1875 -2.21875 6.5 -1.34375 C 6.109375 -0.84375 5.390625 -0.34375 4.390625 -0.34375 L 3.125 -0.34375 C 2.609375 -0.34375 2.578125 -0.4375 2.578125 -0.828125 L 2.578125 -7.34375 C 2.578125 -7.734375 2.609375 -7.8125 3.125 -7.8125 L 4.390625 -7.8125 C 5.375 -7.8125 6.171875 -7.34375 6.65625 -6.546875 C 7.203125 -5.703125 7.203125 -4.5 7.203125 -4.015625 Z M 7.203125 -4.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 5.671875 -1.0625 L 5.671875 -1.734375 L 5.40625 -1.734375 L 5.40625 -1.0625 C 5.40625 -0.375 5.109375 -0.28125 4.953125 -0.28125 C 4.5 -0.28125 4.5 -0.921875 4.5 -1.09375 L 4.5 -3.1875 C 4.5 -3.84375 4.5 -4.3125 3.96875 -4.78125 C 3.546875 -5.15625 3.015625 -5.328125 2.484375 -5.328125 C 1.5 -5.328125 0.75 -4.6875 0.75 -3.90625 C 0.75 -3.5625 0.984375 -3.390625 1.25 -3.390625 C 1.546875 -3.390625 1.75 -3.59375 1.75 -3.890625 C 1.75 -4.375 1.3125 -4.375 1.140625 -4.375 C 1.40625 -4.875 1.984375 -5.09375 2.46875 -5.09375 C 3.015625 -5.09375 3.71875 -4.640625 3.71875 -3.5625 L 3.71875 -3.078125 C 1.3125 -3.046875 0.40625 -2.046875 0.40625 -1.125 C 0.40625 -0.171875 1.5 0.125 2.234375 0.125 C 3.03125 0.125 3.5625 -0.359375 3.796875 -0.9375 C 3.84375 -0.375 4.203125 0.0625 4.71875 0.0625 C 4.96875 0.0625 5.671875 -0.109375 5.671875 -1.0625 Z M 3.71875 -1.6875 C 3.71875 -0.515625 2.84375 -0.125 2.328125 -0.125 C 1.75 -0.125 1.25 -0.546875 1.25 -1.125 C 1.25 -2.703125 3.28125 -2.84375 3.71875 -2.875 Z M 3.71875 -1.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 4.203125 -1.515625 C 4.203125 -2.15625 3.8125 -2.546875 3.703125 -2.65625 C 3.28125 -3.03125 2.953125 -3.09375 2.15625 -3.234375 C 1.8125 -3.3125 0.9375 -3.484375 0.9375 -4.203125 C 0.9375 -4.5625 1.1875 -5.109375 2.265625 -5.109375 C 3.5625 -5.109375 3.640625 -4 3.65625 -3.640625 C 3.671875 -3.53125 3.75 -3.53125 3.796875 -3.53125 C 3.921875 -3.53125 3.921875 -3.59375 3.921875 -3.8125 L 3.921875 -5.0625 C 3.921875 -5.265625 3.921875 -5.328125 3.796875 -5.328125 C 3.703125 -5.328125 3.484375 -5.0625 3.390625 -4.953125 C 3.03125 -5.265625 2.65625 -5.328125 2.265625 -5.328125 C 0.828125 -5.328125 0.390625 -4.546875 0.390625 -3.890625 C 0.390625 -3.75 0.390625 -3.328125 0.84375 -2.921875 C 1.234375 -2.578125 1.640625 -2.5 2.1875 -2.390625 C 2.84375 -2.265625 3 -2.21875 3.296875 -1.984375 C 3.515625 -1.8125 3.671875 -1.546875 3.671875 -1.203125 C 3.671875 -0.6875 3.375 -0.125 2.3125 -0.125 C 1.53125 -0.125 0.953125 -0.578125 0.6875 -1.765625 C 0.640625 -1.984375 0.640625 -2.015625 0.640625 -2.015625 C 0.609375 -2.0625 0.5625 -2.0625 0.53125 -2.0625 C 0.390625 -2.0625 0.390625 -2 0.390625 -1.78125 L 0.390625 -0.15625 C 0.390625 0.0625 0.390625 0.125 0.515625 0.125 C 0.578125 0.125 0.578125 0.109375 0.78125 -0.140625 C 0.84375 -0.234375 0.84375 -0.25 1.03125 -0.4375 C 1.484375 0.125 2.125 0.125 2.328125 0.125 C 3.578125 0.125 4.203125 -0.578125 4.203125 -1.515625 Z M 4.203125 -1.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 2.875 0 L 2.875 -0.34375 C 2.109375 -0.34375 2.0625 -0.40625 2.0625 -0.875 L 2.0625 -5.265625 L 0.4375 -5.140625 L 0.4375 -4.796875 C 1.1875 -4.796875 1.296875 -4.71875 1.296875 -4.140625 L 1.296875 -0.890625 C 1.296875 -0.34375 1.171875 -0.34375 0.390625 -0.34375 L 0.390625 0 C 0.734375 -0.03125 1.296875 -0.03125 1.65625 -0.03125 C 1.78125 -0.03125 2.46875 -0.03125 2.875 0 Z M 2.21875 -7.21875 C 2.21875 -7.578125 1.921875 -7.8125 1.640625 -7.8125 C 1.296875 -7.8125 1.046875 -7.546875 1.046875 -7.21875 C 1.046875 -6.90625 1.3125 -6.640625 1.625 -6.640625 C 1.984375 -6.640625 2.21875 -6.9375 2.21875 -7.21875 Z M 2.21875 -7.21875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 3.890625 -1.484375 L 3.890625 -2.15625 L 3.640625 -2.15625 L 3.640625 -1.5 C 3.640625 -0.640625 3.28125 -0.140625 2.828125 -0.140625 C 2.015625 -0.140625 2.015625 -1.25 2.015625 -1.453125 L 2.015625 -4.8125 L 3.6875 -4.8125 L 3.6875 -5.15625 L 2.015625 -5.15625 L 2.015625 -7.34375 L 1.75 -7.34375 C 1.734375 -6.234375 1.296875 -5.078125 0.21875 -5.046875 L 0.21875 -4.8125 L 1.234375 -4.8125 L 1.234375 -1.484375 C 1.234375 -0.15625 2.109375 0.125 2.75 0.125 C 3.5 0.125 3.890625 -0.625 3.890625 -1.484375 Z M 3.890625 -1.484375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 8.015625 -5.4375 L 7.8125 -8.109375 L 0.640625 -8.109375 L 0.421875 -5.4375 L 0.6875 -5.4375 C 0.84375 -7.328125 0.953125 -7.75 2.84375 -7.75 C 3.0625 -7.75 3.390625 -7.75 3.484375 -7.734375 C 3.734375 -7.703125 3.734375 -7.546875 3.734375 -7.28125 L 3.734375 -0.921875 C 3.734375 -0.515625 3.734375 -0.34375 2.5625 -0.34375 L 2.140625 -0.34375 L 2.140625 0 C 2.515625 -0.03125 3.75 -0.03125 4.21875 -0.03125 C 4.6875 -0.03125 5.921875 -0.03125 6.3125 0 L 6.3125 -0.34375 L 5.875 -0.34375 C 4.703125 -0.34375 4.703125 -0.515625 4.703125 -0.921875 L 4.703125 -7.28125 C 4.703125 -7.578125 4.734375 -7.6875 4.921875 -7.734375 C 5.015625 -7.75 5.359375 -7.75 5.59375 -7.75 C 7.484375 -7.75 7.59375 -7.328125 7.75 -5.4375 Z M 8.015625 -5.4375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 4.859375 -1.421875 C 4.859375 -1.5 4.8125 -1.546875 4.734375 -1.546875 C 4.640625 -1.546875 4.609375 -1.484375 4.59375 -1.421875 C 4.28125 -0.421875 3.484375 -0.140625 2.96875 -0.140625 C 2.46875 -0.140625 1.265625 -0.484375 1.265625 -2.546875 L 1.265625 -2.765625 L 4.578125 -2.765625 C 4.84375 -2.765625 4.859375 -2.765625 4.859375 -3 C 4.859375 -4.203125 4.21875 -5.328125 2.765625 -5.328125 C 1.40625 -5.328125 0.359375 -4.09375 0.359375 -2.625 C 0.359375 -1.046875 1.578125 0.125 2.90625 0.125 C 4.328125 0.125 4.859375 -1.171875 4.859375 -1.421875 Z M 4.125 -3 L 1.28125 -3 C 1.375 -4.875 2.421875 -5.09375 2.765625 -5.09375 C 4.046875 -5.09375 4.109375 -3.40625 4.125 -3 Z M 4.125 -3 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 6.046875 0 L 6.046875 -0.34375 C 5.421875 -0.34375 5.203125 -0.375 4.90625 -0.75 L 3.34375 -2.828125 C 3.6875 -3.28125 4.203125 -3.921875 4.421875 -4.171875 C 4.90625 -4.71875 5.46875 -4.8125 5.859375 -4.8125 L 5.859375 -5.15625 C 5.34375 -5.125 5.3125 -5.125 4.859375 -5.125 L 3.78125 -5.15625 L 3.78125 -4.8125 C 3.9375 -4.78125 4.125 -4.703125 4.125 -4.4375 C 4.125 -4.234375 4.015625 -4.09375 3.9375 -4 L 3.171875 -3.03125 L 2.25 -4.265625 C 2.21875 -4.3125 2.140625 -4.421875 2.140625 -4.5 C 2.140625 -4.578125 2.203125 -4.796875 2.5625 -4.8125 L 2.5625 -5.15625 C 2.265625 -5.125 1.65625 -5.125 1.328125 -5.125 L 0.171875 -5.15625 L 0.171875 -4.8125 C 0.78125 -4.8125 1.015625 -4.78125 1.265625 -4.453125 L 2.671875 -2.625 C 2.6875 -2.609375 2.734375 -2.53125 2.734375 -2.5 C 2.734375 -2.46875 1.8125 -1.296875 1.6875 -1.140625 C 1.15625 -0.484375 0.640625 -0.359375 0.125 -0.34375 L 0.125 0 C 0.578125 -0.03125 0.59375 -0.03125 1.109375 -0.03125 L 2.1875 0 L 2.1875 -0.34375 C 1.90625 -0.375 1.859375 -0.5625 1.859375 -0.734375 C 1.859375 -0.921875 1.9375 -1.015625 2.0625 -1.171875 L 2.921875 -2.28125 L 3.890625 -1 C 4.09375 -0.734375 4.09375 -0.71875 4.09375 -0.640625 C 4.09375 -0.546875 4 -0.359375 3.6875 -0.34375 L 3.6875 0 C 4 -0.03125 4.578125 -0.03125 4.90625 -0.03125 Z M 6.046875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-9">
|
||||
<path style="stroke:none;" d="M 6.234375 0 L 6.234375 -0.34375 C 5.625 -0.34375 5.328125 -0.34375 5.3125 -0.703125 L 5.3125 -2.90625 C 5.3125 -4.015625 5.3125 -4.34375 5.046875 -4.734375 C 4.703125 -5.203125 4.140625 -5.265625 3.734375 -5.265625 C 2.5625 -5.265625 2.109375 -4.28125 2.015625 -4.046875 L 2.015625 -5.265625 L 0.375 -5.140625 L 0.375 -4.796875 C 1.1875 -4.796875 1.296875 -4.703125 1.296875 -4.125 L 1.296875 -0.890625 C 1.296875 -0.34375 1.15625 -0.34375 0.375 -0.34375 L 0.375 0 C 0.6875 -0.03125 1.34375 -0.03125 1.671875 -0.03125 C 2.015625 -0.03125 2.671875 -0.03125 2.96875 0 L 2.96875 -0.34375 C 2.21875 -0.34375 2.0625 -0.34375 2.0625 -0.890625 L 2.0625 -3.109375 C 2.0625 -4.359375 2.890625 -5.03125 3.640625 -5.03125 C 4.375 -5.03125 4.546875 -4.421875 4.546875 -3.6875 L 4.546875 -0.890625 C 4.546875 -0.34375 4.40625 -0.34375 3.640625 -0.34375 L 3.640625 0 C 3.9375 -0.03125 4.59375 -0.03125 4.921875 -0.03125 C 5.265625 -0.03125 5.921875 -0.03125 6.234375 0 Z M 6.234375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-10">
|
||||
<path style="stroke:none;" d="M 5.484375 -2.5625 C 5.484375 -4.09375 4.3125 -5.328125 2.921875 -5.328125 C 1.5 -5.328125 0.359375 -4.0625 0.359375 -2.5625 C 0.359375 -1.03125 1.546875 0.125 2.921875 0.125 C 4.328125 0.125 5.484375 -1.046875 5.484375 -2.5625 Z M 4.578125 -2.671875 C 4.578125 -2.25 4.578125 -1.5 4.265625 -0.9375 C 3.9375 -0.375 3.375 -0.140625 2.921875 -0.140625 C 2.484375 -0.140625 1.953125 -0.328125 1.609375 -0.921875 C 1.28125 -1.453125 1.265625 -2.15625 1.265625 -2.671875 C 1.265625 -3.125 1.265625 -3.84375 1.640625 -4.390625 C 1.96875 -4.90625 2.5 -5.09375 2.921875 -5.09375 C 3.375 -5.09375 3.890625 -4.875 4.203125 -4.40625 C 4.578125 -3.859375 4.578125 -3.109375 4.578125 -2.671875 Z M 4.578125 -2.671875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-11">
|
||||
<path style="stroke:none;" d="M 4.21875 -4.578125 C 4.21875 -4.9375 3.890625 -5.265625 3.375 -5.265625 C 2.359375 -5.265625 2.015625 -4.171875 1.953125 -3.9375 L 1.9375 -3.9375 L 1.9375 -5.265625 L 0.328125 -5.140625 L 0.328125 -4.796875 C 1.140625 -4.796875 1.25 -4.703125 1.25 -4.125 L 1.25 -0.890625 C 1.25 -0.34375 1.109375 -0.34375 0.328125 -0.34375 L 0.328125 0 C 0.671875 -0.03125 1.328125 -0.03125 1.6875 -0.03125 C 2.015625 -0.03125 2.859375 -0.03125 3.125 0 L 3.125 -0.34375 L 2.890625 -0.34375 C 2.015625 -0.34375 2 -0.484375 2 -0.90625 L 2 -2.78125 C 2 -3.9375 2.46875 -5.03125 3.390625 -5.03125 C 3.484375 -5.03125 3.515625 -5.03125 3.5625 -5.015625 C 3.46875 -4.96875 3.28125 -4.90625 3.28125 -4.578125 C 3.28125 -4.234375 3.546875 -4.09375 3.734375 -4.09375 C 3.984375 -4.09375 4.21875 -4.25 4.21875 -4.578125 Z M 4.21875 -4.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-12">
|
||||
<path style="stroke:none;" d="M 9.484375 0 L 9.484375 -0.34375 C 8.875 -0.34375 8.578125 -0.34375 8.578125 -0.703125 L 8.578125 -2.90625 C 8.578125 -4.015625 8.578125 -4.34375 8.296875 -4.734375 C 7.953125 -5.203125 7.390625 -5.265625 6.984375 -5.265625 C 5.984375 -5.265625 5.484375 -4.546875 5.296875 -4.09375 C 5.125 -5.015625 4.484375 -5.265625 3.734375 -5.265625 C 2.5625 -5.265625 2.109375 -4.28125 2.015625 -4.046875 L 2.015625 -5.265625 L 0.375 -5.140625 L 0.375 -4.796875 C 1.1875 -4.796875 1.296875 -4.703125 1.296875 -4.125 L 1.296875 -0.890625 C 1.296875 -0.34375 1.15625 -0.34375 0.375 -0.34375 L 0.375 0 C 0.6875 -0.03125 1.34375 -0.03125 1.671875 -0.03125 C 2.015625 -0.03125 2.671875 -0.03125 2.96875 0 L 2.96875 -0.34375 C 2.21875 -0.34375 2.0625 -0.34375 2.0625 -0.890625 L 2.0625 -3.109375 C 2.0625 -4.359375 2.890625 -5.03125 3.640625 -5.03125 C 4.375 -5.03125 4.546875 -4.421875 4.546875 -3.6875 L 4.546875 -0.890625 C 4.546875 -0.34375 4.40625 -0.34375 3.640625 -0.34375 L 3.640625 0 C 3.9375 -0.03125 4.59375 -0.03125 4.921875 -0.03125 C 5.265625 -0.03125 5.921875 -0.03125 6.234375 0 L 6.234375 -0.34375 C 5.46875 -0.34375 5.3125 -0.34375 5.3125 -0.890625 L 5.3125 -3.109375 C 5.3125 -4.359375 6.140625 -5.03125 6.890625 -5.03125 C 7.625 -5.03125 7.796875 -4.421875 7.796875 -3.6875 L 7.796875 -0.890625 C 7.796875 -0.34375 7.65625 -0.34375 6.890625 -0.34375 L 6.890625 0 C 7.203125 -0.03125 7.84375 -0.03125 8.171875 -0.03125 C 8.515625 -0.03125 9.171875 -0.03125 9.484375 0 Z M 9.484375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-13">
|
||||
<path style="stroke:none;" d="M 2.96875 0 L 2.96875 -0.34375 C 2.203125 -0.34375 2.0625 -0.34375 2.0625 -0.890625 L 2.0625 -8.296875 L 0.390625 -8.15625 L 0.390625 -7.8125 C 1.203125 -7.8125 1.296875 -7.734375 1.296875 -7.140625 L 1.296875 -0.890625 C 1.296875 -0.34375 1.171875 -0.34375 0.390625 -0.34375 L 0.390625 0 C 0.734375 -0.03125 1.3125 -0.03125 1.671875 -0.03125 C 2.03125 -0.03125 2.625 -0.03125 2.96875 0 Z M 2.96875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-14">
|
||||
<path style="stroke:none;" d="M 5.84375 -2.203125 C 5.84375 -2.921875 5.5625 -3.46875 5.25 -3.859375 C 4.8125 -4.40625 4.265625 -4.53125 3.796875 -4.65625 L 2.484375 -4.984375 C 1.875 -5.140625 1.34375 -5.734375 1.34375 -6.5 C 1.34375 -7.34375 2.015625 -8.09375 2.9375 -8.09375 C 4.90625 -8.09375 5.15625 -6.15625 5.234375 -5.640625 C 5.265625 -5.5 5.265625 -5.453125 5.375 -5.453125 C 5.515625 -5.453125 5.515625 -5.515625 5.515625 -5.71875 L 5.515625 -8.140625 C 5.515625 -8.359375 5.515625 -8.421875 5.390625 -8.421875 C 5.359375 -8.421875 5.3125 -8.421875 5.21875 -8.265625 L 4.828125 -7.53125 C 4.25 -8.265625 3.46875 -8.421875 2.9375 -8.421875 C 1.609375 -8.421875 0.640625 -7.34375 0.640625 -6.125 C 0.640625 -5.5625 0.84375 -5.03125 1.296875 -4.546875 C 1.703125 -4.09375 2.125 -3.984375 2.96875 -3.765625 C 3.390625 -3.671875 4.046875 -3.5 4.21875 -3.4375 C 4.78125 -3.15625 5.15625 -2.515625 5.15625 -1.84375 C 5.15625 -0.9375 4.515625 -0.09375 3.53125 -0.09375 C 2.984375 -0.09375 2.25 -0.234375 1.65625 -0.734375 C 0.96875 -1.359375 0.921875 -2.21875 0.90625 -2.625 C 0.890625 -2.71875 0.78125 -2.71875 0.78125 -2.71875 C 0.640625 -2.71875 0.640625 -2.65625 0.640625 -2.4375 L 0.640625 -0.03125 C 0.640625 0.1875 0.640625 0.25 0.765625 0.25 C 0.84375 0.25 0.84375 0.234375 0.9375 0.078125 L 1.328125 -0.640625 C 1.75 -0.15625 2.515625 0.25 3.53125 0.25 C 4.875 0.25 5.84375 -0.890625 5.84375 -2.203125 Z M 5.84375 -2.203125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-15">
|
||||
<path style="stroke:none;" d="M 4.859375 -1.421875 C 4.859375 -1.53125 4.765625 -1.53125 4.734375 -1.53125 C 4.625 -1.53125 4.609375 -1.5 4.578125 -1.34375 C 4.3125 -0.5 3.671875 -0.140625 3.03125 -0.140625 C 2.296875 -0.140625 1.328125 -0.78125 1.328125 -2.59375 C 1.328125 -4.578125 2.34375 -5.0625 2.9375 -5.0625 C 3.390625 -5.0625 4.046875 -4.890625 4.328125 -4.421875 C 4.1875 -4.421875 3.734375 -4.421875 3.734375 -3.9375 C 3.734375 -3.640625 3.9375 -3.4375 4.234375 -3.4375 C 4.5 -3.4375 4.734375 -3.609375 4.734375 -3.953125 C 4.734375 -4.75 3.890625 -5.328125 2.921875 -5.328125 C 1.53125 -5.328125 0.421875 -4.09375 0.421875 -2.578125 C 0.421875 -1.046875 1.5625 0.125 2.921875 0.125 C 4.5 0.125 4.859375 -1.3125 4.859375 -1.421875 Z M 4.859375 -1.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-16">
|
||||
<path style="stroke:none;" d="M 6.234375 0 L 6.234375 -0.34375 C 5.625 -0.34375 5.328125 -0.34375 5.3125 -0.703125 L 5.3125 -2.90625 C 5.3125 -4.015625 5.3125 -4.34375 5.046875 -4.734375 C 4.703125 -5.203125 4.140625 -5.265625 3.734375 -5.265625 C 2.703125 -5.265625 2.21875 -4.5 2.0625 -4.125 L 2.046875 -4.125 L 2.046875 -8.296875 L 0.375 -8.15625 L 0.375 -7.8125 C 1.1875 -7.8125 1.296875 -7.734375 1.296875 -7.140625 L 1.296875 -0.890625 C 1.296875 -0.34375 1.15625 -0.34375 0.375 -0.34375 L 0.375 0 C 0.6875 -0.03125 1.34375 -0.03125 1.671875 -0.03125 C 2.015625 -0.03125 2.671875 -0.03125 2.96875 0 L 2.96875 -0.34375 C 2.21875 -0.34375 2.0625 -0.34375 2.0625 -0.890625 L 2.0625 -3.109375 C 2.0625 -4.359375 2.890625 -5.03125 3.640625 -5.03125 C 4.375 -5.03125 4.546875 -4.421875 4.546875 -3.6875 L 4.546875 -0.890625 C 4.546875 -0.34375 4.40625 -0.34375 3.640625 -0.34375 L 3.640625 0 C 3.9375 -0.03125 4.59375 -0.03125 4.921875 -0.03125 C 5.265625 -0.03125 5.921875 -0.03125 6.234375 0 Z M 6.234375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-17">
|
||||
<path style="stroke:none;" d="M 4.09375 -7.625 C 4.09375 -8.0625 3.65625 -8.421875 3.078125 -8.421875 C 2.25 -8.421875 1.296875 -7.765625 1.296875 -6.546875 L 1.296875 -5.15625 L 0.375 -5.15625 L 0.375 -4.8125 L 1.296875 -4.8125 L 1.296875 -0.890625 C 1.296875 -0.34375 1.171875 -0.34375 0.390625 -0.34375 L 0.390625 0 C 0.734375 -0.03125 1.390625 -0.03125 1.75 -0.03125 C 2.0625 -0.03125 2.921875 -0.03125 3.1875 0 L 3.1875 -0.34375 L 2.953125 -0.34375 C 2.078125 -0.34375 2.0625 -0.484375 2.0625 -0.90625 L 2.0625 -4.8125 L 3.40625 -4.8125 L 3.40625 -5.15625 L 2.03125 -5.15625 L 2.03125 -6.546875 C 2.03125 -7.625 2.578125 -8.171875 3.078125 -8.171875 C 3.171875 -8.171875 3.34375 -8.15625 3.484375 -8.078125 C 3.4375 -8.0625 3.140625 -7.953125 3.140625 -7.609375 C 3.140625 -7.34375 3.328125 -7.140625 3.609375 -7.140625 C 3.890625 -7.140625 4.09375 -7.34375 4.09375 -7.625 Z M 4.09375 -7.625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-18">
|
||||
<path style="stroke:none;" d="M 5.671875 -4.859375 C 5.671875 -5.0625 5.515625 -5.40625 5.09375 -5.40625 C 4.46875 -5.40625 4 -5.015625 3.84375 -4.84375 C 3.484375 -5.109375 3.0625 -5.265625 2.609375 -5.265625 C 1.53125 -5.265625 0.734375 -4.453125 0.734375 -3.53125 C 0.734375 -2.859375 1.140625 -2.421875 1.265625 -2.3125 C 1.125 -2.125 0.90625 -1.78125 0.90625 -1.3125 C 0.90625 -0.625 1.328125 -0.328125 1.421875 -0.265625 C 0.875 -0.109375 0.328125 0.328125 0.328125 0.9375 C 0.328125 1.765625 1.453125 2.453125 2.921875 2.453125 C 4.34375 2.453125 5.515625 1.8125 5.515625 0.921875 C 5.515625 0.625 5.4375 -0.078125 4.71875 -0.453125 C 4.109375 -0.765625 3.515625 -0.765625 2.484375 -0.765625 C 1.75 -0.765625 1.671875 -0.765625 1.453125 -0.984375 C 1.34375 -1.109375 1.234375 -1.34375 1.234375 -1.59375 C 1.234375 -1.796875 1.296875 -2 1.421875 -2.15625 C 1.984375 -1.796875 2.46875 -1.796875 2.59375 -1.796875 C 3.671875 -1.796875 4.46875 -2.609375 4.46875 -3.53125 C 4.46875 -3.84375 4.375 -4.296875 4 -4.6875 C 4.453125 -5.15625 5.015625 -5.15625 5.078125 -5.15625 C 5.125 -5.15625 5.1875 -5.15625 5.234375 -5.140625 C 5.109375 -5.09375 5.0625 -4.96875 5.0625 -4.84375 C 5.0625 -4.671875 5.171875 -4.53125 5.359375 -4.53125 C 5.46875 -4.53125 5.671875 -4.59375 5.671875 -4.859375 Z M 3.640625 -3.53125 C 3.640625 -3.328125 3.640625 -2.828125 3.4375 -2.515625 C 3.21875 -2.15625 2.859375 -2.046875 2.609375 -2.046875 C 1.546875 -2.046875 1.546875 -3.25 1.546875 -3.53125 C 1.546875 -3.734375 1.546875 -4.234375 1.75 -4.546875 C 1.984375 -4.90625 2.34375 -5.015625 2.59375 -5.015625 C 3.640625 -5.015625 3.640625 -3.8125 3.640625 -3.53125 Z M 4.9375 0.9375 C 4.9375 1.640625 4.03125 2.203125 2.921875 2.203125 C 1.78125 2.203125 0.90625 1.609375 0.90625 0.9375 C 0.90625 0.84375 0.9375 0.375 1.390625 0.0625 C 1.65625 -0.109375 1.75 -0.109375 2.59375 -0.109375 C 3.578125 -0.109375 4.9375 -0.109375 4.9375 0.9375 Z M 4.9375 0.9375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-19">
|
||||
<path style="stroke:none;" d="M 5.484375 -2.5625 C 5.484375 -4.09375 4.3125 -5.328125 2.921875 -5.328125 C 1.5 -5.328125 0.359375 -4.0625 0.359375 -2.5625 C 0.359375 -1.03125 1.546875 0.125 2.921875 0.125 C 4.328125 0.125 5.484375 -1.046875 5.484375 -2.5625 Z M 4.578125 -2.671875 C 4.578125 -2.25 4.578125 -1.5 4.265625 -0.9375 C 3.9375 -0.375 3.375 -0.140625 2.921875 -0.140625 C 2.484375 -0.140625 1.953125 -0.328125 1.609375 -0.921875 C 1.28125 -1.453125 1.265625 -2.15625 1.265625 -2.671875 C 1.265625 -3.125 1.265625 -3.84375 1.640625 -4.390625 C 1.96875 -4.90625 2.5 -5.09375 2.921875 -5.09375 C 3.375 -5.09375 3.890625 -4.875 4.203125 -4.40625 C 4.578125 -3.859375 4.578125 -3.109375 4.578125 -2.671875 Z M 2.5 -7.21875 C 2.5 -7.546875 2.25 -7.75 1.984375 -7.75 C 1.6875 -7.75 1.453125 -7.5 1.453125 -7.21875 C 1.453125 -6.9375 1.703125 -6.703125 1.96875 -6.703125 C 2.296875 -6.703125 2.5 -6.96875 2.5 -7.21875 Z M 4.40625 -7.21875 C 4.40625 -7.546875 4.15625 -7.75 3.890625 -7.75 C 3.59375 -7.75 3.375 -7.5 3.375 -7.21875 C 3.375 -6.9375 3.609375 -6.703125 3.890625 -6.703125 C 4.203125 -6.703125 4.40625 -6.96875 4.40625 -7.21875 Z M 4.40625 -7.21875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-20">
|
||||
<path style="stroke:none;" d="M 5.515625 -2.078125 C 5.515625 -3.390625 4.75 -4.609375 3.5625 -5.015625 C 4.453125 -5.25 5.203125 -5.890625 5.203125 -6.734375 C 5.203125 -7.625 4.34375 -8.421875 3.203125 -8.421875 C 2.25 -8.421875 1.25 -7.8125 1.25 -6.65625 L 1.25 -5.15625 L 0.328125 -5.15625 L 0.328125 -4.8125 L 1.25 -4.8125 L 1.25 -0.890625 C 1.25 -0.34375 1.109375 -0.34375 0.328125 -0.34375 L 0.328125 0 C 0.65625 -0.03125 1.015625 -0.03125 1.34375 -0.03125 C 1.546875 -0.03125 1.828125 -0.03125 2 0 L 2 -6.65625 C 2 -8.109375 3.03125 -8.171875 3.203125 -8.171875 C 3.6875 -8.171875 4.359375 -7.796875 4.359375 -6.734375 C 4.359375 -5.28125 3.03125 -5.171875 2.71875 -5.15625 C 2.640625 -5.140625 2.640625 -5.03125 2.640625 -5.03125 C 2.640625 -4.921875 2.703125 -4.921875 2.78125 -4.90625 C 4.0625 -4.796875 4.6875 -3.484375 4.6875 -2.078125 C 4.6875 -0.5 3.875 -0.125 3.4375 -0.125 C 3.359375 -0.125 3.015625 -0.125 2.765625 -0.359375 C 3.03125 -0.40625 3.109375 -0.59375 3.109375 -0.734375 C 3.109375 -1 2.921875 -1.140625 2.71875 -1.140625 C 2.515625 -1.140625 2.328125 -1 2.328125 -0.734375 C 2.328125 -0.28125 2.765625 0.125 3.453125 0.125 C 4.5 0.125 5.515625 -0.765625 5.515625 -2.078125 Z M 5.515625 -2.078125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-21">
|
||||
<path style="stroke:none;" d="M 2.203125 -0.578125 C 2.203125 -0.90625 1.921875 -1.15625 1.625 -1.15625 C 1.28125 -1.15625 1.046875 -0.890625 1.046875 -0.578125 C 1.046875 -0.234375 1.34375 0 1.609375 0 C 1.9375 0 2.203125 -0.25 2.203125 -0.578125 Z M 2.203125 -0.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-22">
|
||||
<path style="stroke:none;" d="M 7.625 -2.1875 C 7.625 -3.15625 6.75 -4.109375 5.328125 -4.265625 C 6.46875 -4.484375 7.296875 -5.25 7.296875 -6.140625 C 7.296875 -7.171875 6.25 -8.15625 4.6875 -8.15625 L 0.515625 -8.15625 L 0.515625 -7.8125 L 0.75 -7.8125 C 1.609375 -7.8125 1.65625 -7.703125 1.65625 -7.25 L 1.65625 -0.90625 C 1.65625 -0.46875 1.609375 -0.34375 0.75 -0.34375 L 0.515625 -0.34375 L 0.515625 0 L 5.015625 0 C 6.546875 0 7.625 -1.046875 7.625 -2.1875 Z M 6.234375 -6.140625 C 6.234375 -5.359375 5.625 -4.359375 4.296875 -4.359375 L 2.5625 -4.359375 L 2.5625 -7.34375 C 2.5625 -7.734375 2.578125 -7.8125 3.109375 -7.8125 L 4.609375 -7.8125 C 5.8125 -7.8125 6.234375 -6.796875 6.234375 -6.140625 Z M 6.53125 -2.203125 C 6.53125 -1.234375 5.8125 -0.34375 4.640625 -0.34375 L 3.109375 -0.34375 C 2.578125 -0.34375 2.5625 -0.4375 2.5625 -0.828125 L 2.5625 -4.125 L 4.796875 -4.125 C 5.9375 -4.125 6.53125 -3.125 6.53125 -2.203125 Z M 6.53125 -2.203125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-23">
|
||||
<path style="stroke:none;" d="M 5.96875 0 L 5.96875 -0.34375 C 5.65625 -0.34375 5.28125 -0.34375 4.953125 -0.84375 L 3.34375 -3.171875 L 3.265625 -3.28125 C 3.265625 -3.328125 4.015625 -3.96875 4.109375 -4.0625 C 4.9375 -4.78125 5.46875 -4.796875 5.71875 -4.8125 L 5.71875 -5.15625 C 5.46875 -5.125 5.15625 -5.125 4.8125 -5.125 C 4.5 -5.125 3.890625 -5.125 3.609375 -5.15625 L 3.609375 -4.8125 C 3.8125 -4.796875 3.953125 -4.6875 3.953125 -4.5 C 3.953125 -4.25 3.703125 -4.046875 3.703125 -4.046875 L 2 -2.53125 L 2 -8.296875 L 0.328125 -8.15625 L 0.328125 -7.8125 C 1.140625 -7.8125 1.25 -7.734375 1.25 -7.140625 L 1.25 -0.890625 C 1.25 -0.34375 1.109375 -0.34375 0.328125 -0.34375 L 0.328125 0 C 0.671875 -0.03125 1.25 -0.03125 1.609375 -0.03125 C 1.953125 -0.03125 2.53125 -0.03125 2.875 0 L 2.875 -0.34375 C 2.109375 -0.34375 1.953125 -0.34375 1.953125 -0.890625 L 1.953125 -2.15625 L 2.71875 -2.828125 L 3.875 -1.171875 C 4.046875 -0.921875 4.140625 -0.78125 4.140625 -0.625 C 4.140625 -0.40625 3.96875 -0.34375 3.71875 -0.34375 L 3.71875 0 C 4.015625 -0.03125 4.609375 -0.03125 4.921875 -0.03125 C 5.4375 -0.03125 5.46875 -0.03125 5.96875 0 Z M 5.96875 0 "/>
|
||||
</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 18.703125 -9.53125 C 18.703125 -14.875 15.109375 -19.359375 10.484375 -19.359375 L 1.46875 -19.359375 L 1.46875 -18.625 C 3.421875 -18.625 3.734375 -18.625 3.734375 -17.34375 L 3.734375 -2.015625 C 3.734375 -0.734375 3.421875 -0.734375 1.46875 -0.734375 L 1.46875 0 L 10.484375 0 C 15.046875 0 18.703125 -4.1875 18.703125 -9.53125 Z M 16.609375 -9.53125 C 16.609375 -5.53125 15.453125 -3.90625 14.90625 -3.140625 C 14.234375 -2.265625 12.609375 -0.734375 9.921875 -0.734375 L 6.75 -0.734375 C 5.609375 -0.734375 5.5625 -0.875 5.5625 -1.84375 L 5.5625 -17.515625 C 5.5625 -18.484375 5.609375 -18.625 6.75 -18.625 L 9.921875 -18.625 C 12.265625 -18.625 16.609375 -17.234375 16.609375 -9.53125 Z M 16.609375 -9.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<path style="stroke:none;" d="M 12.71875 -2.515625 L 12.71875 -4.109375 L 12.21875 -4.109375 L 12.21875 -2.5 C 12.21875 -0.765625 11.453125 -0.53125 11.078125 -0.53125 C 9.921875 -0.53125 9.921875 -2.015625 9.921875 -3.265625 L 9.921875 -7.34375 C 9.921875 -9.21875 9.921875 -10.203125 8.734375 -11.3125 C 7.6875 -12.25 6.46875 -12.53125 5.5 -12.53125 C 3.265625 -12.53125 1.640625 -10.765625 1.640625 -8.90625 C 1.640625 -7.84375 2.5 -7.796875 2.671875 -7.796875 C 3.03125 -7.796875 3.6875 -8.015625 3.6875 -8.8125 C 3.6875 -9.53125 3.140625 -9.828125 2.671875 -9.828125 C 2.546875 -9.828125 2.40625 -9.8125 2.328125 -9.78125 C 2.921875 -11.5625 4.453125 -12.078125 5.4375 -12.078125 C 6.859375 -12.078125 8.421875 -10.828125 8.421875 -8.453125 L 8.421875 -7.203125 C 6.75 -7.140625 4.734375 -6.921875 3.140625 -6.0625 C 1.359375 -5.078125 0.84375 -3.65625 0.84375 -2.578125 C 0.84375 -0.390625 3.40625 0.234375 4.90625 0.234375 C 6.46875 0.234375 7.90625 -0.65625 8.53125 -2.265625 C 8.59375 -1.015625 9.375 0.109375 10.625 0.109375 C 11.21875 0.109375 12.71875 -0.28125 12.71875 -2.515625 Z M 8.421875 -3.9375 C 8.421875 -1.46875 6.65625 -0.234375 5.109375 -0.234375 C 3.6875 -0.234375 2.578125 -1.28125 2.578125 -2.578125 C 2.578125 -3.421875 2.953125 -4.9375 4.59375 -5.84375 C 5.953125 -6.609375 7.515625 -6.71875 8.421875 -6.78125 Z M 8.421875 -3.9375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-3">
|
||||
<path style="stroke:none;" d="M 9.4375 -3.515625 C 9.4375 -4.953125 8.671875 -5.71875 8.3125 -6.0625 C 7.453125 -6.9375 6.46875 -7.140625 5.265625 -7.375 C 3.71875 -7.703125 1.734375 -8.109375 1.734375 -9.828125 C 1.734375 -10.578125 2.125 -12.125 4.984375 -12.125 C 8.015625 -12.125 8.1875 -9.296875 8.25 -8.390625 C 8.28125 -8.25 8.421875 -8.21875 8.5 -8.21875 C 8.765625 -8.21875 8.765625 -8.3125 8.765625 -8.78125 L 8.765625 -11.96875 C 8.765625 -12.46875 8.734375 -12.5 8.5625 -12.5 C 8.453125 -12.5 8.421875 -12.46875 8.078125 -12.046875 C 8 -11.9375 7.734375 -11.65625 7.65625 -11.53125 C 6.75 -12.5 5.46875 -12.53125 4.984375 -12.53125 C 1.84375 -12.53125 0.703125 -10.890625 0.703125 -9.234375 C 0.703125 -6.6875 3.59375 -6.09375 4.421875 -5.921875 C 6.203125 -5.5625 6.828125 -5.4375 7.421875 -4.9375 C 7.796875 -4.59375 8.421875 -3.96875 8.421875 -2.953125 C 8.421875 -1.75 7.734375 -0.234375 5.125 -0.234375 C 2.671875 -0.234375 1.78125 -2.09375 1.28125 -4.59375 C 1.1875 -4.984375 1.1875 -5.015625 0.96875 -5.015625 C 0.734375 -5.015625 0.703125 -4.984375 0.703125 -4.421875 L 0.703125 -0.34375 C 0.703125 0.171875 0.734375 0.203125 0.90625 0.203125 C 1.046875 0.203125 1.078125 0.171875 1.21875 -0.0625 L 1.984375 -1.28125 C 2.546875 -0.515625 3.546875 0.234375 5.125 0.234375 C 7.9375 0.234375 9.4375 -1.296875 9.4375 -3.515625 Z M 9.4375 -3.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-4">
|
||||
<path style="stroke:none;" d="M 6.0625 0 L 6.0625 -0.734375 C 4.390625 -0.734375 4.34375 -0.90625 4.34375 -1.921875 L 4.34375 -12.421875 L 1.078125 -12.109375 L 1.078125 -11.359375 C 2.671875 -11.359375 2.890625 -11.203125 2.890625 -9.828125 L 2.890625 -1.953125 C 2.890625 -0.875 2.78125 -0.734375 0.96875 -0.734375 L 0.96875 0 C 1.640625 -0.0625 2.859375 -0.0625 3.578125 -0.0625 C 4.25 -0.0625 5.40625 -0.0625 6.0625 0 Z M 4.671875 -17.125 C 4.671875 -17.796875 4.140625 -18.28125 3.546875 -18.28125 C 2.859375 -18.28125 2.375 -17.75 2.375 -17.125 C 2.375 -16.4375 2.921875 -15.953125 3.515625 -15.953125 C 4.1875 -15.953125 4.671875 -16.5 4.671875 -17.125 Z M 4.671875 -17.125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-5">
|
||||
<path style="stroke:none;" d="M 8.703125 -3.515625 L 8.703125 -5.125 L 8.1875 -5.125 L 8.1875 -3.546875 C 8.1875 -1.59375 7.421875 -0.28125 6.234375 -0.28125 C 5.40625 -0.28125 4.28125 -0.84375 4.28125 -3.421875 L 4.28125 -11.453125 L 8.25 -11.453125 L 8.25 -12.1875 L 4.28125 -12.1875 L 4.28125 -17.4375 L 3.765625 -17.4375 C 3.71875 -14.515625 2.71875 -11.96875 0.3125 -11.90625 L 0.3125 -11.453125 L 2.78125 -11.453125 L 2.78125 -3.484375 C 2.78125 -2.953125 2.78125 0.234375 6.0625 0.234375 C 7.734375 0.234375 8.703125 -1.421875 8.703125 -3.515625 Z M 8.703125 -3.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-6">
|
||||
<path style="stroke:none;" d="M 10.90625 -7.109375 C 10.90625 -10 9.375 -12.53125 6.15625 -12.53125 C 3.140625 -12.53125 0.765625 -9.671875 0.765625 -6.171875 C 0.765625 -2.5 3.453125 0.234375 6.46875 0.234375 C 9.640625 0.234375 10.890625 -2.78125 10.890625 -3.375 C 10.890625 -3.578125 10.65625 -3.578125 10.65625 -3.578125 C 10.453125 -3.578125 10.4375 -3.515625 10.3125 -3.171875 C 9.6875 -1.25 8.140625 -0.28125 6.65625 -0.28125 C 5.4375 -0.28125 4.21875 -0.96875 3.453125 -2.203125 C 2.578125 -3.65625 2.578125 -5.328125 2.578125 -6.65625 L 10.796875 -6.65625 C 10.90625 -6.78125 10.90625 -6.828125 10.90625 -7.109375 Z M 9.375 -7.078125 L 2.609375 -7.078125 C 2.8125 -11.171875 4.984375 -12.078125 6.125 -12.078125 C 8.046875 -12.078125 9.359375 -10.265625 9.375 -7.078125 Z M 9.375 -7.078125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-7">
|
||||
<path style="stroke:none;" d="M 13.6875 0 L 13.6875 -0.734375 C 11.875 -0.734375 11.765625 -0.84375 11.765625 -1.953125 L 11.765625 -8.609375 C 11.765625 -10.0625 11.484375 -12.421875 8.140625 -12.421875 C 5.890625 -12.421875 4.734375 -10.6875 4.3125 -9.546875 L 4.28125 -9.546875 L 4.28125 -12.421875 L 0.9375 -12.109375 L 0.9375 -11.359375 C 2.609375 -11.359375 2.859375 -11.203125 2.859375 -9.828125 L 2.859375 -1.953125 C 2.859375 -0.875 2.75 -0.734375 0.9375 -0.734375 L 0.9375 0 C 1.609375 -0.0625 2.859375 -0.0625 3.59375 -0.0625 C 4.34375 -0.0625 5.609375 -0.0625 6.296875 0 L 6.296875 -0.734375 C 4.484375 -0.734375 4.359375 -0.84375 4.359375 -1.953125 L 4.359375 -7.390625 C 4.359375 -10 5.953125 -11.96875 7.9375 -11.96875 C 10.03125 -11.96875 10.265625 -10.09375 10.265625 -8.734375 L 10.265625 -1.953125 C 10.265625 -0.875 10.140625 -0.734375 8.328125 -0.734375 L 8.328125 0 C 9.015625 -0.0625 10.265625 -0.0625 11 -0.0625 C 11.734375 -0.0625 13.015625 -0.0625 13.6875 0 Z M 13.6875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-8">
|
||||
<path style="stroke:none;" d="M 18.109375 -13.015625 L 17.625 -19.28125 L 1.28125 -19.28125 L 0.796875 -13.015625 L 1.296875 -13.015625 C 1.671875 -17.71875 2.0625 -18.53125 6.4375 -18.53125 C 6.9375 -18.53125 7.765625 -18.53125 8 -18.515625 C 8.53125 -18.421875 8.53125 -18.078125 8.53125 -17.4375 L 8.53125 -2.0625 C 8.53125 -1.046875 8.453125 -0.734375 6.09375 -0.734375 L 5.296875 -0.734375 L 5.296875 0 L 9.46875 -0.0625 L 13.640625 0 L 13.640625 -0.734375 L 12.84375 -0.734375 C 10.484375 -0.734375 10.40625 -1.046875 10.40625 -2.0625 L 10.40625 -17.4375 C 10.40625 -18.0625 10.40625 -18.390625 10.90625 -18.515625 C 11.140625 -18.53125 11.96875 -18.53125 12.46875 -18.53125 C 16.8125 -18.53125 17.234375 -17.71875 17.59375 -13.015625 Z M 18.109375 -13.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-9">
|
||||
<path style="stroke:none;" d="M 13.6875 0 L 13.6875 -0.734375 C 12.265625 -0.734375 11.84375 -0.796875 11.171875 -1.671875 L 7.375 -6.609375 L 9.984375 -9.890625 C 10.90625 -10.96875 11.984375 -11.421875 13.234375 -11.453125 L 13.234375 -12.1875 L 11.25 -12.125 C 10.484375 -12.125 9.609375 -12.125 8.953125 -12.1875 L 8.953125 -11.453125 C 9.359375 -11.390625 9.578125 -11.109375 9.578125 -10.71875 C 9.578125 -10.203125 9.296875 -9.890625 9.15625 -9.6875 L 7.0625 -7.03125 L 4.5625 -10.28125 C 4.3125 -10.59375 4.3125 -10.65625 4.3125 -10.796875 C 4.3125 -11.140625 4.59375 -11.421875 5.078125 -11.453125 L 5.078125 -12.1875 C 4.390625 -12.125 3.171875 -12.125 2.46875 -12.125 C 1.703125 -12.125 0.796875 -12.125 0.171875 -12.1875 L 0.171875 -11.453125 C 1.703125 -11.453125 2.046875 -11.34375 2.71875 -10.484375 L 5.984375 -6.265625 C 6.03125 -6.203125 6.171875 -6.03125 6.171875 -5.953125 C 6.171875 -5.84375 3.71875 -2.8125 3.40625 -2.40625 C 2.125 -0.875 0.796875 -0.765625 0.03125 -0.734375 L 0.03125 0 L 2.015625 -0.0625 C 2.578125 -0.0625 3.828125 -0.0625 4.34375 0 L 4.34375 -0.734375 C 4.171875 -0.765625 3.71875 -0.828125 3.71875 -1.46875 C 3.71875 -1.984375 3.9375 -2.296875 4.1875 -2.640625 L 6.546875 -5.53125 L 9.015625 -2.328125 C 9.234375 -2.015625 9.578125 -1.59375 9.578125 -1.390625 C 9.578125 -0.984375 9.234375 -0.765625 8.78125 -0.734375 L 8.78125 0 C 9.46875 -0.0625 10.6875 -0.0625 11.390625 -0.0625 C 12.15625 -0.0625 13.0625 -0.0625 13.6875 0 Z M 13.6875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-10">
|
||||
<path style="stroke:none;" d="M 13.515625 -6.125 C 13.515625 -9.6875 11.046875 -12.421875 8.140625 -12.421875 C 6.4375 -12.421875 5.046875 -11.484375 4.25 -10.34375 L 4.25 -12.421875 L 0.875 -12.109375 L 0.875 -11.359375 C 2.546875 -11.359375 2.8125 -11.203125 2.8125 -9.828125 L 2.8125 3.578125 C 2.8125 4.640625 2.6875 4.796875 0.875 4.796875 L 0.875 5.53125 C 1.5625 5.46875 2.8125 5.46875 3.546875 5.46875 C 4.28125 5.46875 5.5625 5.46875 6.234375 5.53125 L 6.234375 4.796875 C 4.421875 4.796875 4.3125 4.671875 4.3125 3.578125 L 4.3125 -1.734375 C 5.125 -0.53125 6.328125 0.234375 7.828125 0.234375 C 10.65625 0.234375 13.515625 -2.265625 13.515625 -6.125 Z M 11.703125 -6.09375 C 11.703125 -2.859375 9.890625 -0.234375 7.65625 -0.234375 C 6.625 -0.234375 5.53125 -0.703125 4.671875 -2.046875 C 4.3125 -2.671875 4.3125 -2.828125 4.3125 -3.28125 L 4.3125 -8.90625 C 4.3125 -9.296875 4.3125 -9.890625 5.40625 -10.9375 C 5.5625 -11.046875 6.515625 -11.90625 7.9375 -11.90625 C 10 -11.90625 11.703125 -9.328125 11.703125 -6.09375 Z M 11.703125 -6.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-11">
|
||||
<path style="stroke:none;" d="M 12.78125 -11.53125 C 12.78125 -12.078125 12.359375 -12.640625 11.453125 -12.640625 C 10.3125 -12.640625 9.328125 -12.109375 8.53125 -11.359375 C 7.6875 -12.125 6.65625 -12.421875 5.75 -12.421875 C 3.515625 -12.421875 1.59375 -10.65625 1.59375 -8.3125 C 1.59375 -6.6875 2.515625 -5.671875 2.8125 -5.390625 C 1.953125 -4.390625 1.953125 -3.234375 1.953125 -3.09375 C 1.953125 -2.359375 2.234375 -1.28125 3.203125 -0.6875 C 1.734375 -0.3125 0.5625 0.828125 0.5625 2.234375 C 0.5625 4.28125 3.265625 5.78125 6.484375 5.78125 C 9.609375 5.78125 12.421875 4.34375 12.421875 2.203125 C 12.421875 -1.640625 8.21875 -1.640625 6.03125 -1.640625 C 5.390625 -1.640625 4.21875 -1.640625 4.078125 -1.671875 C 3.203125 -1.8125 2.609375 -2.609375 2.609375 -3.59375 C 2.609375 -3.859375 2.609375 -4.484375 3.140625 -5.109375 C 3.6875 -4.671875 4.625 -4.1875 5.75 -4.1875 C 8 -4.1875 9.921875 -5.953125 9.921875 -8.3125 C 9.921875 -9.046875 9.6875 -10.171875 8.84375 -11.046875 C 9.640625 -11.90625 10.796875 -12.1875 11.453125 -12.1875 C 11.5625 -12.1875 11.734375 -12.1875 11.875 -12.109375 C 11.765625 -12.078125 11.5 -11.96875 11.5 -11.5 C 11.5 -11.140625 11.765625 -10.890625 12.125 -10.890625 C 12.5625 -10.890625 12.78125 -11.171875 12.78125 -11.53125 Z M 8.25 -8.3125 C 8.25 -7.734375 8.25 -4.671875 5.75 -4.671875 C 3.265625 -4.671875 3.265625 -7.734375 3.265625 -8.3125 C 3.265625 -8.875 3.265625 -11.9375 5.75 -11.9375 C 8.25 -11.9375 8.25 -8.875 8.25 -8.3125 Z M 11.28125 2.234375 C 11.28125 3.796875 9.328125 5.296875 6.484375 5.296875 C 3.65625 5.296875 1.703125 3.796875 1.703125 2.234375 C 1.703125 1.359375 2.1875 0.53125 2.8125 0.078125 C 3.515625 -0.390625 3.796875 -0.390625 5.71875 -0.390625 C 8.046875 -0.390625 11.28125 -0.390625 11.28125 2.234375 Z M 11.28125 2.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-12">
|
||||
<path style="stroke:none;" d="M 18.625 -11.453125 L 18.625 -12.1875 C 18.0625 -12.15625 17.484375 -12.125 16.921875 -12.125 C 16.375 -12.125 15.15625 -12.125 14.6875 -12.1875 L 14.6875 -11.453125 C 15.5625 -11.390625 16.046875 -10.890625 16.046875 -10.171875 C 16.046875 -9.984375 15.984375 -9.71875 15.921875 -9.53125 L 13.265625 -1.8125 L 10.375 -10.171875 C 10.3125 -10.375 10.234375 -10.59375 10.234375 -10.71875 C 10.234375 -11.453125 11.203125 -11.453125 11.65625 -11.453125 L 11.65625 -12.1875 C 11 -12.125 9.8125 -12.125 9.125 -12.125 C 8.421875 -12.125 7.6875 -12.125 7.03125 -12.1875 L 7.03125 -11.453125 C 8.59375 -11.453125 8.59375 -11.390625 9.1875 -9.609375 L 6.578125 -2.015625 L 3.765625 -10.203125 C 3.625 -10.578125 3.625 -10.625 3.625 -10.71875 C 3.625 -11.453125 4.59375 -11.453125 5.046875 -11.453125 L 5.046875 -12.1875 C 4.359375 -12.125 3.171875 -12.125 2.46875 -12.125 C 1.84375 -12.125 0.875 -12.125 0.28125 -12.1875 L 0.28125 -11.453125 C 1.53125 -11.453125 1.84375 -11.359375 2.15625 -10.4375 L 5.640625 -0.234375 C 5.75 0.140625 5.84375 0.234375 6.0625 0.234375 C 6.265625 0.234375 6.375 0.171875 6.515625 -0.25 L 9.4375 -8.8125 L 12.390625 -0.25 C 12.53125 0.171875 12.640625 0.234375 12.84375 0.234375 C 13.0625 0.234375 13.15625 0.140625 13.265625 -0.234375 L 16.5 -9.6875 C 17.0625 -11.359375 18.203125 -11.421875 18.625 -11.453125 Z M 18.625 -11.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-13">
|
||||
<path style="stroke:none;" d="M 9.4375 -10.9375 C 9.4375 -11.84375 8.53125 -12.421875 7.5625 -12.421875 C 5.40625 -12.421875 4.484375 -10.3125 4.1875 -9.328125 L 4.171875 -9.328125 L 4.171875 -12.421875 L 0.875 -12.109375 L 0.875 -11.359375 C 2.546875 -11.359375 2.8125 -11.203125 2.8125 -9.828125 L 2.8125 -1.953125 C 2.8125 -0.875 2.6875 -0.734375 0.875 -0.734375 L 0.875 0 C 1.5625 -0.0625 2.859375 -0.0625 3.59375 -0.0625 C 4.421875 -0.0625 5.859375 -0.0625 6.625 0 L 6.625 -0.734375 C 4.59375 -0.734375 4.25 -0.734375 4.25 -2.015625 L 4.25 -6.6875 C 4.25 -9.40625 5.40625 -11.96875 7.546875 -11.96875 C 7.734375 -11.96875 7.9375 -11.9375 8.140625 -11.84375 C 8.140625 -11.84375 7.515625 -11.65625 7.515625 -10.90625 C 7.515625 -10.234375 8.046875 -9.953125 8.46875 -9.953125 C 8.8125 -9.953125 9.4375 -10.140625 9.4375 -10.9375 Z M 9.4375 -10.9375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-14">
|
||||
<path style="stroke:none;" d="M 13.46875 0 L 13.46875 -0.734375 C 12.125 -0.734375 11.8125 -0.984375 10.96875 -2.234375 L 7.390625 -7.484375 C 7.375 -7.546875 7.234375 -7.703125 7.234375 -7.796875 L 9.5 -9.921875 C 11.109375 -11.28125 12.125 -11.421875 12.875 -11.453125 L 12.875 -12.1875 C 12.703125 -12.1875 12.609375 -12.15625 12.609375 -12.15625 L 11.21875 -12.125 C 10.4375 -12.125 9.21875 -12.125 8.453125 -12.1875 L 8.453125 -11.453125 C 8.84375 -11.421875 9.125 -11.203125 9.125 -10.796875 C 9.125 -10.234375 8.53125 -9.6875 8.53125 -9.6875 L 4.25 -5.78125 L 4.25 -19.671875 L 0.875 -19.359375 L 0.875 -18.625 C 2.546875 -18.625 2.8125 -18.453125 2.8125 -17.09375 L 2.8125 -1.953125 C 2.8125 -0.875 2.6875 -0.734375 0.875 -0.734375 L 0.875 0 C 1.5625 -0.0625 2.8125 -0.0625 3.515625 -0.0625 C 4.21875 -0.0625 5.46875 -0.0625 6.15625 0 L 6.15625 -0.734375 C 4.34375 -0.734375 4.21875 -0.84375 4.21875 -1.953125 L 4.21875 -5.078125 L 6.171875 -6.859375 L 9.046875 -2.609375 C 9.375 -2.09375 9.671875 -1.703125 9.671875 -1.328125 C 9.671875 -0.828125 9.15625 -0.734375 8.8125 -0.734375 L 8.8125 0 C 9.5 -0.0625 10.71875 -0.0625 11.421875 -0.0625 Z M 13.46875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-15">
|
||||
<path style="stroke:none;" d="M 7.234375 -5.46875 L 7.234375 -6.71875 L 0.109375 -6.71875 L 0.109375 -5.46875 Z M 7.234375 -5.46875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-16">
|
||||
<path style="stroke:none;" d="M 6.265625 0 L 6.265625 -0.734375 C 4.453125 -0.734375 4.34375 -0.84375 4.34375 -1.953125 L 4.34375 -19.671875 L 0.96875 -19.359375 L 0.96875 -18.625 C 2.640625 -18.625 2.890625 -18.453125 2.890625 -17.09375 L 2.890625 -1.953125 C 2.890625 -0.875 2.78125 -0.734375 0.96875 -0.734375 L 0.96875 0 C 1.640625 -0.0625 2.890625 -0.0625 3.59375 -0.0625 C 4.34375 -0.0625 5.578125 -0.0625 6.265625 0 Z M 6.265625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-17">
|
||||
<path style="stroke:none;" d="M 10.890625 -3.34375 C 10.890625 -3.453125 10.859375 -3.546875 10.65625 -3.546875 C 10.453125 -3.546875 10.4375 -3.515625 10.3125 -3.140625 C 9.578125 -0.84375 7.96875 -0.28125 6.75 -0.28125 C 4.9375 -0.28125 2.75 -1.953125 2.75 -6.15625 C 2.75 -10.453125 4.84375 -12.015625 6.515625 -12.015625 C 7.625 -12.015625 9.265625 -11.484375 9.890625 -9.921875 C 9.359375 -9.921875 8.5625 -9.921875 8.5625 -8.921875 C 8.5625 -8.140625 9.21875 -7.90625 9.578125 -7.90625 C 9.78125 -7.90625 10.59375 -8 10.59375 -8.984375 C 10.59375 -11 8.671875 -12.53125 6.484375 -12.53125 C 3.484375 -12.53125 0.9375 -9.75 0.9375 -6.125 C 0.9375 -2.359375 3.59375 0.234375 6.484375 0.234375 C 10 0.234375 10.890625 -3.03125 10.890625 -3.34375 Z M 10.890625 -3.34375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-18">
|
||||
<path style="stroke:none;" d="M 13.6875 0 L 13.6875 -0.734375 C 11.875 -0.734375 11.765625 -0.84375 11.765625 -1.953125 L 11.765625 -8.609375 C 11.765625 -10.0625 11.484375 -12.421875 8.140625 -12.421875 C 5.8125 -12.421875 4.671875 -10.546875 4.34375 -9.609375 L 4.3125 -9.609375 L 4.3125 -19.671875 L 0.9375 -19.359375 L 0.9375 -18.625 C 2.609375 -18.625 2.859375 -18.453125 2.859375 -17.09375 L 2.859375 -1.953125 C 2.859375 -0.875 2.75 -0.734375 0.9375 -0.734375 L 0.9375 0 C 1.609375 -0.0625 2.859375 -0.0625 3.59375 -0.0625 C 4.34375 -0.0625 5.609375 -0.0625 6.296875 0 L 6.296875 -0.734375 C 4.484375 -0.734375 4.359375 -0.84375 4.359375 -1.953125 L 4.359375 -7.390625 C 4.359375 -10 5.953125 -11.96875 7.9375 -11.96875 C 10.03125 -11.96875 10.265625 -10.09375 10.265625 -8.734375 L 10.265625 -1.953125 C 10.265625 -0.875 10.140625 -0.734375 8.328125 -0.734375 L 8.328125 0 C 9.015625 -0.0625 10.265625 -0.0625 11 -0.0625 C 11.734375 -0.0625 13.015625 -0.0625 13.6875 0 Z M 13.6875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-19">
|
||||
<path style="stroke:none;" d="M 13.15625 -5.125 C 13.15625 -6.609375 12.609375 -7.734375 12.296875 -8.25 C 11.109375 -10.0625 9.828125 -10.40625 8.46875 -10.75 C 8.28125 -10.828125 8.21875 -10.828125 6.625 -11.21875 C 5.109375 -11.625 4.453125 -11.8125 3.734375 -12.578125 C 2.953125 -13.46875 2.671875 -14.375 2.671875 -15.28125 C 2.671875 -17.125 4.140625 -19.125 6.546875 -19.125 C 9.546875 -19.125 11.421875 -17 11.84375 -13.46875 C 11.9375 -12.953125 11.96875 -12.921875 12.15625 -12.921875 C 12.421875 -12.921875 12.421875 -13.015625 12.421875 -13.484375 L 12.421875 -19.25 C 12.421875 -19.75 12.390625 -19.78125 12.21875 -19.78125 C 12.046875 -19.78125 11.984375 -19.671875 11.875 -19.421875 L 11.03125 -17.546875 C 9.953125 -19.109375 8.3125 -19.8125 6.515625 -19.8125 C 3.625 -19.8125 1.296875 -17.515625 1.296875 -14.625 C 1.296875 -13.75 1.5 -12.5 2.46875 -11.3125 C 3.515625 -10 4.5 -9.78125 6.78125 -9.1875 C 7.625 -8.953125 9.046875 -8.59375 9.328125 -8.46875 C 10.9375 -7.796875 11.796875 -6.09375 11.796875 -4.5 C 11.796875 -2.46875 10.34375 -0.28125 7.875 -0.28125 C 4.84375 -0.28125 2.015625 -1.984375 1.8125 -5.953125 C 1.78125 -6.40625 1.75 -6.4375 1.5625 -6.4375 C 1.328125 -6.4375 1.296875 -6.40625 1.296875 -5.84375 L 1.296875 -0.109375 C 1.296875 0.390625 1.328125 0.421875 1.5 0.421875 C 1.703125 0.421875 1.75 0.28125 2.15625 -0.59375 C 2.1875 -0.6875 2.1875 -0.734375 2.71875 -1.8125 C 4.140625 0.0625 6.515625 0.453125 7.875 0.453125 C 10.96875 0.453125 13.15625 -2.125 13.15625 -5.125 Z M 13.15625 -5.125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-20">
|
||||
<path style="stroke:none;" d="M 8.875 -18.171875 C 8.875 -19.25 7.84375 -19.890625 6.71875 -19.890625 C 5.109375 -19.890625 2.890625 -18.5625 2.890625 -15.5625 L 2.890625 -12.1875 L 0.625 -12.1875 L 0.625 -11.453125 L 2.890625 -11.453125 L 2.890625 -1.953125 C 2.890625 -0.875 2.78125 -0.734375 0.96875 -0.734375 L 0.96875 0 C 1.640625 -0.0625 2.953125 -0.0625 3.6875 -0.0625 C 4.5 -0.0625 5.953125 -0.0625 6.71875 0 L 6.71875 -0.734375 C 4.671875 -0.734375 4.34375 -0.734375 4.34375 -2.015625 L 4.34375 -11.453125 L 7.5625 -11.453125 L 7.5625 -12.1875 L 4.28125 -12.1875 L 4.28125 -15.625 C 4.28125 -17.96875 5.46875 -19.4375 6.6875 -19.4375 C 7.0625 -19.4375 7.484375 -19.328125 7.765625 -19.125 C 7.546875 -19.078125 6.9375 -18.875 6.9375 -18.171875 C 6.9375 -17.4375 7.515625 -17.203125 7.90625 -17.203125 C 8.3125 -17.203125 8.875 -17.4375 8.875 -18.171875 Z M 8.875 -18.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-21">
|
||||
<path style="stroke:none;" d="M 4.703125 -1.15625 C 4.703125 -1.875 4.140625 -2.328125 3.546875 -2.328125 C 2.96875 -2.328125 2.375 -1.875 2.375 -1.15625 C 2.375 -0.453125 2.953125 0 3.546875 0 C 4.109375 0 4.703125 -0.453125 4.703125 -1.15625 Z M 4.703125 -1.15625 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="120.443" y="140.742"/>
|
||||
<use xlink:href="#glyph0-2" x="129.383099" y="140.742"/>
|
||||
<use xlink:href="#glyph0-3" x="135.236364" y="140.742"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-4" x="143.750858" y="140.742"/>
|
||||
<use xlink:href="#glyph0-3" x="147.002672" y="140.742"/>
|
||||
<use xlink:href="#glyph0-5" x="151.619771" y="140.742"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="160.081661" y="140.742"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="167.556052" y="140.742"/>
|
||||
<use xlink:href="#glyph0-8" x="172.758955" y="140.742"/>
|
||||
<use xlink:href="#glyph0-5" x="178.937403" y="140.742"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-4" x="187.387338" y="140.742"/>
|
||||
<use xlink:href="#glyph0-9" x="190.639152" y="140.742"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-9" x="201.052132" y="140.742"/>
|
||||
<use xlink:href="#glyph0-10" x="207.55576" y="140.742"/>
|
||||
<use xlink:href="#glyph0-11" x="213.409026" y="140.742"/>
|
||||
<use xlink:href="#glyph0-12" x="217.961566" y="140.742"/>
|
||||
<use xlink:href="#glyph0-2" x="227.71701" y="140.742"/>
|
||||
<use xlink:href="#glyph0-13" x="233.570276" y="140.742"/>
|
||||
<use xlink:href="#glyph0-7" x="236.82209" y="140.742"/>
|
||||
<use xlink:href="#glyph0-11" x="242.024993" y="140.742"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-14" x="250.474928" y="140.742"/>
|
||||
<use xlink:href="#glyph0-15" x="256.978557" y="140.742"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-16" x="261.85867" y="140.742"/>
|
||||
<use xlink:href="#glyph0-11" x="268.362299" y="140.742"/>
|
||||
<use xlink:href="#glyph0-4" x="272.914839" y="140.742"/>
|
||||
<use xlink:href="#glyph0-17" x="276.166653" y="140.742"/>
|
||||
<use xlink:href="#glyph0-5" x="279.743649" y="140.742"/>
|
||||
<use xlink:href="#glyph0-18" x="284.296189" y="140.742"/>
|
||||
<use xlink:href="#glyph0-11" x="290.149455" y="140.742"/>
|
||||
<use xlink:href="#glyph0-19" x="294.701995" y="140.742"/>
|
||||
<use xlink:href="#glyph0-20" x="300.555261" y="140.742"/>
|
||||
<use xlink:href="#glyph0-7" x="306.408527" y="140.742"/>
|
||||
<use xlink:href="#glyph0-21" x="311.61143" y="140.742"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="120.443" y="169.089"/>
|
||||
<use xlink:href="#glyph1-2" x="140.472566" y="169.089"/>
|
||||
<use xlink:href="#glyph1-3" x="153.472225" y="169.089"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="171.370142" y="169.089"/>
|
||||
<use xlink:href="#glyph1-3" x="178.448238" y="169.089"/>
|
||||
<use xlink:href="#glyph1-5" x="188.635934" y="169.089"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="206.411962" y="169.089"/>
|
||||
<use xlink:href="#glyph1-4" x="217.931939" y="169.089"/>
|
||||
<use xlink:href="#glyph1-7" x="225.010035" y="169.089"/>
|
||||
<use xlink:href="#glyph1-6" x="239.492211" y="169.089"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-8" x="258.722408" y="169.089"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="275.4071" y="169.089"/>
|
||||
<use xlink:href="#glyph1-9" x="286.927076" y="169.089"/>
|
||||
<use xlink:href="#glyph1-5" x="300.666577" y="169.089"/>
|
||||
<use xlink:href="#glyph1-10" x="310.704037" y="169.089"/>
|
||||
<use xlink:href="#glyph1-2" x="325.186213" y="169.089"/>
|
||||
<use xlink:href="#glyph1-3" x="338.185872" y="169.089"/>
|
||||
<use xlink:href="#glyph1-3" x="348.373568" y="169.089"/>
|
||||
<use xlink:href="#glyph1-2" x="358.561264" y="169.089"/>
|
||||
<use xlink:href="#glyph1-11" x="371.560923" y="169.089"/>
|
||||
<use xlink:href="#glyph1-6" x="384.560582" y="169.089"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="403.819126" y="169.089"/>
|
||||
<use xlink:href="#glyph1-7" x="410.897222" y="169.089"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-12" x="433.089619" y="169.089"/>
|
||||
<use xlink:href="#glyph1-4" x="452.013675" y="169.089"/>
|
||||
<use xlink:href="#glyph1-13" x="459.091772" y="169.089"/>
|
||||
<use xlink:href="#glyph1-14" x="469.129232" y="169.089"/>
|
||||
<use xlink:href="#glyph1-15" x="482.868732" y="169.089"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-16" x="102.884" y="197.435"/>
|
||||
<use xlink:href="#glyph1-4" x="109.962096" y="197.435"/>
|
||||
<use xlink:href="#glyph1-17" x="117.040192" y="197.435"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-18" x="127.823163" y="197.435"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-13" x="150.865951" y="197.435"/>
|
||||
<use xlink:href="#glyph1-4" x="160.903412" y="197.435"/>
|
||||
<use xlink:href="#glyph1-6" x="167.981508" y="197.435"/>
|
||||
<use xlink:href="#glyph1-3" x="179.501485" y="197.435"/>
|
||||
<use xlink:href="#glyph1-4" x="189.689181" y="197.435"/>
|
||||
<use xlink:href="#glyph1-11" x="196.767277" y="197.435"/>
|
||||
<use xlink:href="#glyph1-6" x="209.766936" y="197.435"/>
|
||||
<use xlink:href="#glyph1-13" x="221.286913" y="197.435"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-19" x="239.856639" y="197.435"/>
|
||||
<use xlink:href="#glyph1-17" x="254.338815" y="197.435"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-18" x="265.121786" y="197.435"/>
|
||||
<use xlink:href="#glyph1-13" x="279.603962" y="197.435"/>
|
||||
<use xlink:href="#glyph1-4" x="289.641422" y="197.435"/>
|
||||
<use xlink:href="#glyph1-20" x="296.719518" y="197.435"/>
|
||||
<use xlink:href="#glyph1-5" x="304.537455" y="197.435"/>
|
||||
<use xlink:href="#glyph1-21" x="314.574915" y="197.435"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-22" x="120.443" y="211.881"/>
|
||||
<use xlink:href="#glyph0-2" x="128.732736" y="211.881"/>
|
||||
<use xlink:href="#glyph0-15" x="134.586002" y="211.881"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-23" x="139.466114" y="211.881"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="149.541957" y="211.881"/>
|
||||
<use xlink:href="#glyph0-10" x="154.094497" y="211.881"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-9" x="163.845158" y="211.881"/>
|
||||
<use xlink:href="#glyph0-10" x="170.348787" y="211.881"/>
|
||||
<use xlink:href="#glyph0-11" x="176.202053" y="211.881"/>
|
||||
<use xlink:href="#glyph0-12" x="180.754593" y="211.881"/>
|
||||
<use xlink:href="#glyph0-2" x="190.510036" y="211.881"/>
|
||||
<use xlink:href="#glyph0-13" x="196.363302" y="211.881"/>
|
||||
<use xlink:href="#glyph0-21" x="199.615116" y="211.881"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 51 KiB |
19
sections/german/06/schriftgroesse-fontsize-befehl.tex
Normal file
@ -0,0 +1,19 @@
|
||||
\documentclass[a4paper, 12pt, ngerman]{article}
|
||||
\usepackage{lmodern}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage{hyperref}
|
||||
\usepackage{babel}
|
||||
\begin{document}
|
||||
\thispagestyle{empty}
|
||||
|
||||
Das ist Text in normaler Schriftgröße.
|
||||
|
||||
\fontsize{1cm}{1cm}\selectfont
|
||||
Das ist eine Textpassage in
|
||||
wirklich riesiger Schrift.
|
||||
|
||||
\normalsize
|
||||
Back to normal.
|
||||
|
||||
\end{document}
|
||||
217
sections/german/06/schriftgroesse-optiker-crop.svg
Normal file
@ -0,0 +1,217 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="296pt" height="21pt" viewBox="0 0 296 21" 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 6.34375 -3.1875 L 6.34375 -3.40625 C 6.109375 -3.390625 5.828125 -3.390625 5.8125 -3.390625 C 5.59375 -3.390625 5.296875 -3.390625 5.140625 -3.40625 L 5.140625 -3.1875 C 5.390625 -3.1875 5.578125 -3.09375 5.578125 -2.953125 C 5.578125 -2.921875 5.5625 -2.859375 5.5625 -2.859375 L 4.640625 -0.578125 L 3.671875 -2.984375 C 3.65625 -3.03125 3.65625 -3.046875 3.65625 -3.0625 C 3.65625 -3.1875 3.953125 -3.1875 4.09375 -3.1875 L 4.09375 -3.40625 L 3.296875 -3.390625 C 3.078125 -3.390625 2.84375 -3.390625 2.609375 -3.40625 L 2.609375 -3.1875 L 2.71875 -3.1875 C 2.984375 -3.1875 3.03125 -3.15625 3.0625 -3.109375 C 3.09375 -3.09375 3.15625 -2.921875 3.1875 -2.828125 L 3.171875 -2.765625 L 2.296875 -0.578125 L 1.328125 -3 C 1.3125 -3.046875 1.3125 -3.046875 1.3125 -3.0625 C 1.3125 -3.1875 1.609375 -3.1875 1.75 -3.1875 L 1.75 -3.40625 L 0.953125 -3.390625 C 0.71875 -3.390625 0.5 -3.390625 0.265625 -3.40625 L 0.265625 -3.1875 L 0.375 -3.1875 C 0.703125 -3.1875 0.71875 -3.140625 0.765625 -3 L 1.96875 -0.015625 C 2 0.0625 2.015625 0.109375 2.140625 0.109375 C 2.25 0.109375 2.265625 0.0625 2.296875 -0.015625 L 3.296875 -2.546875 L 4.328125 -0.015625 C 4.34375 0.0625 4.375 0.109375 4.484375 0.109375 C 4.59375 0.109375 4.609375 0.0625 4.640625 -0.015625 L 5.796875 -2.875 C 5.84375 -2.984375 5.921875 -3.1875 6.34375 -3.1875 Z M 6.34375 -3.1875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 2.71875 -0.59375 C 2.71875 -0.671875 2.640625 -0.671875 2.625 -0.671875 C 2.546875 -0.671875 2.53125 -0.65625 2.5 -0.59375 C 2.375 -0.25 2 -0.125 1.71875 -0.125 C 1.3125 -0.125 1.09375 -0.34375 1.015625 -0.4375 C 0.828125 -0.671875 0.828125 -0.984375 0.828125 -1.125 L 2.578125 -1.125 C 2.6875 -1.125 2.71875 -1.125 2.71875 -1.234375 C 2.71875 -1.578125 2.546875 -2.234375 1.609375 -2.234375 C 0.859375 -2.234375 0.328125 -1.6875 0.328125 -1.09375 C 0.328125 -0.46875 0.9375 0.0625 1.6875 0.0625 C 2.484375 0.0625 2.71875 -0.5 2.71875 -0.59375 Z M 2.34375 -1.28125 L 0.828125 -1.28125 C 0.890625 -1.9375 1.375 -2.0625 1.609375 -2.0625 C 2.296875 -2.0625 2.34375 -1.421875 2.34375 -1.28125 Z M 2.34375 -1.28125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 3.40625 0 L 3.40625 -0.21875 L 3.3125 -0.21875 C 2.984375 -0.21875 2.984375 -0.265625 2.984375 -0.421875 L 2.984375 -1.5 C 2.984375 -2.046875 2.609375 -2.203125 2.15625 -2.203125 C 1.625 -2.203125 1.34375 -1.90625 1.21875 -1.71875 L 1.21875 -2.203125 L 0.40625 -2.140625 L 0.40625 -1.921875 C 0.78125 -1.921875 0.828125 -1.890625 0.828125 -1.65625 L 0.828125 -0.421875 C 0.828125 -0.265625 0.828125 -0.21875 0.5 -0.21875 L 0.40625 -0.21875 L 0.40625 0 C 0.625 -0.015625 0.828125 -0.015625 1.046875 -0.015625 C 1.25 -0.015625 1.46875 -0.015625 1.6875 0 L 1.6875 -0.21875 L 1.59375 -0.21875 C 1.265625 -0.21875 1.265625 -0.265625 1.265625 -0.421875 L 1.265625 -1.28125 C 1.265625 -1.84375 1.78125 -2.03125 2.09375 -2.03125 C 2.46875 -2.03125 2.546875 -1.828125 2.546875 -1.515625 L 2.546875 -0.421875 C 2.546875 -0.265625 2.546875 -0.21875 2.21875 -0.21875 L 2.140625 -0.21875 L 2.140625 0 C 2.34375 -0.015625 2.5625 -0.015625 2.765625 -0.015625 C 2.984375 -0.015625 3.1875 -0.015625 3.40625 0 Z M 3.40625 0 "/>
|
||||
</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.421875 0 L 4.421875 -0.265625 C 3.875 -0.265625 3.8125 -0.3125 3.8125 -0.703125 L 3.8125 -5.53125 L 2.625 -5.4375 L 2.625 -5.171875 C 3.15625 -5.171875 3.234375 -5.125 3.234375 -4.734375 L 3.234375 -3.046875 C 2.953125 -3.359375 2.578125 -3.515625 2.15625 -3.515625 C 1.15625 -3.515625 0.28125 -2.734375 0.28125 -1.71875 C 0.28125 -0.734375 1.078125 0.078125 2.078125 0.078125 C 2.546875 0.078125 2.9375 -0.140625 3.203125 -0.421875 L 3.203125 0.078125 Z M 3.203125 -0.984375 C 3.203125 -0.84375 3.203125 -0.8125 3.078125 -0.65625 C 2.859375 -0.328125 2.5 -0.140625 2.125 -0.140625 C 1.75 -0.140625 1.4375 -0.328125 1.25 -0.625 C 1.03125 -0.9375 0.984375 -1.328125 0.984375 -1.703125 C 0.984375 -2.171875 1.0625 -2.5 1.25 -2.765625 C 1.4375 -3.0625 1.796875 -3.296875 2.203125 -3.296875 C 2.578125 -3.296875 2.96875 -3.09375 3.203125 -2.6875 Z M 3.203125 -0.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<path style="stroke:none;" d="M 4.484375 0 L 4.484375 -0.265625 C 3.9375 -0.265625 3.875 -0.3125 3.875 -0.703125 L 3.875 -3.515625 L 2.65625 -3.421875 L 2.65625 -3.15625 C 3.203125 -3.15625 3.265625 -3.109375 3.265625 -2.71875 L 3.265625 -1.328125 C 3.265625 -0.640625 2.859375 -0.140625 2.25 -0.140625 C 1.5625 -0.140625 1.53125 -0.484375 1.53125 -0.890625 L 1.53125 -3.515625 L 0.328125 -3.421875 L 0.328125 -3.15625 C 0.9375 -3.15625 0.9375 -3.140625 0.9375 -2.4375 L 0.9375 -1.234375 C 0.9375 -0.65625 0.9375 0.078125 2.203125 0.078125 C 2.953125 0.078125 3.25 -0.5 3.28125 -0.5625 L 3.296875 -0.5625 L 3.296875 0.078125 Z M 4.484375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-1">
|
||||
<path style="stroke:none;" d="M 4.84375 0 L 4.84375 -0.28125 C 4.234375 -0.28125 4.15625 -0.34375 4.15625 -0.78125 L 4.15625 -6.21875 L 2.828125 -6.125 L 2.828125 -5.84375 C 3.4375 -5.84375 3.515625 -5.78125 3.515625 -5.34375 L 3.515625 -3.4375 C 3.46875 -3.484375 3.0625 -3.96875 2.375 -3.96875 C 1.265625 -3.96875 0.3125 -3.078125 0.3125 -1.921875 C 0.3125 -0.8125 1.203125 0.09375 2.265625 0.09375 C 2.921875 0.09375 3.328125 -0.28125 3.484375 -0.46875 L 3.484375 0.09375 Z M 3.484375 -1.078125 C 3.484375 -0.921875 3.484375 -0.890625 3.359375 -0.703125 C 3.078125 -0.296875 2.65625 -0.125 2.3125 -0.125 C 1.921875 -0.125 1.5625 -0.34375 1.328125 -0.71875 C 1.09375 -1.109375 1.078125 -1.625 1.078125 -1.921875 C 1.078125 -2.34375 1.125 -2.8125 1.359375 -3.171875 C 1.5625 -3.46875 1.921875 -3.734375 2.40625 -3.734375 C 2.78125 -3.734375 3.140625 -3.546875 3.375 -3.203125 C 3.484375 -3.0625 3.484375 -3.0625 3.484375 -2.890625 Z M 3.484375 -1.078125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<path style="stroke:none;" d="M 4.453125 -0.796875 L 4.453125 -1.296875 L 4.203125 -1.296875 L 4.203125 -0.8125 C 4.203125 -0.703125 4.203125 -0.265625 3.890625 -0.265625 C 3.5625 -0.265625 3.5625 -0.6875 3.5625 -0.828125 L 3.5625 -2.40625 C 3.5625 -2.921875 3.5625 -3.21875 3.15625 -3.59375 C 2.828125 -3.890625 2.390625 -4.015625 1.953125 -4.015625 C 1.1875 -4.015625 0.5625 -3.640625 0.5625 -3.0625 C 0.5625 -2.796875 0.75 -2.640625 0.984375 -2.640625 C 1.234375 -2.640625 1.40625 -2.8125 1.40625 -3.046875 C 1.40625 -3.4375 1 -3.484375 1 -3.484375 C 1.234375 -3.71875 1.671875 -3.796875 1.921875 -3.796875 C 2.390625 -3.796875 2.890625 -3.453125 2.890625 -2.65625 L 2.890625 -2.375 C 2.40625 -2.34375 1.734375 -2.3125 1.140625 -2.015625 C 0.5 -1.703125 0.296875 -1.234375 0.296875 -0.875 C 0.296875 -0.140625 1.171875 0.09375 1.765625 0.09375 C 2.515625 0.09375 2.859375 -0.390625 2.984375 -0.640625 C 3.015625 -0.265625 3.28125 0.046875 3.671875 0.046875 C 3.890625 0.046875 4.453125 -0.078125 4.453125 -0.796875 Z M 2.890625 -1.265625 C 2.890625 -0.390625 2.21875 -0.125 1.828125 -0.125 C 1.40625 -0.125 1.015625 -0.4375 1.015625 -0.875 C 1.015625 -1.46875 1.53125 -2.09375 2.890625 -2.15625 Z M 2.890625 -1.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-3">
|
||||
<path style="stroke:none;" d="M 3.3125 -1.140625 C 3.3125 -1.546875 3.140625 -1.796875 2.9375 -2 C 2.640625 -2.296875 2.3125 -2.359375 1.65625 -2.484375 C 1.421875 -2.53125 0.765625 -2.640625 0.765625 -3.15625 C 0.765625 -3.4375 0.96875 -3.828125 1.78125 -3.828125 C 2.75 -3.828125 2.8125 -3.078125 2.828125 -2.859375 C 2.84375 -2.75 2.84375 -2.6875 2.953125 -2.6875 C 3.078125 -2.6875 3.078125 -2.75 3.078125 -2.921875 L 3.078125 -3.78125 C 3.078125 -3.9375 3.078125 -4.015625 2.984375 -4.015625 C 2.9375 -4.015625 2.921875 -4.015625 2.796875 -3.90625 C 2.78125 -3.890625 2.703125 -3.8125 2.640625 -3.765625 C 2.375 -3.96875 2.09375 -4.015625 1.78125 -4.015625 C 0.59375 -4.015625 0.3125 -3.359375 0.3125 -2.90625 C 0.3125 -2.625 0.4375 -2.390625 0.640625 -2.1875 C 0.9375 -1.90625 1.28125 -1.84375 1.734375 -1.765625 C 2.203125 -1.671875 2.34375 -1.65625 2.546875 -1.5 C 2.640625 -1.421875 2.859375 -1.25 2.859375 -0.921875 C 2.859375 -0.125 1.953125 -0.125 1.828125 -0.125 C 0.921875 -0.125 0.6875 -0.890625 0.578125 -1.375 C 0.546875 -1.46875 0.53125 -1.515625 0.4375 -1.515625 C 0.3125 -1.515625 0.3125 -1.4375 0.3125 -1.28125 L 0.3125 -0.140625 C 0.3125 0.015625 0.3125 0.09375 0.40625 0.09375 C 0.46875 0.09375 0.46875 0.09375 0.640625 -0.078125 C 0.671875 -0.140625 0.765625 -0.25 0.8125 -0.296875 C 1.1875 0.078125 1.609375 0.09375 1.828125 0.09375 C 2.9375 0.09375 3.3125 -0.546875 3.3125 -1.140625 Z M 3.3125 -1.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 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="glyph3-2">
|
||||
<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="glyph3-3">
|
||||
<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="glyph3-4">
|
||||
<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="glyph4-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-1">
|
||||
<path style="stroke:none;" d="M 5.96875 0 L 5.96875 -0.34375 C 5.65625 -0.34375 5.28125 -0.34375 4.953125 -0.84375 L 3.34375 -3.171875 L 3.265625 -3.28125 C 3.265625 -3.328125 4.015625 -3.96875 4.109375 -4.0625 C 4.9375 -4.78125 5.46875 -4.796875 5.71875 -4.8125 L 5.71875 -5.15625 C 5.46875 -5.125 5.15625 -5.125 4.8125 -5.125 C 4.5 -5.125 3.890625 -5.125 3.609375 -5.15625 L 3.609375 -4.8125 C 3.8125 -4.796875 3.953125 -4.6875 3.953125 -4.5 C 3.953125 -4.25 3.703125 -4.046875 3.703125 -4.046875 L 2 -2.53125 L 2 -8.296875 L 0.328125 -8.15625 L 0.328125 -7.8125 C 1.140625 -7.8125 1.25 -7.734375 1.25 -7.140625 L 1.25 -0.890625 C 1.25 -0.34375 1.109375 -0.34375 0.328125 -0.34375 L 0.328125 0 C 0.671875 -0.03125 1.25 -0.03125 1.609375 -0.03125 C 1.953125 -0.03125 2.53125 -0.03125 2.875 0 L 2.875 -0.34375 C 2.109375 -0.34375 1.953125 -0.34375 1.953125 -0.890625 L 1.953125 -2.15625 L 2.71875 -2.828125 L 3.875 -1.171875 C 4.046875 -0.921875 4.140625 -0.78125 4.140625 -0.625 C 4.140625 -0.40625 3.96875 -0.34375 3.71875 -0.34375 L 3.71875 0 C 4.015625 -0.03125 4.609375 -0.03125 4.921875 -0.03125 C 5.4375 -0.03125 5.46875 -0.03125 5.96875 0 Z M 5.96875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-2">
|
||||
<path style="stroke:none;" d="M 5.671875 -1.0625 L 5.671875 -1.734375 L 5.40625 -1.734375 L 5.40625 -1.0625 C 5.40625 -0.375 5.109375 -0.28125 4.953125 -0.28125 C 4.5 -0.28125 4.5 -0.921875 4.5 -1.09375 L 4.5 -3.1875 C 4.5 -3.84375 4.5 -4.3125 3.96875 -4.78125 C 3.546875 -5.15625 3.015625 -5.328125 2.484375 -5.328125 C 1.5 -5.328125 0.75 -4.6875 0.75 -3.90625 C 0.75 -3.5625 0.984375 -3.390625 1.25 -3.390625 C 1.546875 -3.390625 1.75 -3.59375 1.75 -3.890625 C 1.75 -4.375 1.3125 -4.375 1.140625 -4.375 C 1.40625 -4.875 1.984375 -5.09375 2.46875 -5.09375 C 3.015625 -5.09375 3.71875 -4.640625 3.71875 -3.5625 L 3.71875 -3.078125 C 1.3125 -3.046875 0.40625 -2.046875 0.40625 -1.125 C 0.40625 -0.171875 1.5 0.125 2.234375 0.125 C 3.03125 0.125 3.5625 -0.359375 3.796875 -0.9375 C 3.84375 -0.375 4.203125 0.0625 4.71875 0.0625 C 4.96875 0.0625 5.671875 -0.109375 5.671875 -1.0625 Z M 3.71875 -1.6875 C 3.71875 -0.515625 2.84375 -0.125 2.328125 -0.125 C 1.75 -0.125 1.25 -0.546875 1.25 -1.125 C 1.25 -2.703125 3.28125 -2.84375 3.71875 -2.875 Z M 3.71875 -1.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-3">
|
||||
<path style="stroke:none;" d="M 6.234375 0 L 6.234375 -0.34375 C 5.625 -0.34375 5.328125 -0.34375 5.3125 -0.703125 L 5.3125 -2.90625 C 5.3125 -4.015625 5.3125 -4.34375 5.046875 -4.734375 C 4.703125 -5.203125 4.140625 -5.265625 3.734375 -5.265625 C 2.5625 -5.265625 2.109375 -4.28125 2.015625 -4.046875 L 2.015625 -5.265625 L 0.375 -5.140625 L 0.375 -4.796875 C 1.1875 -4.796875 1.296875 -4.703125 1.296875 -4.125 L 1.296875 -0.890625 C 1.296875 -0.34375 1.15625 -0.34375 0.375 -0.34375 L 0.375 0 C 0.6875 -0.03125 1.34375 -0.03125 1.671875 -0.03125 C 2.015625 -0.03125 2.671875 -0.03125 2.96875 0 L 2.96875 -0.34375 C 2.21875 -0.34375 2.0625 -0.34375 2.0625 -0.890625 L 2.0625 -3.109375 C 2.0625 -4.359375 2.890625 -5.03125 3.640625 -5.03125 C 4.375 -5.03125 4.546875 -4.421875 4.546875 -3.6875 L 4.546875 -0.890625 C 4.546875 -0.34375 4.40625 -0.34375 3.640625 -0.34375 L 3.640625 0 C 3.9375 -0.03125 4.59375 -0.03125 4.921875 -0.03125 C 5.265625 -0.03125 5.921875 -0.03125 6.234375 0 Z M 6.234375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-4">
|
||||
<path style="stroke:none;" d="M 4.203125 -1.515625 C 4.203125 -2.15625 3.8125 -2.546875 3.703125 -2.65625 C 3.28125 -3.03125 2.953125 -3.09375 2.15625 -3.234375 C 1.8125 -3.3125 0.9375 -3.484375 0.9375 -4.203125 C 0.9375 -4.5625 1.1875 -5.109375 2.265625 -5.109375 C 3.5625 -5.109375 3.640625 -4 3.65625 -3.640625 C 3.671875 -3.53125 3.75 -3.53125 3.796875 -3.53125 C 3.921875 -3.53125 3.921875 -3.59375 3.921875 -3.8125 L 3.921875 -5.0625 C 3.921875 -5.265625 3.921875 -5.328125 3.796875 -5.328125 C 3.703125 -5.328125 3.484375 -5.0625 3.390625 -4.953125 C 3.03125 -5.265625 2.65625 -5.328125 2.265625 -5.328125 C 0.828125 -5.328125 0.390625 -4.546875 0.390625 -3.890625 C 0.390625 -3.75 0.390625 -3.328125 0.84375 -2.921875 C 1.234375 -2.578125 1.640625 -2.5 2.1875 -2.390625 C 2.84375 -2.265625 3 -2.21875 3.296875 -1.984375 C 3.515625 -1.8125 3.671875 -1.546875 3.671875 -1.203125 C 3.671875 -0.6875 3.375 -0.125 2.3125 -0.125 C 1.53125 -0.125 0.953125 -0.578125 0.6875 -1.765625 C 0.640625 -1.984375 0.640625 -2.015625 0.640625 -2.015625 C 0.609375 -2.0625 0.5625 -2.0625 0.53125 -2.0625 C 0.390625 -2.0625 0.390625 -2 0.390625 -1.78125 L 0.390625 -0.15625 C 0.390625 0.0625 0.390625 0.125 0.515625 0.125 C 0.578125 0.125 0.578125 0.109375 0.78125 -0.140625 C 0.84375 -0.234375 0.84375 -0.25 1.03125 -0.4375 C 1.484375 0.125 2.125 0.125 2.328125 0.125 C 3.578125 0.125 4.203125 -0.578125 4.203125 -1.515625 Z M 4.203125 -1.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-5">
|
||||
<path style="stroke:none;" d="M 3.890625 -1.484375 L 3.890625 -2.15625 L 3.640625 -2.15625 L 3.640625 -1.5 C 3.640625 -0.640625 3.28125 -0.140625 2.828125 -0.140625 C 2.015625 -0.140625 2.015625 -1.25 2.015625 -1.453125 L 2.015625 -4.8125 L 3.6875 -4.8125 L 3.6875 -5.15625 L 2.015625 -5.15625 L 2.015625 -7.34375 L 1.75 -7.34375 C 1.734375 -6.234375 1.296875 -5.078125 0.21875 -5.046875 L 0.21875 -4.8125 L 1.234375 -4.8125 L 1.234375 -1.484375 C 1.234375 -0.15625 2.109375 0.125 2.75 0.125 C 3.5 0.125 3.890625 -0.625 3.890625 -1.484375 Z M 3.890625 -1.484375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-6">
|
||||
<path style="stroke:none;" d="M 2.328125 0.046875 C 2.328125 -0.6875 2.078125 -1.15625 1.609375 -1.15625 C 1.265625 -1.15625 1.046875 -0.890625 1.046875 -0.578125 C 1.046875 -0.265625 1.265625 0 1.625 0 C 1.8125 0 1.9375 -0.078125 2.015625 -0.140625 C 2.046875 -0.171875 2.0625 -0.171875 2.0625 -0.171875 C 2.0625 -0.171875 2.09375 -0.015625 2.09375 0.046875 C 2.09375 0.8125 1.78125 1.53125 1.25 2.078125 C 1.203125 2.109375 1.1875 2.140625 1.1875 2.1875 C 1.1875 2.25 1.25 2.3125 1.3125 2.3125 C 1.421875 2.3125 2.328125 1.421875 2.328125 0.046875 Z M 2.328125 0.046875 "/>
|
||||
</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 7.28125 -3.09375 C 7.28125 -4.921875 5.9375 -6.328125 4.34375 -6.328125 C 3.5625 -6.328125 2.890625 -5.96875 2.390625 -5.359375 L 2.390625 -9.953125 L 0.40625 -9.796875 L 0.40625 -9.375 C 1.375 -9.375 1.484375 -9.28125 1.484375 -8.578125 L 1.484375 0 L 1.8125 0 L 2.328125 -0.9375 C 2.65625 -0.40625 3.265625 0.140625 4.1875 0.140625 C 5.84375 0.140625 7.28125 -1.25 7.28125 -3.09375 Z M 6.203125 -3.109375 C 6.203125 -2.15625 6.046875 -1.546875 5.703125 -1.03125 C 5.421875 -0.59375 4.84375 -0.140625 4.125 -0.140625 C 3.359375 -0.140625 2.859375 -0.640625 2.609375 -1.03125 C 2.421875 -1.328125 2.421875 -1.390625 2.421875 -1.640625 L 2.421875 -4.59375 C 2.421875 -4.84375 2.421875 -4.875 2.578125 -5.109375 C 2.921875 -5.625 3.5625 -6.03125 4.265625 -6.03125 C 4.6875 -6.03125 6.203125 -5.859375 6.203125 -3.109375 Z M 6.203125 -3.109375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-2">
|
||||
<path style="stroke:none;" d="M 5.0625 -5.5 C 5.0625 -5.921875 4.671875 -6.328125 4.0625 -6.328125 C 2.84375 -6.328125 2.421875 -5 2.34375 -4.734375 L 2.328125 -4.734375 L 2.328125 -6.328125 L 0.40625 -6.171875 L 0.40625 -5.75 C 1.375 -5.75 1.484375 -5.65625 1.484375 -4.953125 L 1.484375 -1.0625 C 1.484375 -0.421875 1.328125 -0.421875 0.40625 -0.421875 L 0.40625 0 C 0.796875 -0.03125 1.59375 -0.03125 2.015625 -0.03125 C 2.40625 -0.03125 3.421875 -0.03125 3.765625 0 L 3.765625 -0.421875 L 3.46875 -0.421875 C 2.421875 -0.421875 2.390625 -0.578125 2.390625 -1.09375 L 2.390625 -3.34375 C 2.390625 -4.734375 2.96875 -6.03125 4.078125 -6.03125 C 4.1875 -6.03125 4.21875 -6.03125 4.28125 -6.03125 C 4.15625 -5.96875 3.9375 -5.875 3.9375 -5.5 C 3.9375 -5.078125 4.265625 -4.921875 4.484375 -4.921875 C 4.78125 -4.921875 5.0625 -5.109375 5.0625 -5.5 Z M 5.0625 -5.5 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-3">
|
||||
<path style="stroke:none;" d="M 6.796875 -1.28125 L 6.796875 -2.078125 L 6.484375 -2.078125 L 6.484375 -1.28125 C 6.484375 -0.453125 6.140625 -0.34375 5.9375 -0.34375 C 5.390625 -0.34375 5.390625 -1.109375 5.390625 -1.3125 L 5.390625 -3.828125 C 5.390625 -4.609375 5.390625 -5.171875 4.765625 -5.734375 C 4.265625 -6.203125 3.609375 -6.390625 2.984375 -6.390625 C 1.8125 -6.390625 0.90625 -5.625 0.90625 -4.6875 C 0.90625 -4.28125 1.171875 -4.078125 1.5 -4.078125 C 1.84375 -4.078125 2.09375 -4.3125 2.09375 -4.65625 C 2.09375 -5.25 1.578125 -5.25 1.359375 -5.25 C 1.6875 -5.859375 2.375 -6.109375 2.953125 -6.109375 C 3.609375 -6.109375 4.453125 -5.5625 4.453125 -4.28125 L 4.453125 -3.703125 C 1.578125 -3.65625 0.484375 -2.453125 0.484375 -1.34375 C 0.484375 -0.21875 1.8125 0.140625 2.6875 0.140625 C 3.625 0.140625 4.28125 -0.4375 4.546875 -1.125 C 4.609375 -0.4375 5.046875 0.078125 5.671875 0.078125 C 5.96875 0.078125 6.796875 -0.125 6.796875 -1.28125 Z M 4.453125 -2.015625 C 4.453125 -0.609375 3.40625 -0.140625 2.796875 -0.140625 C 2.09375 -0.140625 1.5 -0.65625 1.5 -1.34375 C 1.5 -3.234375 3.9375 -3.40625 4.453125 -3.4375 Z M 4.453125 -2.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-4">
|
||||
<path style="stroke:none;" d="M 7.46875 0 L 7.46875 -0.421875 C 6.5 -0.421875 6.390625 -0.515625 6.390625 -1.21875 L 6.390625 -6.328125 L 4.359375 -6.171875 L 4.359375 -5.75 C 5.328125 -5.75 5.453125 -5.65625 5.453125 -4.953125 L 5.453125 -2.375 C 5.453125 -1.15625 4.8125 -0.140625 3.734375 -0.140625 C 2.546875 -0.140625 2.484375 -0.8125 2.484375 -1.578125 L 2.484375 -6.328125 L 0.453125 -6.171875 L 0.453125 -5.75 C 1.546875 -5.75 1.546875 -5.703125 1.546875 -4.4375 L 1.546875 -2.28125 C 1.546875 -1.390625 1.546875 -0.875 1.984375 -0.40625 C 2.328125 -0.03125 2.90625 0.140625 3.640625 0.140625 C 3.890625 0.140625 4.34375 0.140625 4.828125 -0.265625 C 5.25 -0.609375 5.484375 -1.140625 5.484375 -1.140625 L 5.484375 0.140625 Z M 7.46875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-5">
|
||||
<path style="stroke:none;" d="M 5.828125 -1.703125 C 5.828125 -1.84375 5.71875 -1.84375 5.6875 -1.84375 C 5.546875 -1.84375 5.53125 -1.796875 5.5 -1.625 C 5.171875 -0.609375 4.40625 -0.171875 3.625 -0.171875 C 2.75 -0.171875 1.59375 -0.9375 1.59375 -3.109375 C 1.59375 -5.5 2.8125 -6.078125 3.53125 -6.078125 C 4.078125 -6.078125 4.859375 -5.859375 5.1875 -5.3125 C 5.015625 -5.3125 4.484375 -5.3125 4.484375 -4.71875 C 4.484375 -4.375 4.734375 -4.125 5.078125 -4.125 C 5.40625 -4.125 5.6875 -4.328125 5.6875 -4.75 C 5.6875 -5.703125 4.671875 -6.390625 3.515625 -6.390625 C 1.84375 -6.390625 0.5 -4.90625 0.5 -3.09375 C 0.5 -1.265625 1.875 0.140625 3.5 0.140625 C 5.390625 0.140625 5.828125 -1.578125 5.828125 -1.703125 Z M 5.828125 -1.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-6">
|
||||
<path style="stroke:none;" d="M 7.46875 0 L 7.46875 -0.421875 C 6.75 -0.421875 6.390625 -0.421875 6.390625 -0.84375 L 6.390625 -3.484375 C 6.390625 -4.8125 6.390625 -5.21875 6.046875 -5.6875 C 5.640625 -6.234375 4.96875 -6.328125 4.46875 -6.328125 C 3.234375 -6.328125 2.671875 -5.390625 2.46875 -4.953125 L 2.453125 -4.953125 L 2.453125 -9.953125 L 0.453125 -9.796875 L 0.453125 -9.375 C 1.4375 -9.375 1.546875 -9.28125 1.546875 -8.578125 L 1.546875 -1.0625 C 1.546875 -0.421875 1.390625 -0.421875 0.453125 -0.421875 L 0.453125 0 C 0.828125 -0.03125 1.609375 -0.03125 2.015625 -0.03125 C 2.421875 -0.03125 3.203125 -0.03125 3.578125 0 L 3.578125 -0.421875 C 2.65625 -0.421875 2.484375 -0.421875 2.484375 -1.0625 L 2.484375 -3.734375 C 2.484375 -5.234375 3.46875 -6.03125 4.359375 -6.03125 C 5.25 -6.03125 5.453125 -5.3125 5.453125 -4.4375 L 5.453125 -1.0625 C 5.453125 -0.421875 5.296875 -0.421875 4.359375 -0.421875 L 4.359375 0 C 4.734375 -0.03125 5.515625 -0.03125 5.90625 -0.03125 C 6.328125 -0.03125 7.09375 -0.03125 7.46875 0 Z M 7.46875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-7">
|
||||
<path style="stroke:none;" d="M 5.046875 -1.828125 C 5.046875 -2.59375 4.578125 -3.0625 4.453125 -3.1875 C 3.9375 -3.625 3.546875 -3.71875 2.59375 -3.890625 C 2.171875 -3.96875 1.125 -4.171875 1.125 -5.03125 C 1.125 -5.484375 1.421875 -6.140625 2.71875 -6.140625 C 4.28125 -6.140625 4.359375 -4.8125 4.390625 -4.359375 C 4.40625 -4.25 4.5 -4.25 4.546875 -4.25 C 4.703125 -4.25 4.703125 -4.3125 4.703125 -4.578125 L 4.703125 -6.0625 C 4.703125 -6.328125 4.703125 -6.390625 4.5625 -6.390625 C 4.453125 -6.390625 4.171875 -6.078125 4.078125 -5.953125 C 3.625 -6.3125 3.1875 -6.390625 2.71875 -6.390625 C 0.984375 -6.390625 0.46875 -5.453125 0.46875 -4.65625 C 0.46875 -4.5 0.46875 -4 1.015625 -3.5 C 1.484375 -3.09375 1.96875 -3 2.625 -2.875 C 3.40625 -2.71875 3.59375 -2.671875 3.953125 -2.375 C 4.21875 -2.171875 4.40625 -1.84375 4.40625 -1.453125 C 4.40625 -0.828125 4.046875 -0.140625 2.78125 -0.140625 C 1.84375 -0.140625 1.140625 -0.6875 0.828125 -2.125 C 0.78125 -2.375 0.765625 -2.40625 0.765625 -2.40625 C 0.734375 -2.46875 0.671875 -2.46875 0.625 -2.46875 C 0.46875 -2.46875 0.46875 -2.390625 0.46875 -2.140625 L 0.46875 -0.1875 C 0.46875 0.078125 0.46875 0.140625 0.609375 0.140625 C 0.6875 0.140625 0.703125 0.125 0.953125 -0.171875 C 1.015625 -0.265625 1.015625 -0.296875 1.234375 -0.53125 C 1.78125 0.140625 2.546875 0.140625 2.796875 0.140625 C 4.296875 0.140625 5.046875 -0.6875 5.046875 -1.828125 Z M 5.046875 -1.828125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-8">
|
||||
<path style="stroke:none;" d="M 4.671875 -1.78125 L 4.671875 -2.59375 L 4.359375 -2.59375 L 4.359375 -1.8125 C 4.359375 -0.78125 3.9375 -0.171875 3.390625 -0.171875 C 2.40625 -0.171875 2.40625 -1.5 2.40625 -1.75 L 2.40625 -5.765625 L 4.4375 -5.765625 L 4.4375 -6.1875 L 2.40625 -6.1875 L 2.40625 -8.828125 L 2.09375 -8.828125 C 2.078125 -7.46875 1.5625 -6.09375 0.265625 -6.046875 L 0.265625 -5.765625 L 1.484375 -5.765625 L 1.484375 -1.78125 C 1.484375 -0.1875 2.53125 0.140625 3.296875 0.140625 C 4.203125 0.140625 4.671875 -0.75 4.671875 -1.78125 Z M 4.671875 -1.78125 "/>
|
||||
</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 8.25 0 L 8.25 -0.453125 C 7.234375 -0.453125 7.078125 -0.546875 7.078125 -1.375 L 7.078125 -11.953125 L 5.03125 -11.765625 L 5.03125 -11.3125 C 6.046875 -11.3125 6.203125 -11.203125 6.203125 -10.390625 L 6.203125 -6.359375 C 6.125 -6.4375 5.421875 -7.546875 4.03125 -7.546875 C 2.265625 -7.546875 0.5625 -5.96875 0.5625 -3.703125 C 0.5625 -1.453125 2.171875 0.140625 3.859375 0.140625 C 5.328125 0.140625 6.078125 -1 6.171875 -1.125 L 6.171875 0.140625 Z M 6.171875 -2.0625 C 6.171875 -1.546875 5.859375 -1.078125 5.453125 -0.734375 C 4.875 -0.21875 4.28125 -0.140625 3.953125 -0.140625 C 3.46875 -0.140625 1.671875 -0.390625 1.671875 -3.6875 C 1.671875 -7.0625 3.671875 -7.265625 4.109375 -7.265625 C 4.90625 -7.265625 5.546875 -6.8125 5.9375 -6.203125 C 6.171875 -5.84375 6.171875 -5.78125 6.171875 -5.46875 Z M 6.171875 -2.0625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-2">
|
||||
<path style="stroke:none;" d="M 8.3125 0 L 8.3125 -0.453125 C 7.296875 -0.453125 7.140625 -0.546875 7.140625 -1.375 L 7.140625 -7.546875 L 5.0625 -7.359375 L 5.0625 -6.90625 C 6.078125 -6.90625 6.234375 -6.796875 6.234375 -5.96875 L 6.234375 -2.84375 C 6.234375 -1.390625 5.453125 -0.140625 4.1875 -0.140625 C 2.765625 -0.140625 2.65625 -0.984375 2.65625 -1.875 L 2.65625 -7.546875 L 0.5625 -7.359375 L 0.5625 -6.90625 C 1.25 -6.90625 1.71875 -6.90625 1.734375 -6.21875 L 1.734375 -2.90625 C 1.734375 -1.75 1.734375 -1.015625 2.1875 -0.53125 C 2.40625 -0.3125 2.84375 0.140625 4.078125 0.140625 C 5.546875 0.140625 6.109375 -1.109375 6.25 -1.46875 L 6.265625 -1.46875 L 6.265625 0.140625 Z M 8.3125 0 "/>
|
||||
</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 9.8125 0 L 9.8125 -0.53125 C 8.84375 -0.53125 8.609375 -0.71875 8 -1.625 L 5.390625 -5.453125 C 5.375 -5.5 5.265625 -5.625 5.265625 -5.6875 L 6.921875 -7.234375 C 8.09375 -8.21875 8.84375 -8.328125 9.375 -8.34375 L 9.375 -8.875 C 9.25 -8.875 9.1875 -8.859375 9.1875 -8.859375 L 8.1875 -8.84375 C 7.59375 -8.84375 6.71875 -8.84375 6.15625 -8.875 L 6.15625 -8.34375 C 6.4375 -8.328125 6.65625 -8.15625 6.65625 -7.875 C 6.65625 -7.453125 6.21875 -7.0625 6.21875 -7.0625 L 3.09375 -4.21875 L 3.09375 -14.328125 L 0.640625 -14.109375 L 0.640625 -13.578125 C 1.859375 -13.578125 2.046875 -13.453125 2.046875 -12.453125 L 2.046875 -1.421875 C 2.046875 -0.640625 1.96875 -0.53125 0.640625 -0.53125 L 0.640625 0 C 1.140625 -0.046875 2.046875 -0.046875 2.5625 -0.046875 C 3.078125 -0.046875 3.984375 -0.046875 4.484375 0 L 4.484375 -0.53125 C 3.15625 -0.53125 3.078125 -0.625 3.078125 -1.421875 L 3.078125 -3.703125 L 4.5 -5 L 6.59375 -1.90625 C 6.84375 -1.53125 7.046875 -1.234375 7.046875 -0.96875 C 7.046875 -0.59375 6.671875 -0.53125 6.421875 -0.53125 L 6.421875 0 C 6.921875 -0.046875 7.8125 -0.046875 8.328125 -0.046875 Z M 9.8125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-2">
|
||||
<path style="stroke:none;" d="M 7.953125 -5.1875 C 7.953125 -7.296875 6.84375 -9.125 4.484375 -9.125 C 2.296875 -9.125 0.5625 -7.046875 0.5625 -4.5 C 0.5625 -1.8125 2.515625 0.171875 4.703125 0.171875 C 7.015625 0.171875 7.9375 -2.03125 7.9375 -2.453125 C 7.9375 -2.609375 7.765625 -2.609375 7.765625 -2.609375 C 7.625 -2.609375 7.59375 -2.5625 7.515625 -2.3125 C 7.0625 -0.90625 5.921875 -0.203125 4.859375 -0.203125 C 3.96875 -0.203125 3.078125 -0.703125 2.515625 -1.609375 C 1.875 -2.671875 1.875 -3.890625 1.875 -4.859375 L 7.875 -4.859375 C 7.953125 -4.9375 7.953125 -4.984375 7.953125 -5.1875 Z M 6.84375 -5.171875 L 1.90625 -5.171875 C 2.046875 -8.140625 3.640625 -8.796875 4.46875 -8.796875 C 5.859375 -8.796875 6.8125 -7.484375 6.84375 -5.171875 Z M 6.84375 -5.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-3">
|
||||
<path style="stroke:none;" d="M 4.421875 0 L 4.421875 -0.53125 C 3.203125 -0.53125 3.15625 -0.65625 3.15625 -1.40625 L 3.15625 -9.046875 L 0.78125 -8.8125 L 0.78125 -8.28125 C 1.9375 -8.28125 2.109375 -8.15625 2.109375 -7.171875 L 2.109375 -1.421875 C 2.109375 -0.640625 2.03125 -0.53125 0.703125 -0.53125 L 0.703125 0 C 1.203125 -0.046875 2.09375 -0.046875 2.609375 -0.046875 C 3.09375 -0.046875 3.953125 -0.046875 4.421875 0 Z M 3.40625 -12.46875 C 3.40625 -12.96875 3.015625 -13.328125 2.578125 -13.328125 C 2.09375 -13.328125 1.734375 -12.9375 1.734375 -12.46875 C 1.734375 -11.984375 2.125 -11.625 2.5625 -11.625 C 3.0625 -11.625 3.40625 -12.015625 3.40625 -12.46875 Z M 3.40625 -12.46875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-4">
|
||||
<path style="stroke:none;" d="M 9.984375 0 L 9.984375 -0.53125 C 8.65625 -0.53125 8.578125 -0.625 8.578125 -1.421875 L 8.578125 -6.28125 C 8.578125 -7.328125 8.359375 -9.046875 5.921875 -9.046875 C 4.296875 -9.046875 3.453125 -7.78125 3.140625 -6.96875 L 3.125 -6.96875 L 3.125 -9.046875 L 0.6875 -8.8125 L 0.6875 -8.28125 C 1.90625 -8.28125 2.09375 -8.15625 2.09375 -7.171875 L 2.09375 -1.421875 C 2.09375 -0.640625 2 -0.53125 0.6875 -0.53125 L 0.6875 0 C 1.171875 -0.046875 2.09375 -0.046875 2.625 -0.046875 C 3.15625 -0.046875 4.09375 -0.046875 4.578125 0 L 4.578125 -0.53125 C 3.265625 -0.53125 3.1875 -0.625 3.1875 -1.421875 L 3.1875 -5.390625 C 3.1875 -7.296875 4.34375 -8.71875 5.78125 -8.71875 C 7.3125 -8.71875 7.484375 -7.359375 7.484375 -6.359375 L 7.484375 -1.421875 C 7.484375 -0.640625 7.390625 -0.53125 6.078125 -0.53125 L 6.078125 0 C 6.5625 -0.046875 7.484375 -0.046875 8.015625 -0.046875 C 8.546875 -0.046875 9.484375 -0.046875 9.984375 0 Z M 9.984375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph8-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph8-1">
|
||||
<path style="stroke:none;" d="M 15.046875 -4.515625 C 15.046875 -6.734375 13.015625 -8.65625 10.359375 -8.828125 C 12.734375 -9.296875 14.390625 -10.875 14.390625 -12.765625 C 14.390625 -14.8125 12.359375 -16.921875 9.171875 -16.921875 L 1.28125 -16.921875 L 1.28125 -16.28125 C 3 -16.28125 3.265625 -16.28125 3.265625 -15.171875 L 3.265625 -1.765625 C 3.265625 -0.640625 3 -0.640625 1.28125 -0.640625 L 1.28125 0 L 9.8125 0 C 12.984375 0 15.046875 -2.25 15.046875 -4.515625 Z M 12.59375 -12.765625 C 12.59375 -10.875 11.078125 -9 8.40625 -9 L 4.828125 -9 L 4.828125 -15.3125 C 4.828125 -16.15625 4.875 -16.28125 5.875 -16.28125 L 9.046875 -16.28125 C 11.5 -16.28125 12.59375 -14.296875 12.59375 -12.765625 Z M 13.203125 -4.53125 C 13.203125 -2.71875 11.796875 -0.640625 9.09375 -0.640625 L 5.875 -0.640625 C 4.875 -0.640625 4.828125 -0.765625 4.828125 -1.609375 L 4.828125 -8.59375 L 9.421875 -8.59375 C 11.96875 -8.59375 13.203125 -6.34375 13.203125 -4.53125 Z M 13.203125 -4.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph8-2">
|
||||
<path style="stroke:none;" d="M 8.25 -9.5625 C 8.25 -10.359375 7.453125 -10.859375 6.609375 -10.859375 C 4.734375 -10.859375 3.921875 -9.015625 3.671875 -8.15625 L 3.640625 -8.15625 L 3.640625 -10.859375 L 0.765625 -10.578125 L 0.765625 -9.9375 C 2.234375 -9.9375 2.453125 -9.78125 2.453125 -8.59375 L 2.453125 -1.703125 C 2.453125 -0.765625 2.359375 -0.640625 0.765625 -0.640625 L 0.765625 0 C 1.359375 -0.046875 2.5 -0.046875 3.140625 -0.046875 C 3.859375 -0.046875 5.125 -0.046875 5.796875 0 L 5.796875 -0.640625 C 4.015625 -0.640625 3.71875 -0.640625 3.71875 -1.765625 L 3.71875 -5.84375 C 3.71875 -8.234375 4.734375 -10.453125 6.59375 -10.453125 C 6.765625 -10.453125 6.9375 -10.4375 7.109375 -10.359375 C 7.109375 -10.359375 6.5625 -10.1875 6.5625 -9.546875 C 6.5625 -8.953125 7.03125 -8.703125 7.40625 -8.703125 C 7.703125 -8.703125 8.25 -8.875 8.25 -9.5625 Z M 8.25 -9.5625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph8-3">
|
||||
<path style="stroke:none;" d="M 5.296875 0 L 5.296875 -0.640625 C 3.84375 -0.640625 3.796875 -0.796875 3.796875 -1.6875 L 3.796875 -10.859375 L 0.9375 -10.578125 L 0.9375 -9.9375 C 2.328125 -9.9375 2.53125 -9.78125 2.53125 -8.59375 L 2.53125 -1.703125 C 2.53125 -0.765625 2.421875 -0.640625 0.84375 -0.640625 L 0.84375 0 C 1.4375 -0.046875 2.5 -0.046875 3.125 -0.046875 C 3.71875 -0.046875 4.734375 -0.046875 5.296875 0 Z M 4.09375 -14.96875 C 4.09375 -15.5625 3.625 -15.984375 3.09375 -15.984375 C 2.5 -15.984375 2.078125 -15.515625 2.078125 -14.96875 C 2.078125 -14.375 2.546875 -13.953125 3.078125 -13.953125 C 3.671875 -13.953125 4.09375 -14.421875 4.09375 -14.96875 Z M 4.09375 -14.96875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph8-4">
|
||||
<path style="stroke:none;" d="M 5.484375 0 L 5.484375 -0.640625 C 3.890625 -0.640625 3.796875 -0.75 3.796875 -1.703125 L 3.796875 -17.203125 L 0.84375 -16.921875 L 0.84375 -16.28125 C 2.296875 -16.28125 2.53125 -16.125 2.53125 -14.9375 L 2.53125 -1.703125 C 2.53125 -0.765625 2.421875 -0.640625 0.84375 -0.640625 L 0.84375 0 C 1.4375 -0.046875 2.53125 -0.046875 3.140625 -0.046875 C 3.796875 -0.046875 4.875 -0.046875 5.484375 0 Z M 5.484375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph8-5">
|
||||
<path style="stroke:none;" d="M 9.546875 -6.21875 C 9.546875 -8.75 8.203125 -10.953125 5.375 -10.953125 C 2.75 -10.953125 0.671875 -8.453125 0.671875 -5.40625 C 0.671875 -2.1875 3.015625 0.203125 5.65625 0.203125 C 8.421875 0.203125 9.515625 -2.421875 9.515625 -2.953125 C 9.515625 -3.125 9.3125 -3.125 9.3125 -3.125 C 9.140625 -3.125 9.125 -3.078125 9.015625 -2.78125 C 8.46875 -1.09375 7.109375 -0.25 5.828125 -0.25 C 4.765625 -0.25 3.6875 -0.84375 3.015625 -1.9375 C 2.25 -3.203125 2.25 -4.65625 2.25 -5.828125 L 9.4375 -5.828125 C 9.546875 -5.921875 9.546875 -5.96875 9.546875 -6.21875 Z M 8.203125 -6.1875 L 2.28125 -6.1875 C 2.453125 -9.765625 4.359375 -10.5625 5.359375 -10.5625 C 7.03125 -10.5625 8.171875 -8.96875 8.203125 -6.1875 Z M 8.203125 -6.1875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph8-6">
|
||||
<path style="stroke:none;" d="M 4.109375 -1.015625 C 4.109375 -1.640625 3.625 -2.03125 3.09375 -2.03125 C 2.609375 -2.03125 2.078125 -1.640625 2.078125 -1.015625 C 2.078125 -0.390625 2.578125 0 3.09375 0 C 3.59375 0 4.109375 -0.390625 4.109375 -1.015625 Z M 4.109375 -1.015625 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="0.746" y="17.843"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="6.842115" y="17.843"/>
|
||||
<use xlink:href="#glyph0-3" x="9.886187" y="17.843"/>
|
||||
<use xlink:href="#glyph0-3" x="13.622162" y="17.843"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="20.678" y="17.843"/>
|
||||
<use xlink:href="#glyph1-2" x="25.38275" y="17.843"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="33.409" y="17.843"/>
|
||||
<use xlink:href="#glyph2-2" x="38.528814" y="17.843"/>
|
||||
<use xlink:href="#glyph2-3" x="43.136647" y="17.843"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="50.092" y="17.843"/>
|
||||
<use xlink:href="#glyph3-2" x="52.85961" y="17.843"/>
|
||||
<use xlink:href="#glyph3-3" x="57.287986" y="17.843"/>
|
||||
<use xlink:href="#glyph3-2" x="61.218232" y="17.843"/>
|
||||
<use xlink:href="#glyph3-4" x="65.646607" y="17.843"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="74.501" y="17.843"/>
|
||||
<use xlink:href="#glyph4-2" x="80.679447" y="17.843"/>
|
||||
<use xlink:href="#glyph4-3" x="86.532713" y="17.843"/>
|
||||
<use xlink:href="#glyph4-3" x="93.036342" y="17.843"/>
|
||||
<use xlink:href="#glyph4-4" x="99.539971" y="17.843"/>
|
||||
<use xlink:href="#glyph4-5" x="104.157069" y="17.843"/>
|
||||
<use xlink:href="#glyph4-6" x="108.709609" y="17.843"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-1" x="115.281" y="17.843"/>
|
||||
<use xlink:href="#glyph5-2" x="123.085333" y="17.843"/>
|
||||
<use xlink:href="#glyph5-3" x="128.548366" y="17.843"/>
|
||||
<use xlink:href="#glyph5-4" x="135.572265" y="17.843"/>
|
||||
<use xlink:href="#glyph5-5" x="143.376598" y="17.843"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-6" x="149.232717" y="17.843"/>
|
||||
<use xlink:href="#glyph5-7" x="157.03705" y="17.843"/>
|
||||
<use xlink:href="#glyph5-8" x="162.577552" y="17.843"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph6-1" x="171.358" y="17.843"/>
|
||||
<use xlink:href="#glyph6-2" x="180.153348" y="17.843"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph7-1" x="192.269" y="17.843"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph7-2" x="201.746889" y="17.843"/>
|
||||
<use xlink:href="#glyph7-3" x="210.144129" y="17.843"/>
|
||||
<use xlink:href="#glyph7-4" x="215.303555" y="17.843"/>
|
||||
<use xlink:href="#glyph7-2" x="225.860026" y="17.843"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph8-1" x="237.573" y="17.843"/>
|
||||
<use xlink:href="#glyph8-2" x="253.7912" y="17.843"/>
|
||||
<use xlink:href="#glyph8-3" x="262.568312" y="17.843"/>
|
||||
<use xlink:href="#glyph8-4" x="268.757651" y="17.843"/>
|
||||
<use xlink:href="#glyph8-4" x="274.946989" y="17.843"/>
|
||||
<use xlink:href="#glyph8-5" x="281.136328" y="17.843"/>
|
||||
<use xlink:href="#glyph8-6" x="291.209806" y="17.843"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 39 KiB |
217
sections/german/06/schriftgroesse-optiker-orig.svg
Normal file
@ -0,0 +1,217 @@
|
||||
<?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 6.34375 -3.1875 L 6.34375 -3.40625 C 6.109375 -3.390625 5.828125 -3.390625 5.8125 -3.390625 C 5.59375 -3.390625 5.296875 -3.390625 5.140625 -3.40625 L 5.140625 -3.1875 C 5.390625 -3.1875 5.578125 -3.09375 5.578125 -2.953125 C 5.578125 -2.921875 5.5625 -2.859375 5.5625 -2.859375 L 4.640625 -0.578125 L 3.671875 -2.984375 C 3.65625 -3.03125 3.65625 -3.046875 3.65625 -3.0625 C 3.65625 -3.1875 3.953125 -3.1875 4.09375 -3.1875 L 4.09375 -3.40625 L 3.296875 -3.390625 C 3.078125 -3.390625 2.84375 -3.390625 2.609375 -3.40625 L 2.609375 -3.1875 L 2.71875 -3.1875 C 2.984375 -3.1875 3.03125 -3.15625 3.0625 -3.109375 C 3.09375 -3.09375 3.15625 -2.921875 3.1875 -2.828125 L 3.171875 -2.765625 L 2.296875 -0.578125 L 1.328125 -3 C 1.3125 -3.046875 1.3125 -3.046875 1.3125 -3.0625 C 1.3125 -3.1875 1.609375 -3.1875 1.75 -3.1875 L 1.75 -3.40625 L 0.953125 -3.390625 C 0.71875 -3.390625 0.5 -3.390625 0.265625 -3.40625 L 0.265625 -3.1875 L 0.375 -3.1875 C 0.703125 -3.1875 0.71875 -3.140625 0.765625 -3 L 1.96875 -0.015625 C 2 0.0625 2.015625 0.109375 2.140625 0.109375 C 2.25 0.109375 2.265625 0.0625 2.296875 -0.015625 L 3.296875 -2.546875 L 4.328125 -0.015625 C 4.34375 0.0625 4.375 0.109375 4.484375 0.109375 C 4.59375 0.109375 4.609375 0.0625 4.640625 -0.015625 L 5.796875 -2.875 C 5.84375 -2.984375 5.921875 -3.1875 6.34375 -3.1875 Z M 6.34375 -3.1875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 2.71875 -0.59375 C 2.71875 -0.671875 2.640625 -0.671875 2.625 -0.671875 C 2.546875 -0.671875 2.53125 -0.65625 2.5 -0.59375 C 2.375 -0.25 2 -0.125 1.71875 -0.125 C 1.3125 -0.125 1.09375 -0.34375 1.015625 -0.4375 C 0.828125 -0.671875 0.828125 -0.984375 0.828125 -1.125 L 2.578125 -1.125 C 2.6875 -1.125 2.71875 -1.125 2.71875 -1.234375 C 2.71875 -1.578125 2.546875 -2.234375 1.609375 -2.234375 C 0.859375 -2.234375 0.328125 -1.6875 0.328125 -1.09375 C 0.328125 -0.46875 0.9375 0.0625 1.6875 0.0625 C 2.484375 0.0625 2.71875 -0.5 2.71875 -0.59375 Z M 2.34375 -1.28125 L 0.828125 -1.28125 C 0.890625 -1.9375 1.375 -2.0625 1.609375 -2.0625 C 2.296875 -2.0625 2.34375 -1.421875 2.34375 -1.28125 Z M 2.34375 -1.28125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 3.40625 0 L 3.40625 -0.21875 L 3.3125 -0.21875 C 2.984375 -0.21875 2.984375 -0.265625 2.984375 -0.421875 L 2.984375 -1.5 C 2.984375 -2.046875 2.609375 -2.203125 2.15625 -2.203125 C 1.625 -2.203125 1.34375 -1.90625 1.21875 -1.71875 L 1.21875 -2.203125 L 0.40625 -2.140625 L 0.40625 -1.921875 C 0.78125 -1.921875 0.828125 -1.890625 0.828125 -1.65625 L 0.828125 -0.421875 C 0.828125 -0.265625 0.828125 -0.21875 0.5 -0.21875 L 0.40625 -0.21875 L 0.40625 0 C 0.625 -0.015625 0.828125 -0.015625 1.046875 -0.015625 C 1.25 -0.015625 1.46875 -0.015625 1.6875 0 L 1.6875 -0.21875 L 1.59375 -0.21875 C 1.265625 -0.21875 1.265625 -0.265625 1.265625 -0.421875 L 1.265625 -1.28125 C 1.265625 -1.84375 1.78125 -2.03125 2.09375 -2.03125 C 2.46875 -2.03125 2.546875 -1.828125 2.546875 -1.515625 L 2.546875 -0.421875 C 2.546875 -0.265625 2.546875 -0.21875 2.21875 -0.21875 L 2.140625 -0.21875 L 2.140625 0 C 2.34375 -0.015625 2.5625 -0.015625 2.765625 -0.015625 C 2.984375 -0.015625 3.1875 -0.015625 3.40625 0 Z M 3.40625 0 "/>
|
||||
</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.421875 0 L 4.421875 -0.265625 C 3.875 -0.265625 3.8125 -0.3125 3.8125 -0.703125 L 3.8125 -5.53125 L 2.625 -5.4375 L 2.625 -5.171875 C 3.15625 -5.171875 3.234375 -5.125 3.234375 -4.734375 L 3.234375 -3.046875 C 2.953125 -3.359375 2.578125 -3.515625 2.15625 -3.515625 C 1.15625 -3.515625 0.28125 -2.734375 0.28125 -1.71875 C 0.28125 -0.734375 1.078125 0.078125 2.078125 0.078125 C 2.546875 0.078125 2.9375 -0.140625 3.203125 -0.421875 L 3.203125 0.078125 Z M 3.203125 -0.984375 C 3.203125 -0.84375 3.203125 -0.8125 3.078125 -0.65625 C 2.859375 -0.328125 2.5 -0.140625 2.125 -0.140625 C 1.75 -0.140625 1.4375 -0.328125 1.25 -0.625 C 1.03125 -0.9375 0.984375 -1.328125 0.984375 -1.703125 C 0.984375 -2.171875 1.0625 -2.5 1.25 -2.765625 C 1.4375 -3.0625 1.796875 -3.296875 2.203125 -3.296875 C 2.578125 -3.296875 2.96875 -3.09375 3.203125 -2.6875 Z M 3.203125 -0.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<path style="stroke:none;" d="M 4.484375 0 L 4.484375 -0.265625 C 3.9375 -0.265625 3.875 -0.3125 3.875 -0.703125 L 3.875 -3.515625 L 2.65625 -3.421875 L 2.65625 -3.15625 C 3.203125 -3.15625 3.265625 -3.109375 3.265625 -2.71875 L 3.265625 -1.328125 C 3.265625 -0.640625 2.859375 -0.140625 2.25 -0.140625 C 1.5625 -0.140625 1.53125 -0.484375 1.53125 -0.890625 L 1.53125 -3.515625 L 0.328125 -3.421875 L 0.328125 -3.15625 C 0.9375 -3.15625 0.9375 -3.140625 0.9375 -2.4375 L 0.9375 -1.234375 C 0.9375 -0.65625 0.9375 0.078125 2.203125 0.078125 C 2.953125 0.078125 3.25 -0.5 3.28125 -0.5625 L 3.296875 -0.5625 L 3.296875 0.078125 Z M 4.484375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-1">
|
||||
<path style="stroke:none;" d="M 4.84375 0 L 4.84375 -0.28125 C 4.234375 -0.28125 4.15625 -0.34375 4.15625 -0.78125 L 4.15625 -6.21875 L 2.828125 -6.125 L 2.828125 -5.84375 C 3.4375 -5.84375 3.515625 -5.78125 3.515625 -5.34375 L 3.515625 -3.4375 C 3.46875 -3.484375 3.0625 -3.96875 2.375 -3.96875 C 1.265625 -3.96875 0.3125 -3.078125 0.3125 -1.921875 C 0.3125 -0.8125 1.203125 0.09375 2.265625 0.09375 C 2.921875 0.09375 3.328125 -0.28125 3.484375 -0.46875 L 3.484375 0.09375 Z M 3.484375 -1.078125 C 3.484375 -0.921875 3.484375 -0.890625 3.359375 -0.703125 C 3.078125 -0.296875 2.65625 -0.125 2.3125 -0.125 C 1.921875 -0.125 1.5625 -0.34375 1.328125 -0.71875 C 1.09375 -1.109375 1.078125 -1.625 1.078125 -1.921875 C 1.078125 -2.34375 1.125 -2.8125 1.359375 -3.171875 C 1.5625 -3.46875 1.921875 -3.734375 2.40625 -3.734375 C 2.78125 -3.734375 3.140625 -3.546875 3.375 -3.203125 C 3.484375 -3.0625 3.484375 -3.0625 3.484375 -2.890625 Z M 3.484375 -1.078125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<path style="stroke:none;" d="M 4.453125 -0.796875 L 4.453125 -1.296875 L 4.203125 -1.296875 L 4.203125 -0.8125 C 4.203125 -0.703125 4.203125 -0.265625 3.890625 -0.265625 C 3.5625 -0.265625 3.5625 -0.6875 3.5625 -0.828125 L 3.5625 -2.40625 C 3.5625 -2.921875 3.5625 -3.21875 3.15625 -3.59375 C 2.828125 -3.890625 2.390625 -4.015625 1.953125 -4.015625 C 1.1875 -4.015625 0.5625 -3.640625 0.5625 -3.0625 C 0.5625 -2.796875 0.75 -2.640625 0.984375 -2.640625 C 1.234375 -2.640625 1.40625 -2.8125 1.40625 -3.046875 C 1.40625 -3.4375 1 -3.484375 1 -3.484375 C 1.234375 -3.71875 1.671875 -3.796875 1.921875 -3.796875 C 2.390625 -3.796875 2.890625 -3.453125 2.890625 -2.65625 L 2.890625 -2.375 C 2.40625 -2.34375 1.734375 -2.3125 1.140625 -2.015625 C 0.5 -1.703125 0.296875 -1.234375 0.296875 -0.875 C 0.296875 -0.140625 1.171875 0.09375 1.765625 0.09375 C 2.515625 0.09375 2.859375 -0.390625 2.984375 -0.640625 C 3.015625 -0.265625 3.28125 0.046875 3.671875 0.046875 C 3.890625 0.046875 4.453125 -0.078125 4.453125 -0.796875 Z M 2.890625 -1.265625 C 2.890625 -0.390625 2.21875 -0.125 1.828125 -0.125 C 1.40625 -0.125 1.015625 -0.4375 1.015625 -0.875 C 1.015625 -1.46875 1.53125 -2.09375 2.890625 -2.15625 Z M 2.890625 -1.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-3">
|
||||
<path style="stroke:none;" d="M 3.3125 -1.140625 C 3.3125 -1.546875 3.140625 -1.796875 2.9375 -2 C 2.640625 -2.296875 2.3125 -2.359375 1.65625 -2.484375 C 1.421875 -2.53125 0.765625 -2.640625 0.765625 -3.15625 C 0.765625 -3.4375 0.96875 -3.828125 1.78125 -3.828125 C 2.75 -3.828125 2.8125 -3.078125 2.828125 -2.859375 C 2.84375 -2.75 2.84375 -2.6875 2.953125 -2.6875 C 3.078125 -2.6875 3.078125 -2.75 3.078125 -2.921875 L 3.078125 -3.78125 C 3.078125 -3.9375 3.078125 -4.015625 2.984375 -4.015625 C 2.9375 -4.015625 2.921875 -4.015625 2.796875 -3.90625 C 2.78125 -3.890625 2.703125 -3.8125 2.640625 -3.765625 C 2.375 -3.96875 2.09375 -4.015625 1.78125 -4.015625 C 0.59375 -4.015625 0.3125 -3.359375 0.3125 -2.90625 C 0.3125 -2.625 0.4375 -2.390625 0.640625 -2.1875 C 0.9375 -1.90625 1.28125 -1.84375 1.734375 -1.765625 C 2.203125 -1.671875 2.34375 -1.65625 2.546875 -1.5 C 2.640625 -1.421875 2.859375 -1.25 2.859375 -0.921875 C 2.859375 -0.125 1.953125 -0.125 1.828125 -0.125 C 0.921875 -0.125 0.6875 -0.890625 0.578125 -1.375 C 0.546875 -1.46875 0.53125 -1.515625 0.4375 -1.515625 C 0.3125 -1.515625 0.3125 -1.4375 0.3125 -1.28125 L 0.3125 -0.140625 C 0.3125 0.015625 0.3125 0.09375 0.40625 0.09375 C 0.46875 0.09375 0.46875 0.09375 0.640625 -0.078125 C 0.671875 -0.140625 0.765625 -0.25 0.8125 -0.296875 C 1.1875 0.078125 1.609375 0.09375 1.828125 0.09375 C 2.9375 0.09375 3.3125 -0.546875 3.3125 -1.140625 Z M 3.3125 -1.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 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="glyph3-2">
|
||||
<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="glyph3-3">
|
||||
<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="glyph3-4">
|
||||
<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="glyph4-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-1">
|
||||
<path style="stroke:none;" d="M 5.96875 0 L 5.96875 -0.34375 C 5.65625 -0.34375 5.28125 -0.34375 4.953125 -0.84375 L 3.34375 -3.171875 L 3.265625 -3.28125 C 3.265625 -3.328125 4.015625 -3.96875 4.109375 -4.0625 C 4.9375 -4.78125 5.46875 -4.796875 5.71875 -4.8125 L 5.71875 -5.15625 C 5.46875 -5.125 5.15625 -5.125 4.8125 -5.125 C 4.5 -5.125 3.890625 -5.125 3.609375 -5.15625 L 3.609375 -4.8125 C 3.8125 -4.796875 3.953125 -4.6875 3.953125 -4.5 C 3.953125 -4.25 3.703125 -4.046875 3.703125 -4.046875 L 2 -2.53125 L 2 -8.296875 L 0.328125 -8.15625 L 0.328125 -7.8125 C 1.140625 -7.8125 1.25 -7.734375 1.25 -7.140625 L 1.25 -0.890625 C 1.25 -0.34375 1.109375 -0.34375 0.328125 -0.34375 L 0.328125 0 C 0.671875 -0.03125 1.25 -0.03125 1.609375 -0.03125 C 1.953125 -0.03125 2.53125 -0.03125 2.875 0 L 2.875 -0.34375 C 2.109375 -0.34375 1.953125 -0.34375 1.953125 -0.890625 L 1.953125 -2.15625 L 2.71875 -2.828125 L 3.875 -1.171875 C 4.046875 -0.921875 4.140625 -0.78125 4.140625 -0.625 C 4.140625 -0.40625 3.96875 -0.34375 3.71875 -0.34375 L 3.71875 0 C 4.015625 -0.03125 4.609375 -0.03125 4.921875 -0.03125 C 5.4375 -0.03125 5.46875 -0.03125 5.96875 0 Z M 5.96875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-2">
|
||||
<path style="stroke:none;" d="M 5.671875 -1.0625 L 5.671875 -1.734375 L 5.40625 -1.734375 L 5.40625 -1.0625 C 5.40625 -0.375 5.109375 -0.28125 4.953125 -0.28125 C 4.5 -0.28125 4.5 -0.921875 4.5 -1.09375 L 4.5 -3.1875 C 4.5 -3.84375 4.5 -4.3125 3.96875 -4.78125 C 3.546875 -5.15625 3.015625 -5.328125 2.484375 -5.328125 C 1.5 -5.328125 0.75 -4.6875 0.75 -3.90625 C 0.75 -3.5625 0.984375 -3.390625 1.25 -3.390625 C 1.546875 -3.390625 1.75 -3.59375 1.75 -3.890625 C 1.75 -4.375 1.3125 -4.375 1.140625 -4.375 C 1.40625 -4.875 1.984375 -5.09375 2.46875 -5.09375 C 3.015625 -5.09375 3.71875 -4.640625 3.71875 -3.5625 L 3.71875 -3.078125 C 1.3125 -3.046875 0.40625 -2.046875 0.40625 -1.125 C 0.40625 -0.171875 1.5 0.125 2.234375 0.125 C 3.03125 0.125 3.5625 -0.359375 3.796875 -0.9375 C 3.84375 -0.375 4.203125 0.0625 4.71875 0.0625 C 4.96875 0.0625 5.671875 -0.109375 5.671875 -1.0625 Z M 3.71875 -1.6875 C 3.71875 -0.515625 2.84375 -0.125 2.328125 -0.125 C 1.75 -0.125 1.25 -0.546875 1.25 -1.125 C 1.25 -2.703125 3.28125 -2.84375 3.71875 -2.875 Z M 3.71875 -1.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-3">
|
||||
<path style="stroke:none;" d="M 6.234375 0 L 6.234375 -0.34375 C 5.625 -0.34375 5.328125 -0.34375 5.3125 -0.703125 L 5.3125 -2.90625 C 5.3125 -4.015625 5.3125 -4.34375 5.046875 -4.734375 C 4.703125 -5.203125 4.140625 -5.265625 3.734375 -5.265625 C 2.5625 -5.265625 2.109375 -4.28125 2.015625 -4.046875 L 2.015625 -5.265625 L 0.375 -5.140625 L 0.375 -4.796875 C 1.1875 -4.796875 1.296875 -4.703125 1.296875 -4.125 L 1.296875 -0.890625 C 1.296875 -0.34375 1.15625 -0.34375 0.375 -0.34375 L 0.375 0 C 0.6875 -0.03125 1.34375 -0.03125 1.671875 -0.03125 C 2.015625 -0.03125 2.671875 -0.03125 2.96875 0 L 2.96875 -0.34375 C 2.21875 -0.34375 2.0625 -0.34375 2.0625 -0.890625 L 2.0625 -3.109375 C 2.0625 -4.359375 2.890625 -5.03125 3.640625 -5.03125 C 4.375 -5.03125 4.546875 -4.421875 4.546875 -3.6875 L 4.546875 -0.890625 C 4.546875 -0.34375 4.40625 -0.34375 3.640625 -0.34375 L 3.640625 0 C 3.9375 -0.03125 4.59375 -0.03125 4.921875 -0.03125 C 5.265625 -0.03125 5.921875 -0.03125 6.234375 0 Z M 6.234375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-4">
|
||||
<path style="stroke:none;" d="M 4.203125 -1.515625 C 4.203125 -2.15625 3.8125 -2.546875 3.703125 -2.65625 C 3.28125 -3.03125 2.953125 -3.09375 2.15625 -3.234375 C 1.8125 -3.3125 0.9375 -3.484375 0.9375 -4.203125 C 0.9375 -4.5625 1.1875 -5.109375 2.265625 -5.109375 C 3.5625 -5.109375 3.640625 -4 3.65625 -3.640625 C 3.671875 -3.53125 3.75 -3.53125 3.796875 -3.53125 C 3.921875 -3.53125 3.921875 -3.59375 3.921875 -3.8125 L 3.921875 -5.0625 C 3.921875 -5.265625 3.921875 -5.328125 3.796875 -5.328125 C 3.703125 -5.328125 3.484375 -5.0625 3.390625 -4.953125 C 3.03125 -5.265625 2.65625 -5.328125 2.265625 -5.328125 C 0.828125 -5.328125 0.390625 -4.546875 0.390625 -3.890625 C 0.390625 -3.75 0.390625 -3.328125 0.84375 -2.921875 C 1.234375 -2.578125 1.640625 -2.5 2.1875 -2.390625 C 2.84375 -2.265625 3 -2.21875 3.296875 -1.984375 C 3.515625 -1.8125 3.671875 -1.546875 3.671875 -1.203125 C 3.671875 -0.6875 3.375 -0.125 2.3125 -0.125 C 1.53125 -0.125 0.953125 -0.578125 0.6875 -1.765625 C 0.640625 -1.984375 0.640625 -2.015625 0.640625 -2.015625 C 0.609375 -2.0625 0.5625 -2.0625 0.53125 -2.0625 C 0.390625 -2.0625 0.390625 -2 0.390625 -1.78125 L 0.390625 -0.15625 C 0.390625 0.0625 0.390625 0.125 0.515625 0.125 C 0.578125 0.125 0.578125 0.109375 0.78125 -0.140625 C 0.84375 -0.234375 0.84375 -0.25 1.03125 -0.4375 C 1.484375 0.125 2.125 0.125 2.328125 0.125 C 3.578125 0.125 4.203125 -0.578125 4.203125 -1.515625 Z M 4.203125 -1.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-5">
|
||||
<path style="stroke:none;" d="M 3.890625 -1.484375 L 3.890625 -2.15625 L 3.640625 -2.15625 L 3.640625 -1.5 C 3.640625 -0.640625 3.28125 -0.140625 2.828125 -0.140625 C 2.015625 -0.140625 2.015625 -1.25 2.015625 -1.453125 L 2.015625 -4.8125 L 3.6875 -4.8125 L 3.6875 -5.15625 L 2.015625 -5.15625 L 2.015625 -7.34375 L 1.75 -7.34375 C 1.734375 -6.234375 1.296875 -5.078125 0.21875 -5.046875 L 0.21875 -4.8125 L 1.234375 -4.8125 L 1.234375 -1.484375 C 1.234375 -0.15625 2.109375 0.125 2.75 0.125 C 3.5 0.125 3.890625 -0.625 3.890625 -1.484375 Z M 3.890625 -1.484375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-6">
|
||||
<path style="stroke:none;" d="M 2.328125 0.046875 C 2.328125 -0.6875 2.078125 -1.15625 1.609375 -1.15625 C 1.265625 -1.15625 1.046875 -0.890625 1.046875 -0.578125 C 1.046875 -0.265625 1.265625 0 1.625 0 C 1.8125 0 1.9375 -0.078125 2.015625 -0.140625 C 2.046875 -0.171875 2.0625 -0.171875 2.0625 -0.171875 C 2.0625 -0.171875 2.09375 -0.015625 2.09375 0.046875 C 2.09375 0.8125 1.78125 1.53125 1.25 2.078125 C 1.203125 2.109375 1.1875 2.140625 1.1875 2.1875 C 1.1875 2.25 1.25 2.3125 1.3125 2.3125 C 1.421875 2.3125 2.328125 1.421875 2.328125 0.046875 Z M 2.328125 0.046875 "/>
|
||||
</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 7.28125 -3.09375 C 7.28125 -4.921875 5.9375 -6.328125 4.34375 -6.328125 C 3.5625 -6.328125 2.890625 -5.96875 2.390625 -5.359375 L 2.390625 -9.953125 L 0.40625 -9.796875 L 0.40625 -9.375 C 1.375 -9.375 1.484375 -9.28125 1.484375 -8.578125 L 1.484375 0 L 1.8125 0 L 2.328125 -0.9375 C 2.65625 -0.40625 3.265625 0.140625 4.1875 0.140625 C 5.84375 0.140625 7.28125 -1.25 7.28125 -3.09375 Z M 6.203125 -3.109375 C 6.203125 -2.15625 6.046875 -1.546875 5.703125 -1.03125 C 5.421875 -0.59375 4.84375 -0.140625 4.125 -0.140625 C 3.359375 -0.140625 2.859375 -0.640625 2.609375 -1.03125 C 2.421875 -1.328125 2.421875 -1.390625 2.421875 -1.640625 L 2.421875 -4.59375 C 2.421875 -4.84375 2.421875 -4.875 2.578125 -5.109375 C 2.921875 -5.625 3.5625 -6.03125 4.265625 -6.03125 C 4.6875 -6.03125 6.203125 -5.859375 6.203125 -3.109375 Z M 6.203125 -3.109375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-2">
|
||||
<path style="stroke:none;" d="M 5.0625 -5.5 C 5.0625 -5.921875 4.671875 -6.328125 4.0625 -6.328125 C 2.84375 -6.328125 2.421875 -5 2.34375 -4.734375 L 2.328125 -4.734375 L 2.328125 -6.328125 L 0.40625 -6.171875 L 0.40625 -5.75 C 1.375 -5.75 1.484375 -5.65625 1.484375 -4.953125 L 1.484375 -1.0625 C 1.484375 -0.421875 1.328125 -0.421875 0.40625 -0.421875 L 0.40625 0 C 0.796875 -0.03125 1.59375 -0.03125 2.015625 -0.03125 C 2.40625 -0.03125 3.421875 -0.03125 3.765625 0 L 3.765625 -0.421875 L 3.46875 -0.421875 C 2.421875 -0.421875 2.390625 -0.578125 2.390625 -1.09375 L 2.390625 -3.34375 C 2.390625 -4.734375 2.96875 -6.03125 4.078125 -6.03125 C 4.1875 -6.03125 4.21875 -6.03125 4.28125 -6.03125 C 4.15625 -5.96875 3.9375 -5.875 3.9375 -5.5 C 3.9375 -5.078125 4.265625 -4.921875 4.484375 -4.921875 C 4.78125 -4.921875 5.0625 -5.109375 5.0625 -5.5 Z M 5.0625 -5.5 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-3">
|
||||
<path style="stroke:none;" d="M 6.796875 -1.28125 L 6.796875 -2.078125 L 6.484375 -2.078125 L 6.484375 -1.28125 C 6.484375 -0.453125 6.140625 -0.34375 5.9375 -0.34375 C 5.390625 -0.34375 5.390625 -1.109375 5.390625 -1.3125 L 5.390625 -3.828125 C 5.390625 -4.609375 5.390625 -5.171875 4.765625 -5.734375 C 4.265625 -6.203125 3.609375 -6.390625 2.984375 -6.390625 C 1.8125 -6.390625 0.90625 -5.625 0.90625 -4.6875 C 0.90625 -4.28125 1.171875 -4.078125 1.5 -4.078125 C 1.84375 -4.078125 2.09375 -4.3125 2.09375 -4.65625 C 2.09375 -5.25 1.578125 -5.25 1.359375 -5.25 C 1.6875 -5.859375 2.375 -6.109375 2.953125 -6.109375 C 3.609375 -6.109375 4.453125 -5.5625 4.453125 -4.28125 L 4.453125 -3.703125 C 1.578125 -3.65625 0.484375 -2.453125 0.484375 -1.34375 C 0.484375 -0.21875 1.8125 0.140625 2.6875 0.140625 C 3.625 0.140625 4.28125 -0.4375 4.546875 -1.125 C 4.609375 -0.4375 5.046875 0.078125 5.671875 0.078125 C 5.96875 0.078125 6.796875 -0.125 6.796875 -1.28125 Z M 4.453125 -2.015625 C 4.453125 -0.609375 3.40625 -0.140625 2.796875 -0.140625 C 2.09375 -0.140625 1.5 -0.65625 1.5 -1.34375 C 1.5 -3.234375 3.9375 -3.40625 4.453125 -3.4375 Z M 4.453125 -2.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-4">
|
||||
<path style="stroke:none;" d="M 7.46875 0 L 7.46875 -0.421875 C 6.5 -0.421875 6.390625 -0.515625 6.390625 -1.21875 L 6.390625 -6.328125 L 4.359375 -6.171875 L 4.359375 -5.75 C 5.328125 -5.75 5.453125 -5.65625 5.453125 -4.953125 L 5.453125 -2.375 C 5.453125 -1.15625 4.8125 -0.140625 3.734375 -0.140625 C 2.546875 -0.140625 2.484375 -0.8125 2.484375 -1.578125 L 2.484375 -6.328125 L 0.453125 -6.171875 L 0.453125 -5.75 C 1.546875 -5.75 1.546875 -5.703125 1.546875 -4.4375 L 1.546875 -2.28125 C 1.546875 -1.390625 1.546875 -0.875 1.984375 -0.40625 C 2.328125 -0.03125 2.90625 0.140625 3.640625 0.140625 C 3.890625 0.140625 4.34375 0.140625 4.828125 -0.265625 C 5.25 -0.609375 5.484375 -1.140625 5.484375 -1.140625 L 5.484375 0.140625 Z M 7.46875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-5">
|
||||
<path style="stroke:none;" d="M 5.828125 -1.703125 C 5.828125 -1.84375 5.71875 -1.84375 5.6875 -1.84375 C 5.546875 -1.84375 5.53125 -1.796875 5.5 -1.625 C 5.171875 -0.609375 4.40625 -0.171875 3.625 -0.171875 C 2.75 -0.171875 1.59375 -0.9375 1.59375 -3.109375 C 1.59375 -5.5 2.8125 -6.078125 3.53125 -6.078125 C 4.078125 -6.078125 4.859375 -5.859375 5.1875 -5.3125 C 5.015625 -5.3125 4.484375 -5.3125 4.484375 -4.71875 C 4.484375 -4.375 4.734375 -4.125 5.078125 -4.125 C 5.40625 -4.125 5.6875 -4.328125 5.6875 -4.75 C 5.6875 -5.703125 4.671875 -6.390625 3.515625 -6.390625 C 1.84375 -6.390625 0.5 -4.90625 0.5 -3.09375 C 0.5 -1.265625 1.875 0.140625 3.5 0.140625 C 5.390625 0.140625 5.828125 -1.578125 5.828125 -1.703125 Z M 5.828125 -1.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-6">
|
||||
<path style="stroke:none;" d="M 7.46875 0 L 7.46875 -0.421875 C 6.75 -0.421875 6.390625 -0.421875 6.390625 -0.84375 L 6.390625 -3.484375 C 6.390625 -4.8125 6.390625 -5.21875 6.046875 -5.6875 C 5.640625 -6.234375 4.96875 -6.328125 4.46875 -6.328125 C 3.234375 -6.328125 2.671875 -5.390625 2.46875 -4.953125 L 2.453125 -4.953125 L 2.453125 -9.953125 L 0.453125 -9.796875 L 0.453125 -9.375 C 1.4375 -9.375 1.546875 -9.28125 1.546875 -8.578125 L 1.546875 -1.0625 C 1.546875 -0.421875 1.390625 -0.421875 0.453125 -0.421875 L 0.453125 0 C 0.828125 -0.03125 1.609375 -0.03125 2.015625 -0.03125 C 2.421875 -0.03125 3.203125 -0.03125 3.578125 0 L 3.578125 -0.421875 C 2.65625 -0.421875 2.484375 -0.421875 2.484375 -1.0625 L 2.484375 -3.734375 C 2.484375 -5.234375 3.46875 -6.03125 4.359375 -6.03125 C 5.25 -6.03125 5.453125 -5.3125 5.453125 -4.4375 L 5.453125 -1.0625 C 5.453125 -0.421875 5.296875 -0.421875 4.359375 -0.421875 L 4.359375 0 C 4.734375 -0.03125 5.515625 -0.03125 5.90625 -0.03125 C 6.328125 -0.03125 7.09375 -0.03125 7.46875 0 Z M 7.46875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-7">
|
||||
<path style="stroke:none;" d="M 5.046875 -1.828125 C 5.046875 -2.59375 4.578125 -3.0625 4.453125 -3.1875 C 3.9375 -3.625 3.546875 -3.71875 2.59375 -3.890625 C 2.171875 -3.96875 1.125 -4.171875 1.125 -5.03125 C 1.125 -5.484375 1.421875 -6.140625 2.71875 -6.140625 C 4.28125 -6.140625 4.359375 -4.8125 4.390625 -4.359375 C 4.40625 -4.25 4.5 -4.25 4.546875 -4.25 C 4.703125 -4.25 4.703125 -4.3125 4.703125 -4.578125 L 4.703125 -6.0625 C 4.703125 -6.328125 4.703125 -6.390625 4.5625 -6.390625 C 4.453125 -6.390625 4.171875 -6.078125 4.078125 -5.953125 C 3.625 -6.3125 3.1875 -6.390625 2.71875 -6.390625 C 0.984375 -6.390625 0.46875 -5.453125 0.46875 -4.65625 C 0.46875 -4.5 0.46875 -4 1.015625 -3.5 C 1.484375 -3.09375 1.96875 -3 2.625 -2.875 C 3.40625 -2.71875 3.59375 -2.671875 3.953125 -2.375 C 4.21875 -2.171875 4.40625 -1.84375 4.40625 -1.453125 C 4.40625 -0.828125 4.046875 -0.140625 2.78125 -0.140625 C 1.84375 -0.140625 1.140625 -0.6875 0.828125 -2.125 C 0.78125 -2.375 0.765625 -2.40625 0.765625 -2.40625 C 0.734375 -2.46875 0.671875 -2.46875 0.625 -2.46875 C 0.46875 -2.46875 0.46875 -2.390625 0.46875 -2.140625 L 0.46875 -0.1875 C 0.46875 0.078125 0.46875 0.140625 0.609375 0.140625 C 0.6875 0.140625 0.703125 0.125 0.953125 -0.171875 C 1.015625 -0.265625 1.015625 -0.296875 1.234375 -0.53125 C 1.78125 0.140625 2.546875 0.140625 2.796875 0.140625 C 4.296875 0.140625 5.046875 -0.6875 5.046875 -1.828125 Z M 5.046875 -1.828125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-8">
|
||||
<path style="stroke:none;" d="M 4.671875 -1.78125 L 4.671875 -2.59375 L 4.359375 -2.59375 L 4.359375 -1.8125 C 4.359375 -0.78125 3.9375 -0.171875 3.390625 -0.171875 C 2.40625 -0.171875 2.40625 -1.5 2.40625 -1.75 L 2.40625 -5.765625 L 4.4375 -5.765625 L 4.4375 -6.1875 L 2.40625 -6.1875 L 2.40625 -8.828125 L 2.09375 -8.828125 C 2.078125 -7.46875 1.5625 -6.09375 0.265625 -6.046875 L 0.265625 -5.765625 L 1.484375 -5.765625 L 1.484375 -1.78125 C 1.484375 -0.1875 2.53125 0.140625 3.296875 0.140625 C 4.203125 0.140625 4.671875 -0.75 4.671875 -1.78125 Z M 4.671875 -1.78125 "/>
|
||||
</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 8.25 0 L 8.25 -0.453125 C 7.234375 -0.453125 7.078125 -0.546875 7.078125 -1.375 L 7.078125 -11.953125 L 5.03125 -11.765625 L 5.03125 -11.3125 C 6.046875 -11.3125 6.203125 -11.203125 6.203125 -10.390625 L 6.203125 -6.359375 C 6.125 -6.4375 5.421875 -7.546875 4.03125 -7.546875 C 2.265625 -7.546875 0.5625 -5.96875 0.5625 -3.703125 C 0.5625 -1.453125 2.171875 0.140625 3.859375 0.140625 C 5.328125 0.140625 6.078125 -1 6.171875 -1.125 L 6.171875 0.140625 Z M 6.171875 -2.0625 C 6.171875 -1.546875 5.859375 -1.078125 5.453125 -0.734375 C 4.875 -0.21875 4.28125 -0.140625 3.953125 -0.140625 C 3.46875 -0.140625 1.671875 -0.390625 1.671875 -3.6875 C 1.671875 -7.0625 3.671875 -7.265625 4.109375 -7.265625 C 4.90625 -7.265625 5.546875 -6.8125 5.9375 -6.203125 C 6.171875 -5.84375 6.171875 -5.78125 6.171875 -5.46875 Z M 6.171875 -2.0625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-2">
|
||||
<path style="stroke:none;" d="M 8.3125 0 L 8.3125 -0.453125 C 7.296875 -0.453125 7.140625 -0.546875 7.140625 -1.375 L 7.140625 -7.546875 L 5.0625 -7.359375 L 5.0625 -6.90625 C 6.078125 -6.90625 6.234375 -6.796875 6.234375 -5.96875 L 6.234375 -2.84375 C 6.234375 -1.390625 5.453125 -0.140625 4.1875 -0.140625 C 2.765625 -0.140625 2.65625 -0.984375 2.65625 -1.875 L 2.65625 -7.546875 L 0.5625 -7.359375 L 0.5625 -6.90625 C 1.25 -6.90625 1.71875 -6.90625 1.734375 -6.21875 L 1.734375 -2.90625 C 1.734375 -1.75 1.734375 -1.015625 2.1875 -0.53125 C 2.40625 -0.3125 2.84375 0.140625 4.078125 0.140625 C 5.546875 0.140625 6.109375 -1.109375 6.25 -1.46875 L 6.265625 -1.46875 L 6.265625 0.140625 Z M 8.3125 0 "/>
|
||||
</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 9.8125 0 L 9.8125 -0.53125 C 8.84375 -0.53125 8.609375 -0.71875 8 -1.625 L 5.390625 -5.453125 C 5.375 -5.5 5.265625 -5.625 5.265625 -5.6875 L 6.921875 -7.234375 C 8.09375 -8.21875 8.84375 -8.328125 9.375 -8.34375 L 9.375 -8.875 C 9.25 -8.875 9.1875 -8.859375 9.1875 -8.859375 L 8.1875 -8.84375 C 7.59375 -8.84375 6.71875 -8.84375 6.15625 -8.875 L 6.15625 -8.34375 C 6.4375 -8.328125 6.65625 -8.15625 6.65625 -7.875 C 6.65625 -7.453125 6.21875 -7.0625 6.21875 -7.0625 L 3.09375 -4.21875 L 3.09375 -14.328125 L 0.640625 -14.109375 L 0.640625 -13.578125 C 1.859375 -13.578125 2.046875 -13.453125 2.046875 -12.453125 L 2.046875 -1.421875 C 2.046875 -0.640625 1.96875 -0.53125 0.640625 -0.53125 L 0.640625 0 C 1.140625 -0.046875 2.046875 -0.046875 2.5625 -0.046875 C 3.078125 -0.046875 3.984375 -0.046875 4.484375 0 L 4.484375 -0.53125 C 3.15625 -0.53125 3.078125 -0.625 3.078125 -1.421875 L 3.078125 -3.703125 L 4.5 -5 L 6.59375 -1.90625 C 6.84375 -1.53125 7.046875 -1.234375 7.046875 -0.96875 C 7.046875 -0.59375 6.671875 -0.53125 6.421875 -0.53125 L 6.421875 0 C 6.921875 -0.046875 7.8125 -0.046875 8.328125 -0.046875 Z M 9.8125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-2">
|
||||
<path style="stroke:none;" d="M 7.953125 -5.1875 C 7.953125 -7.296875 6.84375 -9.125 4.484375 -9.125 C 2.296875 -9.125 0.5625 -7.046875 0.5625 -4.5 C 0.5625 -1.8125 2.515625 0.171875 4.703125 0.171875 C 7.015625 0.171875 7.9375 -2.03125 7.9375 -2.453125 C 7.9375 -2.609375 7.765625 -2.609375 7.765625 -2.609375 C 7.625 -2.609375 7.59375 -2.5625 7.515625 -2.3125 C 7.0625 -0.90625 5.921875 -0.203125 4.859375 -0.203125 C 3.96875 -0.203125 3.078125 -0.703125 2.515625 -1.609375 C 1.875 -2.671875 1.875 -3.890625 1.875 -4.859375 L 7.875 -4.859375 C 7.953125 -4.9375 7.953125 -4.984375 7.953125 -5.1875 Z M 6.84375 -5.171875 L 1.90625 -5.171875 C 2.046875 -8.140625 3.640625 -8.796875 4.46875 -8.796875 C 5.859375 -8.796875 6.8125 -7.484375 6.84375 -5.171875 Z M 6.84375 -5.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-3">
|
||||
<path style="stroke:none;" d="M 4.421875 0 L 4.421875 -0.53125 C 3.203125 -0.53125 3.15625 -0.65625 3.15625 -1.40625 L 3.15625 -9.046875 L 0.78125 -8.8125 L 0.78125 -8.28125 C 1.9375 -8.28125 2.109375 -8.15625 2.109375 -7.171875 L 2.109375 -1.421875 C 2.109375 -0.640625 2.03125 -0.53125 0.703125 -0.53125 L 0.703125 0 C 1.203125 -0.046875 2.09375 -0.046875 2.609375 -0.046875 C 3.09375 -0.046875 3.953125 -0.046875 4.421875 0 Z M 3.40625 -12.46875 C 3.40625 -12.96875 3.015625 -13.328125 2.578125 -13.328125 C 2.09375 -13.328125 1.734375 -12.9375 1.734375 -12.46875 C 1.734375 -11.984375 2.125 -11.625 2.5625 -11.625 C 3.0625 -11.625 3.40625 -12.015625 3.40625 -12.46875 Z M 3.40625 -12.46875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-4">
|
||||
<path style="stroke:none;" d="M 9.984375 0 L 9.984375 -0.53125 C 8.65625 -0.53125 8.578125 -0.625 8.578125 -1.421875 L 8.578125 -6.28125 C 8.578125 -7.328125 8.359375 -9.046875 5.921875 -9.046875 C 4.296875 -9.046875 3.453125 -7.78125 3.140625 -6.96875 L 3.125 -6.96875 L 3.125 -9.046875 L 0.6875 -8.8125 L 0.6875 -8.28125 C 1.90625 -8.28125 2.09375 -8.15625 2.09375 -7.171875 L 2.09375 -1.421875 C 2.09375 -0.640625 2 -0.53125 0.6875 -0.53125 L 0.6875 0 C 1.171875 -0.046875 2.09375 -0.046875 2.625 -0.046875 C 3.15625 -0.046875 4.09375 -0.046875 4.578125 0 L 4.578125 -0.53125 C 3.265625 -0.53125 3.1875 -0.625 3.1875 -1.421875 L 3.1875 -5.390625 C 3.1875 -7.296875 4.34375 -8.71875 5.78125 -8.71875 C 7.3125 -8.71875 7.484375 -7.359375 7.484375 -6.359375 L 7.484375 -1.421875 C 7.484375 -0.640625 7.390625 -0.53125 6.078125 -0.53125 L 6.078125 0 C 6.5625 -0.046875 7.484375 -0.046875 8.015625 -0.046875 C 8.546875 -0.046875 9.484375 -0.046875 9.984375 0 Z M 9.984375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph8-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph8-1">
|
||||
<path style="stroke:none;" d="M 15.046875 -4.515625 C 15.046875 -6.734375 13.015625 -8.65625 10.359375 -8.828125 C 12.734375 -9.296875 14.390625 -10.875 14.390625 -12.765625 C 14.390625 -14.8125 12.359375 -16.921875 9.171875 -16.921875 L 1.28125 -16.921875 L 1.28125 -16.28125 C 3 -16.28125 3.265625 -16.28125 3.265625 -15.171875 L 3.265625 -1.765625 C 3.265625 -0.640625 3 -0.640625 1.28125 -0.640625 L 1.28125 0 L 9.8125 0 C 12.984375 0 15.046875 -2.25 15.046875 -4.515625 Z M 12.59375 -12.765625 C 12.59375 -10.875 11.078125 -9 8.40625 -9 L 4.828125 -9 L 4.828125 -15.3125 C 4.828125 -16.15625 4.875 -16.28125 5.875 -16.28125 L 9.046875 -16.28125 C 11.5 -16.28125 12.59375 -14.296875 12.59375 -12.765625 Z M 13.203125 -4.53125 C 13.203125 -2.71875 11.796875 -0.640625 9.09375 -0.640625 L 5.875 -0.640625 C 4.875 -0.640625 4.828125 -0.765625 4.828125 -1.609375 L 4.828125 -8.59375 L 9.421875 -8.59375 C 11.96875 -8.59375 13.203125 -6.34375 13.203125 -4.53125 Z M 13.203125 -4.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph8-2">
|
||||
<path style="stroke:none;" d="M 8.25 -9.5625 C 8.25 -10.359375 7.453125 -10.859375 6.609375 -10.859375 C 4.734375 -10.859375 3.921875 -9.015625 3.671875 -8.15625 L 3.640625 -8.15625 L 3.640625 -10.859375 L 0.765625 -10.578125 L 0.765625 -9.9375 C 2.234375 -9.9375 2.453125 -9.78125 2.453125 -8.59375 L 2.453125 -1.703125 C 2.453125 -0.765625 2.359375 -0.640625 0.765625 -0.640625 L 0.765625 0 C 1.359375 -0.046875 2.5 -0.046875 3.140625 -0.046875 C 3.859375 -0.046875 5.125 -0.046875 5.796875 0 L 5.796875 -0.640625 C 4.015625 -0.640625 3.71875 -0.640625 3.71875 -1.765625 L 3.71875 -5.84375 C 3.71875 -8.234375 4.734375 -10.453125 6.59375 -10.453125 C 6.765625 -10.453125 6.9375 -10.4375 7.109375 -10.359375 C 7.109375 -10.359375 6.5625 -10.1875 6.5625 -9.546875 C 6.5625 -8.953125 7.03125 -8.703125 7.40625 -8.703125 C 7.703125 -8.703125 8.25 -8.875 8.25 -9.5625 Z M 8.25 -9.5625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph8-3">
|
||||
<path style="stroke:none;" d="M 5.296875 0 L 5.296875 -0.640625 C 3.84375 -0.640625 3.796875 -0.796875 3.796875 -1.6875 L 3.796875 -10.859375 L 0.9375 -10.578125 L 0.9375 -9.9375 C 2.328125 -9.9375 2.53125 -9.78125 2.53125 -8.59375 L 2.53125 -1.703125 C 2.53125 -0.765625 2.421875 -0.640625 0.84375 -0.640625 L 0.84375 0 C 1.4375 -0.046875 2.5 -0.046875 3.125 -0.046875 C 3.71875 -0.046875 4.734375 -0.046875 5.296875 0 Z M 4.09375 -14.96875 C 4.09375 -15.5625 3.625 -15.984375 3.09375 -15.984375 C 2.5 -15.984375 2.078125 -15.515625 2.078125 -14.96875 C 2.078125 -14.375 2.546875 -13.953125 3.078125 -13.953125 C 3.671875 -13.953125 4.09375 -14.421875 4.09375 -14.96875 Z M 4.09375 -14.96875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph8-4">
|
||||
<path style="stroke:none;" d="M 5.484375 0 L 5.484375 -0.640625 C 3.890625 -0.640625 3.796875 -0.75 3.796875 -1.703125 L 3.796875 -17.203125 L 0.84375 -16.921875 L 0.84375 -16.28125 C 2.296875 -16.28125 2.53125 -16.125 2.53125 -14.9375 L 2.53125 -1.703125 C 2.53125 -0.765625 2.421875 -0.640625 0.84375 -0.640625 L 0.84375 0 C 1.4375 -0.046875 2.53125 -0.046875 3.140625 -0.046875 C 3.796875 -0.046875 4.875 -0.046875 5.484375 0 Z M 5.484375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph8-5">
|
||||
<path style="stroke:none;" d="M 9.546875 -6.21875 C 9.546875 -8.75 8.203125 -10.953125 5.375 -10.953125 C 2.75 -10.953125 0.671875 -8.453125 0.671875 -5.40625 C 0.671875 -2.1875 3.015625 0.203125 5.65625 0.203125 C 8.421875 0.203125 9.515625 -2.421875 9.515625 -2.953125 C 9.515625 -3.125 9.3125 -3.125 9.3125 -3.125 C 9.140625 -3.125 9.125 -3.078125 9.015625 -2.78125 C 8.46875 -1.09375 7.109375 -0.25 5.828125 -0.25 C 4.765625 -0.25 3.6875 -0.84375 3.015625 -1.9375 C 2.25 -3.203125 2.25 -4.65625 2.25 -5.828125 L 9.4375 -5.828125 C 9.546875 -5.921875 9.546875 -5.96875 9.546875 -6.21875 Z M 8.203125 -6.1875 L 2.28125 -6.1875 C 2.453125 -9.765625 4.359375 -10.5625 5.359375 -10.5625 C 7.03125 -10.5625 8.171875 -8.96875 8.203125 -6.1875 Z M 8.203125 -6.1875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph8-6">
|
||||
<path style="stroke:none;" d="M 4.109375 -1.015625 C 4.109375 -1.640625 3.625 -2.03125 3.09375 -2.03125 C 2.609375 -2.03125 2.078125 -1.640625 2.078125 -1.015625 C 2.078125 -0.390625 2.578125 0 3.09375 0 C 3.59375 0 4.109375 -0.390625 4.109375 -1.015625 Z M 4.109375 -1.015625 "/>
|
||||
</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="142.733"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="145.842115" y="142.733"/>
|
||||
<use xlink:href="#glyph0-3" x="148.886187" y="142.733"/>
|
||||
<use xlink:href="#glyph0-3" x="152.622162" y="142.733"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="159.678" y="142.733"/>
|
||||
<use xlink:href="#glyph1-2" x="164.38275" y="142.733"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="172.409" y="142.733"/>
|
||||
<use xlink:href="#glyph2-2" x="177.528814" y="142.733"/>
|
||||
<use xlink:href="#glyph2-3" x="182.136647" y="142.733"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="189.092" y="142.733"/>
|
||||
<use xlink:href="#glyph3-2" x="191.85961" y="142.733"/>
|
||||
<use xlink:href="#glyph3-3" x="196.287986" y="142.733"/>
|
||||
<use xlink:href="#glyph3-2" x="200.218232" y="142.733"/>
|
||||
<use xlink:href="#glyph3-4" x="204.646607" y="142.733"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="213.501" y="142.733"/>
|
||||
<use xlink:href="#glyph4-2" x="219.679447" y="142.733"/>
|
||||
<use xlink:href="#glyph4-3" x="225.532713" y="142.733"/>
|
||||
<use xlink:href="#glyph4-3" x="232.036342" y="142.733"/>
|
||||
<use xlink:href="#glyph4-4" x="238.539971" y="142.733"/>
|
||||
<use xlink:href="#glyph4-5" x="243.157069" y="142.733"/>
|
||||
<use xlink:href="#glyph4-6" x="247.709609" y="142.733"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-1" x="254.281" y="142.733"/>
|
||||
<use xlink:href="#glyph5-2" x="262.085333" y="142.733"/>
|
||||
<use xlink:href="#glyph5-3" x="267.548366" y="142.733"/>
|
||||
<use xlink:href="#glyph5-4" x="274.572265" y="142.733"/>
|
||||
<use xlink:href="#glyph5-5" x="282.376598" y="142.733"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-6" x="288.232717" y="142.733"/>
|
||||
<use xlink:href="#glyph5-7" x="296.03705" y="142.733"/>
|
||||
<use xlink:href="#glyph5-8" x="301.577552" y="142.733"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph6-1" x="310.358" y="142.733"/>
|
||||
<use xlink:href="#glyph6-2" x="319.153348" y="142.733"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph7-1" x="331.269" y="142.733"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph7-2" x="340.746889" y="142.733"/>
|
||||
<use xlink:href="#glyph7-3" x="349.144129" y="142.733"/>
|
||||
<use xlink:href="#glyph7-4" x="354.303555" y="142.733"/>
|
||||
<use xlink:href="#glyph7-2" x="364.860026" y="142.733"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph8-1" x="376.573" y="142.733"/>
|
||||
<use xlink:href="#glyph8-2" x="392.7912" y="142.733"/>
|
||||
<use xlink:href="#glyph8-3" x="401.568312" y="142.733"/>
|
||||
<use xlink:href="#glyph8-4" x="407.757651" y="142.733"/>
|
||||
<use xlink:href="#glyph8-4" x="413.946989" y="142.733"/>
|
||||
<use xlink:href="#glyph8-5" x="420.136328" y="142.733"/>
|
||||
<use xlink:href="#glyph8-6" x="430.209806" y="142.733"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 39 KiB |
20
sections/german/06/schriftgroesse-optiker.tex
Normal file
@ -0,0 +1,20 @@
|
||||
\documentclass[a4paper]{article}
|
||||
\usepackage{lmodern}
|
||||
\usepackage{amssymb,amsmath}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage{hyperref}
|
||||
\begin{document}
|
||||
\thispagestyle{empty}
|
||||
|
||||
{\tiny Wenn}
|
||||
{\footnotesize du}
|
||||
{\small das}
|
||||
{\normalsize lesen}
|
||||
{\large kannst,}
|
||||
{\Large brauchst}
|
||||
{\LARGE du}
|
||||
{\huge keine}
|
||||
{\Huge Brille.}
|
||||
|
||||
\end{document}
|
||||
|
Before Width: | Height: | Size: 13 KiB |
188
sections/german/06/url-crop.svg
Normal file
@ -0,0 +1,188 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="175pt" height="24pt" viewBox="0 0 175 24" 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 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-2">
|
||||
<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-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.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-5">
|
||||
<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-6">
|
||||
<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-7">
|
||||
<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-8">
|
||||
<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-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 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-11">
|
||||
<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-12">
|
||||
<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-13">
|
||||
<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-14">
|
||||
<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-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-1">
|
||||
<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 L 1.65625 -5.6875 C 1.65625 -5.984375 1.59375 -6.09375 1.25 -6.09375 L 0.53125 -6.09375 C 0.375 -6.09375 0.125 -6.09375 0.125 -5.78125 C 0.125 -5.484375 0.375 -5.484375 0.515625 -5.484375 L 0.96875 -5.484375 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="glyph1-2">
|
||||
<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="glyph1-3">
|
||||
<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="glyph1-4">
|
||||
<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="glyph1-5">
|
||||
<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.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="glyph1-6">
|
||||
<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="glyph1-7">
|
||||
<path style="stroke:none;" d="M 5.0625 -4 C 5.0625 -4.296875 4.828125 -4.296875 4.640625 -4.296875 L 3.5 -4.296875 C 3.3125 -4.296875 3.078125 -4.296875 3.078125 -4 C 3.078125 -3.6875 3.3125 -3.6875 3.5 -3.6875 L 3.984375 -3.6875 L 3.484375 -0.71875 C 3.4375 -0.984375 3.3125 -1.4375 3.1875 -1.84375 C 3.015625 -2.46875 2.984375 -2.578125 2.625 -2.578125 C 2.53125 -2.578125 2.34375 -2.578125 2.234375 -2.359375 C 2.203125 -2.296875 1.796875 -0.921875 1.765625 -0.71875 L 1.75 -0.71875 L 1.234375 -3.6875 L 1.71875 -3.6875 C 1.90625 -3.6875 2.140625 -3.6875 2.140625 -3.984375 C 2.140625 -4.296875 1.90625 -4.296875 1.71875 -4.296875 L 0.578125 -4.296875 C 0.40625 -4.296875 0.15625 -4.296875 0.15625 -4 C 0.15625 -3.6875 0.375 -3.6875 0.671875 -3.6875 L 1.265625 -0.34375 C 1.3125 -0.109375 1.328125 0.046875 1.734375 0.046875 C 2.140625 0.046875 2.15625 -0.046875 2.34375 -0.65625 C 2.59375 -1.53125 2.609375 -1.671875 2.625 -1.890625 L 2.640625 -1.890625 C 2.6875 -1.375 3.0625 -0.203125 3.09375 -0.125 C 3.21875 0.046875 3.40625 0.046875 3.515625 0.046875 C 3.890625 0.046875 3.921875 -0.125 3.953125 -0.34375 L 4.5625 -3.6875 C 4.859375 -3.6875 5.0625 -3.6875 5.0625 -4 Z M 5.0625 -4 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-8">
|
||||
<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="glyph1-9">
|
||||
<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="glyph1-10">
|
||||
<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="glyph1-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="glyph1-12">
|
||||
<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="glyph1-13">
|
||||
<path style="stroke:none;" d="M 4.671875 -3.046875 C 4.671875 -3.40625 4.3125 -3.40625 4.203125 -3.40625 L 1.03125 -3.40625 C 0.90625 -3.40625 0.5625 -3.40625 0.5625 -3.046875 C 0.5625 -2.703125 0.90625 -2.703125 1.03125 -2.703125 L 4.203125 -2.703125 C 4.3125 -2.703125 4.671875 -2.703125 4.671875 -3.046875 Z M 4.671875 -3.046875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-14">
|
||||
<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="glyph1-15">
|
||||
<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="glyph1-16">
|
||||
<path style="stroke:none;" d="M 3.671875 0.4375 L 3.671875 -3.890625 C 3.671875 -4.203125 3.609375 -4.296875 3.265625 -4.296875 L 1.6875 -4.296875 C 1.53125 -4.296875 1.28125 -4.296875 1.28125 -3.984375 C 1.28125 -3.6875 1.53125 -3.6875 1.6875 -3.6875 L 2.984375 -3.6875 L 2.984375 0.390625 C 2.984375 0.5625 2.984375 0.9375 2.71875 1.28125 C 2.453125 1.671875 2.140625 1.671875 1.90625 1.671875 C 1.625 1.671875 1.5 1.640625 1.359375 1.625 C 1.359375 1.59375 1.359375 1.578125 1.359375 1.5 C 1.359375 1.21875 1.140625 1.0625 0.921875 1.0625 C 0.703125 1.0625 0.484375 1.21875 0.484375 1.515625 C 0.484375 2.265625 1.453125 2.265625 1.859375 2.265625 C 3.3125 2.265625 3.671875 1.078125 3.671875 0.4375 Z M 3.671875 -5.53125 C 3.671875 -5.8125 3.453125 -6.03125 3.1875 -6.03125 C 2.90625 -6.03125 2.6875 -5.8125 2.6875 -5.53125 C 2.6875 -5.25 2.90625 -5.03125 3.1875 -5.03125 C 3.453125 -5.03125 3.671875 -5.25 3.671875 -5.53125 Z M 3.671875 -5.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-17">
|
||||
<path style="stroke:none;" d="M 4.640625 -1.09375 C 4.640625 -1.359375 4.359375 -1.359375 4.296875 -1.359375 C 4.140625 -1.359375 4.03125 -1.34375 3.96875 -1.140625 C 3.90625 -1.015625 3.71875 -0.546875 2.984375 -0.546875 C 2.140625 -0.546875 1.421875 -1.25 1.421875 -2.15625 C 1.421875 -2.625 1.6875 -3.78125 3.046875 -3.78125 C 3.25 -3.78125 3.640625 -3.78125 3.640625 -3.6875 C 3.65625 -3.34375 3.84375 -3.203125 4.078125 -3.203125 C 4.3125 -3.203125 4.53125 -3.375 4.53125 -3.65625 C 4.53125 -4.390625 3.484375 -4.390625 3.046875 -4.390625 C 1.328125 -4.390625 0.734375 -3.03125 0.734375 -2.15625 C 0.734375 -0.953125 1.671875 0.0625 2.921875 0.0625 C 4.3125 0.0625 4.640625 -0.921875 4.640625 -1.09375 Z M 4.640625 -1.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-18">
|
||||
<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>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="1.746" y="8.827"/>
|
||||
<use xlink:href="#glyph0-2" x="7.972625" y="8.827"/>
|
||||
<use xlink:href="#glyph0-3" x="12.953925" y="8.827"/>
|
||||
<use xlink:href="#glyph0-4" x="16.856275" y="8.827"/>
|
||||
<use xlink:href="#glyph0-5" x="21.284651" y="8.827"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="35.195429" y="8.827"/>
|
||||
<use xlink:href="#glyph0-7" x="37.96304" y="8.827"/>
|
||||
<use xlink:href="#glyph0-8" x="43.49826" y="8.827"/>
|
||||
<use xlink:href="#glyph0-9" x="47.428506" y="8.827"/>
|
||||
<use xlink:href="#glyph0-5" x="52.963727" y="8.827"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-10" x="66.874505" y="8.827"/>
|
||||
<use xlink:href="#glyph0-2" x="72.409726" y="8.827"/>
|
||||
<use xlink:href="#glyph0-11" x="77.391026" y="8.827"/>
|
||||
<use xlink:href="#glyph0-2" x="80.158636" y="8.827"/>
|
||||
<use xlink:href="#glyph0-3" x="85.139936" y="8.827"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-8" x="94.65123" y="8.827"/>
|
||||
<use xlink:href="#glyph0-6" x="98.581476" y="8.827"/>
|
||||
<use xlink:href="#glyph0-12" x="101.349086" y="8.827"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="110.837" y="8.827"/>
|
||||
<use xlink:href="#glyph1-2" x="116.067365" y="8.827"/>
|
||||
<use xlink:href="#glyph1-2" x="121.29773" y="8.827"/>
|
||||
<use xlink:href="#glyph1-3" x="126.528095" y="8.827"/>
|
||||
<use xlink:href="#glyph1-4" x="131.75846" y="8.827"/>
|
||||
<use xlink:href="#glyph1-5" x="136.988825" y="8.827"/>
|
||||
<use xlink:href="#glyph1-6" x="142.21919" y="8.827"/>
|
||||
<use xlink:href="#glyph1-6" x="147.449555" y="8.827"/>
|
||||
<use xlink:href="#glyph1-7" x="152.67992" y="8.827"/>
|
||||
<use xlink:href="#glyph1-7" x="157.910285" y="8.827"/>
|
||||
<use xlink:href="#glyph1-7" x="163.14065" y="8.827"/>
|
||||
<use xlink:href="#glyph1-8" x="168.371015" y="8.827"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="1.746" y="20.782"/>
|
||||
<use xlink:href="#glyph1-10" x="6.976365" y="20.782"/>
|
||||
<use xlink:href="#glyph1-2" x="12.20673" y="20.782"/>
|
||||
<use xlink:href="#glyph1-11" x="17.437095" y="20.782"/>
|
||||
<use xlink:href="#glyph1-12" x="22.66746" y="20.782"/>
|
||||
<use xlink:href="#glyph1-13" x="27.897825" y="20.782"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="33.62632" y="20.782"/>
|
||||
<use xlink:href="#glyph1-14" x="38.856685" y="20.782"/>
|
||||
<use xlink:href="#glyph1-15" x="44.08705" y="20.782"/>
|
||||
<use xlink:href="#glyph1-16" x="49.317415" y="20.782"/>
|
||||
<use xlink:href="#glyph1-11" x="54.54778" y="20.782"/>
|
||||
<use xlink:href="#glyph1-17" x="59.778145" y="20.782"/>
|
||||
<use xlink:href="#glyph1-2" x="65.00851" y="20.782"/>
|
||||
<use xlink:href="#glyph1-8" x="70.238875" y="20.782"/>
|
||||
<use xlink:href="#glyph1-15" x="75.46924" y="20.782"/>
|
||||
<use xlink:href="#glyph1-14" x="80.699605" y="20.782"/>
|
||||
<use xlink:href="#glyph1-18" x="85.92997" y="20.782"/>
|
||||
<use xlink:href="#glyph1-6" x="91.160335" y="20.782"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-13" x="99.712" y="20.782"/>
|
||||
<use xlink:href="#glyph0-5" x="104.6933" y="20.782"/>
|
||||
<use xlink:href="#glyph0-4" x="112.995135" y="20.782"/>
|
||||
<use xlink:href="#glyph0-12" x="117.42351" y="20.782"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-14" x="124.615511" y="20.782"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-14" x="129.046876" y="20.782"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-14" x="133.47824" y="20.782"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 31 KiB |
188
sections/german/06/url-orig.svg
Normal file
@ -0,0 +1,188 @@
|
||||
<?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 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-2">
|
||||
<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-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.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-5">
|
||||
<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-6">
|
||||
<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-7">
|
||||
<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-8">
|
||||
<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-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 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-11">
|
||||
<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-12">
|
||||
<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-13">
|
||||
<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-14">
|
||||
<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-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-1">
|
||||
<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 L 1.65625 -5.6875 C 1.65625 -5.984375 1.59375 -6.09375 1.25 -6.09375 L 0.53125 -6.09375 C 0.375 -6.09375 0.125 -6.09375 0.125 -5.78125 C 0.125 -5.484375 0.375 -5.484375 0.515625 -5.484375 L 0.96875 -5.484375 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="glyph1-2">
|
||||
<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="glyph1-3">
|
||||
<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="glyph1-4">
|
||||
<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="glyph1-5">
|
||||
<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.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="glyph1-6">
|
||||
<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="glyph1-7">
|
||||
<path style="stroke:none;" d="M 5.0625 -4 C 5.0625 -4.296875 4.828125 -4.296875 4.640625 -4.296875 L 3.5 -4.296875 C 3.3125 -4.296875 3.078125 -4.296875 3.078125 -4 C 3.078125 -3.6875 3.3125 -3.6875 3.5 -3.6875 L 3.984375 -3.6875 L 3.484375 -0.71875 C 3.4375 -0.984375 3.3125 -1.4375 3.1875 -1.84375 C 3.015625 -2.46875 2.984375 -2.578125 2.625 -2.578125 C 2.53125 -2.578125 2.34375 -2.578125 2.234375 -2.359375 C 2.203125 -2.296875 1.796875 -0.921875 1.765625 -0.71875 L 1.75 -0.71875 L 1.234375 -3.6875 L 1.71875 -3.6875 C 1.90625 -3.6875 2.140625 -3.6875 2.140625 -3.984375 C 2.140625 -4.296875 1.90625 -4.296875 1.71875 -4.296875 L 0.578125 -4.296875 C 0.40625 -4.296875 0.15625 -4.296875 0.15625 -4 C 0.15625 -3.6875 0.375 -3.6875 0.671875 -3.6875 L 1.265625 -0.34375 C 1.3125 -0.109375 1.328125 0.046875 1.734375 0.046875 C 2.140625 0.046875 2.15625 -0.046875 2.34375 -0.65625 C 2.59375 -1.53125 2.609375 -1.671875 2.625 -1.890625 L 2.640625 -1.890625 C 2.6875 -1.375 3.0625 -0.203125 3.09375 -0.125 C 3.21875 0.046875 3.40625 0.046875 3.515625 0.046875 C 3.890625 0.046875 3.921875 -0.125 3.953125 -0.34375 L 4.5625 -3.6875 C 4.859375 -3.6875 5.0625 -3.6875 5.0625 -4 Z M 5.0625 -4 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-8">
|
||||
<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="glyph1-9">
|
||||
<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="glyph1-10">
|
||||
<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="glyph1-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="glyph1-12">
|
||||
<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="glyph1-13">
|
||||
<path style="stroke:none;" d="M 4.671875 -3.046875 C 4.671875 -3.40625 4.3125 -3.40625 4.203125 -3.40625 L 1.03125 -3.40625 C 0.90625 -3.40625 0.5625 -3.40625 0.5625 -3.046875 C 0.5625 -2.703125 0.90625 -2.703125 1.03125 -2.703125 L 4.203125 -2.703125 C 4.3125 -2.703125 4.671875 -2.703125 4.671875 -3.046875 Z M 4.671875 -3.046875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-14">
|
||||
<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="glyph1-15">
|
||||
<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="glyph1-16">
|
||||
<path style="stroke:none;" d="M 3.671875 0.4375 L 3.671875 -3.890625 C 3.671875 -4.203125 3.609375 -4.296875 3.265625 -4.296875 L 1.6875 -4.296875 C 1.53125 -4.296875 1.28125 -4.296875 1.28125 -3.984375 C 1.28125 -3.6875 1.53125 -3.6875 1.6875 -3.6875 L 2.984375 -3.6875 L 2.984375 0.390625 C 2.984375 0.5625 2.984375 0.9375 2.71875 1.28125 C 2.453125 1.671875 2.140625 1.671875 1.90625 1.671875 C 1.625 1.671875 1.5 1.640625 1.359375 1.625 C 1.359375 1.59375 1.359375 1.578125 1.359375 1.5 C 1.359375 1.21875 1.140625 1.0625 0.921875 1.0625 C 0.703125 1.0625 0.484375 1.21875 0.484375 1.515625 C 0.484375 2.265625 1.453125 2.265625 1.859375 2.265625 C 3.3125 2.265625 3.671875 1.078125 3.671875 0.4375 Z M 3.671875 -5.53125 C 3.671875 -5.8125 3.453125 -6.03125 3.1875 -6.03125 C 2.90625 -6.03125 2.6875 -5.8125 2.6875 -5.53125 C 2.6875 -5.25 2.90625 -5.03125 3.1875 -5.03125 C 3.453125 -5.03125 3.671875 -5.25 3.671875 -5.53125 Z M 3.671875 -5.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-17">
|
||||
<path style="stroke:none;" d="M 4.640625 -1.09375 C 4.640625 -1.359375 4.359375 -1.359375 4.296875 -1.359375 C 4.140625 -1.359375 4.03125 -1.34375 3.96875 -1.140625 C 3.90625 -1.015625 3.71875 -0.546875 2.984375 -0.546875 C 2.140625 -0.546875 1.421875 -1.25 1.421875 -2.15625 C 1.421875 -2.625 1.6875 -3.78125 3.046875 -3.78125 C 3.25 -3.78125 3.640625 -3.78125 3.640625 -3.6875 C 3.65625 -3.34375 3.84375 -3.203125 4.078125 -3.203125 C 4.3125 -3.203125 4.53125 -3.375 4.53125 -3.65625 C 4.53125 -4.390625 3.484375 -4.390625 3.046875 -4.390625 C 1.328125 -4.390625 0.734375 -3.03125 0.734375 -2.15625 C 0.734375 -0.953125 1.671875 0.0625 2.921875 0.0625 C 4.3125 0.0625 4.640625 -0.921875 4.640625 -1.09375 Z M 4.640625 -1.09375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-18">
|
||||
<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>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="139.746" y="132.717"/>
|
||||
<use xlink:href="#glyph0-2" x="145.972625" y="132.717"/>
|
||||
<use xlink:href="#glyph0-3" x="150.953925" y="132.717"/>
|
||||
<use xlink:href="#glyph0-4" x="154.856275" y="132.717"/>
|
||||
<use xlink:href="#glyph0-5" x="159.284651" y="132.717"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="173.195429" y="132.717"/>
|
||||
<use xlink:href="#glyph0-7" x="175.96304" y="132.717"/>
|
||||
<use xlink:href="#glyph0-8" x="181.49826" y="132.717"/>
|
||||
<use xlink:href="#glyph0-9" x="185.428506" y="132.717"/>
|
||||
<use xlink:href="#glyph0-5" x="190.963727" y="132.717"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-10" x="204.874505" y="132.717"/>
|
||||
<use xlink:href="#glyph0-2" x="210.409726" y="132.717"/>
|
||||
<use xlink:href="#glyph0-11" x="215.391026" y="132.717"/>
|
||||
<use xlink:href="#glyph0-2" x="218.158636" y="132.717"/>
|
||||
<use xlink:href="#glyph0-3" x="223.139936" y="132.717"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-8" x="232.65123" y="132.717"/>
|
||||
<use xlink:href="#glyph0-6" x="236.581476" y="132.717"/>
|
||||
<use xlink:href="#glyph0-12" x="239.349086" y="132.717"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="248.837" y="132.717"/>
|
||||
<use xlink:href="#glyph1-2" x="254.067365" y="132.717"/>
|
||||
<use xlink:href="#glyph1-2" x="259.29773" y="132.717"/>
|
||||
<use xlink:href="#glyph1-3" x="264.528095" y="132.717"/>
|
||||
<use xlink:href="#glyph1-4" x="269.75846" y="132.717"/>
|
||||
<use xlink:href="#glyph1-5" x="274.988825" y="132.717"/>
|
||||
<use xlink:href="#glyph1-6" x="280.21919" y="132.717"/>
|
||||
<use xlink:href="#glyph1-6" x="285.449555" y="132.717"/>
|
||||
<use xlink:href="#glyph1-7" x="290.67992" y="132.717"/>
|
||||
<use xlink:href="#glyph1-7" x="295.910285" y="132.717"/>
|
||||
<use xlink:href="#glyph1-7" x="301.14065" y="132.717"/>
|
||||
<use xlink:href="#glyph1-8" x="306.371015" y="132.717"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="139.746" y="144.672"/>
|
||||
<use xlink:href="#glyph1-10" x="144.976365" y="144.672"/>
|
||||
<use xlink:href="#glyph1-2" x="150.20673" y="144.672"/>
|
||||
<use xlink:href="#glyph1-11" x="155.437095" y="144.672"/>
|
||||
<use xlink:href="#glyph1-12" x="160.66746" y="144.672"/>
|
||||
<use xlink:href="#glyph1-13" x="165.897825" y="144.672"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="171.62632" y="144.672"/>
|
||||
<use xlink:href="#glyph1-14" x="176.856685" y="144.672"/>
|
||||
<use xlink:href="#glyph1-15" x="182.08705" y="144.672"/>
|
||||
<use xlink:href="#glyph1-16" x="187.317415" y="144.672"/>
|
||||
<use xlink:href="#glyph1-11" x="192.54778" y="144.672"/>
|
||||
<use xlink:href="#glyph1-17" x="197.778145" y="144.672"/>
|
||||
<use xlink:href="#glyph1-2" x="203.00851" y="144.672"/>
|
||||
<use xlink:href="#glyph1-8" x="208.238875" y="144.672"/>
|
||||
<use xlink:href="#glyph1-15" x="213.46924" y="144.672"/>
|
||||
<use xlink:href="#glyph1-14" x="218.699605" y="144.672"/>
|
||||
<use xlink:href="#glyph1-18" x="223.92997" y="144.672"/>
|
||||
<use xlink:href="#glyph1-6" x="229.160335" y="144.672"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-13" x="237.712" y="144.672"/>
|
||||
<use xlink:href="#glyph0-5" x="242.6933" y="144.672"/>
|
||||
<use xlink:href="#glyph0-4" x="250.995135" y="144.672"/>
|
||||
<use xlink:href="#glyph0-12" x="255.42351" y="144.672"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-14" x="262.615511" y="144.672"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-14" x="267.046876" y="144.672"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-14" x="271.47824" y="144.672"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 31 KiB |
12
sections/german/06/url.tex
Normal file
@ -0,0 +1,12 @@
|
||||
\documentclass[a4paper]{article}
|
||||
\usepackage{lmodern}
|
||||
\usepackage{amssymb,amsmath}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage{hyperref}
|
||||
\begin{document}
|
||||
\thispagestyle{empty}
|
||||
\parbox{.5\linewidth}{\noindent
|
||||
Lorem ipsum dolor sit \url{https://www.latex-project.org/} amet …
|
||||
}
|
||||
\end{document}
|
||||
@ -1,6 +1,3 @@
|
||||
<!--
|
||||
ABSATZFORMATIERUNG
|
||||
-->
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h1>Absatz­formatierung</h1>
|
||||
@ -9,23 +6,54 @@
|
||||
|
||||
---
|
||||
|
||||
TODO: Absatzausrichtung (https://en.wikibooks.org/wiki/LaTeX/Paragraph_Formatting#Paragraph_alignment)
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2>Flattersatz</h2>
|
||||
<p>Standardmäßig setzt LaTeX Fließtext im Blocksatz, aber auch Flattersatz ist möglich.</p>
|
||||
<pre class="lang-tex hljs"><code>\raggedright … \raggedleft …
|
||||
\centering …</code></pre>
|
||||
<p>Alternativ einsetzbare 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, daher lieber vermeiden!</p>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/07/ausrichtung-crop.svg">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
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-orig.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 formatieren</h2>
|
||||
<ul>
|
||||
<li class="fragment">Formatiere den ersten Absatz des Kapitels xxx rechtsbündig zentriert.</li>
|
||||
<li class="fragment">Seht euch auf der Titelseite an, wie **Abstände und Ausrichtungen** genutzt werden. Spielt ein wenig mit den Einstellungen und beobachtet, was sich verändert. Benutzt die Undo-Funktion, wenn ihr euch verlaufen habt ;)</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
533
sections/german/07/ausrichtung-crop.svg
Normal file
@ -0,0 +1,533 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<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">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<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-2">
|
||||
<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-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.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-5">
|
||||
<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-6">
|
||||
<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-7">
|
||||
<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-8">
|
||||
<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-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 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-11">
|
||||
<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-12">
|
||||
<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-13">
|
||||
<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-14">
|
||||
<path style="stroke:none;" d="M 2.03125 -0.015625 C 2.03125 -0.640625 1.78125 -1.0625 1.390625 -1.0625 C 1.03125 -1.0625 0.859375 -0.78125 0.859375 -0.53125 C 0.859375 -0.265625 1.03125 0 1.390625 0 C 1.53125 0 1.671875 -0.0625 1.78125 -0.15625 C 1.796875 0.625 1.53125 1.234375 1.09375 1.703125 C 1.03125 1.765625 1.015625 1.78125 1.015625 1.8125 C 1.015625 1.890625 1.0625 1.921875 1.109375 1.921875 C 1.234375 1.921875 2.03125 1.140625 2.03125 -0.015625 Z M 2.03125 -0.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-15">
|
||||
<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-16">
|
||||
<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-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 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-19">
|
||||
<path style="stroke:none;" d="M 5.25 1.9375 L 5.25 1.625 C 4.578125 1.625 4.46875 1.625 4.46875 1.171875 L 4.46875 -4.40625 L 4.25 -4.40625 L 3.875 -3.5 C 3.75 -3.78125 3.34375 -4.40625 2.546875 -4.40625 C 1.390625 -4.40625 0.34375 -3.4375 0.34375 -2.140625 C 0.34375 -0.890625 1.3125 0.109375 2.46875 0.109375 C 3.15625 0.109375 3.5625 -0.3125 3.78125 -0.609375 L 3.78125 1.171875 C 3.78125 1.625 3.671875 1.625 3.015625 1.625 L 3.015625 1.9375 L 4.125 1.90625 Z M 3.8125 -1.359375 C 3.8125 -1.03125 3.640625 -0.75 3.421875 -0.515625 C 3.296875 -0.375 2.96875 -0.109375 2.5 -0.109375 C 1.78125 -0.109375 1.171875 -1 1.171875 -2.140625 C 1.171875 -3.328125 1.859375 -4.15625 2.609375 -4.15625 C 3.40625 -4.15625 3.8125 -3.296875 3.8125 -2.765625 Z M 3.8125 -1.359375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-20">
|
||||
<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>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<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="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="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="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="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="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-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-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-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-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-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="30.96954" y="31.682"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<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-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-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-12" x="114.411296" y="31.682"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<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-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-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-4" x="164.303997" y="31.682"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<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-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-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-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-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-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-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-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-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-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-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-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-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-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="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-10" x="30.96954" y="87.306"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<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-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-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="114.411296" y="87.306"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<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-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-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-4" x="164.303997" y="87.306"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<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-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-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-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-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-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-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-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-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-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="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-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-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-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-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-10" x="30.96954" y="142.931"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<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-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-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-12" x="114.411296" y="142.931"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<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-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-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-4" x="164.303997" y="142.931"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<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-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-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-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-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>
|
||||
|
After Width: | Height: | Size: 39 KiB |
533
sections/german/07/ausrichtung-orig.svg
Normal file
@ -0,0 +1,533 @@
|
||||
<?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 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-2">
|
||||
<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-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.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-5">
|
||||
<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-6">
|
||||
<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-7">
|
||||
<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-8">
|
||||
<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-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 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-11">
|
||||
<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-12">
|
||||
<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-13">
|
||||
<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-14">
|
||||
<path style="stroke:none;" d="M 2.03125 -0.015625 C 2.03125 -0.640625 1.78125 -1.0625 1.390625 -1.0625 C 1.03125 -1.0625 0.859375 -0.78125 0.859375 -0.53125 C 0.859375 -0.265625 1.03125 0 1.390625 0 C 1.53125 0 1.671875 -0.0625 1.78125 -0.15625 C 1.796875 0.625 1.53125 1.234375 1.09375 1.703125 C 1.03125 1.765625 1.015625 1.78125 1.015625 1.8125 C 1.015625 1.890625 1.0625 1.921875 1.109375 1.921875 C 1.234375 1.921875 2.03125 1.140625 2.03125 -0.015625 Z M 2.03125 -0.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-15">
|
||||
<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-16">
|
||||
<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-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 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-19">
|
||||
<path style="stroke:none;" d="M 5.25 1.9375 L 5.25 1.625 C 4.578125 1.625 4.46875 1.625 4.46875 1.171875 L 4.46875 -4.40625 L 4.25 -4.40625 L 3.875 -3.5 C 3.75 -3.78125 3.34375 -4.40625 2.546875 -4.40625 C 1.390625 -4.40625 0.34375 -3.4375 0.34375 -2.140625 C 0.34375 -0.890625 1.3125 0.109375 2.46875 0.109375 C 3.15625 0.109375 3.5625 -0.3125 3.78125 -0.609375 L 3.78125 1.171875 C 3.78125 1.625 3.671875 1.625 3.015625 1.625 L 3.015625 1.9375 L 4.125 1.90625 Z M 3.8125 -1.359375 C 3.8125 -1.03125 3.640625 -0.75 3.421875 -0.515625 C 3.296875 -0.375 2.96875 -0.109375 2.5 -0.109375 C 1.78125 -0.109375 1.171875 -1 1.171875 -2.140625 C 1.171875 -3.328125 1.859375 -4.15625 2.609375 -4.15625 C 3.40625 -4.15625 3.8125 -3.296875 3.8125 -2.765625 Z M 3.8125 -1.359375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-20">
|
||||
<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>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<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="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="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="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="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="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-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-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-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-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-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="169.96954" y="156.572"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<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-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-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-12" x="253.411296" y="156.572"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<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-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-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-4" x="303.303997" y="156.572"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<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-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-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-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-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-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-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-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-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-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-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-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-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-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="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-10" x="169.96954" y="212.196"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<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-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-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="253.411296" y="212.196"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<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-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-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-4" x="303.303997" y="212.196"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<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-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-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-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-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-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-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-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-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-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="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-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-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-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-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-10" x="169.96954" y="267.821"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<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-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-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-12" x="253.411296" y="267.821"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<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-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-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-4" x="303.303997" y="267.821"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<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-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-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-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-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>
|
||||
|
After Width: | Height: | Size: 39 KiB |
18
sections/german/07/ausrichtung.tex
Normal file
@ -0,0 +1,18 @@
|
||||
\documentclass[a4paper]{article}
|
||||
\usepackage{lmodern}
|
||||
\usepackage{amssymb,amsmath}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage{hyperref}
|
||||
\begin{document}
|
||||
\thispagestyle{empty}
|
||||
\parbox{.5\linewidth}{
|
||||
|
||||
\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}
|
||||
3779
sections/german/07/einzüge-abstände-crop.svg
Normal file
|
After Width: | Height: | Size: 233 KiB |
3779
sections/german/07/einzüge-abstände-orig.svg
Normal file
|
After Width: | Height: | Size: 234 KiB |
31
sections/german/07/einzüge-abstände.tex
Normal 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}
|
||||
@ -8,19 +8,19 @@
|
||||
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2>Ungeordnete Listen</h2>
|
||||
<h2>Ungeordnete Listen <span class="emoji">📜</span></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, % …
|
||||
\item Oregano, Basilikum, % …
|
||||
\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 src="sections/german/08/itemize-crop.svg">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -30,21 +30,19 @@
|
||||
<div class="layout-content">
|
||||
<h2>Geordnete Listen und Definitionslisten</h2>
|
||||
<pre class="lang-tex hljs"><code>\begin{enumerate}
|
||||
\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 die Zwiebeln in einem Topf % …
|
||||
\item passierte Tomaten, Möhren % …
|
||||
\item mit Kräutern und Gewürzen % …
|
||||
% \item …
|
||||
\end{enumerate}</code></pre>
|
||||
<pre class="lang-tex hljs"><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})
|
||||
<pre class="lang-tex hljs fragment"><code>\begin{description}
|
||||
\item [Béchamelsauce] Béchamel % …
|
||||
\item [Lasagne] Als 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">
|
||||
@ -72,13 +70,33 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2>Aufzählung im Absatz</h2>
|
||||
<p>Neben den kompakten Listen stellt <code>paralist</code> auch Listen zur Verfügung, die in einem Absatz stehen.</p>
|
||||
<pre class="lang-tex hljs"><code>Folgende Kräuter sind für % …
|
||||
\begin{inparaitem}
|
||||
\item Liebstöckel
|
||||
\item Petersilie
|
||||
\item Schnittlauch
|
||||
\end{inparaitem}</code></pre>
|
||||
<p>Natürlich gibt es auch hier ein Pendant namens <code>inparaenum</code> für geordnete Listen.</p>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img class="thin-padding" src="sections/german/08/paralist-extended-crop.svg">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<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
|
||||
@ -90,7 +108,7 @@
|
||||
\item Basilikum
|
||||
\item Rosmarin
|
||||
\end{compactenum}
|
||||
% ...
|
||||
% …
|
||||
\end{compactitem}</code></pre>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
@ -103,16 +121,16 @@
|
||||
<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\*]
|
||||
%...
|
||||
% …
|
||||
% Arabische Zahlen
|
||||
\begin{enumerate}[label=\arabic\*]
|
||||
%...
|
||||
% …
|
||||
% Alphabetisch
|
||||
\begin{enumerate}[label=\alph\*]
|
||||
%...</code></pre>
|
||||
% …</code></pre>
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
<img src="sections/german/08/list-style-types-crop.svg">
|
||||
@ -121,13 +139,12 @@
|
||||
|
||||
---
|
||||
|
||||
<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>
|
||||
<li>Formatiert die einzelnen Vor- und Nachteile in Abschnitt 1.2.3 als **ungeordnete Listen.**</li>
|
||||
<li class="fragment">Formatiert den Arbeitsablauf in Abschnitt 1.2.4 als **geordnete Liste.** Die Ziffern im Code sollen nicht stehen bleiben.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -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 |
@ -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 |
@ -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}
|
||||
|
||||
|
||||
@ -4,6 +4,7 @@
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage{hyperref}
|
||||
\usepackage[ngerman]{babel}
|
||||
\begin{document}
|
||||
\thispagestyle{empty}
|
||||
|
||||
|
||||
@ -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 |
@ -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 |
@ -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}
|
||||
|
||||
294
sections/german/08/paralist-extended-crop.svg
Normal file
@ -0,0 +1,294 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="343pt" height="22pt" viewBox="0 0 343 22" 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 6.078125 -4.53125 L 5.796875 -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 C 0.671875 -0.03125 1.453125 -0.03125 1.84375 -0.03125 C 2.25 -0.03125 3.15625 -0.03125 3.515625 0 L 3.515625 -0.3125 L 3.1875 -0.3125 C 2.25 -0.3125 2.25 -0.4375 2.25 -0.78125 L 2.25 -3.234375 L 3.09375 -3.234375 C 4.0625 -3.234375 4.15625 -2.921875 4.15625 -2.078125 L 4.40625 -2.078125 L 4.40625 -4.71875 L 4.15625 -4.71875 C 4.15625 -3.875 4.0625 -3.546875 3.09375 -3.546875 L 2.25 -3.546875 L 2.25 -6.078125 C 2.25 -6.40625 2.265625 -6.46875 2.734375 -6.46875 L 3.921875 -6.46875 C 5.421875 -6.46875 5.671875 -5.90625 5.828125 -4.53125 Z M 6.078125 -4.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<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-3">
|
||||
<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-4">
|
||||
<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-5">
|
||||
<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-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.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-7">
|
||||
<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-8">
|
||||
<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="glyph0-9">
|
||||
<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-10">
|
||||
<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-11">
|
||||
<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-12">
|
||||
<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-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 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.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-18">
|
||||
<path style="stroke:none;" d="M 4.6875 -1.734375 C 4.6875 -2.453125 4.375 -3.65625 3.09375 -4.171875 C 3.984375 -4.421875 4.421875 -5.03125 4.421875 -5.609375 C 4.421875 -6.359375 3.703125 -7.03125 2.71875 -7.03125 C 1.9375 -7.03125 1.0625 -6.546875 1.0625 -5.546875 L 1.0625 -4.296875 L 0.28125 -4.296875 L 0.28125 -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.25 -0.03125 C 1.359375 -0.03125 1.53125 -0.03125 1.71875 0 L 1.71875 -5.5625 C 1.71875 -6.703125 2.515625 -6.8125 2.71875 -6.8125 C 3.125 -6.8125 3.671875 -6.5 3.671875 -5.625 C 3.671875 -4.984375 3.3125 -4.375 2.4375 -4.296875 C 2.34375 -4.28125 2.265625 -4.28125 2.265625 -4.1875 C 2.265625 -4.1875 2.265625 -4.09375 2.359375 -4.078125 C 3.546875 -3.984375 3.953125 -2.765625 3.953125 -1.71875 C 3.953125 -0.4375 3.296875 -0.109375 2.921875 -0.109375 C 2.828125 -0.109375 2.609375 -0.125 2.421875 -0.296875 C 2.53125 -0.3125 2.71875 -0.421875 2.71875 -0.65625 C 2.71875 -0.875 2.5625 -1.015625 2.359375 -1.015625 C 2.1875 -1.015625 2 -0.890625 2 -0.640625 C 2 -0.25 2.375 0.109375 2.953125 0.109375 C 3.8125 0.109375 4.6875 -0.625 4.6875 -1.734375 Z M 4.6875 -1.734375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-19">
|
||||
<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-20">
|
||||
<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-21">
|
||||
<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-22">
|
||||
<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="glyph0-23">
|
||||
<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-24">
|
||||
<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-25">
|
||||
<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-26">
|
||||
<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="glyph0-27">
|
||||
<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="glyph0-28">
|
||||
<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-29">
|
||||
<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-30">
|
||||
<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-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-1">
|
||||
<path style="stroke:none;" d="M 4.421875 -2.5 C 4.421875 -3.5625 3.53125 -4.421875 2.5 -4.421875 C 1.40625 -4.421875 0.5625 -3.53125 0.5625 -2.5 C 0.5625 -1.421875 1.4375 -0.5625 2.484375 -0.5625 C 3.5625 -0.5625 4.421875 -1.453125 4.421875 -2.5 Z M 4.421875 -2.5 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="14.746" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="20.422689" y="7.871"/>
|
||||
<use xlink:href="#glyph0-3" x="25.403989" y="7.871"/>
|
||||
<use xlink:href="#glyph0-4" x="28.1716" y="7.871"/>
|
||||
<use xlink:href="#glyph0-5" x="33.1529" y="7.871"/>
|
||||
<use xlink:href="#glyph0-6" x="37.581275" y="7.871"/>
|
||||
<use xlink:href="#glyph0-7" x="43.116496" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="48.641754" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-8" x="56.477339" y="7.871"/>
|
||||
<use xlink:href="#glyph0-9" x="64.226249" y="7.871"/>
|
||||
<use xlink:href="#glyph0-10" x="68.1286" y="7.871"/>
|
||||
<use xlink:href="#glyph0-11" x="73.1099" y="7.871"/>
|
||||
<use xlink:href="#glyph0-12" x="78.64512" y="7.871"/>
|
||||
<use xlink:href="#glyph0-5" x="82.519575" y="7.871"/>
|
||||
<use xlink:href="#glyph0-9" x="86.947951" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-13" x="94.257511" y="7.871"/>
|
||||
<use xlink:href="#glyph0-14" x="98.187756" y="7.871"/>
|
||||
<use xlink:href="#glyph0-6" x="100.955367" y="7.871"/>
|
||||
<use xlink:href="#glyph0-7" x="106.490587" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-15" x="115.423054" y="7.871"/>
|
||||
<use xlink:href="#glyph0-16" x="118.467625" y="7.871"/>
|
||||
<use xlink:href="#glyph0-9" x="124.002845" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="131.312405" y="7.871"/>
|
||||
<use xlink:href="#glyph0-14" x="136.847626" y="7.871"/>
|
||||
<use xlink:href="#glyph0-5" x="139.615236" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-17" x="147.440858" y="7.871"/>
|
||||
<use xlink:href="#glyph0-2" x="152.976079" y="7.871"/>
|
||||
<use xlink:href="#glyph0-18" x="157.957379" y="7.871"/>
|
||||
<use xlink:href="#glyph0-5" x="162.938679" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="170.774264" y="7.871"/>
|
||||
<use xlink:href="#glyph0-19" x="175.202639" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="181.00685" y="7.871"/>
|
||||
<use xlink:href="#glyph0-6" x="185.435226" y="7.871"/>
|
||||
<use xlink:href="#glyph0-15" x="190.970446" y="7.871"/>
|
||||
<use xlink:href="#glyph0-20" x="194.015017" y="7.871"/>
|
||||
<use xlink:href="#glyph0-3" x="198.996317" y="7.871"/>
|
||||
<use xlink:href="#glyph0-3" x="201.763927" y="7.871"/>
|
||||
<use xlink:href="#glyph0-13" x="204.531537" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-4" x="211.868992" y="7.871"/>
|
||||
<use xlink:href="#glyph0-5" x="216.850292" y="7.871"/>
|
||||
<use xlink:href="#glyph0-5" x="221.278668" y="7.871"/>
|
||||
<use xlink:href="#glyph0-14" x="225.707044" y="7.871"/>
|
||||
<use xlink:href="#glyph0-4" x="228.474654" y="7.871"/>
|
||||
<use xlink:href="#glyph0-6" x="233.455954" y="7.871"/>
|
||||
<use xlink:href="#glyph0-5" x="238.991175" y="7.871"/>
|
||||
<use xlink:href="#glyph0-12" x="243.41955" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-11" x="250.691252" y="7.871"/>
|
||||
<use xlink:href="#glyph0-6" x="256.226473" y="7.871"/>
|
||||
<use xlink:href="#glyph0-7" x="261.761693" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-21" x="270.704123" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-22" x="275.68343" y="7.871"/>
|
||||
<use xlink:href="#glyph0-6" x="280.66473" y="7.871"/>
|
||||
<use xlink:href="#glyph0-6" x="286.199951" y="7.871"/>
|
||||
<use xlink:href="#glyph0-5" x="291.735172" y="7.871"/>
|
||||
<use xlink:href="#glyph0-6" x="296.163547" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="305.105977" y="7.871"/>
|
||||
<use xlink:href="#glyph0-20" x="310.641198" y="7.871"/>
|
||||
<use xlink:href="#glyph0-23" x="315.622498" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-24" x="319.77192" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-25" x="328.704388" y="7.871"/>
|
||||
<use xlink:href="#glyph0-5" x="335.760897" y="7.871"/>
|
||||
<use xlink:href="#glyph0-26" x="340.189273" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="-0.198" y="19.826"/>
|
||||
<use xlink:href="#glyph0-20" x="5.337221" y="19.826"/>
|
||||
<use xlink:href="#glyph0-9" x="10.318521" y="19.826"/>
|
||||
<use xlink:href="#glyph0-15" x="14.220871" y="19.826"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-19" x="20.582987" y="19.826"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="26.397161" y="19.826"/>
|
||||
<use xlink:href="#glyph0-14" x="30.825536" y="19.826"/>
|
||||
<use xlink:href="#glyph0-4" x="33.593147" y="19.826"/>
|
||||
<use xlink:href="#glyph0-5" x="38.574447" y="19.826"/>
|
||||
<use xlink:href="#glyph0-15" x="43.002822" y="19.826"/>
|
||||
<use xlink:href="#glyph0-16" x="46.047393" y="19.826"/>
|
||||
<use xlink:href="#glyph0-4" x="51.582614" y="19.826"/>
|
||||
<use xlink:href="#glyph0-12" x="56.563914" y="19.826"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-27" x="63.755914" y="19.826"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="70.671951" y="19.826"/>
|
||||
<use xlink:href="#glyph0-9" x="75.100327" y="19.826"/>
|
||||
<use xlink:href="#glyph0-7" x="79.002677" y="19.826"/>
|
||||
<use xlink:href="#glyph0-5" x="84.537898" y="19.826"/>
|
||||
<use xlink:href="#glyph0-6" x="88.966274" y="19.826"/>
|
||||
<use xlink:href="#glyph0-28" x="94.501494" y="19.826"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="101.697" y="19.826"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-29" x="110" y="19.826"/>
|
||||
<use xlink:href="#glyph0-14" x="116.226625" y="19.826"/>
|
||||
<use xlink:href="#glyph0-5" x="118.994235" y="19.826"/>
|
||||
<use xlink:href="#glyph0-19" x="123.422611" y="19.826"/>
|
||||
<use xlink:href="#glyph0-13" x="128.957832" y="19.826"/>
|
||||
<use xlink:href="#glyph0-12" x="132.888077" y="19.826"/>
|
||||
<use xlink:href="#glyph0-22" x="136.762532" y="19.826"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-23" x="142.022785" y="19.826"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-21" x="146.172208" y="19.826"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="151.151516" y="19.826"/>
|
||||
<use xlink:href="#glyph0-3" x="155.579891" y="19.826"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="161.667" y="19.826"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-30" x="169.97" y="19.826"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="176.471593" y="19.826"/>
|
||||
<use xlink:href="#glyph0-12" x="180.899968" y="19.826"/>
|
||||
<use xlink:href="#glyph0-5" x="184.774424" y="19.826"/>
|
||||
<use xlink:href="#glyph0-9" x="189.202799" y="19.826"/>
|
||||
<use xlink:href="#glyph0-13" x="193.10515" y="19.826"/>
|
||||
<use xlink:href="#glyph0-14" x="197.035395" y="19.826"/>
|
||||
<use xlink:href="#glyph0-3" x="199.803006" y="19.826"/>
|
||||
<use xlink:href="#glyph0-14" x="202.570616" y="19.826"/>
|
||||
<use xlink:href="#glyph0-5" x="205.338226" y="19.826"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="213.086" y="19.826"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-17" x="221.388" y="19.826"/>
|
||||
<use xlink:href="#glyph0-23" x="226.923221" y="19.826"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-24" x="231.072643" y="19.826"/>
|
||||
<use xlink:href="#glyph0-6" x="236.607864" y="19.826"/>
|
||||
<use xlink:href="#glyph0-14" x="242.143085" y="19.826"/>
|
||||
<use xlink:href="#glyph0-12" x="244.910695" y="19.826"/>
|
||||
<use xlink:href="#glyph0-12" x="248.78515" y="19.826"/>
|
||||
<use xlink:href="#glyph0-3" x="252.659605" y="19.826"/>
|
||||
<use xlink:href="#glyph0-20" x="255.427215" y="19.826"/>
|
||||
<use xlink:href="#glyph0-11" x="260.408515" y="19.826"/>
|
||||
<use xlink:href="#glyph0-23" x="265.943736" y="19.826"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-24" x="270.093159" y="19.826"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 38 KiB |
294
sections/german/08/paralist-extended-orig.svg
Normal file
@ -0,0 +1,294 @@
|
||||
<?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 6.078125 -4.53125 L 5.796875 -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 C 0.671875 -0.03125 1.453125 -0.03125 1.84375 -0.03125 C 2.25 -0.03125 3.15625 -0.03125 3.515625 0 L 3.515625 -0.3125 L 3.1875 -0.3125 C 2.25 -0.3125 2.25 -0.4375 2.25 -0.78125 L 2.25 -3.234375 L 3.09375 -3.234375 C 4.0625 -3.234375 4.15625 -2.921875 4.15625 -2.078125 L 4.40625 -2.078125 L 4.40625 -4.71875 L 4.15625 -4.71875 C 4.15625 -3.875 4.0625 -3.546875 3.09375 -3.546875 L 2.25 -3.546875 L 2.25 -6.078125 C 2.25 -6.40625 2.265625 -6.46875 2.734375 -6.46875 L 3.921875 -6.46875 C 5.421875 -6.46875 5.671875 -5.90625 5.828125 -4.53125 Z M 6.078125 -4.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<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-3">
|
||||
<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-4">
|
||||
<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-5">
|
||||
<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-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.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-7">
|
||||
<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-8">
|
||||
<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="glyph0-9">
|
||||
<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-10">
|
||||
<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-11">
|
||||
<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-12">
|
||||
<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-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 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.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-18">
|
||||
<path style="stroke:none;" d="M 4.6875 -1.734375 C 4.6875 -2.453125 4.375 -3.65625 3.09375 -4.171875 C 3.984375 -4.421875 4.421875 -5.03125 4.421875 -5.609375 C 4.421875 -6.359375 3.703125 -7.03125 2.71875 -7.03125 C 1.9375 -7.03125 1.0625 -6.546875 1.0625 -5.546875 L 1.0625 -4.296875 L 0.28125 -4.296875 L 0.28125 -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.25 -0.03125 C 1.359375 -0.03125 1.53125 -0.03125 1.71875 0 L 1.71875 -5.5625 C 1.71875 -6.703125 2.515625 -6.8125 2.71875 -6.8125 C 3.125 -6.8125 3.671875 -6.5 3.671875 -5.625 C 3.671875 -4.984375 3.3125 -4.375 2.4375 -4.296875 C 2.34375 -4.28125 2.265625 -4.28125 2.265625 -4.1875 C 2.265625 -4.1875 2.265625 -4.09375 2.359375 -4.078125 C 3.546875 -3.984375 3.953125 -2.765625 3.953125 -1.71875 C 3.953125 -0.4375 3.296875 -0.109375 2.921875 -0.109375 C 2.828125 -0.109375 2.609375 -0.125 2.421875 -0.296875 C 2.53125 -0.3125 2.71875 -0.421875 2.71875 -0.65625 C 2.71875 -0.875 2.5625 -1.015625 2.359375 -1.015625 C 2.1875 -1.015625 2 -0.890625 2 -0.640625 C 2 -0.25 2.375 0.109375 2.953125 0.109375 C 3.8125 0.109375 4.6875 -0.625 4.6875 -1.734375 Z M 4.6875 -1.734375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-19">
|
||||
<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-20">
|
||||
<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-21">
|
||||
<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-22">
|
||||
<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="glyph0-23">
|
||||
<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-24">
|
||||
<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-25">
|
||||
<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-26">
|
||||
<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="glyph0-27">
|
||||
<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="glyph0-28">
|
||||
<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-29">
|
||||
<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-30">
|
||||
<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-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-1">
|
||||
<path style="stroke:none;" d="M 4.421875 -2.5 C 4.421875 -3.5625 3.53125 -4.421875 2.5 -4.421875 C 1.40625 -4.421875 0.5625 -3.53125 0.5625 -2.5 C 0.5625 -1.421875 1.4375 -0.5625 2.484375 -0.5625 C 3.5625 -0.5625 4.421875 -1.453125 4.421875 -2.5 Z M 4.421875 -2.5 "/>
|
||||
</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="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="145.422689" y="135.761"/>
|
||||
<use xlink:href="#glyph0-3" x="150.403989" y="135.761"/>
|
||||
<use xlink:href="#glyph0-4" x="153.1716" y="135.761"/>
|
||||
<use xlink:href="#glyph0-5" x="158.1529" y="135.761"/>
|
||||
<use xlink:href="#glyph0-6" x="162.581275" y="135.761"/>
|
||||
<use xlink:href="#glyph0-7" x="168.116496" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="173.641754" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-8" x="181.477339" y="135.761"/>
|
||||
<use xlink:href="#glyph0-9" x="189.226249" y="135.761"/>
|
||||
<use xlink:href="#glyph0-10" x="193.1286" y="135.761"/>
|
||||
<use xlink:href="#glyph0-11" x="198.1099" y="135.761"/>
|
||||
<use xlink:href="#glyph0-12" x="203.64512" y="135.761"/>
|
||||
<use xlink:href="#glyph0-5" x="207.519575" y="135.761"/>
|
||||
<use xlink:href="#glyph0-9" x="211.947951" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-13" x="219.257511" y="135.761"/>
|
||||
<use xlink:href="#glyph0-14" x="223.187756" y="135.761"/>
|
||||
<use xlink:href="#glyph0-6" x="225.955367" y="135.761"/>
|
||||
<use xlink:href="#glyph0-7" x="231.490587" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-15" x="240.423054" y="135.761"/>
|
||||
<use xlink:href="#glyph0-16" x="243.467625" y="135.761"/>
|
||||
<use xlink:href="#glyph0-9" x="249.002845" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="256.312405" y="135.761"/>
|
||||
<use xlink:href="#glyph0-14" x="261.847626" y="135.761"/>
|
||||
<use xlink:href="#glyph0-5" x="264.615236" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-17" x="272.440858" y="135.761"/>
|
||||
<use xlink:href="#glyph0-2" x="277.976079" y="135.761"/>
|
||||
<use xlink:href="#glyph0-18" x="282.957379" y="135.761"/>
|
||||
<use xlink:href="#glyph0-5" x="287.938679" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="295.774264" y="135.761"/>
|
||||
<use xlink:href="#glyph0-19" x="300.202639" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="306.00685" y="135.761"/>
|
||||
<use xlink:href="#glyph0-6" x="310.435226" y="135.761"/>
|
||||
<use xlink:href="#glyph0-15" x="315.970446" y="135.761"/>
|
||||
<use xlink:href="#glyph0-20" x="319.015017" y="135.761"/>
|
||||
<use xlink:href="#glyph0-3" x="323.996317" y="135.761"/>
|
||||
<use xlink:href="#glyph0-3" x="326.763927" y="135.761"/>
|
||||
<use xlink:href="#glyph0-13" x="329.531537" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-4" x="336.868992" y="135.761"/>
|
||||
<use xlink:href="#glyph0-5" x="341.850292" y="135.761"/>
|
||||
<use xlink:href="#glyph0-5" x="346.278668" y="135.761"/>
|
||||
<use xlink:href="#glyph0-14" x="350.707044" y="135.761"/>
|
||||
<use xlink:href="#glyph0-4" x="353.474654" y="135.761"/>
|
||||
<use xlink:href="#glyph0-6" x="358.455954" y="135.761"/>
|
||||
<use xlink:href="#glyph0-5" x="363.991175" y="135.761"/>
|
||||
<use xlink:href="#glyph0-12" x="368.41955" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-11" x="375.691252" y="135.761"/>
|
||||
<use xlink:href="#glyph0-6" x="381.226473" y="135.761"/>
|
||||
<use xlink:href="#glyph0-7" x="386.761693" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-21" x="395.704123" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-22" x="400.68343" y="135.761"/>
|
||||
<use xlink:href="#glyph0-6" x="405.66473" y="135.761"/>
|
||||
<use xlink:href="#glyph0-6" x="411.199951" y="135.761"/>
|
||||
<use xlink:href="#glyph0-5" x="416.735172" y="135.761"/>
|
||||
<use xlink:href="#glyph0-6" x="421.163547" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="430.105977" y="135.761"/>
|
||||
<use xlink:href="#glyph0-20" x="435.641198" y="135.761"/>
|
||||
<use xlink:href="#glyph0-23" x="440.622498" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-24" x="444.77192" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-25" x="453.704388" y="135.761"/>
|
||||
<use xlink:href="#glyph0-5" x="460.760897" y="135.761"/>
|
||||
<use xlink:href="#glyph0-26" x="465.189273" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="124.802" y="147.716"/>
|
||||
<use xlink:href="#glyph0-20" x="130.337221" y="147.716"/>
|
||||
<use xlink:href="#glyph0-9" x="135.318521" y="147.716"/>
|
||||
<use xlink:href="#glyph0-15" x="139.220871" y="147.716"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-19" x="145.582987" y="147.716"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="151.397161" y="147.716"/>
|
||||
<use xlink:href="#glyph0-14" x="155.825536" y="147.716"/>
|
||||
<use xlink:href="#glyph0-4" x="158.593147" y="147.716"/>
|
||||
<use xlink:href="#glyph0-5" x="163.574447" y="147.716"/>
|
||||
<use xlink:href="#glyph0-15" x="168.002822" y="147.716"/>
|
||||
<use xlink:href="#glyph0-16" x="171.047393" y="147.716"/>
|
||||
<use xlink:href="#glyph0-4" x="176.582614" y="147.716"/>
|
||||
<use xlink:href="#glyph0-12" x="181.563914" y="147.716"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-27" x="188.755914" y="147.716"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="195.671951" y="147.716"/>
|
||||
<use xlink:href="#glyph0-9" x="200.100327" y="147.716"/>
|
||||
<use xlink:href="#glyph0-7" x="204.002677" y="147.716"/>
|
||||
<use xlink:href="#glyph0-5" x="209.537898" y="147.716"/>
|
||||
<use xlink:href="#glyph0-6" x="213.966274" y="147.716"/>
|
||||
<use xlink:href="#glyph0-28" x="219.501494" y="147.716"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="226.697" y="147.716"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-29" x="235" y="147.716"/>
|
||||
<use xlink:href="#glyph0-14" x="241.226625" y="147.716"/>
|
||||
<use xlink:href="#glyph0-5" x="243.994235" y="147.716"/>
|
||||
<use xlink:href="#glyph0-19" x="248.422611" y="147.716"/>
|
||||
<use xlink:href="#glyph0-13" x="253.957832" y="147.716"/>
|
||||
<use xlink:href="#glyph0-12" x="257.888077" y="147.716"/>
|
||||
<use xlink:href="#glyph0-22" x="261.762532" y="147.716"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-23" x="267.022785" y="147.716"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-21" x="271.172208" y="147.716"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="276.151516" y="147.716"/>
|
||||
<use xlink:href="#glyph0-3" x="280.579891" y="147.716"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="286.667" y="147.716"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-30" x="294.97" y="147.716"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="301.471593" y="147.716"/>
|
||||
<use xlink:href="#glyph0-12" x="305.899968" y="147.716"/>
|
||||
<use xlink:href="#glyph0-5" x="309.774424" y="147.716"/>
|
||||
<use xlink:href="#glyph0-9" x="314.202799" y="147.716"/>
|
||||
<use xlink:href="#glyph0-13" x="318.10515" y="147.716"/>
|
||||
<use xlink:href="#glyph0-14" x="322.035395" y="147.716"/>
|
||||
<use xlink:href="#glyph0-3" x="324.803006" y="147.716"/>
|
||||
<use xlink:href="#glyph0-14" x="327.570616" y="147.716"/>
|
||||
<use xlink:href="#glyph0-5" x="330.338226" y="147.716"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="338.086" y="147.716"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-17" x="346.388" y="147.716"/>
|
||||
<use xlink:href="#glyph0-23" x="351.923221" y="147.716"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-24" x="356.072643" y="147.716"/>
|
||||
<use xlink:href="#glyph0-6" x="361.607864" y="147.716"/>
|
||||
<use xlink:href="#glyph0-14" x="367.143085" y="147.716"/>
|
||||
<use xlink:href="#glyph0-12" x="369.910695" y="147.716"/>
|
||||
<use xlink:href="#glyph0-12" x="373.78515" y="147.716"/>
|
||||
<use xlink:href="#glyph0-3" x="377.659605" y="147.716"/>
|
||||
<use xlink:href="#glyph0-20" x="380.427215" y="147.716"/>
|
||||
<use xlink:href="#glyph0-11" x="385.408515" y="147.716"/>
|
||||
<use xlink:href="#glyph0-23" x="390.943736" y="147.716"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-24" x="395.093159" y="147.716"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 38 KiB |
18
sections/german/08/paralist-extended.tex
Normal file
@ -0,0 +1,18 @@
|
||||
\documentclass[a4paper]{article}
|
||||
\usepackage{lmodern}
|
||||
\usepackage{amssymb,amsmath}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage{paralist}
|
||||
|
||||
\begin{document}
|
||||
\thispagestyle{empty}
|
||||
|
||||
Folgende Kräuter sind für die Soße ebenfalls geeignet und können nach Bedarf beigefügt werden:
|
||||
\begin{inparaitem}
|
||||
\item Liebstöckel
|
||||
\item Petersilie
|
||||
\item Schnittlauch
|
||||
\end{inparaitem}
|
||||
|
||||
\end{document}
|
||||
@ -1,6 +1,6 @@
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h1>🧮<br/>Mathematische Formeln</h1>
|
||||
<h1>Mathematische Formeln</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -8,12 +8,13 @@
|
||||
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2>Formel-Umgebungen</h2>
|
||||
<h2>Formel-Umgebungen <span class="emoji">🧮</span></h2>
|
||||
<pre class="lang-tex hljs"><code>$2 \sqrt{\frac{\pi^2}{3} \cdot c_2}$</code></pre>
|
||||
<p>Die mathematische Umgebung wird durch zwei Dollarzeichen abgegrenzt. Außerdem gibt es eine Blockumgebung.</p>
|
||||
<p>Mathematische Formeln können <strong>nur im sogenannten Mathmode</strong> gesetzt werden, der inline durch zwei Dollarzeichen aktiviert wird. Außerdem gibt es eine Blockumgebung:</p>
|
||||
<pre class="lang-tex hljs"><code>\begin{equation}
|
||||
2 \sqrt{\frac{\pi^2}{3} \cdot c_2}
|
||||
\end{equation}</code></pre>
|
||||
<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%;">
|
||||
@ -31,37 +32,145 @@
|
||||
<th>Ergebnis</th>
|
||||
</tr>
|
||||
<tr class="fragment">
|
||||
<td>`$`<code>\sqrt{16}$</code></td>
|
||||
<td><code>\sqrt{16}</code></td>
|
||||
<td>$\sqrt{16}$</td>
|
||||
</tr>
|
||||
<tr class="fragment">
|
||||
<td>`$`<code>\frac{3}{4}$</code></td>
|
||||
<td><code>\frac{3}{4}</code></td>
|
||||
<td>$\frac{3}{4}$</td>
|
||||
</tr>
|
||||
<tr class="fragment">
|
||||
<td>`$`<code>e^{\pi}$</code></td>
|
||||
<td><code>e^{\pi}</code></td>
|
||||
<td>$e^{\pi}$</td>
|
||||
</tr>
|
||||
<tr class="fragment">
|
||||
<td>`$`<code>\sum\_{i=1}^{n}x^2$</code></td>
|
||||
<td><code>\sum\_{i=1}^{n}x^2</code></td>
|
||||
<td>$\sum_{i=1}^{n} x^2$</td>
|
||||
</tr>
|
||||
<tr class="fragment">
|
||||
<td>`$`<code>12 \leq 4 x^2 + 13$</code></td>
|
||||
<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>
|
||||
</table>
|
||||
<p class="fragment">Durch <code>^{…}</code> und <code>_{…}</code> werden die Inhalte in den Klammern hoch- oder tiefgestellt.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h2>Einige Beispiele</h2>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Quelltext</th>
|
||||
<th>Ergebnis</th>
|
||||
</tr>
|
||||
<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>
|
||||
<td><code>\exists, \forall, \in, \notin, \infty</code></td>
|
||||
<td>$\exists,\forall,\in,\notin,\infty$</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>\alpha, \beta, \Gamma, \Delta, \varepsilon, \pi</code></td>
|
||||
<td>$\alpha, \beta, \Gamma, \Delta, \varepsilon, \pi$</td>
|
||||
</tr>
|
||||
<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 class="fragment">
|
||||
<td>`$`<code>(A \lor B) \land C$</code></td>
|
||||
<tr>
|
||||
<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>
|
||||
<tr>
|
||||
<td><code>(A \cdot B) \times C</code></td>
|
||||
<td>$(A \cdot B) \times C$</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h3>Mitwachsende Klammern</h3>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Quelltext</th>
|
||||
<th>Ergebnis</th>
|
||||
</tr>
|
||||
<tr class="fragment">
|
||||
<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>$\left\lbrace\frac{1}{2} \right\rbrace$</td>
|
||||
</tr>
|
||||
<tr class="fragment">
|
||||
<td><code>\left[ \frac{1}{2} \right]</code></td>
|
||||
<td>$\left[\frac{1}{2} \right]$</td>
|
||||
</tr>
|
||||
</table>
|
||||
<pre class="fragment hljs lang-tex"><code>$4 \cdot \left( \frac{1}{2} % …</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>
|
||||
|
||||
---
|
||||
|
||||
<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 … \\\\
|
||||
&= 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 bei `align` und `equation` durch durch ein Sternchen nach dem Umgebungsnamen (z. B. <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>Seht euch Kapitel 4 an und fügt einen neuen Abschnitt 4.5 mit eurer Lieblings**formel** ein.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
177
sections/german/09/alignment-crop.svg
Normal 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 |
177
sections/german/09/alignment-orig.svg
Normal 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 |
14
sections/german/09/alignment.tex
Normal 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}
|
||||
243
sections/german/09/limits-crop.svg
Normal 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 |
243
sections/german/09/limits-orig.svg
Normal 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 |
14
sections/german/09/limits.tex
Normal 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}
|
||||
@ -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="42pt" height="19pt" viewBox="0 0 42 19" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="44pt" height="25pt" viewBox="0 0 44 25" version="1.1">
|
||||
<defs>
|
||||
<g>
|
||||
<symbol overflow="visible" id="glyph0-0">
|
||||
@ -8,73 +8,64 @@
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<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-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="glyph1-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-1">
|
||||
<path style="stroke:none;" d="M 10.171875 -0.203125 C 10.171875 -0.3125 10.09375 -0.40625 9.96875 -0.40625 C 9.8125 -0.40625 9.78125 -0.265625 9.734375 -0.140625 L 4.625 16.046875 L 2.484375 8.578125 L 1.09375 10.203125 L 1.25 10.34375 L 1.9375 9.546875 L 4.234375 17.546875 C 4.5625 17.546875 4.5625 17.546875 4.640625 17.3125 L 10.125 0 C 10.171875 -0.15625 10.171875 -0.203125 10.171875 -0.203125 Z M 10.171875 -0.203125 "/>
|
||||
<path style="stroke:none;" d="M 10.171875 -0.203125 C 10.171875 -0.3125 10.09375 -0.40625 9.96875 -0.40625 C 9.8125 -0.40625 9.78125 -0.265625 9.75 -0.125 L 4.640625 21.546875 L 2.484375 11.5625 L 1.171875 13.625 C 1.109375 13.703125 1.109375 13.734375 1.109375 13.734375 C 1.109375 13.78125 1.25 13.890625 1.25 13.890625 L 1.921875 12.828125 L 4.234375 23.53125 C 4.5625 23.53125 4.578125 23.53125 4.640625 23.265625 L 10.125 0.015625 C 10.140625 -0.0625 10.171875 -0.15625 10.171875 -0.203125 Z M 10.171875 -0.203125 "/>
|
||||
</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.484375 -2.796875 C 4.484375 -3 4.3125 -3 4.1875 -3 L 1.5625 -3 C 1.28125 -3 1.078125 -2.9375 0.765625 -2.640625 C 0.578125 -2.484375 0.3125 -2.109375 0.3125 -2.046875 C 0.3125 -1.96875 0.40625 -1.96875 0.4375 -1.96875 C 0.515625 -1.96875 0.515625 -1.984375 0.5625 -2.046875 C 0.90625 -2.53125 1.34375 -2.53125 1.5 -2.53125 L 1.921875 -2.53125 C 1.703125 -1.765625 1.328125 -0.9375 1.125 -0.515625 C 1.078125 -0.4375 1.015625 -0.28125 0.984375 -0.265625 C 0.984375 -0.234375 0.96875 -0.203125 0.96875 -0.15625 C 0.96875 -0.046875 1.046875 0.0625 1.21875 0.0625 C 1.484375 0.0625 1.5625 -0.25 1.734375 -0.875 L 2.171875 -2.53125 L 3 -2.53125 C 2.890625 -2.109375 2.734375 -1.484375 2.734375 -0.921875 C 2.734375 -0.640625 2.78125 -0.453125 2.8125 -0.3125 C 2.921875 0.046875 3.015625 0.0625 3.125 0.0625 C 3.296875 0.0625 3.453125 -0.078125 3.453125 -0.25 C 3.453125 -0.296875 3.4375 -0.328125 3.40625 -0.390625 C 3.265625 -0.65625 3.140625 -1.046875 3.140625 -1.625 C 3.140625 -1.75 3.140625 -2.03125 3.234375 -2.53125 L 4.109375 -2.53125 C 4.234375 -2.53125 4.296875 -2.53125 4.375 -2.578125 C 4.46875 -2.65625 4.484375 -2.765625 4.484375 -2.796875 Z M 4.484375 -2.796875 "/>
|
||||
<path style="stroke:none;" d="M 5.65625 -4.0625 C 5.65625 -4.296875 5.4375 -4.296875 5.25 -4.296875 L 1.90625 -4.296875 C 1.6875 -4.296875 1.3125 -4.296875 0.875 -3.828125 C 0.53125 -3.4375 0.265625 -2.984375 0.265625 -2.9375 C 0.265625 -2.9375 0.265625 -2.828125 0.390625 -2.828125 C 0.46875 -2.828125 0.484375 -2.875 0.546875 -2.953125 C 1.03125 -3.71875 1.609375 -3.71875 1.8125 -3.71875 L 2.375 -3.71875 C 2.0625 -2.515625 1.53125 -1.3125 1.109375 -0.40625 C 1.03125 -0.25 1.03125 -0.234375 1.03125 -0.15625 C 1.03125 0.03125 1.1875 0.109375 1.3125 0.109375 C 1.609375 0.109375 1.6875 -0.171875 1.8125 -0.53125 C 1.953125 -1 1.953125 -1.015625 2.078125 -1.515625 L 2.640625 -3.71875 L 3.765625 -3.71875 C 3.4375 -2.25 3.34375 -1.8125 3.34375 -1.140625 C 3.34375 -1 3.34375 -0.734375 3.421875 -0.390625 C 3.53125 0.046875 3.640625 0.109375 3.78125 0.109375 C 3.984375 0.109375 4.203125 -0.0625 4.203125 -0.265625 C 4.203125 -0.328125 4.203125 -0.34375 4.140625 -0.484375 C 3.84375 -1.203125 3.84375 -1.859375 3.84375 -2.140625 C 3.84375 -2.65625 3.921875 -3.203125 4.03125 -3.71875 L 5.15625 -3.71875 C 5.296875 -3.71875 5.65625 -3.71875 5.65625 -4.0625 Z M 5.65625 -4.0625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<path style="stroke:none;" d="M 4.28125 -1.0625 C 4.28125 -1.125 4.234375 -1.203125 4.171875 -1.203125 C 4.109375 -1.203125 4.09375 -1.171875 4.03125 -1.09375 C 3.25 -0.109375 2.15625 -0.109375 2.046875 -0.109375 C 1.421875 -0.109375 1.140625 -0.59375 1.140625 -1.203125 C 1.140625 -1.609375 1.34375 -2.578125 1.6875 -3.1875 C 2 -3.765625 2.546875 -4.1875 3.09375 -4.1875 C 3.421875 -4.1875 3.8125 -4.0625 3.953125 -3.78125 C 3.78125 -3.78125 3.65625 -3.78125 3.515625 -3.65625 C 3.34375 -3.5 3.328125 -3.328125 3.328125 -3.265625 C 3.328125 -3.015625 3.515625 -2.90625 3.703125 -2.90625 C 3.984375 -2.90625 4.25 -3.15625 4.25 -3.546875 C 4.25 -4.03125 3.78125 -4.40625 3.078125 -4.40625 C 1.734375 -4.40625 0.40625 -2.984375 0.40625 -1.578125 C 0.40625 -0.671875 0.984375 0.109375 2.03125 0.109375 C 3.453125 0.109375 4.28125 -0.953125 4.28125 -1.0625 Z M 4.28125 -1.0625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-1">
|
||||
<path style="stroke:none;" d="M 2.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 "/>
|
||||
<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.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="glyph4-2">
|
||||
<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="glyph5-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-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-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-1">
|
||||
<path style="stroke:none;" d="M 4.28125 -1.0625 C 4.28125 -1.125 4.234375 -1.203125 4.171875 -1.203125 C 4.109375 -1.203125 4.09375 -1.171875 4.03125 -1.09375 C 3.25 -0.109375 2.15625 -0.109375 2.046875 -0.109375 C 1.421875 -0.109375 1.140625 -0.59375 1.140625 -1.203125 C 1.140625 -1.609375 1.34375 -2.578125 1.6875 -3.1875 C 2 -3.765625 2.546875 -4.1875 3.09375 -4.1875 C 3.421875 -4.1875 3.8125 -4.0625 3.953125 -3.78125 C 3.78125 -3.78125 3.65625 -3.78125 3.515625 -3.65625 C 3.34375 -3.5 3.328125 -3.328125 3.328125 -3.265625 C 3.328125 -3.015625 3.515625 -2.90625 3.703125 -2.90625 C 3.984375 -2.90625 4.25 -3.15625 4.25 -3.546875 C 4.25 -4.03125 3.78125 -4.40625 3.078125 -4.40625 C 1.734375 -4.40625 0.40625 -2.984375 0.40625 -1.578125 C 0.40625 -0.671875 0.984375 0.109375 2.03125 0.109375 C 3.453125 0.109375 4.28125 -0.953125 4.28125 -1.0625 Z M 4.28125 -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.254" y="12.53"/>
|
||||
<use xlink:href="#glyph0-1" x="-0.251" y="16.795"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="4.727" y="0.705"/>
|
||||
<use xlink:href="#glyph1-1" x="4.731" y="0.664"/>
|
||||
</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.00140625 -0.0018125 L 27.165469 -0.0018125 " transform="matrix(1,0,0,-1,14.69,0.506)"/>
|
||||
<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.00159375 0.00015625 L 28.873406 0.00015625 " transform="matrix(1,0,0,-1,14.693,0.465)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="15.885" y="8.607"/>
|
||||
<use xlink:href="#glyph2-1" x="15.889" y="10.055"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="20.794" y="6.615"/>
|
||||
<use xlink:href="#glyph3-1" x="21.925" y="7.177"/>
|
||||
</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.00171875 -0.0000625 L 8.798594 -0.0000625 " transform="matrix(1,0,0,-1,15.885,10.039)"/>
|
||||
<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.001625 -0.0006875 L 10.505531 -0.0006875 " transform="matrix(1,0,0,-1,15.889,14.304)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="18.299" y="15.965"/>
|
||||
<use xlink:href="#glyph0-2" x="18.651" y="23.629"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-1" x="28.092" y="12.53"/>
|
||||
<use xlink:href="#glyph4-1" x="29.804" y="16.795"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph6-1" x="33.074" y="12.53"/>
|
||||
<use xlink:href="#glyph2-2" x="34.785" y="16.795"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-2" x="37.385" y="14.024"/>
|
||||
<use xlink:href="#glyph3-1" x="39.097" y="18.289"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 8.9 KiB After Width: | Height: | Size: 8.0 KiB |
@ -8,73 +8,64 @@
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<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-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="glyph1-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-1">
|
||||
<path style="stroke:none;" d="M 10.171875 -0.203125 C 10.171875 -0.3125 10.09375 -0.40625 9.96875 -0.40625 C 9.8125 -0.40625 9.78125 -0.265625 9.734375 -0.140625 L 4.625 16.046875 L 2.484375 8.578125 L 1.09375 10.203125 L 1.25 10.34375 L 1.9375 9.546875 L 4.234375 17.546875 C 4.5625 17.546875 4.5625 17.546875 4.640625 17.3125 L 10.125 0 C 10.171875 -0.15625 10.171875 -0.203125 10.171875 -0.203125 Z M 10.171875 -0.203125 "/>
|
||||
<path style="stroke:none;" d="M 10.171875 -0.203125 C 10.171875 -0.3125 10.09375 -0.40625 9.96875 -0.40625 C 9.8125 -0.40625 9.78125 -0.265625 9.75 -0.125 L 4.640625 21.546875 L 2.484375 11.5625 L 1.171875 13.625 C 1.109375 13.703125 1.109375 13.734375 1.109375 13.734375 C 1.109375 13.78125 1.25 13.890625 1.25 13.890625 L 1.921875 12.828125 L 4.234375 23.53125 C 4.5625 23.53125 4.578125 23.53125 4.640625 23.265625 L 10.125 0.015625 C 10.140625 -0.0625 10.171875 -0.15625 10.171875 -0.203125 Z M 10.171875 -0.203125 "/>
|
||||
</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.484375 -2.796875 C 4.484375 -3 4.3125 -3 4.1875 -3 L 1.5625 -3 C 1.28125 -3 1.078125 -2.9375 0.765625 -2.640625 C 0.578125 -2.484375 0.3125 -2.109375 0.3125 -2.046875 C 0.3125 -1.96875 0.40625 -1.96875 0.4375 -1.96875 C 0.515625 -1.96875 0.515625 -1.984375 0.5625 -2.046875 C 0.90625 -2.53125 1.34375 -2.53125 1.5 -2.53125 L 1.921875 -2.53125 C 1.703125 -1.765625 1.328125 -0.9375 1.125 -0.515625 C 1.078125 -0.4375 1.015625 -0.28125 0.984375 -0.265625 C 0.984375 -0.234375 0.96875 -0.203125 0.96875 -0.15625 C 0.96875 -0.046875 1.046875 0.0625 1.21875 0.0625 C 1.484375 0.0625 1.5625 -0.25 1.734375 -0.875 L 2.171875 -2.53125 L 3 -2.53125 C 2.890625 -2.109375 2.734375 -1.484375 2.734375 -0.921875 C 2.734375 -0.640625 2.78125 -0.453125 2.8125 -0.3125 C 2.921875 0.046875 3.015625 0.0625 3.125 0.0625 C 3.296875 0.0625 3.453125 -0.078125 3.453125 -0.25 C 3.453125 -0.296875 3.4375 -0.328125 3.40625 -0.390625 C 3.265625 -0.65625 3.140625 -1.046875 3.140625 -1.625 C 3.140625 -1.75 3.140625 -2.03125 3.234375 -2.53125 L 4.109375 -2.53125 C 4.234375 -2.53125 4.296875 -2.53125 4.375 -2.578125 C 4.46875 -2.65625 4.484375 -2.765625 4.484375 -2.796875 Z M 4.484375 -2.796875 "/>
|
||||
<path style="stroke:none;" d="M 5.65625 -4.0625 C 5.65625 -4.296875 5.4375 -4.296875 5.25 -4.296875 L 1.90625 -4.296875 C 1.6875 -4.296875 1.3125 -4.296875 0.875 -3.828125 C 0.53125 -3.4375 0.265625 -2.984375 0.265625 -2.9375 C 0.265625 -2.9375 0.265625 -2.828125 0.390625 -2.828125 C 0.46875 -2.828125 0.484375 -2.875 0.546875 -2.953125 C 1.03125 -3.71875 1.609375 -3.71875 1.8125 -3.71875 L 2.375 -3.71875 C 2.0625 -2.515625 1.53125 -1.3125 1.109375 -0.40625 C 1.03125 -0.25 1.03125 -0.234375 1.03125 -0.15625 C 1.03125 0.03125 1.1875 0.109375 1.3125 0.109375 C 1.609375 0.109375 1.6875 -0.171875 1.8125 -0.53125 C 1.953125 -1 1.953125 -1.015625 2.078125 -1.515625 L 2.640625 -3.71875 L 3.765625 -3.71875 C 3.4375 -2.25 3.34375 -1.8125 3.34375 -1.140625 C 3.34375 -1 3.34375 -0.734375 3.421875 -0.390625 C 3.53125 0.046875 3.640625 0.109375 3.78125 0.109375 C 3.984375 0.109375 4.203125 -0.0625 4.203125 -0.265625 C 4.203125 -0.328125 4.203125 -0.34375 4.140625 -0.484375 C 3.84375 -1.203125 3.84375 -1.859375 3.84375 -2.140625 C 3.84375 -2.65625 3.921875 -3.203125 4.03125 -3.71875 L 5.15625 -3.71875 C 5.296875 -3.71875 5.65625 -3.71875 5.65625 -4.0625 Z M 5.65625 -4.0625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<path style="stroke:none;" d="M 4.28125 -1.0625 C 4.28125 -1.125 4.234375 -1.203125 4.171875 -1.203125 C 4.109375 -1.203125 4.09375 -1.171875 4.03125 -1.09375 C 3.25 -0.109375 2.15625 -0.109375 2.046875 -0.109375 C 1.421875 -0.109375 1.140625 -0.59375 1.140625 -1.203125 C 1.140625 -1.609375 1.34375 -2.578125 1.6875 -3.1875 C 2 -3.765625 2.546875 -4.1875 3.09375 -4.1875 C 3.421875 -4.1875 3.8125 -4.0625 3.953125 -3.78125 C 3.78125 -3.78125 3.65625 -3.78125 3.515625 -3.65625 C 3.34375 -3.5 3.328125 -3.328125 3.328125 -3.265625 C 3.328125 -3.015625 3.515625 -2.90625 3.703125 -2.90625 C 3.984375 -2.90625 4.25 -3.15625 4.25 -3.546875 C 4.25 -4.03125 3.78125 -4.40625 3.078125 -4.40625 C 1.734375 -4.40625 0.40625 -2.984375 0.40625 -1.578125 C 0.40625 -0.671875 0.984375 0.109375 2.03125 0.109375 C 3.453125 0.109375 4.28125 -0.953125 4.28125 -1.0625 Z M 4.28125 -1.0625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-1">
|
||||
<path style="stroke:none;" d="M 2.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 "/>
|
||||
<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.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="glyph4-2">
|
||||
<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="glyph5-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-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-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-1">
|
||||
<path style="stroke:none;" d="M 4.28125 -1.0625 C 4.28125 -1.125 4.234375 -1.203125 4.171875 -1.203125 C 4.109375 -1.203125 4.09375 -1.171875 4.03125 -1.09375 C 3.25 -0.109375 2.15625 -0.109375 2.046875 -0.109375 C 1.421875 -0.109375 1.140625 -0.59375 1.140625 -1.203125 C 1.140625 -1.609375 1.34375 -2.578125 1.6875 -3.1875 C 2 -3.765625 2.546875 -4.1875 3.09375 -4.1875 C 3.421875 -4.1875 3.8125 -4.0625 3.953125 -3.78125 C 3.78125 -3.78125 3.65625 -3.78125 3.515625 -3.65625 C 3.34375 -3.5 3.328125 -3.328125 3.328125 -3.265625 C 3.328125 -3.015625 3.515625 -2.90625 3.703125 -2.90625 C 3.984375 -2.90625 4.25 -3.15625 4.25 -3.546875 C 4.25 -4.03125 3.78125 -4.40625 3.078125 -4.40625 C 1.734375 -4.40625 0.40625 -2.984375 0.40625 -1.578125 C 0.40625 -0.671875 0.984375 0.109375 2.03125 0.109375 C 3.453125 0.109375 4.28125 -0.953125 4.28125 -1.0625 Z M 4.28125 -1.0625 "/>
|
||||
</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="138.42"/>
|
||||
<use xlink:href="#glyph0-1" x="274.749" y="153.685"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="144.727" y="126.595"/>
|
||||
<use xlink:href="#glyph1-1" x="279.731" y="137.554"/>
|
||||
</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.00140625 0.00146875 L 27.165469 0.00146875 " transform="matrix(1,0,0,-1,154.69,126.396)"/>
|
||||
<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.00159375 -0.00046875 L 28.873406 -0.00046875 " transform="matrix(1,0,0,-1,289.693,137.355)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="155.885" y="134.497"/>
|
||||
<use xlink:href="#glyph2-1" x="290.889" y="146.945"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="160.794" y="132.505"/>
|
||||
<use xlink:href="#glyph3-1" x="296.925" y="144.067"/>
|
||||
</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.00171875 -0.0006875 L 8.798594 -0.0006875 " transform="matrix(1,0,0,-1,155.885,135.929)"/>
|
||||
<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.001625 -0.0013125 L 10.505531 -0.0013125 " transform="matrix(1,0,0,-1,290.889,151.194)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="158.299" y="141.855"/>
|
||||
<use xlink:href="#glyph0-2" x="293.651" y="160.519"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-1" x="168.092" y="138.42"/>
|
||||
<use xlink:href="#glyph4-1" x="304.804" y="153.685"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph6-1" x="173.074" y="138.42"/>
|
||||
<use xlink:href="#glyph2-2" x="309.785" y="153.685"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-2" x="177.385" y="139.914"/>
|
||||
<use xlink:href="#glyph3-1" x="314.097" y="155.179"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 9.0 KiB After Width: | Height: | Size: 8.0 KiB |
@ -7,6 +7,8 @@
|
||||
\begin{document}
|
||||
\thispagestyle{empty}
|
||||
|
||||
$2 \sqrt{\frac{\pi^2}{3} \cdot c_2}$
|
||||
$$
|
||||
2 \sqrt{\frac{\pi^2}{3} \cdot c_2}
|
||||
$$
|
||||
|
||||
\end{document}
|
||||
|
||||
@ -1,31 +1,115 @@
|
||||
TODO: Listings
|
||||
<div class="layout-content-only">
|
||||
<div class="layout-content">
|
||||
<h1>Quelltext-Listings</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<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!");
|
||||
<h2>Installation <span class="emoji">🖥️</span></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 <strong><code>Optionen > TeXstudio konfigurieren > Befehle</code></strong>
|
||||
bei <code>PdfLaTeX</code> vor <code>%.tex</code> ergänzt werden:
|
||||
</p>
|
||||
<p>
|
||||
<code style="font-size:85%;">pdflatex -syntex=1 -interaction=nonstopmode <strong>--shell-escape</strong> %.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 % …
|
||||
\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(/\*…\*/) {
|
||||
System.out.println("Hello, World!");
|
||||
}
|
||||
}
|
||||
\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">
|
||||
}</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>Abschnitt 2.4 enthält zwei **Listings.** Lagert den Inhalt in zwei neue Dateien aus und bindet sie mit `\inputminted` ein.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
5
sections/german/10/Test.java
Normal file
@ -0,0 +1,5 @@
|
||||
public class Test {
|
||||
public static void main(String[] args) {
|
||||
System.out.println("Hello, World!");
|
||||
}
|
||||
}
|
||||
481
sections/german/10/minted-haskell-crop.svg
Normal 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 |
481
sections/german/10/minted-haskell-orig.svg
Normal 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 |
21
sections/german/10/minted-haskell.tex
Normal 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}
|
||||
369
sections/german/10/minted-java-crop.svg
Normal 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 |
369
sections/german/10/minted-java-orig.svg
Normal 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 |
14
sections/german/10/minted-java.tex
Normal 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}
|
||||
1364
sections/german/10/minted-overview-crop.svg
Normal file
|
After Width: | Height: | Size: 128 KiB |
1364
sections/german/10/minted-overview-orig.svg
Normal file
|
After Width: | Height: | Size: 129 KiB |