Update website source

This commit is contained in:
Ines Montani 2016-09-30 20:29:03 +02:00
parent 7245c26f92
commit 970ec145d9
60 changed files with 2597 additions and 431 deletions

View File

@ -3,6 +3,10 @@
"landing": true
},
"consulting": {
"landing": true
},
"feed": {
"layout": false
},
@ -16,16 +20,6 @@
"asides": false
},
"team": {
"title": "Team"
},
"legal": {
"title": "Legal & Imprint",
"sidebar": true,
"asides": true
},
"styleguide": {
"title" : "Styleguide",
"standalone" : true,

View File

@ -1,94 +0,0 @@
from __future__ import print_function
from fabric.api import local
import os
import hashlib
import mimetypes
import shutil
import boto.s3.connection
mimetypes.init()
buckets = {
'staging': 'staging.spacy.io',
'production': 'spacy.io',
}
def compile():
shutil.rmtree('www')
local('NODE_ENV=s3 harp compile')
def publish(env='staging', site_path='www'):
os.environ['S3_USE_SIGV4'] = 'True'
conn = boto.s3.connection.S3Connection(host='s3.eu-central-1.amazonaws.com',
calling_format=boto.s3.connection.OrdinaryCallingFormat())
bucket = conn.get_bucket(buckets[env], validate=False)
keys = {k.name: k for k in bucket.list()}
keys_left = set(keys)
for root, dirnames, filenames in os.walk(site_path):
for dirname in dirnames:
target = os.path.relpath(os.path.join(root, dirname), site_path)
source = os.path.join(target, 'index.html')
if os.path.exists(os.path.join(root, dirname, 'index.html')):
redirect = '//%s/%s' % (bucket.name, target)
key = bucket.lookup(source)
if not key:
key = bucket.new_key(source)
key.set_redirect(redirect)
print('setting redirect for %s' % target)
elif key.get_redirect() != redirect:
key.set_redirect(redirect)
print('setting redirect for %s' % target)
if source in keys_left:
keys_left.remove(source)
for filename in filenames:
source = os.path.join(root, filename)
if filename == 'index.html':
target = os.path.normpath(os.path.relpath(root, site_path))
if target == '.':
target = filename
else:
target = os.path.normpath(os.path.join(os.path.relpath(root, site_path), filename))
if target.endswith('.html'):
target = target[:-len('.html')]
content_type = mimetypes.guess_type(source)[0]
cache_control = 'no-transform,public,max-age=300,s-maxage=300'
checksum = hashlib.md5(open(source).read()).hexdigest()
if (target not in keys
or keys[target].etag.replace('"', '') != checksum):
key = bucket.new_key(target)
if content_type:
key.content_type = content_type
key.set_contents_from_filename(source,
headers={'Cache-Control': cache_control})
print('uploading %s' % target)
elif content_type:
key = bucket.lookup(target)
if (key
and (key.content_type != content_type
or key.cache_control != cache_control)):
key.copy(key.bucket, key.name, preserve_acl=True,
metadata={'Content-Type': content_type,
'Cache-Control': cache_control})
print('update headers %s' % target)
if target in keys_left:
keys_left.remove(target)
for key_name in keys_left:
print('deleting %s' % key_name)
bucket.delete_key(key_name)

View File

@ -6,10 +6,9 @@
"description": "spaCy is a free open-source library featuring state-of-the-art speed and accuracy and a powerful Python API.",
"url": "https://spacy.io",
"email": "contact@spacy.io",
"company": "spaCy GmbH",
"team_members": [ "henning", "matt", "wolfgang", "elmar", "ines" ],
"company": "spaCy.io",
"navigation": { "Docs": "docs", "Demos": "demos", "Team": "team", "Blog": "blog" },
"navigation": { "Docs": "docs", "Demos": "demos", "Blog": "blog" },
"profiles": { "twitter": "spacy_io", "github": "spacy-io", "reddit": "spacynlp", "medium": "spacy" },
"google_analytics": "UA-58931649-1",
@ -19,66 +18,37 @@
"image_sizes" : { "small" : "640", "medium": "1440", "large": "2000" },
"default_syntax" : "python",
"spacy_version": "0.100.6",
"spacy_stars": "1500",
"spacy_version": "0.101.0",
"spacy_stars": "2100",
"github_settings": { "user": "spacy-io", "repo": "spacy" },
"apis": {
"displacy": "https://displacy.spacy.io/",
"sense2vec": "https://sense2vec.spacy.io/api/similarity/reddit/"
},
"authors" : {
"matt" : {
"name" : "Matthew Honnibal",
"title": "CTO",
"description" : "is co-founder and CTO of spaCy. He studied linguistics as an undergrad, and never thought he'd be a programmer. By 2009 he had a PhD in computer science, and in 2014 he left academia to write spaCy. He's from Sydney and lives in Berlin.",
"description" : "studied linguistics as an undergrad, and never thought he'd be a programmer. By 2009 he had a PhD in computer science, and in 2014 he left academia to write spaCy. He's from Sydney and lives in Berlin.",
"links": {
"twitter": [ "https://twitter.com/honnibal", "Twitter" ],
"website": [ "https://www.semanticscholar.org/search?q=Matthew%20Honnibal", "Semantic Scholar" ]
}
},
"henning": {
"name": "Henning Peters",
"title": "CEO",
"description": "is co-founder and CEO of spaCy. He holds a MSc in computer science and has been co-founder and CTO of Skoobe and Absolventa. His passions are uncommon languages and backcountry skiing.",
"links": {
"twitter": [ "https://twitter.com/henningpeters", "Twitter"],
"linkedin": [ "https://de.linkedin.com/in/hepeters", "LinkedIn"],
"github": [ "https://github.com/henningpeters", "GitHub"]
}
},
"ines": {
"name": "Ines Montani",
"title": "Front-End",
"description": "As Head of Front-End, Ines is in charge of showing people what spaCy can do. She develops, designs and implements our interactive demos and the spacy.io website. Ines has a degree in media, linguistics and communications, and over ten years experience in web development.",
"description": "has developed, designed and implemented our interactive demos and the spacy.io website. She has a degree in media, linguistics and communications, and over ten years experience in web development.",
"links": {
"twitter": [ "https://twitter.com/_inesmontani", "Twitter" ],
"codepen": [ "https://codepen.io/inesmontani", "Codepen"],
"github": [ "https://github.com/inesmontani", "GitHub"],
"codepen": [ "https://codepen.io/ines", "Codepen"],
"github": [ "https://github.com/ines", "GitHub"],
"website": [ "http://ines.io", "Blog" ]
}
},
"wolfgang": {
"name": "Wolfgang Seeker",
"title": "NLP Engineer",
"description": "is a computational linguist from Germany. He is fascinated with the complexity and variety of human language, and spent his PhD looking for ways to make NLP work well with any kind of language in the world. He joined spaCy to build effective and truly multilingual NLP software.",
"links": {
"website": [ "https://www.semanticscholar.org/search?q=Wolfgang%20Seeker", "Semantic Scholar" ]
}
},
"elmar": {
"name": "Elmar Haußmann",
"title": "NLP Engineer",
"description": "is an NLP engineer at spaCy, passionate about deep learning. He has a background in both, academic research, with a PhD in computer science, and industry, as a former consultant and software engineer at IBM. Originally from Stuttgart, the avid snowboarder and mountain biker doesn't only ride powder and trails but also covers distances via plane between the spaCy office in Berlin and his new home in Beijing.",
"links": {
"github": [ "https://github.com/elmar-haussmann", "GitHub"],
"twitter": [ "https://twitter.com/elhaussmann", "Twitter" ]
}
}
}
}

View File

@ -7,9 +7,9 @@ article.article(id=current.source)
header.article-header
+h2.article-title=title
.article-meta
.article-meta
if author
| by #[a.link(href=(authors[author].url || url) target='_blank')=authors[author].name] on
| by #[a.link(href=(authors[author].url || url) target='_blank')=authors[author].name] on  
| #[+date(date)]
.article-body!=yield
@ -17,12 +17,13 @@ article.article(id=current.source)
footer.article-footer
+grid('padding', 'align-right', 'valign-center')
+tweet(title)
if hide_social != true
+tweet(title)
if links
for link, index in links
div: +button('primary', 'small', index.toLowerCase())(href=link target='_blank')
+icon(index.toLowerCase(), 'medium', 'secondary')
+icon(index.toLowerCase(), 'medium', 'secondary')
| Discussion on #{index}
if author

View File

@ -5,7 +5,6 @@ include _mixins
footer.footer
span © #{new Date().getFullYear()} #{company}
a(href='/legal') Legal / Imprint
a(href='https://twitter.com/' + profiles.twitter target='_blank' aria-label="Twitter")
+icon('twitter', 'secondary')

View File

@ -93,7 +93,7 @@
- function getMetaImage() {
- if(current.path[0] == 'blog' && image && image.file) {
- return url + '/blog/img/' + image.file;
- return url + '/blog/img/' + (image.file_small || image.file);
- }
- else {
- return url + '/assets/img/social.png';

View File

@ -1,8 +1,5 @@
include _mixins
- var is_blog = (_section == 'blog')
//- Head
//- ============================================================================
@ -12,6 +9,7 @@ head
meta(charset='utf-8')
meta(name="viewport" content="width=device-width, initial-scale=1.0")
meta(name='referrer' content='always')
meta(name='description' content=description)
meta(property='og:type' content='website')
meta(property='og:site_name' content=sitename)
@ -27,5 +25,3 @@ head
meta(name='twitter:image' content=getMetaImage())
link(rel='icon' type='image/x-icon' href='/assets/img/favicon.ico')
link(href='/assets/css/' + ((is_blog) ? stylesheets.blog : stylesheets.default) + '.css' rel='stylesheet')
link(href='/' + feed rel='alternate' type='application/rss+xml' title='RSS')

View File

@ -169,9 +169,9 @@ mixin icon(type, ...style)
alt - [string] descriptive alt text (optional)
caption - [string] image caption (optional)
mixin image(file, alt, caption)
mixin image(file, alt, caption, size)
figure.image-container&attributes(attributes)
img(src='img/' + file alt=alt)
img(src='img/' + file alt=alt class=(size) ? 'image--' + size : '')
if caption
figcaption.text-caption=caption
@ -306,7 +306,8 @@ mixin infobox(label)
mixin alert(button)
.alert&attributes(attributes)
block
span
block
if button
+form-button('primary', 'small')(onclick='this.parentNode.parentNode.removeChild(this.parentNode);')=button

View File

@ -3,6 +3,7 @@ include _includes/_mixins
- var _section = current.path[0]
- var _site = current.source
- var is_blog = (_section == 'blog')
- var is_article = ( (_section == 'blog' && _site != 'index') || template == 'article')
- var has_asides = (is_article || (_section == 'docs' && asides != false) || asides)
@ -14,6 +15,8 @@ doctype html
html(lang="en")
!=partial("_includes/_head", { _section: _section })
link(href='/assets/css/' + ((is_blog) ? stylesheets.blog : stylesheets.default) + '.css' rel='stylesheet')
link(href='/' + feed rel='alternate' type='application/rss+xml' title='RSS')
body.body
!=partial('_includes/_nav', { _section: _section, _site: _site })
@ -36,7 +39,7 @@ html(lang="en")
!=yield
!=partial('_includes/_footer')
each script in scripts
script(src='/assets/js/' + script + '.js', type='text/javascript')

View File

@ -2,10 +2,11 @@
// ============================================================================
$alert-background : color(white)
$alert-border : 1px solid
$alert-border : 2px solid
$alert-close-size : 2.25rem
$alert-color : color($theme)
$alert-padding : 1.5rem 2rem
$alert-shadow : 0 0 10px rgba(color(black), 0.25)
// Style
@ -20,6 +21,7 @@ $alert-padding : 1.5rem 2rem
align-items: center
background: $alert-background
border-top: $alert-border
box-shadow: $alert-shadow
color: $alert-color
display: flex
justify-content: space-between

View File

@ -5,6 +5,9 @@ $image-background : color(grey, light)
$image-profile-margin : 1rem 3rem
$image-profile-width : $width-profile
$image-ratio : $image-ratio
$image-width-l : 100%
$image-width-m : 75%
$image-width-s : 50%
// Images - Style
@ -29,7 +32,22 @@ $image-ratio : $image-ratio
shape-outside: circle()
// Global image ratio
// Image sizes
// .image--small - small width
// .image--medium - medium width
// .image--large - large width
.image--small
width: $image-width-s
.image--medium
width: $image-width-m
.image--large
width: $image-width-l
// Global image ratio
.image-ratio
background: $image-background

View File

@ -3,7 +3,7 @@
$footer-background : color($theme) pattern($theme)
$footer-color : color(white)
$footer-padding : 2.75rem
$footer-padding : 2.75rem 0 7.5rem 0
$footer-text-align : center
@ -16,5 +16,6 @@ $footer-text-align : center
color: $footer-color
overflow: auto
padding: $footer-padding
position: relative
text-align: $footer-text-align
z-index: 100
z-index: 200

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 644 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 89 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 401 KiB

View File

@ -4,6 +4,81 @@
"title" : "Blog"
},
"announcement" : {
"title": "Important Announcement",
"date": "2016-08-09",
"description": "Dear spaCy users, Unfortunately, we (Henning Peters and Matthew Honnibal) are parting ways. Breaking up is never easy, and it's taken us a while to get our stuff together. Hopefully, you didn't notice anything was up — if you did, we hope you haven't been inconvenienced.",
"image": {
"file": "introducing-spacy.jpg",
"file_small": "introducing-spacy_small.jpg",
"file_large": "introducing-spacy_large.jpg"
},
"links": false,
"hide_social": true
},
"syntaxnet-in-context": {
"title": "SyntaxNet in context: Understanding Google's new TensorFlow NLP model",
"date": "2016-05-13",
"author": "matt",
"description": "Yesterday, Google open sourced their Tensorflow-based dependency parsing library, SyntaxNet. The library gives access to a line of neural network parsing models published by Google researchers over the last two years. I've been following this work closely since it was published, and have been looking forward to the software being published. This post tries to provide some context around the release — what's new here, and how important is it?",
"image": {
"file": "syntaxnet.jpg",
"file_small": "syntaxnet_small.jpg",
"file_large": "syntaxnet_large.jpg",
"credit": "Kemal Sanli",
"url": "https://dribbble.com/kemal"
},
"links": false
},
"german-model": {
"title": "spaCy now speaks German",
"date": "2016-05-09",
"author": "wolfgang",
"description": "Many people have asked us to make spaCy available for their language. Being based in Berlin, German was an obvious choice for our first second language. Now spaCy can do all the cool things you use for processing English on German text too. But more importantly, teaching spaCy to speak German required us to drop some comfortable but English-specific assumptions about how language works and made spaCy fit to learn more languages in the future.",
"image": {
"file": "german.jpg",
"file_small": "german_small.jpg",
"file_large": "german_large.jpg",
"credit": "Kemal Sanli",
"url": "https://dribbble.com/kemal"
},
"links": {
"HackerNews": "https://news.ycombinator.com/item?id=11690212"
}
},
"multithreading-with-cython": {
"title": "Multi-threading spaCy's parser and named entity recogniser",
"date": "2016-05-11",
"author": "matt",
"description": "In v0.100.3, we quietly rolled out support for GIL-free multi-threading for spaCy's syntactic dependency parsing and named entity recognition models. Because these models take up a lot of memory, we've wanted to release the global interpretter lock (GIL) around them for a long time. When we finally did, it seemed a little too good to be true, so we delayed celebration — and then quickly moved on to other things. It's now past time for a write-up.",
"image" : {
"file": "cython.jpg",
"file_small": "cython_small.jpg",
"file_large": "cython_large.jpg",
"credit": "Kemal Sanli",
"url": "https://dribbble.com/kemal"
},
"links": false
},
"eli5-computers-learn-reading": {
"title": "Statistical NLP in the Ten Hundred Most Common English Words",
"date": "2016-04-04",
"author": "matt",
"description": "When I was little, my favorite TV shows all had talking computers. Now Im big and there are still no talking computers, so Im trying to make some myself. Well, we can make computers say things. But when we say things back, they dont really understand. Why not?",
"image" : {
"file": "basic-english.jpg",
"file_small": "basic-english_small.jpg",
"file_large": "basic-english_large.jpg",
"credit": "Kemal Sanli",
"url": "https://dribbble.com/kemal"
},
"links": false
},
"modular-markup": {
"title": "Rebuilding a Website with Modular Markup Components",
"date": "2016-03-31",
@ -71,24 +146,9 @@
}
},
"eli5-computers-learn-reading": {
"title": "Statistical NLP in Basic English",
"date": "2015-08-24",
"author": "matt",
"description": "When I was little, my favorite TV shows all had talking computers. Now Im big and there are still no talking computers, so Im trying to make some myself. Well, we can make computers say things. But when we say things back, they dont really understand. Why not?",
"image" : {
"file": "basic-english.jpg",
"file_small": "basic-english_small.jpg",
"file_large": "basic-english_large.jpg",
"credit": "Kemal Sanli",
"url": "https://dribbble.com/kemal"
},
"links": false
},
"displacy": {
"displacy-dependency-visualizer": {
"featured": true,
"title": "Displaying Linguistic Structure With CSS",
"title": "Displaying Linguistic Structure with CSS",
"date": "2015-08-19",
"author": "matt",
"description": "One of the features of the relaunch I'm most excited about is the displaCy visualizer and annotation tool. This solves two problems I've thought about a lot: first, how can I help people understand what information spaCy gives them access to? Without a good visualization, the ideas are very abstract. Second, how can we make dependency trees easy for humans to create?",

View File

@ -0,0 +1,9 @@
include ../_includes/_mixins
+lead Dear spaCy users,
p Unfortunately, we (Henning Peters and Matthew Honnibal) are parting ways. Breaking up is never easy, and it's taken us a while to get our stuff together. Hopefully, you didn't notice anything was up — if you did, we hope you haven't been inconvenienced.
p Here's how this is going to work: Matt will continue to develop and maintain spaCy and all related projects under his name. Nothing will change for you. Henning will take over our legal structure and start a new business under a new name.
p Sincerely,#[br] Henning Peters and Matthew Honnibal

View File

@ -1,12 +1,12 @@
include ../_includes/_mixins
+lead As told with the #[a(href="http://splasho.com/upgoer5/" target="_blank") ten hundred most common words] that I speak.
+lead Because we've been doing the same thing for a long time, sometimes we get very used to talking about our work in words that most people don't use. So, here's another take on it, in the style of #[a(href="https://xkcd.com/thing-explainer/" target="_blank") thing explainer].
p When I was little, my favorite TV shows all had talking computers. Now I'm big and there are still no talking computers. At least, not really talking. We can make them, like, say things — but I want them to tell us things. And I want them to listen, and to read. Why is this so hard?
p When I was little, my favorite TV shows all had talking computers. Now I'm big and there are still no talking computers. At least, not really talking. We can make them, like, #[em say] things — but I want them to #[em tell us] things. And I want them to listen, and to read. Why is this so hard?
p It turns out that almost anything we say could mean many many different things, but we don't notice because almost all of those meanings would be weird or stupid or just not possible. If I say:
+example: a(href="http://spacy.io/displacy/?full=I%20saw%20a%20movie%20in%20a%20dress" target="_blank") I saw a movie in a dress
+example: a(href="http://spacy.io/demos/displacy?full=I%20saw%20a%20movie%20in%20a%20dress" target="_blank") I saw a movie in a dress
p Would you ever ask me,
@ -14,16 +14,22 @@ p Would you ever ask me,
p It's weird to even think of that. But a computer just might, because there are other cases like:
+example: a(href="http://spacy.io/displacy/?full=The%20TV%20showed%20a%20girl%20in%20a%20dress" target="_blank") The TV showed a girl in a dress
+example: a(href="http://spacy.io/demos/displacy?full=The%20TV%20showed%20a%20girl%20in%20a%20dress" target="_blank") The TV showed a girl in a dress
p Where the words hang together in the other way. People used to think that the answer was to tell the computer lots and lots of facts. But then you wake up one day and you're writing facts like #[em movies do not wear dresses], and you wonder where it all went wrong. Actually it's even worse than that. Not only are there too many facts, most of them are not even really facts! #[a(href="https://en.wikipedia.org/wiki/Cyc" target="_blank") People really tried this]. We've found that the world is made up of #[em if]s and #[em but]s.
+aside('Unconstrained Vocabulary').
If you have a fixed constraint like #[em People wear dresses], and #[em Movies are not people], how does the system cope when someone talks about #[em dressing a script]? Even if nobody has ever said this before, someone might in future. Language is creative, and exceptions are the rule.
p These days we just show the computer lots and lots and lots of words. We gave up trying to get it to understand what a “dress” is. We let #[em dress] be just some letters. But if it is seen it around #[em girl] enough times (which is just some other letters, which are seen around some #[strong other] other letters), it can make good guesses.
p It doesn't always guess right, but we can tell how often it does, and we can think of ways t help it learn better. We have a number, and we can slowly make it bigger, a little bit by a little bit.
p It doesn't always guess right, but we can tell how often it does, and we can think of ways it help it learn better. We have a number, and we can slowly make it bigger, a little bit by a little bit.
p (One thing I've learned is, people are great at making a number bigger, if you pay a lot of them to try. The key is to pick numbers where, if they make the number bigger, they can't help but have done something actually good. This is harder than it sounds. Some say no numbers are like this. I ask them to show me much good being done another way, but they never can.)
+aside("Unconstrained Vocabulary").
The potential problem with focusing on a benchmark task is #[a(href="https://en.wikipedia.org/wiki/Goodhart%27s_law") Goodhart's Law]. The AI community is conscious of the problem and has done well at averting it.
+pullquote("Instead of telling the computer facts, what we needed to do was tell it how to learn.")
p The ideas we come up with for getting the computer to talk, listen or read a little better can be used to get it to see or plan a little better, and the other way around. Once we stopped telling it things like “#[em movies do not wear dresses]”, things really took off.

View File

@ -0,0 +1,214 @@
include ../_includes/_mixins
+lead Many people have asked us to make spaCy available for their language. Being based in Berlin, German was an obvious choice for our first second language. Now SpaCy can do all the cool things you use for processing English on German text too. But more importantly, teaching spaCy to speak German required us to drop some comfortable but English-specific assumptions about how language works and made spaCy fit to learn more languages in the future.
p The current release features high-accuracy syntactic dependency parsing, named entity recognition, part-of-speech tagging, token and sentence segmentation, and noun phrase chunking. It also comes with word vectors representations, produced from word2vec. As you'll see below, #[a(href="#run-spacy") installation and usage] work much the same for both German and English. However, there are some small differences, that follow from the two languages' differing linguistic structure.
+h2("german-like-english") German is like English but different
p On the evolutionary tree of languages, German and English are close cousins, on the Germanic branch of the Indo-European family. They share a relatively recent common ancestor, so they're structurally similar. And where they differ, it's mostly English that's weird, not German. The algorithmic changes needed to process German are an important step towards processing many other languages.
p English has very simple rules for word formation (aka #[b morphology]), and very strict rules for #[b word order]. This means that an English-only NLP system can get away with some very useful simplifying assumptions. German is the perfect language to unwind these. German word order and morphology are still relatively restricted, so we can make the necessary algorithmic changes without being overwhelmed by the additional complexity.
+aside("Word order and morphology") While the division between word order and morphology is useful for thinking about the problem, it is an artificial one. In reality, both phenomena are two sides of the same coin and interact heavily with each other.
+h2("word-order") Word order
p When Germans learn English in school, one of the first things they are taught to memorize is #[em Subject-Verb-Object] or SVO. In English, the subject comes first, then the verb, then the object. If you change that order, the meaning of the sentence changes. #[em The dog bites the man] means something different from #[em The man bites the dog] even though both sentences use the exact same words. In German — as in many other languages — this is not the case. German allows for any order of subject and object in a sentence and only restricts the position of the verb. In German, you can say #[em Der Hund beißt den Mann] and #[em Den Mann beißt der Hund] and both sentences mean #[em The dog bites the man].
+aside("Subject and Object") In a prototypical sentence, e.g., #[em John hits the ball], the #[a(href="https://en.wikipedia.org/wiki/Subject_(grammar)" target="_blank") grammatical subject] maps to the person/thing that acts (#[em John]) whereas the #[a(href="https://en.wikipedia.org/wiki/Object_(grammar)" target="_blank") grammatical object] maps to the person/thing that is acted upon (#[em the ball]). All languages have mechanisms to change this mapping though.
+quote("Sherlock Holmes, in <em>A Scandal in Bohemia</em>")
| Do you note the peculiar construction of the sentence &mdash; 'This account of you we have from all quarters received.'
br
br
| A Frenchman or Russian could not have written that. It is the German who is so uncourteous to his verbs.
p One of the more difficult things for people who learn German as a second language is to figure out where to put the verb. German verbs are usually at the end of a sentence, under certain circumstances, the verb or a part of it moves to the first or second position. For instance, compare the English sentence in the example below to its German counterpart. While all the parts of the English verb stay together, the German verb is distributed over the sentence. The main part (the one carrying the meaning) is at the end of the sentence and the other part (the auxiliary verb) comes in second position after the subject.
+image("german_verb_align.svg", "", "In German, verbs are put at the end of a sentence.", "small").text-center
p The fact that German verbs come at the end of the sentence, or are split as in the example above, has some implications for language understanding technologies. So far, the syntactic structures that spaCy predicted for English sentences were always #[i projective], which means that you could draw them without ever having to cross two arcs. In order to accommodate languages with less restrictive word order than English &mdash; for example German &mdash; the parser now also predicts non-projective structures, i.e., structures where arcs may cross.
+aside("Non-projectivity") Formally, an arc from word #[i h] to word #[i d] is called non-projective if there is at least one word #[i k] between #[i k] and #[i d] which is not a direct or indirect descendant of #[i h]. A tree is non-projective if it has at least one non-projective arc.
p To illustrate the difference, consider the example below. We want the syntactic structure to represent the fact that it is the flight that was booked the day before, hence we want the parser to predict an arc between #[em flight] and #[em booked]. And of course we want the parser to predict the same arc also for the German counterpart, in this case between #[em Flug] and #[em gebucht habe]. However, because the German verb comes last, there can be crossing arcs in the German structure. This is not the only type of German construction that leaves us with a non-projective parse, but it is a frequent one. Moreover, unlike some cases where you could change your linguistic theory to avoid the crossing arcs, this one is well motivated by data and very difficult to avoid without losing information.
+image("german_english_proj.svg", "", "Syntactic structures for English are usually projective.", "small").text-center
+image("german_german_nonproj.svg", "", "Syntactic structure for German. Non-projective arcs marked in blue.", "small").text-center
p To summarize the above, we need non-projective trees to represent the information that we are interested in when parsing natural language. Okay, so we want crossing arcs. What's the problem? The problem is that crossing arcs force us to give up a very useful constraint. The set of possible non-projective trees is considerably larger than the set of possible projective trees. What's more, the algorithm spaCy uses to search for a projective tree is both simpler and more efficient than the equivalent non-projective algorithms, so restricting spaCy to projective dependency parsing has given us a win on two fronts: we've been able to do less work computationally, while also encoding important prior knowledge about the problem space into the system.
p Unfortunately, this &lsquo;prior knowledge&rsquo; was never quite true. It's a simplifying assumption. In the same way that a physicist might assume a frictionless surface or a #[a(href="https://en.wikipedia.org/wiki/Spherical_cow") spherical cow], sometimes it's useful for computational linguists to assume projective trees and context-free grammars. For English, projective trees are a good-value simplification &mdash; the cow of English is not quite a perfect sphere, but it's close. The cow of German is considerably less round, and we can make our model more accurate by taking this into account.
+h2("pseudoproj-parsing") Pseudo-projective parsing
p Luckily for us, the problem of predicting non-projective structures has received a lot of attention over the last decade. One observation that was made early on is that these non-projective arcs are rare. Usually, only a few percent of the arcs in #[a(href="https://en.wikipedia.org/wiki/Treebank" target="_blank") linguistic treebanks] are non-projective, even for languages with unrestrictive word order. This means that we can afford to use approaches with a higher worst-case complexity because the worst case basically never occurs and therefore has virtually no impact on the efficiency of our NLP systems.
p Several methods have been proposed for dealing with non-projective arcs. Most change the parsing algorithm to search through the full space of possible structures directly, or at least a large part of it. In spaCy, we opted for a more indirect approach. #[a(href="http://www.aclweb.org/anthology/P05-1013" target="_blank") Nivre and Nilsson (2005)] propose a simple procedure they call #[b pseudo-projective parsing]. The parser is trained on projective structures that are produced from non-projective structures by reattaching the non-projective arcs higher in the tree until they are projective. The original attachment site is encoded in the label of the respective arc. The parser thus learns to predict projective structures with specially decorated arc labels. The output of the parser is then post-processed to reattach decorated arcs to their proper syntactic head according to their arc label, thereby re-introducing non-projective arcs.
+aside("Decoration schemes") #[a(href="http://www.aclweb.org/anthology/P05-1013" target="_blank") Nivre and Nilsson (2005)] test three different ways of decorating labels. SpaCy currently uses the #[em head] decoration scheme because it is a good compromise between the amount of encoded information and increase in the number of arc labels.
+image("german_pseudoproj.svg", "", "Pseudo-projective parsing. Training data is projectivized and decorated before training the model. Decorated arcs in parser output are re-attached to their non-projective head in a post-processing step.", "large").text-center
p Using pseudo-projective parsing allows spaCy to produce non-projective structures without having to sacrifice the efficient parsing algorithm, which is restricted to projective structures. And because non-projective arcs are rare, the post-processing step only ever has to reattach one or two arcs in every other sentence, which makes its impact on the overall parsing speed negligable even though its worst case complexity is higher than the parser's. In fact, we didn't notice any difference in speed when parsing German with this approach. And when we know that our training data is projective, we just switch it off.
+h3("accuracy") Evaluation of pseudo-projective parsing
p Pseudo-projective parsing makes a big difference in German because the parser can recover arcs that a purely projective model cannot. The numbers in the table show the percentage of arcs that were correctly attached by the parser (unlabeled attachment score (UAS) ignores the label, labeled attachment score (LAS) takes it into account). We train and evaluate the German model on the TiGer treebank (see #[a(href="#Data-sources") below]).
+table(["System", "UAS", "LAS"])
+row
+cell German, forcing projective structures
+cell 90.86%
+cell 88.60%
+row
+cell German, allowing non-projective structures
+cell 92.22%
+cell 90.14%
//- +row
//- +cell English
//- +cell 91.15%
//- +cell 89.13%
+h2("morphology") Morphology
p One other important difference between English and German is the richer morphology of German words. German words can change their form depending on their grammatical function in a sentence. English words do this too, for example by appending an #[i s] to a noun to mark plural (#[i ticket] &rarr; #[i tickets]). However, in most languages word forms of the same word show much more variety than in English, and this is also the case in German. German is also famous for its capacity to form #[a(href="https://en.wikipedia.org/wiki/Rinderkennzeichnungs-_und_Rindfleischetikettierungsüberwachungsaufgabenübertragungsgesetz" target="_blank") really long words], another process that is driven by the morphological system.
p While German is clearly a language with rich morphology, it isn't the most crucial aspect for natural language processing of German (depending on the task, of course &#128521;). While processing languages like Hungarian, Turkish, or Czech is hopeless without a proper treatment of morphological processes, German can be processed reasonably well without. We therefore released the German model without a morphological component &mdash; for now. We're working on adding such a component to spaCy, not just for improving the German model but also to make the next step towards learning more languages.
+h2("run-spacy") Showtime
p As for English, spaCy now provides a pretrained model for processing German. This model currently provides functionality for tokenization, part-of-speech tagging, syntactic parsing, and named entity recognition. In addition, #[code spacy.de] also comes with pre-trained word representations, in the form of word vectors and hierarchical cluster IDs.
p Installing the German model on your machine is as easy as for English:
+code('bash','Install German model').
pip install spacy
python -m spacy.de.download
p Once installed you can use it from Python like the English model. If you've been loading spaCy using the #[code English()] class directly, now's a good time to switch over to the newer #[code spacy.load()] function:
+code('python','Parse German').
from __future__ import print_function, unicode_literals
import spacy
nlp = spacy.load('de')
doc = nlp(u'Ich bin ein Berliner.')
# show universal pos tags
print(' '.join('{word}/{tag}'.format(word=t.orth_, tag=t.pos_) for t in doc))
# output: Ich/PRON bin/AUX ein/DET Berliner/NOUN ./PUNCT
# show German specific pos tags (STTS)
print(' '.join('{word}/{tag}'.format(word.orth_, tag.tag_) for t in doc))
# output: Ich/PPER bin/VAFIN ein/ART Berliner/NN ./$.
# show dependency arcs
print('\n'.join('{child:&lt;8} &lt;{label:-^7} {head}'.format(child=t.orth_, label=t.dep_, head=t.head.orth_) for t in doc))
# output: (sb: subject, nk: noun kernel, pd: predicate)
# Ich &lt;--sb--- bin
# bin &lt;-ROOT-- bin
# ein &lt;--nk--- Berliner
# Berliner &lt;--pd--- bin
# . &lt;-punct- bin
p As for English, German provides named entities and a noun chunk iterator to extract basic information from the data. The NER model can currently distinguish persons, locations, and organizations. We are currently looking into ways of extending this to more classes.
+code('python','Named entity recognition').
# show named entities
for ent in doc.ents:
print(ent.text)
# output:
# Berliner
p The noun chunk iterator provides easy access to base noun phrases in the form of an iterator. The iterator requires the dependency structure to be present and returns all noun phrases that the parser recognized.
+code('python','Noun chunks').
# show noun chunks
for chunk in doc.noun_chunks:
print(chunk.text)
# output:
# ein Berliner
# noun chunks include so-called measure constructions ...
doc = de(u'Ich möchte gern zum Essen eine Tasse Kaffee bestellen.')
print [ chunk for chunk in doc.noun_chunks ]
# output:
# [Essen, eine Tasse Kaffee]
# ... and close appositions
doc = de(u'Der Senator vermeidet das Thema Flughafen.')
print [ chunk for chunk in doc.noun_chunks ]
# output:
# [Der Senator, das Thema Flughafen]
p The German model comes with word vectors trained on a mix of text from Wikipedia and the Open Subtitles corpus. The vectors were produced using the skip-gram with negative sampling word2vec algorithm using #[a(href="https://radimrehurek.com/gensim/" target="_blank") Gensim], with a context window of 2.
p You can use the vector representation with the #[code .vector] attribute and the #[code .similarity()] method on spaCy's #[code Lexeme], #[code Token], #[code Span] and #[code Doc] objects.
+code('python','Word vectors').
# Use word vectors
de = spacy.load('de')
doc = de(u'Der Apfel und die Orange sind ähnlich')
assert len(doc.vector) == len(doc[0].vector))
der_apfel = doc[:2]
die_orange = doc[3:5]
der_apfel.similarity(die_orange)
# output:
# 0.63665210991205579
der, apfel = der_apfel
der.similarity(apfel)
# output:
# 0.24995991403916812
p While we try to always provide good defaults in spaCy, the word2vec family of algorithms give you a lot of knobs to twiddle, so you might benefit from custom trained vectors. You can get expert help on this by #[a(href="mailto:" + email) contacting us] about consulting.
//- The developers of Gensim, #[a(href="https://rare-technologies.com/" target="_blank") RaRe Technologies], also offer excellent services to help you put word2vec into production.
//- +h2("Performance") Performance
//- +table(["", "POS acc", "Dep (UAS/LAS)", "NER (Prec/Rec/F1)"])
//- +row
//- +cell spaCy German
//- +cell 97.56
//- +cell 92.22/90.14
//- +cell 82.95/73.76/78.08
+h2("Caveats") Caveats
p With the German parser potentially returning non-projective structures, some assumptions about syntactic structures that would hold for the English parser don't hold for the German one. For example, the subtree of a particular token doesn't necessarily span a consecutive substring of the input sentence anymore. Furthermore, a token may have no direct left dependents but can still have a left edge (the left-most descendant of the token) that is further left of the token.
+code('python','Caveats with non-projectivity').
doc = nlp(u'Den Berliner hat der Hund nicht gebissen.')
# heads array: [1, 6, 2, 4, 2, 6, 2, 2] (second token is attached with a non-projective arc)
# most subtrees cover a consecutive span of the input
print [ (t.i, t.orth_) for t in doc[4].subtree ]
# output:
# [(3, u'der'), (4, u'Hund')]
# but some subtrees have gaps
print [ (t.i, t.orth_) for t in doc[6].subtree ]
# output:
# [(0, u'Den'), (1, u'Berliner'), (5, u'nicht'), (6, u'gebissen')]
# the root has no left dependents:
print doc[2].n_lefts
# output:
# 0
# but the root's left-most descendant is not the root itself but a token further left
print (doc[2].left_edge.i, doc[2].left_edge.orth_)
# output:
# (0, u'Den')
+h2("Data-sources") Data sources
p The German model is trained on the German #[a(href="http://www.ims.uni-stuttgart.de/forschung/ressourcen/korpora/tiger.html" target="_blank") TiGer treebank] converted to dependencies. The language-specific part-of-speech tags use the #[a(href="http://www.sfs.uni-tuebingen.de/resources/stts-1999.pdf" target="_blank") Stuttgart-Tübingen Tag Set (STTS)] (document in German). The model for named entity recognition is trained on the #[a(href="https://www.lt.tu-darmstadt.de/de/data/german-named-entity-recognition/" target="_blank") German Named Entity Recognition Data] from the TU Darmstadt. For estimating word probabilities we rely on data provided by the #[a(href="http://hpsg.fu-berlin.de/cow/" target="_blank") COW project]. Word vectors and Brown clusters are computed on a combination of the German Wikipedia and the German part of #[a(href="http://opus.lingfil.uu.se/OpenSubtitles2016.php" target="_blank") OpenSubtitles2016] which is based on data from #[a(href="http://www.opensubtitles.org/" target="_blank") opensubtitles.org]. Buy these people a beer and a cookie when you meet them :).
+h2("call") Want spaCy to speak your language?
p There is still a lot to do for German, but that doesn't mean spaCy can't start learning another language in the meantime. You can advocate for what languages should be added next on the #[a(href="https://reddit.com/r/" + profiles.reddit) spaCy subreddit], or #[a(href="mailto:" + email) get in touch] about sponsoring development.

View File

@ -74,15 +74,15 @@ p The algorithm then proceeds roughly like this (consider this like pseudo-code;
else&#58;
break
p This procedure splits off tokens from the start and end of the string, at each point checking whether the remaining string is in our special-cases table. If it is, we stop splitting, and return the tokenization at that point.
p This procedure splits off tokens from the start and end of the string, at each point checking whether the remaining string is in our special-cases table. If it is, we stop splitting, and return the tokenization at that point.
p The advantage of this design is that the prefixes, suffixes and special-cases can be declared separately, in easy-to-understand files. If a new entry is added to the special-cases, you can be sure that it won't have some unforeseen consequence to a complicated regular-expression grammar.
+h3("coupling-tokenizer-lexicon") Coupling the Tokenizer and Lexicon
p As mentioned above, the tokenizer is designed to support easy caching. If all we were caching were the matched substrings, this would not be so advantageous. Instead, what we do is create a struct which houses all of our lexical features, and cache *that*. The tokens are then simply pointers to these rich lexical types.
p As mentioned above, the tokenizer is designed to support easy caching. If all we were caching were the matched substrings, this would not be so advantageous. Instead, what we do is create a struct which houses all of our lexical features, and cache *that*. The tokens are then simply pointers to these rich lexical types.
p In a sample of text, vocabulary size grows exponentially slower than word count. So any computations we can perform over the vocabulary and apply to the word count are efficient.
p In a sample of text, vocabulary size grows exponentially slower than word count. So any computations we can perform over the vocabulary and apply to the word count are efficient.
+h3("part-of-speech-tagger") Part-of-speech Tagger

Binary file not shown.

Before

Width:  |  Height:  |  Size: 148 KiB

After

Width:  |  Height:  |  Size: 148 KiB

BIN
website/blog/img/german.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 206 KiB

View File

@ -0,0 +1,158 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="284pt" height="74pt" viewBox="0 0 284 74" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 1.359375 -6.21875 L 1.625 -5.8125 C 1.65625 -5.71875 1.734375 -5.6875 1.828125 -5.6875 C 1.859375 -5.6875 1.90625 -5.703125 1.953125 -5.734375 C 2 -5.765625 2.078125 -5.8125 2.140625 -5.84375 C 2.21875 -5.890625 2.296875 -5.921875 2.40625 -5.953125 C 2.515625 -5.984375 2.640625 -6 2.78125 -6 C 2.984375 -6 3.15625 -5.953125 3.296875 -5.84375 C 3.421875 -5.734375 3.484375 -5.578125 3.484375 -5.40625 C 3.484375 -5.25 3.46875 -5.125 3.40625 -5.015625 C 3.34375 -4.921875 3.265625 -4.828125 3.1875 -4.734375 C 3.09375 -4.65625 3 -4.578125 2.90625 -4.5 C 2.796875 -4.4375 2.71875 -4.359375 2.625 -4.28125 C 2.546875 -4.203125 2.484375 -4.109375 2.4375 -4.03125 C 2.390625 -3.921875 2.375 -3.828125 2.390625 -3.703125 L 2.453125 -3.0625 L 3.125 -3.0625 L 3.21875 -3.625 C 3.234375 -3.71875 3.265625 -3.796875 3.328125 -3.859375 C 3.390625 -3.921875 3.46875 -3.984375 3.5625 -4.0625 C 3.640625 -4.140625 3.734375 -4.203125 3.828125 -4.28125 C 3.9375 -4.359375 4.03125 -4.453125 4.09375 -4.5625 C 4.1875 -4.671875 4.25 -4.796875 4.3125 -4.9375 C 4.359375 -5.09375 4.390625 -5.25 4.390625 -5.453125 C 4.390625 -5.65625 4.359375 -5.84375 4.28125 -6.015625 C 4.203125 -6.171875 4.09375 -6.3125 3.96875 -6.4375 C 3.828125 -6.546875 3.671875 -6.640625 3.484375 -6.703125 C 3.296875 -6.765625 3.09375 -6.796875 2.859375 -6.796875 C 2.6875 -6.796875 2.546875 -6.78125 2.40625 -6.75 C 2.25 -6.71875 2.125 -6.6875 2 -6.625 C 1.875 -6.578125 1.75 -6.515625 1.65625 -6.453125 C 1.546875 -6.375 1.453125 -6.296875 1.359375 -6.21875 Z M 2.15625 -1.59375 C 2.15625 -1.421875 2.21875 -1.28125 2.328125 -1.171875 C 2.4375 -1.046875 2.578125 -1 2.765625 -1 C 2.84375 -1 2.921875 -1.015625 2.984375 -1.03125 C 3.0625 -1.0625 3.125 -1.109375 3.171875 -1.171875 C 3.234375 -1.21875 3.265625 -1.28125 3.296875 -1.359375 C 3.328125 -1.421875 3.34375 -1.515625 3.34375 -1.59375 C 3.34375 -1.671875 3.328125 -1.75 3.296875 -1.828125 C 3.265625 -1.90625 3.234375 -1.96875 3.171875 -2.015625 C 3.125 -2.078125 3.0625 -2.125 2.984375 -2.15625 C 2.921875 -2.1875 2.84375 -2.203125 2.765625 -2.203125 C 2.578125 -2.203125 2.4375 -2.140625 2.328125 -2.015625 C 2.21875 -1.90625 2.15625 -1.765625 2.15625 -1.59375 Z M 0.25 -7.8125 L 0.25 0 L 5.5625 0 L 5.5625 -7.8125 Z M 0.515625 -0.296875 L 0.515625 -7.515625 L 5.25 -7.515625 L 5.25 -0.296875 Z M 0.515625 -0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 2.203125 0 L 2.203125 -7.8125 L 1.140625 -7.8125 L 1.140625 0 Z M 2.203125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 0.078125 -5.53125 L 1.859375 0 L 2.59375 0 C 2.703125 0 2.78125 -0.0625 2.8125 -0.1875 L 4.0625 -3.921875 C 4.078125 -4.015625 4.109375 -4.09375 4.125 -4.1875 C 4.140625 -4.265625 4.171875 -4.359375 4.1875 -4.4375 C 4.203125 -4.359375 4.21875 -4.265625 4.234375 -4.1875 C 4.25 -4.09375 4.28125 -4.015625 4.3125 -3.9375 L 5.53125 -0.1875 C 5.5625 -0.0625 5.640625 0 5.71875 0 L 6.5 0 L 8.28125 -5.53125 L 7.546875 -5.53125 C 7.484375 -5.53125 7.421875 -5.5 7.375 -5.46875 C 7.328125 -5.4375 7.28125 -5.375 7.265625 -5.328125 L 6.1875 -1.765625 C 6.15625 -1.65625 6.125 -1.53125 6.09375 -1.40625 C 6.0625 -1.265625 6.046875 -1.140625 6.03125 -1.03125 C 6 -1.140625 5.96875 -1.265625 5.9375 -1.390625 C 5.90625 -1.515625 5.875 -1.640625 5.828125 -1.765625 L 4.6875 -5.34375 C 4.671875 -5.40625 4.640625 -5.4375 4.59375 -5.484375 C 4.546875 -5.515625 4.484375 -5.53125 4.40625 -5.53125 L 3.984375 -5.53125 C 3.921875 -5.53125 3.859375 -5.515625 3.8125 -5.484375 C 3.78125 -5.4375 3.734375 -5.40625 3.71875 -5.34375 L 2.5625 -1.765625 C 2.515625 -1.640625 2.484375 -1.515625 2.4375 -1.390625 C 2.40625 -1.265625 2.375 -1.140625 2.34375 -1.015625 C 2.328125 -1.140625 2.3125 -1.265625 2.28125 -1.390625 C 2.25 -1.515625 2.21875 -1.640625 2.203125 -1.765625 L 1.140625 -5.328125 C 1.125 -5.375 1.078125 -5.421875 1.03125 -5.46875 C 0.984375 -5.5 0.921875 -5.53125 0.84375 -5.53125 Z M 0.078125 -5.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 4.859375 0 L 4.859375 -3.53125 C 4.859375 -3.84375 4.8125 -4.125 4.734375 -4.390625 C 4.640625 -4.640625 4.515625 -4.859375 4.359375 -5.046875 C 4.1875 -5.21875 3.984375 -5.359375 3.75 -5.46875 C 3.515625 -5.578125 3.234375 -5.625 2.921875 -5.625 C 2.5 -5.625 2.109375 -5.546875 1.75 -5.40625 C 1.40625 -5.25 1.078125 -5.03125 0.765625 -4.75 L 0.9375 -4.4375 C 0.96875 -4.390625 1.015625 -4.34375 1.0625 -4.3125 C 1.109375 -4.265625 1.171875 -4.25 1.234375 -4.25 C 1.3125 -4.25 1.40625 -4.28125 1.484375 -4.34375 C 1.578125 -4.40625 1.671875 -4.46875 1.78125 -4.546875 C 1.90625 -4.625 2.046875 -4.6875 2.21875 -4.75 C 2.375 -4.8125 2.578125 -4.84375 2.8125 -4.84375 C 3.171875 -4.84375 3.4375 -4.734375 3.625 -4.5 C 3.8125 -4.28125 3.90625 -3.96875 3.90625 -3.53125 L 3.90625 -3.109375 C 3.265625 -3.09375 2.75 -3.03125 2.3125 -2.9375 C 1.875 -2.828125 1.53125 -2.703125 1.265625 -2.546875 C 1 -2.390625 0.796875 -2.21875 0.6875 -2 C 0.5625 -1.8125 0.5 -1.59375 0.5 -1.375 C 0.5 -1.125 0.546875 -0.90625 0.625 -0.734375 C 0.703125 -0.546875 0.8125 -0.390625 0.953125 -0.265625 C 1.09375 -0.15625 1.25 -0.0625 1.4375 0 C 1.625 0.046875 1.828125 0.09375 2.046875 0.09375 C 2.25 0.09375 2.453125 0.078125 2.625 0.03125 C 2.796875 0 2.953125 -0.046875 3.109375 -0.125 C 3.265625 -0.203125 3.40625 -0.28125 3.546875 -0.390625 C 3.6875 -0.484375 3.828125 -0.609375 3.96875 -0.734375 L 4.078125 -0.234375 C 4.09375 -0.140625 4.140625 -0.078125 4.1875 -0.046875 C 4.25 -0.015625 4.328125 0 4.421875 0 Z M 2.328125 -0.59375 C 2.203125 -0.59375 2.09375 -0.609375 1.984375 -0.640625 C 1.875 -0.671875 1.78125 -0.71875 1.703125 -0.78125 C 1.609375 -0.859375 1.546875 -0.9375 1.5 -1.046875 C 1.453125 -1.15625 1.4375 -1.28125 1.4375 -1.421875 C 1.4375 -1.578125 1.484375 -1.71875 1.578125 -1.84375 C 1.65625 -1.96875 1.796875 -2.0625 2 -2.15625 C 2.1875 -2.25 2.453125 -2.328125 2.765625 -2.375 C 3.0625 -2.4375 3.453125 -2.46875 3.90625 -2.484375 L 3.90625 -1.34375 C 3.796875 -1.21875 3.671875 -1.125 3.5625 -1.03125 C 3.453125 -0.9375 3.328125 -0.859375 3.203125 -0.796875 C 3.078125 -0.734375 2.9375 -0.6875 2.796875 -0.640625 C 2.65625 -0.609375 2.5 -0.59375 2.328125 -0.59375 Z M 2.328125 -0.59375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 0.796875 0 L 1.765625 0 L 1.765625 -4.0625 C 1.984375 -4.296875 2.203125 -4.5 2.453125 -4.625 C 2.703125 -4.765625 2.96875 -4.84375 3.265625 -4.84375 C 3.65625 -4.84375 3.953125 -4.71875 4.140625 -4.5 C 4.328125 -4.265625 4.421875 -3.9375 4.421875 -3.515625 L 4.421875 0 L 5.390625 0 L 5.390625 -3.515625 C 5.390625 -3.828125 5.359375 -4.109375 5.265625 -4.375 C 5.1875 -4.625 5.078125 -4.859375 4.921875 -5.03125 C 4.765625 -5.21875 4.578125 -5.359375 4.34375 -5.46875 C 4.109375 -5.5625 3.84375 -5.609375 3.546875 -5.609375 C 3.15625 -5.609375 2.8125 -5.53125 2.515625 -5.359375 C 2.21875 -5.203125 1.953125 -4.984375 1.71875 -4.71875 L 1.640625 -5.328125 C 1.59375 -5.453125 1.515625 -5.53125 1.375 -5.53125 L 0.796875 -5.53125 Z M 0.796875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 2.46875 0.09375 C 2.71875 0.09375 2.96875 0.046875 3.203125 -0.046875 C 3.4375 -0.140625 3.640625 -0.25 3.8125 -0.421875 L 3.515625 -0.875 C 3.484375 -0.9375 3.4375 -0.96875 3.390625 -0.96875 C 3.359375 -0.96875 3.328125 -0.953125 3.28125 -0.921875 C 3.25 -0.90625 3.203125 -0.875 3.140625 -0.84375 C 3.09375 -0.8125 3.03125 -0.78125 2.953125 -0.75 C 2.875 -0.71875 2.796875 -0.703125 2.6875 -0.703125 C 2.515625 -0.703125 2.359375 -0.765625 2.25 -0.875 C 2.140625 -1 2.078125 -1.15625 2.078125 -1.390625 L 2.078125 -4.71875 L 3.671875 -4.71875 L 3.671875 -5.421875 L 2.078125 -5.421875 L 2.078125 -7.3125 L 1.59375 -7.3125 C 1.53125 -7.3125 1.484375 -7.296875 1.4375 -7.265625 C 1.40625 -7.234375 1.375 -7.1875 1.375 -7.125 L 1.140625 -5.421875 L 0.234375 -5.3125 L 0.234375 -4.921875 C 0.234375 -4.859375 0.265625 -4.796875 0.296875 -4.765625 C 0.34375 -4.734375 0.390625 -4.71875 0.453125 -4.71875 L 1.109375 -4.71875 L 1.109375 -1.328125 C 1.109375 -0.875 1.234375 -0.53125 1.46875 -0.28125 C 1.703125 -0.03125 2.03125 0.09375 2.46875 0.09375 Z M 2.46875 0.09375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 3.03125 -5.609375 C 2.625 -5.609375 2.265625 -5.546875 1.9375 -5.40625 C 1.609375 -5.265625 1.34375 -5.078125 1.109375 -4.84375 C 0.875 -4.59375 0.703125 -4.296875 0.578125 -3.9375 C 0.453125 -3.59375 0.390625 -3.203125 0.390625 -2.765625 C 0.390625 -2.328125 0.453125 -1.9375 0.578125 -1.59375 C 0.703125 -1.234375 0.875 -0.9375 1.109375 -0.6875 C 1.34375 -0.453125 1.609375 -0.25 1.9375 -0.125 C 2.265625 0.015625 2.625 0.078125 3.03125 0.078125 C 3.4375 0.078125 3.796875 0.015625 4.125 -0.125 C 4.453125 -0.25 4.734375 -0.453125 4.953125 -0.6875 C 5.1875 -0.9375 5.359375 -1.234375 5.46875 -1.59375 C 5.59375 -1.9375 5.65625 -2.328125 5.65625 -2.765625 C 5.65625 -3.203125 5.59375 -3.59375 5.46875 -3.9375 C 5.359375 -4.296875 5.1875 -4.59375 4.953125 -4.84375 C 4.734375 -5.078125 4.453125 -5.265625 4.125 -5.40625 C 3.796875 -5.546875 3.4375 -5.609375 3.03125 -5.609375 Z M 3.03125 -0.6875 C 2.75 -0.6875 2.515625 -0.734375 2.3125 -0.828125 C 2.109375 -0.921875 1.9375 -1.046875 1.796875 -1.234375 C 1.671875 -1.40625 1.5625 -1.625 1.5 -1.875 C 1.421875 -2.140625 1.390625 -2.4375 1.390625 -2.765625 C 1.390625 -3.09375 1.421875 -3.375 1.5 -3.640625 C 1.5625 -3.90625 1.671875 -4.109375 1.796875 -4.296875 C 1.9375 -4.484375 2.109375 -4.609375 2.3125 -4.703125 C 2.515625 -4.796875 2.75 -4.84375 3.03125 -4.84375 C 3.578125 -4.84375 3.984375 -4.65625 4.25 -4.296875 C 4.515625 -3.9375 4.65625 -3.421875 4.65625 -2.765625 C 4.65625 -2.109375 4.515625 -1.59375 4.25 -1.234375 C 3.984375 -0.859375 3.578125 -0.6875 3.03125 -0.6875 Z M 3.03125 -0.6875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 4.5625 -4.546875 L 4.828125 -4.890625 C 4.59375 -5.125 4.328125 -5.296875 4.03125 -5.421875 C 3.734375 -5.546875 3.390625 -5.609375 3 -5.609375 C 2.578125 -5.609375 2.21875 -5.546875 1.890625 -5.40625 C 1.578125 -5.25 1.296875 -5.0625 1.078125 -4.8125 C 0.859375 -4.546875 0.6875 -4.25 0.578125 -3.90625 C 0.453125 -3.5625 0.40625 -3.171875 0.40625 -2.765625 C 0.40625 -2.3125 0.46875 -1.90625 0.59375 -1.5625 C 0.71875 -1.203125 0.890625 -0.90625 1.109375 -0.671875 C 1.328125 -0.421875 1.578125 -0.234375 1.875 -0.109375 C 2.171875 0.015625 2.5 0.078125 2.84375 0.078125 C 3.234375 0.078125 3.625 0.015625 3.984375 -0.125 C 4.34375 -0.265625 4.640625 -0.484375 4.875 -0.78125 L 4.609375 -1.125 C 4.5625 -1.1875 4.5 -1.21875 4.421875 -1.21875 C 4.359375 -1.21875 4.296875 -1.1875 4.21875 -1.140625 C 4.15625 -1.078125 4.078125 -1.015625 3.96875 -0.953125 C 3.875 -0.875 3.75 -0.8125 3.59375 -0.765625 C 3.4375 -0.703125 3.25 -0.671875 3.015625 -0.671875 C 2.765625 -0.671875 2.546875 -0.71875 2.34375 -0.8125 C 2.140625 -0.90625 1.96875 -1.046875 1.84375 -1.21875 C 1.703125 -1.390625 1.59375 -1.609375 1.515625 -1.875 C 1.4375 -2.125 1.40625 -2.4375 1.40625 -2.765625 C 1.40625 -3.09375 1.4375 -3.375 1.5 -3.625 C 1.578125 -3.890625 1.6875 -4.109375 1.828125 -4.296875 C 1.96875 -4.46875 2.140625 -4.609375 2.34375 -4.71875 C 2.546875 -4.796875 2.796875 -4.859375 3.0625 -4.859375 C 3.265625 -4.859375 3.4375 -4.828125 3.578125 -4.78125 C 3.71875 -4.734375 3.828125 -4.6875 3.9375 -4.640625 C 4.03125 -4.578125 4.109375 -4.53125 4.171875 -4.484375 C 4.234375 -4.4375 4.296875 -4.421875 4.359375 -4.421875 C 4.40625 -4.421875 4.453125 -4.421875 4.484375 -4.453125 C 4.5 -4.46875 4.53125 -4.5 4.5625 -4.546875 Z M 4.5625 -4.546875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 2.984375 -5.609375 C 2.578125 -5.609375 2.21875 -5.546875 1.90625 -5.40625 C 1.578125 -5.265625 1.3125 -5.078125 1.09375 -4.828125 C 0.859375 -4.578125 0.703125 -4.28125 0.578125 -3.953125 C 0.46875 -3.625 0.40625 -3.265625 0.40625 -2.875 C 0.40625 -2.40625 0.46875 -1.96875 0.59375 -1.609375 C 0.734375 -1.25 0.921875 -0.9375 1.140625 -0.6875 C 1.390625 -0.4375 1.65625 -0.25 1.984375 -0.125 C 2.296875 0.015625 2.65625 0.078125 3.03125 0.078125 C 3.234375 0.078125 3.4375 0.0625 3.640625 0.015625 C 3.84375 -0.015625 4.046875 -0.0625 4.234375 -0.125 C 4.421875 -0.203125 4.609375 -0.28125 4.765625 -0.390625 C 4.9375 -0.5 5.078125 -0.625 5.203125 -0.78125 L 4.921875 -1.125 C 4.890625 -1.1875 4.828125 -1.21875 4.75 -1.21875 C 4.6875 -1.21875 4.609375 -1.1875 4.53125 -1.140625 C 4.4375 -1.078125 4.328125 -1.015625 4.203125 -0.953125 C 4.078125 -0.890625 3.921875 -0.828125 3.75 -0.78125 C 3.578125 -0.71875 3.359375 -0.6875 3.125 -0.6875 C 2.859375 -0.6875 2.625 -0.734375 2.40625 -0.8125 C 2.203125 -0.90625 2.015625 -1.03125 1.859375 -1.203125 C 1.71875 -1.375 1.59375 -1.59375 1.5 -1.84375 C 1.421875 -2.109375 1.375 -2.40625 1.359375 -2.765625 L 5.03125 -2.765625 C 5.125 -2.765625 5.1875 -2.78125 5.21875 -2.828125 C 5.25 -2.890625 5.265625 -2.984375 5.265625 -3.140625 C 5.265625 -3.53125 5.21875 -3.875 5.109375 -4.1875 C 4.984375 -4.5 4.828125 -4.75 4.625 -4.96875 C 4.421875 -5.171875 4.171875 -5.328125 3.90625 -5.4375 C 3.625 -5.5625 3.3125 -5.609375 2.984375 -5.609375 Z M 3 -4.890625 C 3.234375 -4.890625 3.421875 -4.859375 3.59375 -4.78125 C 3.765625 -4.71875 3.921875 -4.609375 4.03125 -4.46875 C 4.15625 -4.328125 4.25 -4.171875 4.3125 -3.984375 C 4.375 -3.796875 4.40625 -3.59375 4.40625 -3.359375 L 1.390625 -3.359375 C 1.46875 -3.84375 1.625 -4.21875 1.890625 -4.5 C 2.171875 -4.765625 2.53125 -4.890625 3 -4.890625 Z M 3 -4.890625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 1.875 -8.03125 L 0.90625 -8.03125 L 0.90625 0 L 1.875 0 Z M 1.875 -8.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 0.796875 0 L 1.765625 0 L 1.765625 -4.0625 C 1.984375 -4.296875 2.203125 -4.5 2.453125 -4.625 C 2.703125 -4.765625 2.96875 -4.84375 3.265625 -4.84375 C 3.65625 -4.84375 3.953125 -4.71875 4.140625 -4.5 C 4.328125 -4.265625 4.421875 -3.9375 4.421875 -3.515625 L 4.421875 0 L 5.390625 0 L 5.390625 -3.515625 C 5.390625 -3.828125 5.359375 -4.109375 5.265625 -4.375 C 5.1875 -4.625 5.078125 -4.859375 4.921875 -5.03125 C 4.765625 -5.21875 4.578125 -5.359375 4.34375 -5.46875 C 4.109375 -5.5625 3.84375 -5.609375 3.546875 -5.609375 C 3.171875 -5.609375 2.84375 -5.53125 2.546875 -5.390625 C 2.265625 -5.234375 2 -5.03125 1.765625 -4.78125 L 1.765625 -8.03125 L 0.796875 -8.03125 Z M 0.796875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 1.015625 0 L 1.984375 0 L 1.984375 -4.71875 L 3.390625 -4.71875 L 3.390625 -5.421875 L 1.953125 -5.421875 L 1.953125 -5.703125 C 1.953125 -6.1875 2.078125 -6.578125 2.34375 -6.84375 C 2.59375 -7.109375 2.953125 -7.25 3.4375 -7.25 C 3.578125 -7.25 3.75 -7.25 3.953125 -7.234375 C 4.140625 -7.21875 4.34375 -7.21875 4.53125 -7.203125 L 4.53125 0 L 5.5 0 L 5.5 -7.890625 L 4.96875 -7.890625 C 4.703125 -7.890625 4.421875 -7.90625 4.15625 -7.921875 C 3.875 -7.953125 3.578125 -7.96875 3.28125 -7.96875 C 2.90625 -7.96875 2.578125 -7.90625 2.296875 -7.78125 C 2 -7.65625 1.765625 -7.5 1.578125 -7.296875 C 1.390625 -7.09375 1.25 -6.859375 1.15625 -6.578125 C 1.0625 -6.296875 1.015625 -6.015625 1.015625 -5.703125 L 1.015625 -5.421875 L 0.140625 -5.421875 L 0.140625 -5.015625 C 0.140625 -4.953125 0.15625 -4.890625 0.21875 -4.859375 C 0.265625 -4.8125 0.328125 -4.78125 0.40625 -4.765625 L 1.015625 -4.6875 Z M 1.015625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 1.875 -5.53125 L 0.90625 -5.53125 L 0.90625 0 L 1.875 0 Z M 2.09375 -7.265625 C 2.09375 -7.34375 2.078125 -7.4375 2.046875 -7.53125 C 2 -7.609375 1.953125 -7.6875 1.890625 -7.75 C 1.828125 -7.8125 1.75 -7.859375 1.65625 -7.90625 C 1.578125 -7.9375 1.484375 -7.953125 1.390625 -7.953125 C 1.296875 -7.953125 1.203125 -7.9375 1.140625 -7.90625 C 1.046875 -7.859375 0.96875 -7.8125 0.921875 -7.75 C 0.84375 -7.6875 0.796875 -7.609375 0.765625 -7.53125 C 0.71875 -7.4375 0.703125 -7.34375 0.703125 -7.265625 C 0.703125 -7.171875 0.71875 -7.078125 0.765625 -6.984375 C 0.796875 -6.921875 0.84375 -6.84375 0.921875 -6.765625 C 0.96875 -6.71875 1.046875 -6.65625 1.140625 -6.625 C 1.203125 -6.59375 1.296875 -6.578125 1.390625 -6.578125 C 1.484375 -6.578125 1.578125 -6.59375 1.65625 -6.625 C 1.75 -6.65625 1.828125 -6.71875 1.890625 -6.765625 C 1.953125 -6.84375 2 -6.921875 2.046875 -6.984375 C 2.078125 -7.078125 2.09375 -7.171875 2.09375 -7.265625 Z M 2.09375 -7.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 2.65625 -5.609375 C 2.34375 -5.609375 2.078125 -5.578125 1.8125 -5.484375 C 1.5625 -5.40625 1.34375 -5.296875 1.15625 -5.140625 C 0.96875 -4.984375 0.8125 -4.796875 0.71875 -4.5625 C 0.609375 -4.359375 0.5625 -4.109375 0.5625 -3.84375 C 0.5625 -3.5 0.640625 -3.203125 0.796875 -2.953125 C 0.953125 -2.703125 1.15625 -2.5 1.4375 -2.34375 C 1.3125 -2.28125 1.21875 -2.21875 1.125 -2.140625 C 1.046875 -2.0625 0.96875 -1.984375 0.90625 -1.90625 C 0.84375 -1.828125 0.796875 -1.734375 0.78125 -1.640625 C 0.75 -1.5625 0.734375 -1.484375 0.734375 -1.40625 C 0.734375 -1.203125 0.78125 -1.03125 0.875 -0.921875 C 0.953125 -0.796875 1.078125 -0.6875 1.25 -0.625 C 0.9375 -0.5 0.703125 -0.359375 0.53125 -0.15625 C 0.359375 0.015625 0.265625 0.25 0.265625 0.53125 C 0.265625 0.71875 0.328125 0.90625 0.421875 1.078125 C 0.53125 1.265625 0.671875 1.40625 0.875 1.546875 C 1.078125 1.6875 1.328125 1.78125 1.625 1.875 C 1.9375 1.953125 2.28125 1.984375 2.6875 1.984375 C 3.09375 1.984375 3.453125 1.9375 3.78125 1.828125 C 4.09375 1.734375 4.359375 1.59375 4.59375 1.421875 C 4.8125 1.25 4.984375 1.046875 5.09375 0.828125 C 5.21875 0.609375 5.265625 0.375 5.265625 0.140625 C 5.265625 -0.109375 5.21875 -0.328125 5.109375 -0.484375 C 5.015625 -0.640625 4.875 -0.765625 4.6875 -0.859375 C 4.515625 -0.953125 4.328125 -1.015625 4.09375 -1.046875 C 3.875 -1.09375 3.65625 -1.125 3.421875 -1.140625 C 3.1875 -1.15625 2.96875 -1.171875 2.75 -1.171875 C 2.515625 -1.171875 2.328125 -1.203125 2.15625 -1.234375 C 1.96875 -1.25 1.828125 -1.296875 1.734375 -1.375 C 1.625 -1.4375 1.578125 -1.53125 1.578125 -1.671875 C 1.578125 -1.75 1.609375 -1.828125 1.65625 -1.90625 C 1.71875 -2 1.8125 -2.078125 1.921875 -2.15625 C 2.15625 -2.09375 2.40625 -2.0625 2.65625 -2.0625 C 2.953125 -2.0625 3.234375 -2.09375 3.484375 -2.1875 C 3.734375 -2.265625 3.953125 -2.390625 4.140625 -2.546875 C 4.328125 -2.703125 4.46875 -2.890625 4.5625 -3.109375 C 4.671875 -3.328125 4.734375 -3.578125 4.734375 -3.84375 C 4.734375 -4.125 4.671875 -4.390625 4.546875 -4.625 L 5.171875 -4.71875 C 5.328125 -4.75 5.40625 -4.828125 5.40625 -4.953125 L 5.40625 -5.3125 L 3.90625 -5.3125 C 3.734375 -5.40625 3.546875 -5.484375 3.328125 -5.546875 C 3.125 -5.59375 2.890625 -5.609375 2.65625 -5.609375 Z M 4.375 0.296875 C 4.375 0.453125 4.34375 0.578125 4.265625 0.703125 C 4.1875 0.8125 4.078125 0.921875 3.9375 1.015625 C 3.796875 1.09375 3.609375 1.15625 3.40625 1.203125 C 3.203125 1.265625 2.96875 1.28125 2.703125 1.28125 C 2.4375 1.28125 2.203125 1.265625 2 1.203125 C 1.8125 1.171875 1.640625 1.109375 1.515625 1.03125 C 1.375 0.953125 1.28125 0.859375 1.21875 0.75 C 1.15625 0.640625 1.125 0.53125 1.125 0.40625 C 1.125 0.203125 1.1875 0.03125 1.3125 -0.109375 C 1.4375 -0.25 1.609375 -0.359375 1.828125 -0.46875 C 2 -0.4375 2.1875 -0.421875 2.390625 -0.40625 C 2.578125 -0.390625 2.765625 -0.375 2.96875 -0.375 C 3.15625 -0.359375 3.328125 -0.34375 3.5 -0.328125 C 3.671875 -0.3125 3.828125 -0.265625 3.953125 -0.234375 C 4.078125 -0.1875 4.1875 -0.109375 4.265625 -0.03125 C 4.34375 0.046875 4.375 0.15625 4.375 0.296875 Z M 2.65625 -2.703125 C 2.46875 -2.703125 2.296875 -2.71875 2.140625 -2.78125 C 2 -2.828125 1.875 -2.90625 1.765625 -3.015625 C 1.65625 -3.109375 1.59375 -3.234375 1.53125 -3.359375 C 1.484375 -3.5 1.453125 -3.640625 1.453125 -3.8125 C 1.453125 -4.15625 1.5625 -4.421875 1.765625 -4.625 C 1.96875 -4.828125 2.265625 -4.921875 2.65625 -4.921875 C 3.046875 -4.921875 3.34375 -4.828125 3.5625 -4.625 C 3.75 -4.421875 3.859375 -4.15625 3.859375 -3.8125 C 3.859375 -3.640625 3.828125 -3.5 3.78125 -3.359375 C 3.734375 -3.234375 3.65625 -3.109375 3.5625 -3.015625 C 3.453125 -2.90625 3.328125 -2.828125 3.171875 -2.78125 C 3.03125 -2.71875 2.859375 -2.703125 2.65625 -2.703125 Z M 2.65625 -2.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 0.828125 0 L 1.453125 0 C 1.59375 0 1.671875 -0.078125 1.703125 -0.203125 L 1.75 -0.703125 C 1.9375 -0.46875 2.15625 -0.265625 2.40625 -0.125 C 2.65625 0 2.96875 0.078125 3.3125 0.078125 C 3.6875 0.078125 4.015625 0 4.3125 -0.140625 C 4.609375 -0.296875 4.859375 -0.484375 5.078125 -0.75 C 5.265625 -1 5.4375 -1.3125 5.546875 -1.65625 C 5.65625 -2.015625 5.703125 -2.390625 5.703125 -2.796875 C 5.703125 -3.25 5.65625 -3.65625 5.5625 -4.015625 C 5.453125 -4.359375 5.3125 -4.65625 5.140625 -4.890625 C 4.953125 -5.125 4.734375 -5.3125 4.484375 -5.4375 C 4.21875 -5.546875 3.9375 -5.609375 3.609375 -5.609375 C 3.234375 -5.609375 2.890625 -5.53125 2.59375 -5.359375 C 2.296875 -5.203125 2.03125 -5 1.8125 -4.734375 L 1.8125 -8.03125 L 0.828125 -8.03125 Z M 3.296875 -4.84375 C 3.515625 -4.84375 3.71875 -4.796875 3.890625 -4.71875 C 4.0625 -4.640625 4.203125 -4.53125 4.328125 -4.359375 C 4.453125 -4.1875 4.546875 -3.984375 4.609375 -3.71875 C 4.671875 -3.46875 4.703125 -3.15625 4.703125 -2.796875 C 4.703125 -2.109375 4.5625 -1.59375 4.28125 -1.234375 C 4.015625 -0.859375 3.609375 -0.671875 3.09375 -0.671875 C 2.828125 -0.671875 2.59375 -0.71875 2.390625 -0.828125 C 2.171875 -0.921875 1.984375 -1.09375 1.8125 -1.328125 L 1.8125 -4 C 2 -4.265625 2.21875 -4.46875 2.46875 -4.625 C 2.703125 -4.765625 2.984375 -4.84375 3.296875 -4.84375 Z M 3.296875 -4.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 1.8125 -8.03125 L 0.828125 -8.03125 L 0.828125 0 L 1.8125 0 L 1.8125 -2.640625 L 2.078125 -2.640625 C 2.1875 -2.640625 2.265625 -2.625 2.328125 -2.609375 C 2.375 -2.578125 2.4375 -2.53125 2.484375 -2.453125 L 4.296875 -0.1875 C 4.359375 -0.125 4.40625 -0.078125 4.453125 -0.046875 C 4.515625 -0.015625 4.59375 0 4.671875 0 L 5.546875 0 L 3.375 -2.71875 C 3.328125 -2.796875 3.28125 -2.859375 3.234375 -2.921875 C 3.171875 -2.984375 3.125 -3.03125 3.046875 -3.0625 C 3.109375 -3.109375 3.171875 -3.140625 3.21875 -3.203125 C 3.265625 -3.25 3.328125 -3.296875 3.375 -3.359375 L 5.40625 -5.53125 L 4.515625 -5.53125 C 4.421875 -5.53125 4.359375 -5.5 4.296875 -5.46875 C 4.25 -5.4375 4.1875 -5.390625 4.140625 -5.328125 L 2.390625 -3.453125 C 2.328125 -3.390625 2.28125 -3.359375 2.234375 -3.34375 C 2.1875 -3.3125 2.125 -3.296875 2.0625 -3.296875 L 1.8125 -3.296875 Z M 1.8125 -8.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 4.6875 0 L 5.265625 0 L 5.265625 -8.03125 L 4.296875 -8.03125 L 4.296875 -4.96875 C 4.09375 -5.171875 3.890625 -5.328125 3.640625 -5.453125 C 3.40625 -5.5625 3.125 -5.625 2.78125 -5.625 C 2.40625 -5.625 2.078125 -5.546875 1.78125 -5.40625 C 1.484375 -5.25 1.234375 -5.046875 1.03125 -4.796875 C 0.828125 -4.53125 0.671875 -4.234375 0.5625 -3.875 C 0.453125 -3.53125 0.390625 -3.15625 0.390625 -2.75 C 0.390625 -2.28125 0.4375 -1.875 0.546875 -1.53125 C 0.640625 -1.171875 0.78125 -0.875 0.953125 -0.640625 C 1.140625 -0.40625 1.359375 -0.234375 1.625 -0.109375 C 1.875 0.015625 2.171875 0.078125 2.484375 0.078125 C 2.875 0.078125 3.21875 -0.015625 3.515625 -0.1875 C 3.828125 -0.359375 4.09375 -0.578125 4.328125 -0.875 L 4.421875 -0.203125 C 4.453125 -0.0625 4.546875 0 4.6875 0 Z M 2.796875 -0.703125 C 2.578125 -0.703125 2.375 -0.75 2.203125 -0.828125 C 2.03125 -0.90625 1.875 -1.015625 1.765625 -1.1875 C 1.640625 -1.359375 1.546875 -1.5625 1.484375 -1.828125 C 1.421875 -2.078125 1.390625 -2.390625 1.390625 -2.75 C 1.390625 -3.421875 1.53125 -3.953125 1.8125 -4.3125 C 2.09375 -4.671875 2.484375 -4.859375 3 -4.859375 C 3.25 -4.859375 3.484375 -4.8125 3.703125 -4.71875 C 3.921875 -4.625 4.109375 -4.453125 4.296875 -4.21875 L 4.296875 -1.546875 C 4.09375 -1.28125 3.875 -1.078125 3.625 -0.921875 C 3.390625 -0.78125 3.125 -0.703125 2.796875 -0.703125 Z M 2.796875 -0.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-17">
<path style="stroke:none;" d="M 2.421875 1.625 L 5.5 -5.53125 L 4.71875 -5.53125 C 4.65625 -5.53125 4.609375 -5.5 4.546875 -5.46875 C 4.5 -5.4375 4.453125 -5.375 4.4375 -5.328125 L 3 -1.84375 C 2.96875 -1.765625 2.9375 -1.6875 2.921875 -1.609375 C 2.890625 -1.515625 2.875 -1.4375 2.84375 -1.359375 C 2.828125 -1.4375 2.796875 -1.515625 2.78125 -1.609375 C 2.75 -1.6875 2.71875 -1.765625 2.6875 -1.84375 L 1.21875 -5.328125 C 1.1875 -5.375 1.15625 -5.421875 1.109375 -5.46875 C 1.0625 -5.5 1 -5.53125 0.921875 -5.53125 L 0.078125 -5.53125 L 2.359375 -0.328125 L 1.34375 1.875 L 2.0625 1.875 C 2.171875 1.875 2.25 1.84375 2.296875 1.8125 C 2.34375 1.765625 2.390625 1.703125 2.421875 1.625 Z M 2.421875 1.625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-18">
<path style="stroke:none;" d="M 3.953125 -4.609375 L 4.171875 -4.96875 C 3.96875 -5.171875 3.71875 -5.328125 3.421875 -5.4375 C 3.140625 -5.546875 2.8125 -5.609375 2.453125 -5.609375 C 2.140625 -5.609375 1.859375 -5.5625 1.609375 -5.484375 C 1.375 -5.390625 1.171875 -5.28125 1 -5.125 C 0.828125 -4.984375 0.703125 -4.8125 0.609375 -4.609375 C 0.53125 -4.421875 0.484375 -4.21875 0.484375 -4.015625 C 0.484375 -3.78125 0.53125 -3.578125 0.609375 -3.40625 C 0.6875 -3.234375 0.796875 -3.109375 0.9375 -2.984375 C 1.0625 -2.875 1.21875 -2.78125 1.390625 -2.703125 C 1.5625 -2.640625 1.75 -2.5625 1.921875 -2.515625 C 2.109375 -2.453125 2.28125 -2.390625 2.453125 -2.34375 C 2.625 -2.296875 2.78125 -2.21875 2.90625 -2.15625 C 3.046875 -2.078125 3.15625 -2 3.234375 -1.890625 C 3.3125 -1.796875 3.359375 -1.671875 3.359375 -1.515625 C 3.359375 -1.390625 3.34375 -1.28125 3.296875 -1.171875 C 3.25 -1.0625 3.171875 -0.96875 3.078125 -0.890625 C 2.984375 -0.796875 2.875 -0.734375 2.71875 -0.6875 C 2.578125 -0.625 2.421875 -0.609375 2.234375 -0.609375 C 2 -0.609375 1.828125 -0.640625 1.671875 -0.6875 C 1.53125 -0.734375 1.40625 -0.796875 1.296875 -0.859375 C 1.203125 -0.921875 1.109375 -0.96875 1.03125 -1.03125 C 0.96875 -1.078125 0.890625 -1.09375 0.828125 -1.09375 C 0.765625 -1.09375 0.703125 -1.09375 0.671875 -1.0625 C 0.625 -1.03125 0.59375 -1 0.5625 -0.953125 L 0.34375 -0.578125 C 0.5625 -0.390625 0.828125 -0.234375 1.140625 -0.09375 C 1.4375 0.015625 1.796875 0.09375 2.1875 0.09375 C 2.515625 0.09375 2.8125 0.046875 3.078125 -0.046875 C 3.328125 -0.140625 3.546875 -0.265625 3.734375 -0.421875 C 3.90625 -0.578125 4.046875 -0.765625 4.140625 -0.984375 C 4.21875 -1.203125 4.265625 -1.4375 4.265625 -1.6875 C 4.265625 -1.90625 4.234375 -2.109375 4.140625 -2.25 C 4.0625 -2.421875 3.953125 -2.546875 3.828125 -2.65625 C 3.6875 -2.765625 3.53125 -2.859375 3.359375 -2.9375 C 3.203125 -3 3.015625 -3.078125 2.828125 -3.125 C 2.65625 -3.203125 2.484375 -3.25 2.3125 -3.296875 C 2.140625 -3.359375 1.984375 -3.40625 1.859375 -3.484375 C 1.71875 -3.5625 1.609375 -3.640625 1.53125 -3.734375 C 1.453125 -3.828125 1.40625 -3.9375 1.40625 -4.078125 C 1.40625 -4.203125 1.421875 -4.296875 1.484375 -4.390625 C 1.53125 -4.5 1.609375 -4.578125 1.6875 -4.65625 C 1.78125 -4.71875 1.890625 -4.78125 2.03125 -4.828125 C 2.15625 -4.859375 2.3125 -4.890625 2.46875 -4.890625 C 2.65625 -4.890625 2.828125 -4.859375 2.96875 -4.828125 C 3.09375 -4.78125 3.21875 -4.734375 3.3125 -4.6875 C 3.421875 -4.640625 3.5 -4.59375 3.578125 -4.546875 C 3.640625 -4.515625 3.703125 -4.5 3.75 -4.5 C 3.84375 -4.5 3.921875 -4.53125 3.953125 -4.609375 Z M 3.953125 -4.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-19">
<path style="stroke:none;" d="M 0.796875 0 L 1.765625 0 L 1.765625 -3.515625 C 1.921875 -3.890625 2.109375 -4.171875 2.328125 -4.375 C 2.5625 -4.5625 2.84375 -4.671875 3.1875 -4.671875 C 3.375 -4.671875 3.515625 -4.65625 3.625 -4.609375 C 3.734375 -4.578125 3.8125 -4.5625 3.859375 -4.5625 C 3.953125 -4.5625 4 -4.609375 4.03125 -4.703125 L 4.15625 -5.421875 C 4.046875 -5.484375 3.9375 -5.53125 3.8125 -5.578125 C 3.6875 -5.609375 3.546875 -5.625 3.390625 -5.625 C 3.015625 -5.625 2.6875 -5.515625 2.421875 -5.296875 C 2.140625 -5.078125 1.90625 -4.78125 1.71875 -4.390625 L 1.65625 -5.25 C 1.640625 -5.359375 1.609375 -5.421875 1.578125 -5.46875 C 1.53125 -5.5 1.453125 -5.53125 1.359375 -5.53125 L 0.796875 -5.53125 Z M 0.796875 0 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="0.131" y="71.422"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="11.182" y="71.422"/>
<use xlink:href="#glyph0-3" x="19.538371" y="71.422"/>
<use xlink:href="#glyph0-4" x="25.069284" y="71.422"/>
<use xlink:href="#glyph0-5" x="31.134744" y="71.422"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="42.905" y="71.422"/>
<use xlink:href="#glyph0-6" x="46.974094" y="71.422"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="60.741" y="71.422"/>
<use xlink:href="#glyph0-3" x="65.83555" y="71.422"/>
<use xlink:href="#glyph0-4" x="71.366463" y="71.422"/>
<use xlink:href="#glyph0-7" x="77.431923" y="71.422"/>
<use xlink:href="#glyph0-8" x="82.526473" y="71.422"/>
<use xlink:href="#glyph0-9" x="88.242841" y="71.422"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="98.738" y="71.422"/>
<use xlink:href="#glyph0-10" x="102.807094" y="71.422"/>
<use xlink:href="#glyph0-8" x="108.872554" y="71.422"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-11" x="122.29" y="71.422"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="128.77" y="71.422"/>
<use xlink:href="#glyph0-13" x="131.56273" y="71.422"/>
<use xlink:href="#glyph0-10" x="137.13728" y="71.422"/>
<use xlink:href="#glyph0-5" x="143.202739" y="71.422"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="154.974" y="71.422"/>
<use xlink:href="#glyph0-10" x="159.043094" y="71.422"/>
<use xlink:href="#glyph0-3" x="165.108554" y="71.422"/>
<use xlink:href="#glyph0-5" x="170.639468" y="71.422"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="182.41" y="71.422"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-14" x="193.461" y="71.422"/>
<use xlink:href="#glyph0-6" x="199.559187" y="71.422"/>
<use xlink:href="#glyph0-6" x="205.624646" y="71.422"/>
<use xlink:href="#glyph0-15" x="211.690106" y="71.422"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="217.079201" y="71.422"/>
<use xlink:href="#glyph0-16" x="222.79557" y="71.422"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-17" x="236.595" y="71.422"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="242.038641" y="71.422"/>
<use xlink:href="#glyph0-18" x="247.755009" y="71.422"/>
<use xlink:href="#glyph0-5" x="252.489559" y="71.422"/>
<use xlink:href="#glyph0-8" x="256.558653" y="71.422"/>
<use xlink:href="#glyph0-19" x="262.275021" y="71.422"/>
<use xlink:href="#glyph0-16" x="266.671389" y="71.422"/>
<use xlink:href="#glyph0-3" x="272.769576" y="71.422"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-17" x="278.125944" y="71.422"/>
</g>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -118.729594 56.362625 L -118.729594 10.37825 " transform="matrix(1,0,0,-1,141.921,67.972)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 23.191406 60.183594 L 25.261719 56.039062 L 23.191406 57.59375 L 21.117188 56.039062 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -122.713969 7.788406 L -125.120219 19.120437 C -125.440531 20.643875 -126.963969 21.882156 -128.522562 21.882156 L -134.311625 21.882156 C -135.866312 21.882156 -137.38975 20.643875 -137.713969 19.120437 L -139.581156 10.323562 " transform="matrix(1,0,0,-1,141.921,67.972)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 1.804688 60.183594 L 4.691406 56.558594 L 2.339844 57.648438 L 0.636719 55.695312 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -111.756937 7.788406 L -109.362406 30.362625 C -109.034281 33.460281 -106.245219 35.972 -103.131937 35.972 L -74.659281 35.972 C -71.546 35.972 -68.756937 33.460281 -68.428812 30.362625 L -66.307719 10.366531 " transform="matrix(1,0,0,-1,141.921,67.972)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 75.886719 60.183594 L 77.511719 55.839844 L 75.613281 57.605469 L 73.386719 56.277344 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -70.018656 7.788406 L -72.421 19.120437 C -72.745219 20.643875 -74.268656 21.882156 -75.82725 21.882156 L -88.143656 21.882156 C -89.698344 21.882156 -91.221781 20.643875 -91.546 19.120437 L -93.413187 10.323562 " transform="matrix(1,0,0,-1,141.921,67.972)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 47.972656 60.183594 L 50.859375 56.558594 L 48.507812 57.648438 L 46.804688 55.695312 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -62.049906 7.788406 L -59.655375 30.362625 C -59.32725 33.460281 -56.534281 35.972 -53.424906 35.972 L -15.76475 35.972 C -12.651469 35.972 -9.862406 33.460281 -9.534281 30.362625 L -7.413187 10.366531 " transform="matrix(1,0,0,-1,141.921,67.972)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 134.78125 60.183594 L 136.40625 55.839844 L 134.507812 57.605469 L 132.28125 56.277344 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -11.124125 7.788406 L -13.530375 19.120437 C -13.850687 20.643875 -15.374125 21.882156 -16.932719 21.882156 L -29.45225 21.882156 C -31.006937 21.882156 -32.530375 20.643875 -32.854594 19.120437 L -34.721781 10.323562 " transform="matrix(1,0,0,-1,141.921,67.972)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 106.664062 60.183594 L 109.550781 56.558594 L 107.199219 57.648438 L 105.496094 55.695312 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.155375 7.788406 L -0.760844 41.62825 C -0.432719 46.288406 3.618063 50.061844 8.289938 50.061844 L 57.813375 50.061844 C 62.481344 50.061844 66.536031 46.288406 66.864156 41.62825 L 69.075094 10.374344 " transform="matrix(1,0,0,-1,141.921,67.972)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 211.179688 60.183594 L 212.953125 55.902344 L 210.996094 57.597656 L 208.820312 56.195312 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.270406 7.788406 L 62.875875 30.362625 C 62.54775 33.460281 59.758688 35.972 56.645406 35.972 L 31.543844 35.972 C 28.430563 35.972 25.6415 33.460281 25.313375 30.362625 L 23.192281 10.366531 " transform="matrix(1,0,0,-1,141.921,67.972)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 164.839844 60.183594 L 167.339844 56.277344 L 165.113281 57.605469 L 163.214844 55.839844 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 62.282125 7.788406 L 59.879781 19.120437 C 59.555563 20.643875 58.032125 21.882156 56.477438 21.882156 L 47.969625 21.882156 C 46.414938 21.882156 44.8915 20.643875 44.567281 19.120437 L 42.700094 10.323562 " transform="matrix(1,0,0,-1,141.921,67.972)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 184.085938 60.183594 L 186.972656 56.558594 L 184.621094 57.648438 L 182.917969 55.695312 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 73.243063 7.788406 L 75.645406 19.120437 C 75.969625 20.643875 77.493063 21.882156 79.04775 21.882156 L 112.426656 21.882156 C 113.981344 21.882156 115.508688 20.643875 115.829 19.120437 L 117.696188 10.323562 " transform="matrix(1,0,0,-1,141.921,67.972)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 260.15625 60.183594 L 261.324219 55.695312 L 259.617188 57.648438 L 257.265625 56.558594 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 37 KiB

View File

@ -0,0 +1,308 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="340pt" height="111pt" viewBox="0 0 340 111" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 1.359375 -6.21875 L 1.625 -5.8125 C 1.65625 -5.71875 1.734375 -5.6875 1.828125 -5.6875 C 1.859375 -5.6875 1.90625 -5.703125 1.953125 -5.734375 C 2 -5.765625 2.078125 -5.8125 2.140625 -5.84375 C 2.21875 -5.890625 2.296875 -5.921875 2.40625 -5.953125 C 2.515625 -5.984375 2.640625 -6 2.78125 -6 C 2.984375 -6 3.15625 -5.953125 3.296875 -5.84375 C 3.421875 -5.734375 3.484375 -5.578125 3.484375 -5.40625 C 3.484375 -5.25 3.46875 -5.125 3.40625 -5.015625 C 3.34375 -4.921875 3.265625 -4.828125 3.1875 -4.734375 C 3.09375 -4.65625 3 -4.578125 2.90625 -4.5 C 2.796875 -4.4375 2.71875 -4.359375 2.625 -4.28125 C 2.546875 -4.203125 2.484375 -4.109375 2.4375 -4.03125 C 2.390625 -3.921875 2.375 -3.828125 2.390625 -3.703125 L 2.453125 -3.0625 L 3.125 -3.0625 L 3.21875 -3.625 C 3.234375 -3.71875 3.265625 -3.796875 3.328125 -3.859375 C 3.390625 -3.921875 3.46875 -3.984375 3.5625 -4.0625 C 3.640625 -4.140625 3.734375 -4.203125 3.828125 -4.28125 C 3.9375 -4.359375 4.03125 -4.453125 4.09375 -4.5625 C 4.1875 -4.671875 4.25 -4.796875 4.3125 -4.9375 C 4.359375 -5.09375 4.390625 -5.25 4.390625 -5.453125 C 4.390625 -5.65625 4.359375 -5.84375 4.28125 -6.015625 C 4.203125 -6.171875 4.09375 -6.3125 3.96875 -6.4375 C 3.828125 -6.546875 3.671875 -6.640625 3.484375 -6.703125 C 3.296875 -6.765625 3.09375 -6.796875 2.859375 -6.796875 C 2.6875 -6.796875 2.546875 -6.78125 2.40625 -6.75 C 2.25 -6.71875 2.125 -6.6875 2 -6.625 C 1.875 -6.578125 1.75 -6.515625 1.65625 -6.453125 C 1.546875 -6.375 1.453125 -6.296875 1.359375 -6.21875 Z M 2.15625 -1.59375 C 2.15625 -1.421875 2.21875 -1.28125 2.328125 -1.171875 C 2.4375 -1.046875 2.578125 -1 2.765625 -1 C 2.84375 -1 2.921875 -1.015625 2.984375 -1.03125 C 3.0625 -1.0625 3.125 -1.109375 3.171875 -1.171875 C 3.234375 -1.21875 3.265625 -1.28125 3.296875 -1.359375 C 3.328125 -1.421875 3.34375 -1.515625 3.34375 -1.59375 C 3.34375 -1.671875 3.328125 -1.75 3.296875 -1.828125 C 3.265625 -1.90625 3.234375 -1.96875 3.171875 -2.015625 C 3.125 -2.078125 3.0625 -2.125 2.984375 -2.15625 C 2.921875 -2.1875 2.84375 -2.203125 2.765625 -2.203125 C 2.578125 -2.203125 2.4375 -2.140625 2.328125 -2.015625 C 2.21875 -1.90625 2.15625 -1.765625 2.15625 -1.59375 Z M 0.25 -7.8125 L 0.25 0 L 5.5625 0 L 5.5625 -7.8125 Z M 0.515625 -0.296875 L 0.515625 -7.515625 L 5.25 -7.515625 L 5.25 -0.296875 Z M 0.515625 -0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 2.203125 0 L 2.203125 -7.8125 L 1.140625 -7.8125 L 1.140625 0 Z M 2.203125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 4.5625 -4.546875 L 4.828125 -4.890625 C 4.59375 -5.125 4.328125 -5.296875 4.03125 -5.421875 C 3.734375 -5.546875 3.390625 -5.609375 3 -5.609375 C 2.578125 -5.609375 2.21875 -5.546875 1.890625 -5.40625 C 1.578125 -5.25 1.296875 -5.0625 1.078125 -4.8125 C 0.859375 -4.546875 0.6875 -4.25 0.578125 -3.90625 C 0.453125 -3.5625 0.40625 -3.171875 0.40625 -2.765625 C 0.40625 -2.3125 0.46875 -1.90625 0.59375 -1.5625 C 0.71875 -1.203125 0.890625 -0.90625 1.109375 -0.671875 C 1.328125 -0.421875 1.578125 -0.234375 1.875 -0.109375 C 2.171875 0.015625 2.5 0.078125 2.84375 0.078125 C 3.234375 0.078125 3.625 0.015625 3.984375 -0.125 C 4.34375 -0.265625 4.640625 -0.484375 4.875 -0.78125 L 4.609375 -1.125 C 4.5625 -1.1875 4.5 -1.21875 4.421875 -1.21875 C 4.359375 -1.21875 4.296875 -1.1875 4.21875 -1.140625 C 4.15625 -1.078125 4.078125 -1.015625 3.96875 -0.953125 C 3.875 -0.875 3.75 -0.8125 3.59375 -0.765625 C 3.4375 -0.703125 3.25 -0.671875 3.015625 -0.671875 C 2.765625 -0.671875 2.546875 -0.71875 2.34375 -0.8125 C 2.140625 -0.90625 1.96875 -1.046875 1.84375 -1.21875 C 1.703125 -1.390625 1.59375 -1.609375 1.515625 -1.875 C 1.4375 -2.125 1.40625 -2.4375 1.40625 -2.765625 C 1.40625 -3.09375 1.4375 -3.375 1.5 -3.625 C 1.578125 -3.890625 1.6875 -4.109375 1.828125 -4.296875 C 1.96875 -4.46875 2.140625 -4.609375 2.34375 -4.71875 C 2.546875 -4.796875 2.796875 -4.859375 3.0625 -4.859375 C 3.265625 -4.859375 3.4375 -4.828125 3.578125 -4.78125 C 3.71875 -4.734375 3.828125 -4.6875 3.9375 -4.640625 C 4.03125 -4.578125 4.109375 -4.53125 4.171875 -4.484375 C 4.234375 -4.4375 4.296875 -4.421875 4.359375 -4.421875 C 4.40625 -4.421875 4.453125 -4.421875 4.484375 -4.453125 C 4.5 -4.46875 4.53125 -4.5 4.5625 -4.546875 Z M 4.5625 -4.546875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 0.796875 0 L 1.765625 0 L 1.765625 -4.0625 C 1.984375 -4.296875 2.203125 -4.5 2.453125 -4.625 C 2.703125 -4.765625 2.96875 -4.84375 3.265625 -4.84375 C 3.65625 -4.84375 3.953125 -4.71875 4.140625 -4.5 C 4.328125 -4.265625 4.421875 -3.9375 4.421875 -3.515625 L 4.421875 0 L 5.390625 0 L 5.390625 -3.515625 C 5.390625 -3.828125 5.359375 -4.109375 5.265625 -4.375 C 5.1875 -4.625 5.078125 -4.859375 4.921875 -5.03125 C 4.765625 -5.21875 4.578125 -5.359375 4.34375 -5.46875 C 4.109375 -5.5625 3.84375 -5.609375 3.546875 -5.609375 C 3.171875 -5.609375 2.84375 -5.53125 2.546875 -5.390625 C 2.265625 -5.234375 2 -5.03125 1.765625 -4.78125 L 1.765625 -8.03125 L 0.796875 -8.03125 Z M 0.796875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 0.796875 0 L 1.765625 0 L 1.765625 -4.109375 C 1.9375 -4.34375 2.125 -4.515625 2.328125 -4.640625 C 2.53125 -4.765625 2.765625 -4.84375 3 -4.84375 C 3.34375 -4.84375 3.59375 -4.734375 3.78125 -4.515625 C 3.953125 -4.296875 4.046875 -3.953125 4.046875 -3.515625 L 4.046875 0 L 5.015625 0 L 5.015625 -3.515625 C 5.015625 -3.734375 5.046875 -3.921875 5.109375 -4.09375 C 5.171875 -4.265625 5.265625 -4.390625 5.375 -4.5 C 5.484375 -4.609375 5.609375 -4.6875 5.75 -4.75 C 5.890625 -4.8125 6.046875 -4.84375 6.203125 -4.84375 C 6.5625 -4.84375 6.84375 -4.71875 7.03125 -4.5 C 7.21875 -4.28125 7.3125 -3.953125 7.3125 -3.515625 L 7.3125 0 L 8.28125 0 L 8.28125 -3.515625 C 8.28125 -3.84375 8.234375 -4.15625 8.15625 -4.40625 C 8.078125 -4.671875 7.953125 -4.890625 7.796875 -5.0625 C 7.640625 -5.25 7.4375 -5.375 7.21875 -5.46875 C 6.984375 -5.5625 6.734375 -5.609375 6.4375 -5.609375 C 6.265625 -5.609375 6.078125 -5.59375 5.90625 -5.546875 C 5.71875 -5.5 5.5625 -5.4375 5.40625 -5.34375 C 5.25 -5.25 5.109375 -5.125 4.984375 -4.984375 C 4.859375 -4.828125 4.75 -4.65625 4.671875 -4.453125 C 4.578125 -4.8125 4.40625 -5.09375 4.171875 -5.296875 C 3.953125 -5.5 3.640625 -5.609375 3.265625 -5.609375 C 2.9375 -5.609375 2.640625 -5.53125 2.390625 -5.375 C 2.140625 -5.21875 1.90625 -5 1.703125 -4.75 L 1.640625 -5.328125 C 1.59375 -5.453125 1.515625 -5.53125 1.375 -5.53125 L 0.796875 -5.53125 Z M 0.796875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 1.296875 -7.03125 C 1.296875 -7.109375 1.28125 -7.1875 1.25 -7.265625 C 1.21875 -7.34375 1.171875 -7.40625 1.125 -7.46875 C 1.0625 -7.53125 1 -7.5625 0.921875 -7.609375 C 0.84375 -7.640625 0.765625 -7.65625 0.6875 -7.65625 C 0.59375 -7.65625 0.53125 -7.640625 0.453125 -7.609375 C 0.375 -7.5625 0.3125 -7.53125 0.265625 -7.46875 C 0.203125 -7.40625 0.15625 -7.34375 0.125 -7.265625 C 0.09375 -7.1875 0.078125 -7.109375 0.078125 -7.03125 C 0.078125 -6.953125 0.09375 -6.859375 0.125 -6.796875 C 0.15625 -6.71875 0.203125 -6.65625 0.265625 -6.609375 C 0.3125 -6.546875 0.375 -6.5 0.453125 -6.46875 C 0.53125 -6.4375 0.59375 -6.421875 0.6875 -6.421875 C 0.765625 -6.421875 0.84375 -6.4375 0.921875 -6.46875 C 1 -6.5 1.0625 -6.546875 1.125 -6.609375 C 1.171875 -6.65625 1.21875 -6.71875 1.25 -6.796875 C 1.28125 -6.859375 1.296875 -6.953125 1.296875 -7.03125 Z M 3.265625 -7.03125 C 3.265625 -7.109375 3.25 -7.1875 3.21875 -7.265625 C 3.171875 -7.34375 3.140625 -7.40625 3.078125 -7.46875 C 3.015625 -7.53125 2.953125 -7.5625 2.875 -7.609375 C 2.8125 -7.640625 2.71875 -7.65625 2.640625 -7.65625 C 2.5625 -7.65625 2.484375 -7.640625 2.40625 -7.609375 C 2.328125 -7.5625 2.265625 -7.53125 2.21875 -7.46875 C 2.15625 -7.40625 2.109375 -7.34375 2.078125 -7.265625 C 2.046875 -7.1875 2.03125 -7.109375 2.03125 -7.03125 C 2.03125 -6.953125 2.046875 -6.859375 2.078125 -6.796875 C 2.109375 -6.71875 2.15625 -6.65625 2.21875 -6.609375 C 2.265625 -6.546875 2.328125 -6.5 2.40625 -6.46875 C 2.484375 -6.4375 2.5625 -6.421875 2.640625 -6.421875 C 2.71875 -6.421875 2.8125 -6.4375 2.875 -6.46875 C 2.953125 -6.5 3.015625 -6.546875 3.078125 -6.609375 C 3.140625 -6.65625 3.171875 -6.71875 3.21875 -6.796875 C 3.25 -6.859375 3.265625 -6.953125 3.265625 -7.03125 Z M 3.265625 -7.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 3.03125 -5.609375 C 2.625 -5.609375 2.265625 -5.546875 1.9375 -5.40625 C 1.609375 -5.265625 1.34375 -5.078125 1.109375 -4.84375 C 0.875 -4.59375 0.703125 -4.296875 0.578125 -3.9375 C 0.453125 -3.59375 0.390625 -3.203125 0.390625 -2.765625 C 0.390625 -2.328125 0.453125 -1.9375 0.578125 -1.59375 C 0.703125 -1.234375 0.875 -0.9375 1.109375 -0.6875 C 1.34375 -0.453125 1.609375 -0.25 1.9375 -0.125 C 2.265625 0.015625 2.625 0.078125 3.03125 0.078125 C 3.4375 0.078125 3.796875 0.015625 4.125 -0.125 C 4.453125 -0.25 4.734375 -0.453125 4.953125 -0.6875 C 5.1875 -0.9375 5.359375 -1.234375 5.46875 -1.59375 C 5.59375 -1.9375 5.65625 -2.328125 5.65625 -2.765625 C 5.65625 -3.203125 5.59375 -3.59375 5.46875 -3.9375 C 5.359375 -4.296875 5.1875 -4.59375 4.953125 -4.84375 C 4.734375 -5.078125 4.453125 -5.265625 4.125 -5.40625 C 3.796875 -5.546875 3.4375 -5.609375 3.03125 -5.609375 Z M 3.03125 -0.6875 C 2.75 -0.6875 2.515625 -0.734375 2.3125 -0.828125 C 2.109375 -0.921875 1.9375 -1.046875 1.796875 -1.234375 C 1.671875 -1.40625 1.5625 -1.625 1.5 -1.875 C 1.421875 -2.140625 1.390625 -2.4375 1.390625 -2.765625 C 1.390625 -3.09375 1.421875 -3.375 1.5 -3.640625 C 1.5625 -3.90625 1.671875 -4.109375 1.796875 -4.296875 C 1.9375 -4.484375 2.109375 -4.609375 2.3125 -4.703125 C 2.515625 -4.796875 2.75 -4.84375 3.03125 -4.84375 C 3.578125 -4.84375 3.984375 -4.65625 4.25 -4.296875 C 4.515625 -3.9375 4.65625 -3.421875 4.65625 -2.765625 C 4.65625 -2.109375 4.515625 -1.59375 4.25 -1.234375 C 3.984375 -0.859375 3.578125 -0.6875 3.03125 -0.6875 Z M 3.03125 -0.6875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 2.46875 0.09375 C 2.71875 0.09375 2.96875 0.046875 3.203125 -0.046875 C 3.4375 -0.140625 3.640625 -0.25 3.8125 -0.421875 L 3.515625 -0.875 C 3.484375 -0.9375 3.4375 -0.96875 3.390625 -0.96875 C 3.359375 -0.96875 3.328125 -0.953125 3.28125 -0.921875 C 3.25 -0.90625 3.203125 -0.875 3.140625 -0.84375 C 3.09375 -0.8125 3.03125 -0.78125 2.953125 -0.75 C 2.875 -0.71875 2.796875 -0.703125 2.6875 -0.703125 C 2.515625 -0.703125 2.359375 -0.765625 2.25 -0.875 C 2.140625 -1 2.078125 -1.15625 2.078125 -1.390625 L 2.078125 -4.71875 L 3.671875 -4.71875 L 3.671875 -5.421875 L 2.078125 -5.421875 L 2.078125 -7.3125 L 1.59375 -7.3125 C 1.53125 -7.3125 1.484375 -7.296875 1.4375 -7.265625 C 1.40625 -7.234375 1.375 -7.1875 1.375 -7.125 L 1.140625 -5.421875 L 0.234375 -5.3125 L 0.234375 -4.921875 C 0.234375 -4.859375 0.265625 -4.796875 0.296875 -4.765625 C 0.34375 -4.734375 0.390625 -4.71875 0.453125 -4.71875 L 1.109375 -4.71875 L 1.109375 -1.328125 C 1.109375 -0.875 1.234375 -0.53125 1.46875 -0.28125 C 1.703125 -0.03125 2.03125 0.09375 2.46875 0.09375 Z M 2.46875 0.09375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 2.984375 -5.609375 C 2.578125 -5.609375 2.21875 -5.546875 1.90625 -5.40625 C 1.578125 -5.265625 1.3125 -5.078125 1.09375 -4.828125 C 0.859375 -4.578125 0.703125 -4.28125 0.578125 -3.953125 C 0.46875 -3.625 0.40625 -3.265625 0.40625 -2.875 C 0.40625 -2.40625 0.46875 -1.96875 0.59375 -1.609375 C 0.734375 -1.25 0.921875 -0.9375 1.140625 -0.6875 C 1.390625 -0.4375 1.65625 -0.25 1.984375 -0.125 C 2.296875 0.015625 2.65625 0.078125 3.03125 0.078125 C 3.234375 0.078125 3.4375 0.0625 3.640625 0.015625 C 3.84375 -0.015625 4.046875 -0.0625 4.234375 -0.125 C 4.421875 -0.203125 4.609375 -0.28125 4.765625 -0.390625 C 4.9375 -0.5 5.078125 -0.625 5.203125 -0.78125 L 4.921875 -1.125 C 4.890625 -1.1875 4.828125 -1.21875 4.75 -1.21875 C 4.6875 -1.21875 4.609375 -1.1875 4.53125 -1.140625 C 4.4375 -1.078125 4.328125 -1.015625 4.203125 -0.953125 C 4.078125 -0.890625 3.921875 -0.828125 3.75 -0.78125 C 3.578125 -0.71875 3.359375 -0.6875 3.125 -0.6875 C 2.859375 -0.6875 2.625 -0.734375 2.40625 -0.8125 C 2.203125 -0.90625 2.015625 -1.03125 1.859375 -1.203125 C 1.71875 -1.375 1.59375 -1.59375 1.5 -1.84375 C 1.421875 -2.109375 1.375 -2.40625 1.359375 -2.765625 L 5.03125 -2.765625 C 5.125 -2.765625 5.1875 -2.78125 5.21875 -2.828125 C 5.25 -2.890625 5.265625 -2.984375 5.265625 -3.140625 C 5.265625 -3.53125 5.21875 -3.875 5.109375 -4.1875 C 4.984375 -4.5 4.828125 -4.75 4.625 -4.96875 C 4.421875 -5.171875 4.171875 -5.328125 3.90625 -5.4375 C 3.625 -5.5625 3.3125 -5.609375 2.984375 -5.609375 Z M 3 -4.890625 C 3.234375 -4.890625 3.421875 -4.859375 3.59375 -4.78125 C 3.765625 -4.71875 3.921875 -4.609375 4.03125 -4.46875 C 4.15625 -4.328125 4.25 -4.171875 4.3125 -3.984375 C 4.375 -3.796875 4.40625 -3.59375 4.40625 -3.359375 L 1.390625 -3.359375 C 1.46875 -3.84375 1.625 -4.21875 1.890625 -4.5 C 2.171875 -4.765625 2.53125 -4.890625 3 -4.890625 Z M 3 -4.890625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 4.6875 0 L 5.265625 0 L 5.265625 -8.03125 L 4.296875 -8.03125 L 4.296875 -4.96875 C 4.09375 -5.171875 3.890625 -5.328125 3.640625 -5.453125 C 3.40625 -5.5625 3.125 -5.625 2.78125 -5.625 C 2.40625 -5.625 2.078125 -5.546875 1.78125 -5.40625 C 1.484375 -5.25 1.234375 -5.046875 1.03125 -4.796875 C 0.828125 -4.53125 0.671875 -4.234375 0.5625 -3.875 C 0.453125 -3.53125 0.390625 -3.15625 0.390625 -2.75 C 0.390625 -2.28125 0.4375 -1.875 0.546875 -1.53125 C 0.640625 -1.171875 0.78125 -0.875 0.953125 -0.640625 C 1.140625 -0.40625 1.359375 -0.234375 1.625 -0.109375 C 1.875 0.015625 2.171875 0.078125 2.484375 0.078125 C 2.875 0.078125 3.21875 -0.015625 3.515625 -0.1875 C 3.828125 -0.359375 4.09375 -0.578125 4.328125 -0.875 L 4.421875 -0.203125 C 4.453125 -0.0625 4.546875 0 4.6875 0 Z M 2.796875 -0.703125 C 2.578125 -0.703125 2.375 -0.75 2.203125 -0.828125 C 2.03125 -0.90625 1.875 -1.015625 1.765625 -1.1875 C 1.640625 -1.359375 1.546875 -1.5625 1.484375 -1.828125 C 1.421875 -2.078125 1.390625 -2.390625 1.390625 -2.75 C 1.390625 -3.421875 1.53125 -3.953125 1.8125 -4.3125 C 2.09375 -4.671875 2.484375 -4.859375 3 -4.859375 C 3.25 -4.859375 3.484375 -4.8125 3.703125 -4.71875 C 3.921875 -4.625 4.109375 -4.453125 4.296875 -4.21875 L 4.296875 -1.546875 C 4.09375 -1.28125 3.875 -1.078125 3.625 -0.921875 C 3.390625 -0.78125 3.125 -0.703125 2.796875 -0.703125 Z M 2.796875 -0.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 0.796875 0 L 1.765625 0 L 1.765625 -4.0625 C 1.984375 -4.296875 2.203125 -4.5 2.453125 -4.625 C 2.703125 -4.765625 2.96875 -4.84375 3.265625 -4.84375 C 3.65625 -4.84375 3.953125 -4.71875 4.140625 -4.5 C 4.328125 -4.265625 4.421875 -3.9375 4.421875 -3.515625 L 4.421875 0 L 5.390625 0 L 5.390625 -3.515625 C 5.390625 -3.828125 5.359375 -4.109375 5.265625 -4.375 C 5.1875 -4.625 5.078125 -4.859375 4.921875 -5.03125 C 4.765625 -5.21875 4.578125 -5.359375 4.34375 -5.46875 C 4.109375 -5.5625 3.84375 -5.609375 3.546875 -5.609375 C 3.15625 -5.609375 2.8125 -5.53125 2.515625 -5.359375 C 2.21875 -5.203125 1.953125 -4.984375 1.71875 -4.71875 L 1.640625 -5.328125 C 1.59375 -5.453125 1.515625 -5.53125 1.375 -5.53125 L 0.796875 -5.53125 Z M 0.796875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 5.765625 -7.8125 L 0.953125 -7.8125 L 0.953125 0 L 2.015625 0 L 2.015625 -3.359375 L 5.21875 -3.359375 L 5.21875 -4.21875 L 2.015625 -4.21875 L 2.015625 -6.953125 L 5.765625 -6.953125 Z M 5.765625 -7.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 1.875 -8.03125 L 0.90625 -8.03125 L 0.90625 0 L 1.875 0 Z M 1.875 -8.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 1.640625 -5.53125 L 0.671875 -5.53125 L 0.671875 -2 C 0.671875 -1.6875 0.703125 -1.40625 0.78125 -1.140625 C 0.859375 -0.890625 0.96875 -0.671875 1.140625 -0.484375 C 1.296875 -0.3125 1.484375 -0.15625 1.71875 -0.0625 C 1.953125 0.03125 2.21875 0.09375 2.515625 0.09375 C 2.90625 0.09375 3.234375 0 3.546875 -0.15625 C 3.84375 -0.3125 4.109375 -0.53125 4.34375 -0.796875 L 4.421875 -0.203125 C 4.453125 -0.0625 4.546875 0 4.6875 0 L 5.265625 0 L 5.265625 -5.53125 L 4.296875 -5.53125 L 4.296875 -1.453125 C 4.078125 -1.203125 3.84375 -1.03125 3.59375 -0.890625 C 3.34375 -0.75 3.078125 -0.6875 2.796875 -0.6875 C 2.40625 -0.6875 2.109375 -0.796875 1.921875 -1.03125 C 1.734375 -1.265625 1.640625 -1.578125 1.640625 -2 Z M 1.640625 -5.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 2.65625 -5.609375 C 2.34375 -5.609375 2.078125 -5.578125 1.8125 -5.484375 C 1.5625 -5.40625 1.34375 -5.296875 1.15625 -5.140625 C 0.96875 -4.984375 0.8125 -4.796875 0.71875 -4.5625 C 0.609375 -4.359375 0.5625 -4.109375 0.5625 -3.84375 C 0.5625 -3.5 0.640625 -3.203125 0.796875 -2.953125 C 0.953125 -2.703125 1.15625 -2.5 1.4375 -2.34375 C 1.3125 -2.28125 1.21875 -2.21875 1.125 -2.140625 C 1.046875 -2.0625 0.96875 -1.984375 0.90625 -1.90625 C 0.84375 -1.828125 0.796875 -1.734375 0.78125 -1.640625 C 0.75 -1.5625 0.734375 -1.484375 0.734375 -1.40625 C 0.734375 -1.203125 0.78125 -1.03125 0.875 -0.921875 C 0.953125 -0.796875 1.078125 -0.6875 1.25 -0.625 C 0.9375 -0.5 0.703125 -0.359375 0.53125 -0.15625 C 0.359375 0.015625 0.265625 0.25 0.265625 0.53125 C 0.265625 0.71875 0.328125 0.90625 0.421875 1.078125 C 0.53125 1.265625 0.671875 1.40625 0.875 1.546875 C 1.078125 1.6875 1.328125 1.78125 1.625 1.875 C 1.9375 1.953125 2.28125 1.984375 2.6875 1.984375 C 3.09375 1.984375 3.453125 1.9375 3.78125 1.828125 C 4.09375 1.734375 4.359375 1.59375 4.59375 1.421875 C 4.8125 1.25 4.984375 1.046875 5.09375 0.828125 C 5.21875 0.609375 5.265625 0.375 5.265625 0.140625 C 5.265625 -0.109375 5.21875 -0.328125 5.109375 -0.484375 C 5.015625 -0.640625 4.875 -0.765625 4.6875 -0.859375 C 4.515625 -0.953125 4.328125 -1.015625 4.09375 -1.046875 C 3.875 -1.09375 3.65625 -1.125 3.421875 -1.140625 C 3.1875 -1.15625 2.96875 -1.171875 2.75 -1.171875 C 2.515625 -1.171875 2.328125 -1.203125 2.15625 -1.234375 C 1.96875 -1.25 1.828125 -1.296875 1.734375 -1.375 C 1.625 -1.4375 1.578125 -1.53125 1.578125 -1.671875 C 1.578125 -1.75 1.609375 -1.828125 1.65625 -1.90625 C 1.71875 -2 1.8125 -2.078125 1.921875 -2.15625 C 2.15625 -2.09375 2.40625 -2.0625 2.65625 -2.0625 C 2.953125 -2.0625 3.234375 -2.09375 3.484375 -2.1875 C 3.734375 -2.265625 3.953125 -2.390625 4.140625 -2.546875 C 4.328125 -2.703125 4.46875 -2.890625 4.5625 -3.109375 C 4.671875 -3.328125 4.734375 -3.578125 4.734375 -3.84375 C 4.734375 -4.125 4.671875 -4.390625 4.546875 -4.625 L 5.171875 -4.71875 C 5.328125 -4.75 5.40625 -4.828125 5.40625 -4.953125 L 5.40625 -5.3125 L 3.90625 -5.3125 C 3.734375 -5.40625 3.546875 -5.484375 3.328125 -5.546875 C 3.125 -5.59375 2.890625 -5.609375 2.65625 -5.609375 Z M 4.375 0.296875 C 4.375 0.453125 4.34375 0.578125 4.265625 0.703125 C 4.1875 0.8125 4.078125 0.921875 3.9375 1.015625 C 3.796875 1.09375 3.609375 1.15625 3.40625 1.203125 C 3.203125 1.265625 2.96875 1.28125 2.703125 1.28125 C 2.4375 1.28125 2.203125 1.265625 2 1.203125 C 1.8125 1.171875 1.640625 1.109375 1.515625 1.03125 C 1.375 0.953125 1.28125 0.859375 1.21875 0.75 C 1.15625 0.640625 1.125 0.53125 1.125 0.40625 C 1.125 0.203125 1.1875 0.03125 1.3125 -0.109375 C 1.4375 -0.25 1.609375 -0.359375 1.828125 -0.46875 C 2 -0.4375 2.1875 -0.421875 2.390625 -0.40625 C 2.578125 -0.390625 2.765625 -0.375 2.96875 -0.375 C 3.15625 -0.359375 3.328125 -0.34375 3.5 -0.328125 C 3.671875 -0.3125 3.828125 -0.265625 3.953125 -0.234375 C 4.078125 -0.1875 4.1875 -0.109375 4.265625 -0.03125 C 4.34375 0.046875 4.375 0.15625 4.375 0.296875 Z M 2.65625 -2.703125 C 2.46875 -2.703125 2.296875 -2.71875 2.140625 -2.78125 C 2 -2.828125 1.875 -2.90625 1.765625 -3.015625 C 1.65625 -3.109375 1.59375 -3.234375 1.53125 -3.359375 C 1.484375 -3.5 1.453125 -3.640625 1.453125 -3.8125 C 1.453125 -4.15625 1.5625 -4.421875 1.765625 -4.625 C 1.96875 -4.828125 2.265625 -4.921875 2.65625 -4.921875 C 3.046875 -4.921875 3.34375 -4.828125 3.5625 -4.625 C 3.75 -4.421875 3.859375 -4.15625 3.859375 -3.8125 C 3.859375 -3.640625 3.828125 -3.5 3.78125 -3.359375 C 3.734375 -3.234375 3.65625 -3.109375 3.5625 -3.015625 C 3.453125 -2.90625 3.328125 -2.828125 3.171875 -2.78125 C 3.03125 -2.71875 2.859375 -2.703125 2.65625 -2.703125 Z M 2.65625 -2.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 3.953125 -4.609375 L 4.171875 -4.96875 C 3.96875 -5.171875 3.71875 -5.328125 3.421875 -5.4375 C 3.140625 -5.546875 2.8125 -5.609375 2.453125 -5.609375 C 2.140625 -5.609375 1.859375 -5.5625 1.609375 -5.484375 C 1.375 -5.390625 1.171875 -5.28125 1 -5.125 C 0.828125 -4.984375 0.703125 -4.8125 0.609375 -4.609375 C 0.53125 -4.421875 0.484375 -4.21875 0.484375 -4.015625 C 0.484375 -3.78125 0.53125 -3.578125 0.609375 -3.40625 C 0.6875 -3.234375 0.796875 -3.109375 0.9375 -2.984375 C 1.0625 -2.875 1.21875 -2.78125 1.390625 -2.703125 C 1.5625 -2.640625 1.75 -2.5625 1.921875 -2.515625 C 2.109375 -2.453125 2.28125 -2.390625 2.453125 -2.34375 C 2.625 -2.296875 2.78125 -2.21875 2.90625 -2.15625 C 3.046875 -2.078125 3.15625 -2 3.234375 -1.890625 C 3.3125 -1.796875 3.359375 -1.671875 3.359375 -1.515625 C 3.359375 -1.390625 3.34375 -1.28125 3.296875 -1.171875 C 3.25 -1.0625 3.171875 -0.96875 3.078125 -0.890625 C 2.984375 -0.796875 2.875 -0.734375 2.71875 -0.6875 C 2.578125 -0.625 2.421875 -0.609375 2.234375 -0.609375 C 2 -0.609375 1.828125 -0.640625 1.671875 -0.6875 C 1.53125 -0.734375 1.40625 -0.796875 1.296875 -0.859375 C 1.203125 -0.921875 1.109375 -0.96875 1.03125 -1.03125 C 0.96875 -1.078125 0.890625 -1.09375 0.828125 -1.09375 C 0.765625 -1.09375 0.703125 -1.09375 0.671875 -1.0625 C 0.625 -1.03125 0.59375 -1 0.5625 -0.953125 L 0.34375 -0.578125 C 0.5625 -0.390625 0.828125 -0.234375 1.140625 -0.09375 C 1.4375 0.015625 1.796875 0.09375 2.1875 0.09375 C 2.515625 0.09375 2.8125 0.046875 3.078125 -0.046875 C 3.328125 -0.140625 3.546875 -0.265625 3.734375 -0.421875 C 3.90625 -0.578125 4.046875 -0.765625 4.140625 -0.984375 C 4.21875 -1.203125 4.265625 -1.4375 4.265625 -1.6875 C 4.265625 -1.90625 4.234375 -2.109375 4.140625 -2.25 C 4.0625 -2.421875 3.953125 -2.546875 3.828125 -2.65625 C 3.6875 -2.765625 3.53125 -2.859375 3.359375 -2.9375 C 3.203125 -3 3.015625 -3.078125 2.828125 -3.125 C 2.65625 -3.203125 2.484375 -3.25 2.3125 -3.296875 C 2.140625 -3.359375 1.984375 -3.40625 1.859375 -3.484375 C 1.71875 -3.5625 1.609375 -3.640625 1.53125 -3.734375 C 1.453125 -3.828125 1.40625 -3.9375 1.40625 -4.078125 C 1.40625 -4.203125 1.421875 -4.296875 1.484375 -4.390625 C 1.53125 -4.5 1.609375 -4.578125 1.6875 -4.65625 C 1.78125 -4.71875 1.890625 -4.78125 2.03125 -4.828125 C 2.15625 -4.859375 2.3125 -4.890625 2.46875 -4.890625 C 2.65625 -4.890625 2.828125 -4.859375 2.96875 -4.828125 C 3.09375 -4.78125 3.21875 -4.734375 3.3125 -4.6875 C 3.421875 -4.640625 3.5 -4.59375 3.578125 -4.546875 C 3.640625 -4.515625 3.703125 -4.5 3.75 -4.5 C 3.84375 -4.5 3.921875 -4.53125 3.953125 -4.609375 Z M 3.953125 -4.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 0.796875 0 L 1.765625 0 L 1.765625 -3.515625 C 1.921875 -3.890625 2.109375 -4.171875 2.328125 -4.375 C 2.5625 -4.5625 2.84375 -4.671875 3.1875 -4.671875 C 3.375 -4.671875 3.515625 -4.65625 3.625 -4.609375 C 3.734375 -4.578125 3.8125 -4.5625 3.859375 -4.5625 C 3.953125 -4.5625 4 -4.609375 4.03125 -4.703125 L 4.15625 -5.421875 C 4.046875 -5.484375 3.9375 -5.53125 3.8125 -5.578125 C 3.6875 -5.609375 3.546875 -5.625 3.390625 -5.625 C 3.015625 -5.625 2.6875 -5.515625 2.421875 -5.296875 C 2.140625 -5.078125 1.90625 -4.78125 1.71875 -4.390625 L 1.65625 -5.25 C 1.640625 -5.359375 1.609375 -5.421875 1.578125 -5.46875 C 1.53125 -5.5 1.453125 -5.53125 1.359375 -5.53125 L 0.796875 -5.53125 Z M 0.796875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-17">
<path style="stroke:none;" d="M 1.875 -5.53125 L 0.90625 -5.53125 L 0.90625 0 L 1.875 0 Z M 2.09375 -7.265625 C 2.09375 -7.34375 2.078125 -7.4375 2.046875 -7.53125 C 2 -7.609375 1.953125 -7.6875 1.890625 -7.75 C 1.828125 -7.8125 1.75 -7.859375 1.65625 -7.90625 C 1.578125 -7.9375 1.484375 -7.953125 1.390625 -7.953125 C 1.296875 -7.953125 1.203125 -7.9375 1.140625 -7.90625 C 1.046875 -7.859375 0.96875 -7.8125 0.921875 -7.75 C 0.84375 -7.6875 0.796875 -7.609375 0.765625 -7.53125 C 0.71875 -7.4375 0.703125 -7.34375 0.703125 -7.265625 C 0.703125 -7.171875 0.71875 -7.078125 0.765625 -6.984375 C 0.796875 -6.921875 0.84375 -6.84375 0.921875 -6.765625 C 0.96875 -6.71875 1.046875 -6.65625 1.140625 -6.625 C 1.203125 -6.59375 1.296875 -6.578125 1.390625 -6.578125 C 1.484375 -6.578125 1.578125 -6.59375 1.65625 -6.625 C 1.75 -6.65625 1.828125 -6.71875 1.890625 -6.765625 C 1.953125 -6.84375 2 -6.921875 2.046875 -6.984375 C 2.078125 -7.078125 2.09375 -7.171875 2.09375 -7.265625 Z M 2.09375 -7.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-18">
<path style="stroke:none;" d="M 0.828125 0 L 1.453125 0 C 1.59375 0 1.671875 -0.078125 1.703125 -0.203125 L 1.75 -0.703125 C 1.9375 -0.46875 2.15625 -0.265625 2.40625 -0.125 C 2.65625 0 2.96875 0.078125 3.3125 0.078125 C 3.6875 0.078125 4.015625 0 4.3125 -0.140625 C 4.609375 -0.296875 4.859375 -0.484375 5.078125 -0.75 C 5.265625 -1 5.4375 -1.3125 5.546875 -1.65625 C 5.65625 -2.015625 5.703125 -2.390625 5.703125 -2.796875 C 5.703125 -3.25 5.65625 -3.65625 5.5625 -4.015625 C 5.453125 -4.359375 5.3125 -4.65625 5.140625 -4.890625 C 4.953125 -5.125 4.734375 -5.3125 4.484375 -5.4375 C 4.21875 -5.546875 3.9375 -5.609375 3.609375 -5.609375 C 3.234375 -5.609375 2.890625 -5.53125 2.59375 -5.359375 C 2.296875 -5.203125 2.03125 -5 1.8125 -4.734375 L 1.8125 -8.03125 L 0.828125 -8.03125 Z M 3.296875 -4.84375 C 3.515625 -4.84375 3.71875 -4.796875 3.890625 -4.71875 C 4.0625 -4.640625 4.203125 -4.53125 4.328125 -4.359375 C 4.453125 -4.1875 4.546875 -3.984375 4.609375 -3.71875 C 4.671875 -3.46875 4.703125 -3.15625 4.703125 -2.796875 C 4.703125 -2.109375 4.5625 -1.59375 4.28125 -1.234375 C 4.015625 -0.859375 3.609375 -0.671875 3.09375 -0.671875 C 2.828125 -0.671875 2.59375 -0.71875 2.390625 -0.828125 C 2.171875 -0.921875 1.984375 -1.09375 1.8125 -1.328125 L 1.8125 -4 C 2 -4.265625 2.21875 -4.46875 2.46875 -4.625 C 2.703125 -4.765625 2.984375 -4.84375 3.296875 -4.84375 Z M 3.296875 -4.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-19">
<path style="stroke:none;" d="M 4.859375 0 L 4.859375 -3.53125 C 4.859375 -3.84375 4.8125 -4.125 4.734375 -4.390625 C 4.640625 -4.640625 4.515625 -4.859375 4.359375 -5.046875 C 4.1875 -5.21875 3.984375 -5.359375 3.75 -5.46875 C 3.515625 -5.578125 3.234375 -5.625 2.921875 -5.625 C 2.5 -5.625 2.109375 -5.546875 1.75 -5.40625 C 1.40625 -5.25 1.078125 -5.03125 0.765625 -4.75 L 0.9375 -4.4375 C 0.96875 -4.390625 1.015625 -4.34375 1.0625 -4.3125 C 1.109375 -4.265625 1.171875 -4.25 1.234375 -4.25 C 1.3125 -4.25 1.40625 -4.28125 1.484375 -4.34375 C 1.578125 -4.40625 1.671875 -4.46875 1.78125 -4.546875 C 1.90625 -4.625 2.046875 -4.6875 2.21875 -4.75 C 2.375 -4.8125 2.578125 -4.84375 2.8125 -4.84375 C 3.171875 -4.84375 3.4375 -4.734375 3.625 -4.5 C 3.8125 -4.28125 3.90625 -3.96875 3.90625 -3.53125 L 3.90625 -3.109375 C 3.265625 -3.09375 2.75 -3.03125 2.3125 -2.9375 C 1.875 -2.828125 1.53125 -2.703125 1.265625 -2.546875 C 1 -2.390625 0.796875 -2.21875 0.6875 -2 C 0.5625 -1.8125 0.5 -1.59375 0.5 -1.375 C 0.5 -1.125 0.546875 -0.90625 0.625 -0.734375 C 0.703125 -0.546875 0.8125 -0.390625 0.953125 -0.265625 C 1.09375 -0.15625 1.25 -0.0625 1.4375 0 C 1.625 0.046875 1.828125 0.09375 2.046875 0.09375 C 2.25 0.09375 2.453125 0.078125 2.625 0.03125 C 2.796875 0 2.953125 -0.046875 3.109375 -0.125 C 3.265625 -0.203125 3.40625 -0.28125 3.546875 -0.390625 C 3.6875 -0.484375 3.828125 -0.609375 3.96875 -0.734375 L 4.078125 -0.234375 C 4.09375 -0.140625 4.140625 -0.078125 4.1875 -0.046875 C 4.25 -0.015625 4.328125 0 4.421875 0 Z M 2.328125 -0.59375 C 2.203125 -0.59375 2.09375 -0.609375 1.984375 -0.640625 C 1.875 -0.671875 1.78125 -0.71875 1.703125 -0.78125 C 1.609375 -0.859375 1.546875 -0.9375 1.5 -1.046875 C 1.453125 -1.15625 1.4375 -1.28125 1.4375 -1.421875 C 1.4375 -1.578125 1.484375 -1.71875 1.578125 -1.84375 C 1.65625 -1.96875 1.796875 -2.0625 2 -2.15625 C 2.1875 -2.25 2.453125 -2.328125 2.765625 -2.375 C 3.0625 -2.4375 3.453125 -2.46875 3.90625 -2.484375 L 3.90625 -1.34375 C 3.796875 -1.21875 3.671875 -1.125 3.5625 -1.03125 C 3.453125 -0.9375 3.328125 -0.859375 3.203125 -0.796875 C 3.078125 -0.734375 2.9375 -0.6875 2.796875 -0.640625 C 2.65625 -0.609375 2.5 -0.59375 2.328125 -0.59375 Z M 2.328125 -0.59375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d="M 1.125 -5.109375 L 1.328125 -4.78125 C 1.375 -4.703125 1.421875 -4.671875 1.5 -4.671875 C 1.53125 -4.671875 1.5625 -4.6875 1.609375 -4.71875 C 1.65625 -4.75 1.703125 -4.78125 1.765625 -4.8125 C 1.828125 -4.84375 1.890625 -4.875 1.984375 -4.890625 C 2.0625 -4.921875 2.171875 -4.9375 2.28125 -4.9375 C 2.453125 -4.9375 2.59375 -4.890625 2.703125 -4.796875 C 2.8125 -4.71875 2.875 -4.59375 2.875 -4.4375 C 2.875 -4.3125 2.84375 -4.21875 2.796875 -4.125 C 2.75 -4.046875 2.6875 -3.96875 2.625 -3.890625 C 2.546875 -3.828125 2.46875 -3.765625 2.390625 -3.703125 C 2.3125 -3.640625 2.234375 -3.578125 2.15625 -3.515625 C 2.09375 -3.453125 2.046875 -3.375 2 -3.3125 C 1.96875 -3.234375 1.953125 -3.140625 1.96875 -3.046875 L 2.015625 -2.515625 L 2.5625 -2.515625 L 2.640625 -2.984375 C 2.65625 -3.046875 2.6875 -3.109375 2.734375 -3.171875 C 2.796875 -3.234375 2.859375 -3.28125 2.921875 -3.34375 C 3 -3.40625 3.078125 -3.453125 3.15625 -3.53125 C 3.234375 -3.59375 3.3125 -3.65625 3.375 -3.75 C 3.4375 -3.84375 3.5 -3.9375 3.546875 -4.0625 C 3.59375 -4.1875 3.609375 -4.328125 3.609375 -4.484375 C 3.609375 -4.65625 3.578125 -4.8125 3.515625 -4.9375 C 3.453125 -5.078125 3.375 -5.203125 3.265625 -5.296875 C 3.15625 -5.390625 3.015625 -5.46875 2.875 -5.515625 C 2.71875 -5.5625 2.546875 -5.59375 2.359375 -5.59375 C 2.21875 -5.59375 2.09375 -5.578125 1.96875 -5.546875 C 1.859375 -5.53125 1.75 -5.5 1.640625 -5.453125 C 1.53125 -5.40625 1.4375 -5.359375 1.359375 -5.296875 C 1.28125 -5.25 1.203125 -5.1875 1.125 -5.109375 Z M 1.78125 -1.3125 C 1.78125 -1.171875 1.828125 -1.046875 1.921875 -0.953125 C 2.015625 -0.859375 2.125 -0.8125 2.265625 -0.8125 C 2.34375 -0.8125 2.40625 -0.828125 2.453125 -0.859375 C 2.515625 -0.875 2.5625 -0.921875 2.609375 -0.953125 C 2.65625 -1 2.6875 -1.0625 2.71875 -1.109375 C 2.734375 -1.171875 2.75 -1.234375 2.75 -1.3125 C 2.75 -1.375 2.734375 -1.4375 2.71875 -1.5 C 2.6875 -1.5625 2.65625 -1.625 2.609375 -1.65625 C 2.5625 -1.703125 2.515625 -1.75 2.453125 -1.765625 C 2.40625 -1.796875 2.34375 -1.8125 2.265625 -1.8125 C 2.125 -1.8125 2.015625 -1.765625 1.921875 -1.65625 C 1.828125 -1.5625 1.78125 -1.453125 1.78125 -1.3125 Z M 0.203125 -6.421875 L 0.203125 0 L 4.5625 0 L 4.5625 -6.421875 Z M 0.421875 -0.234375 L 0.421875 -6.171875 L 4.3125 -6.171875 L 4.3125 -0.234375 Z M 0.421875 -0.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 1.8125 0 L 1.8125 -6.421875 L 0.9375 -6.421875 L 0.9375 0 Z M 1.8125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 0.0625 -4.546875 L 1.53125 0 L 2.140625 0 C 2.21875 0 2.28125 -0.046875 2.3125 -0.15625 L 3.34375 -3.234375 C 3.359375 -3.296875 3.375 -3.375 3.390625 -3.4375 C 3.40625 -3.515625 3.421875 -3.578125 3.4375 -3.65625 C 3.453125 -3.578125 3.46875 -3.515625 3.484375 -3.4375 C 3.5 -3.375 3.515625 -3.296875 3.546875 -3.234375 L 4.546875 -0.15625 C 4.578125 -0.046875 4.625 0 4.703125 0 L 5.34375 0 L 6.8125 -4.546875 L 6.203125 -4.546875 C 6.15625 -4.546875 6.109375 -4.53125 6.0625 -4.5 C 6.015625 -4.46875 5.984375 -4.421875 5.984375 -4.375 L 5.09375 -1.453125 C 5.0625 -1.359375 5.03125 -1.265625 5.015625 -1.15625 C 4.984375 -1.046875 4.96875 -0.9375 4.953125 -0.84375 C 4.9375 -0.9375 4.90625 -1.046875 4.875 -1.140625 C 4.859375 -1.25 4.828125 -1.34375 4.796875 -1.453125 L 3.859375 -4.390625 C 3.84375 -4.4375 3.8125 -4.46875 3.78125 -4.5 C 3.734375 -4.53125 3.6875 -4.546875 3.625 -4.546875 L 3.28125 -4.546875 C 3.21875 -4.546875 3.171875 -4.53125 3.140625 -4.5 C 3.109375 -4.46875 3.078125 -4.4375 3.0625 -4.390625 L 2.109375 -1.453125 C 2.078125 -1.34375 2.046875 -1.234375 2.015625 -1.140625 C 1.984375 -1.046875 1.953125 -0.9375 1.921875 -0.84375 C 1.921875 -0.9375 1.890625 -1.046875 1.875 -1.140625 C 1.859375 -1.234375 1.828125 -1.34375 1.8125 -1.453125 L 0.9375 -4.375 C 0.921875 -4.421875 0.890625 -4.46875 0.859375 -4.5 C 0.8125 -4.53125 0.765625 -4.546875 0.6875 -4.546875 Z M 0.0625 -4.546875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 3.984375 0 L 3.984375 -2.90625 C 3.984375 -3.15625 3.953125 -3.390625 3.890625 -3.609375 C 3.828125 -3.8125 3.71875 -4 3.578125 -4.140625 C 3.453125 -4.296875 3.28125 -4.40625 3.078125 -4.5 C 2.890625 -4.578125 2.65625 -4.625 2.40625 -4.625 C 2.046875 -4.625 1.734375 -4.5625 1.4375 -4.4375 C 1.15625 -4.328125 0.890625 -4.140625 0.625 -3.90625 L 0.78125 -3.640625 C 0.796875 -3.609375 0.828125 -3.5625 0.875 -3.546875 C 0.921875 -3.515625 0.953125 -3.5 1.015625 -3.5 C 1.078125 -3.5 1.15625 -3.53125 1.21875 -3.5625 C 1.296875 -3.625 1.375 -3.671875 1.46875 -3.734375 C 1.5625 -3.796875 1.6875 -3.859375 1.828125 -3.90625 C 1.953125 -3.953125 2.109375 -3.984375 2.3125 -3.984375 C 2.609375 -3.984375 2.828125 -3.890625 2.984375 -3.703125 C 3.125 -3.53125 3.203125 -3.265625 3.203125 -2.90625 L 3.203125 -2.546875 C 2.6875 -2.53125 2.25 -2.5 1.90625 -2.40625 C 1.546875 -2.328125 1.25 -2.21875 1.046875 -2.09375 C 0.8125 -1.96875 0.65625 -1.828125 0.5625 -1.65625 C 0.46875 -1.484375 0.40625 -1.3125 0.40625 -1.140625 C 0.40625 -0.921875 0.453125 -0.75 0.515625 -0.59375 C 0.578125 -0.453125 0.671875 -0.328125 0.78125 -0.21875 C 0.890625 -0.125 1.03125 -0.046875 1.1875 0 C 1.34375 0.046875 1.5 0.078125 1.6875 0.078125 C 1.859375 0.078125 2.015625 0.0625 2.15625 0.03125 C 2.296875 0 2.4375 -0.046875 2.5625 -0.109375 C 2.6875 -0.15625 2.796875 -0.234375 2.921875 -0.328125 C 3.03125 -0.40625 3.140625 -0.5 3.265625 -0.609375 L 3.359375 -0.1875 C 3.375 -0.109375 3.40625 -0.0625 3.453125 -0.03125 C 3.5 -0.015625 3.5625 0 3.640625 0 Z M 1.921875 -0.484375 C 1.8125 -0.484375 1.71875 -0.5 1.625 -0.53125 C 1.53125 -0.546875 1.46875 -0.59375 1.390625 -0.640625 C 1.328125 -0.703125 1.28125 -0.78125 1.234375 -0.859375 C 1.203125 -0.953125 1.171875 -1.046875 1.171875 -1.171875 C 1.171875 -1.296875 1.21875 -1.40625 1.296875 -1.515625 C 1.359375 -1.609375 1.484375 -1.703125 1.640625 -1.78125 C 1.796875 -1.859375 2.015625 -1.90625 2.265625 -1.953125 C 2.53125 -2 2.84375 -2.03125 3.203125 -2.046875 L 3.203125 -1.09375 C 3.109375 -1 3.015625 -0.921875 2.9375 -0.84375 C 2.828125 -0.765625 2.734375 -0.703125 2.640625 -0.65625 C 2.53125 -0.59375 2.421875 -0.5625 2.3125 -0.53125 C 2.1875 -0.5 2.0625 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-4">
<path style="stroke:none;" d="M 0.65625 0 L 1.453125 0 L 1.453125 -3.34375 C 1.625 -3.53125 1.8125 -3.6875 2.015625 -3.8125 C 2.21875 -3.921875 2.4375 -3.984375 2.6875 -3.984375 C 3 -3.984375 3.25 -3.890625 3.40625 -3.6875 C 3.5625 -3.5 3.640625 -3.234375 3.640625 -2.890625 L 3.640625 0 L 4.4375 0 L 4.4375 -2.890625 C 4.4375 -3.140625 4.40625 -3.390625 4.34375 -3.59375 C 4.265625 -3.8125 4.171875 -3.984375 4.046875 -4.140625 C 3.921875 -4.296875 3.765625 -4.40625 3.5625 -4.5 C 3.375 -4.578125 3.15625 -4.609375 2.921875 -4.609375 C 2.59375 -4.609375 2.3125 -4.546875 2.078125 -4.40625 C 1.828125 -4.28125 1.609375 -4.109375 1.40625 -3.890625 L 1.34375 -4.375 C 1.3125 -4.484375 1.234375 -4.546875 1.125 -4.546875 L 0.65625 -4.546875 Z M 0.65625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-5">
<path style="stroke:none;" d="M 2.03125 0.078125 C 2.234375 0.078125 2.4375 0.03125 2.625 -0.03125 C 2.828125 -0.109375 2.984375 -0.203125 3.125 -0.34375 L 2.890625 -0.71875 C 2.859375 -0.765625 2.828125 -0.796875 2.78125 -0.796875 C 2.765625 -0.796875 2.734375 -0.796875 2.703125 -0.765625 C 2.671875 -0.75 2.625 -0.71875 2.59375 -0.6875 C 2.546875 -0.65625 2.484375 -0.640625 2.4375 -0.625 C 2.375 -0.59375 2.296875 -0.578125 2.203125 -0.578125 C 2.0625 -0.578125 1.953125 -0.625 1.859375 -0.71875 C 1.765625 -0.8125 1.71875 -0.953125 1.71875 -1.140625 L 1.71875 -3.875 L 3.015625 -3.875 L 3.015625 -4.453125 L 1.71875 -4.453125 L 1.71875 -6.015625 L 1.3125 -6.015625 C 1.265625 -6.015625 1.21875 -6 1.1875 -5.96875 C 1.15625 -5.953125 1.125 -5.90625 1.125 -5.859375 L 0.9375 -4.46875 L 0.203125 -4.375 L 0.203125 -4.046875 C 0.203125 -3.984375 0.21875 -3.953125 0.25 -3.921875 C 0.28125 -3.890625 0.3125 -3.875 0.375 -3.875 L 0.921875 -3.875 L 0.921875 -1.09375 C 0.921875 -0.71875 1.015625 -0.4375 1.203125 -0.234375 C 1.40625 -0.03125 1.671875 0.078125 2.03125 0.078125 Z M 2.03125 0.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-6">
<path style="stroke:none;" d="M 0.453125 -3.03125 L 0.453125 -2.34375 L 2.65625 -2.34375 L 2.65625 -3.03125 Z M 0.453125 -3.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-7">
<path style="stroke:none;" d="M 2.5 -4.609375 C 2.15625 -4.609375 1.859375 -4.5625 1.59375 -4.453125 C 1.328125 -4.34375 1.09375 -4.171875 0.90625 -3.984375 C 0.71875 -3.78125 0.578125 -3.53125 0.46875 -3.234375 C 0.375 -2.953125 0.328125 -2.625 0.328125 -2.28125 C 0.328125 -1.921875 0.375 -1.59375 0.46875 -1.3125 C 0.578125 -1.015625 0.71875 -0.765625 0.90625 -0.5625 C 1.09375 -0.375 1.328125 -0.203125 1.59375 -0.09375 C 1.859375 0.015625 2.15625 0.0625 2.5 0.0625 C 2.828125 0.0625 3.125 0.015625 3.390625 -0.09375 C 3.65625 -0.203125 3.890625 -0.375 4.078125 -0.5625 C 4.265625 -0.765625 4.40625 -1.015625 4.5 -1.3125 C 4.609375 -1.59375 4.65625 -1.921875 4.65625 -2.28125 C 4.65625 -2.625 4.609375 -2.953125 4.5 -3.234375 C 4.40625 -3.53125 4.265625 -3.78125 4.078125 -3.984375 C 3.890625 -4.171875 3.65625 -4.34375 3.390625 -4.453125 C 3.125 -4.5625 2.828125 -4.609375 2.5 -4.609375 Z M 2.5 -0.5625 C 2.265625 -0.5625 2.0625 -0.59375 1.90625 -0.671875 C 1.734375 -0.75 1.59375 -0.859375 1.484375 -1.015625 C 1.375 -1.15625 1.28125 -1.34375 1.234375 -1.546875 C 1.171875 -1.765625 1.140625 -2 1.140625 -2.265625 C 1.140625 -2.53125 1.171875 -2.78125 1.234375 -3 C 1.28125 -3.203125 1.375 -3.390625 1.484375 -3.53125 C 1.59375 -3.6875 1.734375 -3.796875 1.90625 -3.875 C 2.0625 -3.953125 2.265625 -3.984375 2.5 -3.984375 C 2.9375 -3.984375 3.28125 -3.828125 3.5 -3.53125 C 3.71875 -3.234375 3.828125 -2.8125 3.828125 -2.265625 C 3.828125 -1.734375 3.71875 -1.3125 3.5 -1.015625 C 3.28125 -0.703125 2.9375 -0.5625 2.5 -0.5625 Z M 2.5 -0.5625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-8">
<path style="stroke:none;" d="M 0.65625 0 L 1.453125 0 L 1.453125 -3.34375 C 1.625 -3.53125 1.8125 -3.6875 2.015625 -3.8125 C 2.21875 -3.921875 2.4375 -3.984375 2.6875 -3.984375 C 3 -3.984375 3.25 -3.890625 3.40625 -3.6875 C 3.5625 -3.5 3.640625 -3.234375 3.640625 -2.890625 L 3.640625 0 L 4.4375 0 L 4.4375 -2.890625 C 4.4375 -3.140625 4.40625 -3.390625 4.34375 -3.59375 C 4.265625 -3.8125 4.171875 -3.984375 4.046875 -4.140625 C 3.921875 -4.296875 3.765625 -4.40625 3.5625 -4.5 C 3.375 -4.578125 3.15625 -4.609375 2.921875 -4.609375 C 2.609375 -4.609375 2.34375 -4.546875 2.09375 -4.4375 C 1.859375 -4.3125 1.640625 -4.140625 1.453125 -3.9375 L 1.453125 -6.609375 L 0.65625 -6.609375 Z M 0.65625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-9">
<path style="stroke:none;" d="M 2.453125 -4.609375 C 2.125 -4.609375 1.828125 -4.5625 1.5625 -4.4375 C 1.296875 -4.328125 1.078125 -4.171875 0.890625 -3.96875 C 0.71875 -3.765625 0.578125 -3.53125 0.46875 -3.25 C 0.375 -2.984375 0.328125 -2.6875 0.328125 -2.359375 C 0.328125 -1.96875 0.390625 -1.625 0.5 -1.328125 C 0.59375 -1.015625 0.75 -0.765625 0.9375 -0.5625 C 1.140625 -0.359375 1.359375 -0.203125 1.625 -0.09375 C 1.890625 0.015625 2.1875 0.0625 2.5 0.0625 C 2.65625 0.0625 2.828125 0.046875 3 0.015625 C 3.15625 -0.015625 3.328125 -0.046875 3.484375 -0.109375 C 3.640625 -0.171875 3.78125 -0.234375 3.921875 -0.328125 C 4.0625 -0.40625 4.171875 -0.515625 4.28125 -0.640625 L 4.046875 -0.921875 C 4.015625 -0.984375 3.96875 -1 3.90625 -1 C 3.859375 -1 3.796875 -0.984375 3.71875 -0.9375 C 3.65625 -0.890625 3.5625 -0.84375 3.453125 -0.78125 C 3.359375 -0.734375 3.234375 -0.6875 3.078125 -0.640625 C 2.9375 -0.59375 2.765625 -0.5625 2.5625 -0.5625 C 2.34375 -0.5625 2.15625 -0.59375 1.984375 -0.671875 C 1.8125 -0.734375 1.65625 -0.84375 1.53125 -0.984375 C 1.40625 -1.125 1.3125 -1.3125 1.234375 -1.515625 C 1.171875 -1.734375 1.125 -1.984375 1.125 -2.265625 L 4.140625 -2.265625 C 4.21875 -2.265625 4.265625 -2.296875 4.296875 -2.328125 C 4.328125 -2.375 4.34375 -2.453125 4.34375 -2.578125 C 4.34375 -2.90625 4.28125 -3.1875 4.203125 -3.4375 C 4.09375 -3.703125 3.96875 -3.90625 3.796875 -4.078125 C 3.640625 -4.25 3.4375 -4.390625 3.203125 -4.46875 C 2.984375 -4.5625 2.71875 -4.609375 2.453125 -4.609375 Z M 2.46875 -4.03125 C 2.65625 -4.03125 2.8125 -4 2.953125 -3.9375 C 3.09375 -3.875 3.21875 -3.78125 3.3125 -3.671875 C 3.421875 -3.5625 3.5 -3.4375 3.546875 -3.28125 C 3.59375 -3.125 3.625 -2.953125 3.625 -2.765625 L 1.140625 -2.765625 C 1.203125 -3.15625 1.34375 -3.46875 1.5625 -3.6875 C 1.78125 -3.921875 2.078125 -4.03125 2.46875 -4.03125 Z M 2.46875 -4.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-10">
<path style="stroke:none;" d="M 0.828125 0 L 1.640625 0 L 1.640625 -3.875 L 2.796875 -3.875 L 2.796875 -4.453125 L 1.609375 -4.453125 L 1.609375 -4.6875 C 1.609375 -5.09375 1.71875 -5.40625 1.921875 -5.625 C 2.140625 -5.859375 2.4375 -5.96875 2.828125 -5.96875 C 2.9375 -5.96875 3.078125 -5.953125 3.25 -5.953125 C 3.40625 -5.9375 3.5625 -5.9375 3.734375 -5.921875 L 3.734375 0 L 4.53125 0 L 4.53125 -6.484375 L 4.078125 -6.484375 C 3.859375 -6.484375 3.640625 -6.5 3.421875 -6.515625 C 3.1875 -6.53125 2.953125 -6.546875 2.703125 -6.546875 C 2.390625 -6.546875 2.109375 -6.5 1.890625 -6.40625 C 1.65625 -6.296875 1.453125 -6.171875 1.296875 -6 C 1.140625 -5.828125 1.03125 -5.640625 0.953125 -5.40625 C 0.875 -5.1875 0.828125 -4.953125 0.828125 -4.6875 L 0.828125 -4.453125 L 0.109375 -4.453125 L 0.109375 -4.125 C 0.109375 -4.0625 0.140625 -4.015625 0.171875 -3.984375 C 0.21875 -3.953125 0.265625 -3.9375 0.328125 -3.921875 L 0.828125 -3.859375 Z M 0.828125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-11">
<path style="stroke:none;" d="M 1.546875 -4.546875 L 0.75 -4.546875 L 0.75 0 L 1.546875 0 Z M 1.71875 -5.96875 C 1.71875 -6.046875 1.703125 -6.125 1.671875 -6.1875 C 1.640625 -6.265625 1.59375 -6.328125 1.546875 -6.375 C 1.5 -6.421875 1.4375 -6.46875 1.375 -6.5 C 1.296875 -6.53125 1.21875 -6.546875 1.140625 -6.546875 C 1.078125 -6.546875 1 -6.53125 0.9375 -6.5 C 0.859375 -6.46875 0.796875 -6.421875 0.75 -6.375 C 0.703125 -6.328125 0.65625 -6.265625 0.625 -6.1875 C 0.59375 -6.125 0.578125 -6.046875 0.578125 -5.96875 C 0.578125 -5.890625 0.59375 -5.828125 0.625 -5.75 C 0.65625 -5.6875 0.703125 -5.625 0.75 -5.5625 C 0.796875 -5.515625 0.859375 -5.484375 0.9375 -5.453125 C 1 -5.421875 1.078125 -5.40625 1.140625 -5.40625 C 1.21875 -5.40625 1.296875 -5.421875 1.375 -5.453125 C 1.4375 -5.484375 1.5 -5.515625 1.546875 -5.5625 C 1.59375 -5.625 1.640625 -5.6875 1.671875 -5.75 C 1.703125 -5.828125 1.71875 -5.890625 1.71875 -5.96875 Z M 1.71875 -5.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-12">
<path style="stroke:none;" d="M 2.1875 -4.625 C 1.9375 -4.625 1.703125 -4.578125 1.484375 -4.515625 C 1.28125 -4.453125 1.09375 -4.34375 0.953125 -4.21875 C 0.796875 -4.09375 0.671875 -3.9375 0.59375 -3.765625 C 0.5 -3.578125 0.46875 -3.375 0.46875 -3.15625 C 0.46875 -2.875 0.53125 -2.640625 0.65625 -2.4375 C 0.78125 -2.21875 0.953125 -2.046875 1.171875 -1.921875 C 1.078125 -1.875 1 -1.828125 0.921875 -1.765625 C 0.859375 -1.703125 0.796875 -1.625 0.75 -1.5625 C 0.703125 -1.5 0.65625 -1.421875 0.640625 -1.359375 C 0.609375 -1.28125 0.59375 -1.21875 0.59375 -1.15625 C 0.59375 -0.984375 0.640625 -0.859375 0.71875 -0.75 C 0.796875 -0.65625 0.890625 -0.5625 1.015625 -0.515625 C 0.78125 -0.421875 0.578125 -0.296875 0.4375 -0.140625 C 0.296875 0.015625 0.21875 0.203125 0.21875 0.4375 C 0.21875 0.59375 0.265625 0.75 0.34375 0.890625 C 0.4375 1.03125 0.546875 1.15625 0.71875 1.28125 C 0.890625 1.390625 1.09375 1.46875 1.34375 1.53125 C 1.59375 1.609375 1.875 1.640625 2.203125 1.640625 C 2.546875 1.640625 2.84375 1.59375 3.109375 1.5 C 3.375 1.421875 3.59375 1.3125 3.765625 1.171875 C 3.953125 1.03125 4.09375 0.859375 4.1875 0.6875 C 4.28125 0.5 4.34375 0.3125 4.34375 0.109375 C 4.34375 -0.09375 4.296875 -0.265625 4.203125 -0.390625 C 4.125 -0.53125 4 -0.625 3.859375 -0.703125 C 3.71875 -0.78125 3.5625 -0.828125 3.375 -0.859375 C 3.1875 -0.890625 3 -0.921875 2.8125 -0.9375 C 2.625 -0.953125 2.4375 -0.953125 2.25 -0.96875 C 2.078125 -0.96875 1.90625 -0.984375 1.765625 -1.015625 C 1.625 -1.03125 1.5 -1.078125 1.421875 -1.125 C 1.34375 -1.1875 1.296875 -1.265625 1.296875 -1.375 C 1.296875 -1.4375 1.3125 -1.5 1.359375 -1.578125 C 1.421875 -1.640625 1.484375 -1.703125 1.578125 -1.765625 C 1.765625 -1.71875 1.96875 -1.6875 2.1875 -1.6875 C 2.4375 -1.6875 2.65625 -1.71875 2.875 -1.796875 C 3.078125 -1.859375 3.25 -1.953125 3.40625 -2.09375 C 3.5625 -2.21875 3.671875 -2.375 3.765625 -2.5625 C 3.84375 -2.734375 3.890625 -2.9375 3.890625 -3.15625 C 3.890625 -3.390625 3.84375 -3.609375 3.734375 -3.8125 L 4.25 -3.875 C 4.375 -3.90625 4.4375 -3.96875 4.4375 -4.0625 L 4.4375 -4.359375 L 3.203125 -4.359375 C 3.0625 -4.453125 2.90625 -4.515625 2.734375 -4.5625 C 2.5625 -4.59375 2.375 -4.625 2.1875 -4.625 Z M 3.59375 0.25 C 3.59375 0.375 3.5625 0.46875 3.5 0.578125 C 3.4375 0.671875 3.359375 0.765625 3.234375 0.828125 C 3.109375 0.90625 2.96875 0.953125 2.796875 1 C 2.625 1.03125 2.4375 1.046875 2.21875 1.046875 C 2 1.046875 1.8125 1.03125 1.65625 1 C 1.484375 0.953125 1.34375 0.90625 1.234375 0.84375 C 1.140625 0.78125 1.046875 0.703125 1 0.625 C 0.953125 0.53125 0.921875 0.4375 0.921875 0.328125 C 0.921875 0.171875 0.984375 0.03125 1.078125 -0.078125 C 1.1875 -0.203125 1.328125 -0.296875 1.5 -0.375 C 1.640625 -0.359375 1.796875 -0.34375 1.953125 -0.328125 C 2.125 -0.328125 2.28125 -0.3125 2.4375 -0.3125 C 2.59375 -0.296875 2.734375 -0.28125 2.875 -0.265625 C 3.015625 -0.25 3.140625 -0.21875 3.25 -0.1875 C 3.359375 -0.140625 3.4375 -0.09375 3.5 -0.03125 C 3.5625 0.046875 3.59375 0.140625 3.59375 0.25 Z M 2.1875 -2.21875 C 2.03125 -2.21875 1.890625 -2.25 1.765625 -2.28125 C 1.640625 -2.328125 1.53125 -2.390625 1.453125 -2.46875 C 1.375 -2.5625 1.3125 -2.65625 1.265625 -2.765625 C 1.21875 -2.875 1.203125 -3 1.203125 -3.140625 C 1.203125 -3.40625 1.28125 -3.625 1.453125 -3.796875 C 1.625 -3.96875 1.859375 -4.046875 2.1875 -4.046875 C 2.5 -4.046875 2.75 -3.96875 2.921875 -3.796875 C 3.09375 -3.625 3.171875 -3.40625 3.171875 -3.140625 C 3.171875 -3 3.15625 -2.875 3.109375 -2.765625 C 3.078125 -2.65625 3.015625 -2.5625 2.921875 -2.46875 C 2.84375 -2.390625 2.734375 -2.328125 2.609375 -2.28125 C 2.484375 -2.25 2.34375 -2.21875 2.1875 -2.21875 Z M 2.1875 -2.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-13">
<path style="stroke:none;" d="M 3.75 -3.734375 L 3.96875 -4.015625 C 3.78125 -4.203125 3.5625 -4.359375 3.3125 -4.453125 C 3.0625 -4.5625 2.796875 -4.609375 2.46875 -4.609375 C 2.125 -4.609375 1.828125 -4.5625 1.5625 -4.4375 C 1.296875 -4.328125 1.0625 -4.15625 0.890625 -3.953125 C 0.703125 -3.75 0.5625 -3.5 0.46875 -3.203125 C 0.375 -2.921875 0.328125 -2.609375 0.328125 -2.28125 C 0.328125 -1.90625 0.390625 -1.578125 0.484375 -1.28125 C 0.59375 -0.984375 0.734375 -0.75 0.90625 -0.546875 C 1.09375 -0.34375 1.296875 -0.203125 1.546875 -0.09375 C 1.796875 0.015625 2.046875 0.0625 2.34375 0.0625 C 2.65625 0.0625 2.984375 0.015625 3.28125 -0.109375 C 3.5625 -0.21875 3.8125 -0.390625 4.015625 -0.640625 L 3.796875 -0.921875 C 3.765625 -0.984375 3.703125 -1 3.640625 -1 C 3.578125 -1 3.53125 -0.984375 3.46875 -0.9375 C 3.421875 -0.890625 3.359375 -0.84375 3.265625 -0.78125 C 3.1875 -0.71875 3.078125 -0.671875 2.953125 -0.625 C 2.828125 -0.578125 2.671875 -0.5625 2.46875 -0.5625 C 2.28125 -0.5625 2.09375 -0.59375 1.921875 -0.671875 C 1.765625 -0.75 1.625 -0.859375 1.515625 -1 C 1.40625 -1.140625 1.3125 -1.328125 1.25 -1.546875 C 1.1875 -1.75 1.15625 -2 1.15625 -2.28125 C 1.15625 -2.53125 1.1875 -2.78125 1.234375 -2.984375 C 1.296875 -3.203125 1.390625 -3.375 1.5 -3.53125 C 1.609375 -3.671875 1.765625 -3.796875 1.921875 -3.875 C 2.09375 -3.953125 2.296875 -3.984375 2.515625 -3.984375 C 2.6875 -3.984375 2.828125 -3.96875 2.9375 -3.9375 C 3.046875 -3.890625 3.15625 -3.859375 3.234375 -3.8125 C 3.3125 -3.765625 3.375 -3.71875 3.4375 -3.6875 C 3.484375 -3.65625 3.53125 -3.625 3.578125 -3.625 C 3.625 -3.625 3.65625 -3.640625 3.6875 -3.65625 C 3.703125 -3.671875 3.734375 -3.703125 3.75 -3.734375 Z M 3.75 -3.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-14">
<path style="stroke:none;" d="M 1.546875 -6.609375 L 0.75 -6.609375 L 0.75 0 L 1.546875 0 Z M 1.546875 -6.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-15">
<path style="stroke:none;" d="M 1.984375 1.34375 L 4.515625 -4.546875 L 3.890625 -4.546875 C 3.828125 -4.546875 3.78125 -4.53125 3.734375 -4.5 C 3.703125 -4.46875 3.671875 -4.421875 3.65625 -4.375 L 2.46875 -1.515625 C 2.4375 -1.453125 2.421875 -1.390625 2.40625 -1.3125 C 2.375 -1.25 2.359375 -1.1875 2.34375 -1.109375 C 2.328125 -1.1875 2.3125 -1.25 2.28125 -1.3125 C 2.265625 -1.390625 2.25 -1.453125 2.21875 -1.515625 L 1 -4.375 C 0.984375 -4.421875 0.953125 -4.453125 0.921875 -4.5 C 0.875 -4.53125 0.828125 -4.546875 0.75 -4.546875 L 0.0625 -4.546875 L 1.9375 -0.265625 L 1.109375 1.53125 L 1.703125 1.53125 C 1.78125 1.53125 1.84375 1.515625 1.890625 1.484375 C 1.921875 1.453125 1.953125 1.40625 1.984375 1.34375 Z M 1.984375 1.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-16">
<path style="stroke:none;" d="M 3.25 -3.796875 L 3.4375 -4.078125 C 3.265625 -4.25 3.0625 -4.375 2.8125 -4.46875 C 2.578125 -4.5625 2.3125 -4.609375 2.015625 -4.609375 C 1.765625 -4.609375 1.53125 -4.578125 1.328125 -4.5 C 1.125 -4.4375 0.953125 -4.34375 0.828125 -4.21875 C 0.6875 -4.09375 0.578125 -3.953125 0.5 -3.796875 C 0.4375 -3.640625 0.40625 -3.46875 0.40625 -3.296875 C 0.40625 -3.109375 0.4375 -2.9375 0.5 -2.796875 C 0.5625 -2.65625 0.65625 -2.546875 0.765625 -2.453125 C 0.875 -2.359375 1 -2.28125 1.140625 -2.21875 C 1.28125 -2.171875 1.4375 -2.109375 1.578125 -2.0625 C 1.734375 -2.015625 1.875 -1.96875 2.015625 -1.921875 C 2.15625 -1.890625 2.28125 -1.828125 2.390625 -1.78125 C 2.5 -1.71875 2.59375 -1.640625 2.65625 -1.5625 C 2.71875 -1.484375 2.765625 -1.375 2.765625 -1.25 C 2.765625 -1.140625 2.75 -1.046875 2.703125 -0.96875 C 2.671875 -0.875 2.609375 -0.796875 2.53125 -0.71875 C 2.453125 -0.65625 2.359375 -0.59375 2.25 -0.5625 C 2.125 -0.515625 1.984375 -0.5 1.828125 -0.5 C 1.65625 -0.5 1.5 -0.53125 1.375 -0.5625 C 1.25 -0.609375 1.15625 -0.65625 1.0625 -0.703125 C 0.984375 -0.75 0.90625 -0.796875 0.859375 -0.84375 C 0.796875 -0.890625 0.734375 -0.90625 0.6875 -0.90625 C 0.625 -0.90625 0.578125 -0.890625 0.546875 -0.875 C 0.515625 -0.859375 0.484375 -0.828125 0.46875 -0.78125 L 0.28125 -0.484375 C 0.453125 -0.3125 0.671875 -0.1875 0.9375 -0.078125 C 1.1875 0.015625 1.46875 0.078125 1.796875 0.078125 C 2.078125 0.078125 2.3125 0.03125 2.53125 -0.046875 C 2.734375 -0.109375 2.921875 -0.21875 3.0625 -0.34375 C 3.21875 -0.46875 3.328125 -0.625 3.40625 -0.8125 C 3.46875 -0.984375 3.515625 -1.171875 3.515625 -1.390625 C 3.515625 -1.578125 3.484375 -1.734375 3.40625 -1.859375 C 3.34375 -1.984375 3.25 -2.09375 3.140625 -2.1875 C 3.03125 -2.28125 2.90625 -2.359375 2.765625 -2.40625 C 2.625 -2.46875 2.484375 -2.53125 2.328125 -2.578125 C 2.1875 -2.625 2.046875 -2.671875 1.90625 -2.71875 C 1.765625 -2.765625 1.640625 -2.8125 1.53125 -2.859375 C 1.40625 -2.921875 1.328125 -2.984375 1.25 -3.0625 C 1.1875 -3.140625 1.15625 -3.25 1.15625 -3.359375 C 1.15625 -3.453125 1.171875 -3.53125 1.21875 -3.609375 C 1.25 -3.6875 1.3125 -3.765625 1.390625 -3.828125 C 1.46875 -3.890625 1.5625 -3.9375 1.671875 -3.96875 C 1.78125 -4 1.890625 -4.015625 2.03125 -4.015625 C 2.1875 -4.015625 2.328125 -4 2.4375 -3.96875 C 2.546875 -3.9375 2.640625 -3.890625 2.71875 -3.859375 C 2.8125 -3.8125 2.875 -3.78125 2.9375 -3.75 C 3 -3.71875 3.046875 -3.6875 3.09375 -3.6875 C 3.171875 -3.6875 3.21875 -3.71875 3.25 -3.796875 Z M 3.25 -3.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-17">
<path style="stroke:none;" d="M 0.65625 0 L 1.453125 0 L 1.453125 -2.890625 C 1.578125 -3.203125 1.734375 -3.4375 1.921875 -3.59375 C 2.109375 -3.765625 2.34375 -3.84375 2.625 -3.84375 C 2.78125 -3.84375 2.890625 -3.828125 2.984375 -3.796875 C 3.0625 -3.765625 3.140625 -3.75 3.171875 -3.75 C 3.25 -3.75 3.296875 -3.796875 3.3125 -3.859375 L 3.421875 -4.46875 C 3.328125 -4.515625 3.234375 -4.546875 3.140625 -4.578125 C 3.03125 -4.609375 2.921875 -4.625 2.796875 -4.625 C 2.484375 -4.625 2.21875 -4.53125 1.984375 -4.359375 C 1.765625 -4.171875 1.5625 -3.9375 1.40625 -3.609375 L 1.359375 -4.328125 C 1.34375 -4.40625 1.328125 -4.46875 1.296875 -4.5 C 1.265625 -4.53125 1.203125 -4.546875 1.109375 -4.546875 L 0.65625 -4.546875 Z M 0.65625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-18">
<path style="stroke:none;" d="M 3.859375 0 L 4.328125 0 L 4.328125 -6.609375 L 3.53125 -6.609375 L 3.53125 -4.078125 C 3.375 -4.25 3.203125 -4.390625 3 -4.484375 C 2.796875 -4.578125 2.5625 -4.625 2.28125 -4.625 C 1.984375 -4.625 1.703125 -4.5625 1.46875 -4.4375 C 1.21875 -4.328125 1.015625 -4.15625 0.84375 -3.9375 C 0.671875 -3.734375 0.546875 -3.484375 0.453125 -3.1875 C 0.375 -2.90625 0.328125 -2.59375 0.328125 -2.25 C 0.328125 -1.875 0.359375 -1.546875 0.4375 -1.25 C 0.53125 -0.96875 0.640625 -0.71875 0.796875 -0.53125 C 0.9375 -0.34375 1.125 -0.1875 1.328125 -0.09375 C 1.546875 0.015625 1.78125 0.0625 2.046875 0.0625 C 2.359375 0.0625 2.65625 -0.015625 2.890625 -0.15625 C 3.140625 -0.296875 3.375 -0.484375 3.5625 -0.71875 L 3.640625 -0.171875 C 3.671875 -0.046875 3.734375 0 3.859375 0 Z M 2.3125 -0.578125 C 2.125 -0.578125 1.953125 -0.609375 1.8125 -0.671875 C 1.671875 -0.734375 1.546875 -0.84375 1.453125 -0.984375 C 1.34375 -1.109375 1.28125 -1.28125 1.21875 -1.5 C 1.171875 -1.703125 1.140625 -1.953125 1.140625 -2.25 C 1.140625 -2.8125 1.265625 -3.25 1.484375 -3.546875 C 1.71875 -3.84375 2.046875 -4 2.46875 -4 C 2.671875 -4 2.875 -3.953125 3.046875 -3.890625 C 3.21875 -3.796875 3.375 -3.65625 3.53125 -3.46875 L 3.53125 -1.265625 C 3.359375 -1.046875 3.1875 -0.890625 2.984375 -0.765625 C 2.796875 -0.640625 2.5625 -0.578125 2.3125 -0.578125 Z M 2.3125 -0.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-19">
<path style="stroke:none;" d="M 0.6875 0 L 1.203125 0 C 1.3125 0 1.375 -0.0625 1.40625 -0.171875 L 1.4375 -0.578125 C 1.59375 -0.375 1.78125 -0.21875 1.984375 -0.109375 C 2.1875 0 2.4375 0.0625 2.71875 0.0625 C 3.03125 0.0625 3.3125 0 3.546875 -0.109375 C 3.796875 -0.234375 4 -0.40625 4.171875 -0.625 C 4.34375 -0.828125 4.46875 -1.078125 4.5625 -1.359375 C 4.640625 -1.65625 4.6875 -1.96875 4.6875 -2.296875 C 4.6875 -2.671875 4.65625 -3.015625 4.5625 -3.296875 C 4.484375 -3.59375 4.375 -3.828125 4.21875 -4.03125 C 4.078125 -4.21875 3.890625 -4.375 3.6875 -4.46875 C 3.46875 -4.5625 3.234375 -4.609375 2.96875 -4.609375 C 2.65625 -4.609375 2.375 -4.546875 2.140625 -4.40625 C 1.890625 -4.28125 1.671875 -4.109375 1.484375 -3.890625 L 1.484375 -6.609375 L 0.6875 -6.609375 Z M 2.703125 -3.984375 C 2.890625 -3.984375 3.046875 -3.953125 3.203125 -3.890625 C 3.34375 -3.828125 3.46875 -3.71875 3.5625 -3.59375 C 3.65625 -3.453125 3.734375 -3.28125 3.78125 -3.0625 C 3.84375 -2.859375 3.859375 -2.59375 3.859375 -2.296875 C 3.859375 -1.734375 3.75 -1.3125 3.53125 -1.015625 C 3.296875 -0.703125 2.96875 -0.5625 2.546875 -0.5625 C 2.328125 -0.5625 2.140625 -0.59375 1.96875 -0.671875 C 1.78125 -0.765625 1.625 -0.890625 1.484375 -1.09375 L 1.484375 -3.296875 C 1.65625 -3.515625 1.828125 -3.671875 2.03125 -3.796875 C 2.21875 -3.921875 2.453125 -3.984375 2.703125 -3.984375 Z M 2.703125 -3.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-20">
<path style="stroke:none;" d="M 1.484375 -6.609375 L 0.6875 -6.609375 L 0.6875 0 L 1.484375 0 L 1.484375 -2.171875 L 1.703125 -2.171875 C 1.796875 -2.171875 1.859375 -2.15625 1.90625 -2.140625 C 1.953125 -2.125 2 -2.078125 2.046875 -2.015625 L 3.53125 -0.15625 C 3.578125 -0.109375 3.625 -0.0625 3.671875 -0.03125 C 3.71875 -0.015625 3.765625 0 3.84375 0 L 4.5625 0 L 2.78125 -2.25 C 2.734375 -2.296875 2.703125 -2.359375 2.65625 -2.40625 C 2.609375 -2.453125 2.5625 -2.484375 2.515625 -2.53125 C 2.5625 -2.5625 2.609375 -2.59375 2.640625 -2.625 C 2.6875 -2.671875 2.734375 -2.71875 2.765625 -2.765625 L 4.4375 -4.546875 L 3.71875 -4.546875 C 3.640625 -4.546875 3.578125 -4.53125 3.53125 -4.5 C 3.5 -4.46875 3.453125 -4.4375 3.40625 -4.375 L 1.96875 -2.84375 C 1.921875 -2.796875 1.875 -2.765625 1.84375 -2.75 C 1.796875 -2.71875 1.75 -2.71875 1.6875 -2.71875 L 1.484375 -2.71875 Z M 1.484375 -6.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-21">
<path style="stroke:none;" d="M 0.078125 -4.546875 L 1.9375 0 L 2.65625 0 L 4.5 -4.546875 L 3.890625 -4.546875 C 3.828125 -4.546875 3.78125 -4.53125 3.734375 -4.5 C 3.6875 -4.46875 3.65625 -4.421875 3.640625 -4.375 L 2.484375 -1.453125 C 2.4375 -1.34375 2.40625 -1.234375 2.375 -1.125 C 2.34375 -1.015625 2.328125 -0.921875 2.296875 -0.8125 C 2.28125 -0.921875 2.25 -1.015625 2.234375 -1.125 C 2.203125 -1.234375 2.171875 -1.34375 2.140625 -1.453125 L 0.984375 -4.375 C 0.96875 -4.421875 0.9375 -4.46875 0.890625 -4.5 C 0.859375 -4.53125 0.796875 -4.546875 0.734375 -4.546875 Z M 0.078125 -4.546875 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="-0.869" y="92.338"/>
<use xlink:href="#glyph0-2" x="2.480094" y="92.338"/>
<use xlink:href="#glyph0-3" x="7.574643" y="92.338"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="21.342" y="92.338"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="31.656" y="92.284"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="30.298" y="92.338"/>
<use xlink:href="#glyph0-2" x="36.36346" y="92.338"/>
<use xlink:href="#glyph0-3" x="41.458009" y="92.338"/>
<use xlink:href="#glyph0-7" x="47.523469" y="92.338"/>
<use xlink:href="#glyph0-8" x="51.592563" y="92.338"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="65.01" y="92.338"/>
<use xlink:href="#glyph0-8" x="71.108187" y="92.338"/>
<use xlink:href="#glyph0-10" x="76.824555" y="92.338"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-11" x="90.592" y="92.338"/>
<use xlink:href="#glyph0-12" x="96.766551" y="92.338"/>
<use xlink:href="#glyph0-13" x="99.55928" y="92.338"/>
<use xlink:href="#glyph0-14" x="105.62474" y="92.338"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-15" x="118.901" y="92.338"/>
<use xlink:href="#glyph0-7" x="123.635549" y="92.338"/>
<use xlink:href="#glyph0-6" x="127.704644" y="92.338"/>
<use xlink:href="#glyph0-16" x="133.770103" y="92.338"/>
<use xlink:href="#glyph0-10" x="138.166471" y="92.338"/>
<use xlink:href="#glyph0-17" x="144.23193" y="92.338"/>
<use xlink:href="#glyph0-8" x="147.02466" y="92.338"/>
<use xlink:href="#glyph0-16" x="152.741028" y="92.338"/>
<use xlink:href="#glyph0-8" x="157.137396" y="92.338"/>
<use xlink:href="#glyph0-10" x="162.853764" y="92.338"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="176.621" y="92.338"/>
<use xlink:href="#glyph0-8" x="182.719187" y="92.338"/>
<use xlink:href="#glyph0-10" x="188.435555" y="92.338"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-17" x="202.203" y="92.338"/>
<use xlink:href="#glyph0-2" x="204.99573" y="92.338"/>
<use xlink:href="#glyph0-3" x="210.090279" y="92.338"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-14" x="225.084" y="92.338"/>
<use xlink:href="#glyph0-8" x="230.65855" y="92.338"/>
<use xlink:href="#glyph0-15" x="236.374919" y="92.338"/>
<use xlink:href="#glyph0-7" x="241.109468" y="92.338"/>
<use xlink:href="#glyph0-8" x="245.178562" y="92.338"/>
<use xlink:href="#glyph0-16" x="250.894931" y="92.338"/>
<use xlink:href="#glyph0-10" x="255.291298" y="92.338"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-14" x="270.285" y="92.338"/>
<use xlink:href="#glyph0-8" x="275.85955" y="92.338"/>
<use xlink:href="#glyph0-18" x="281.575919" y="92.338"/>
<use xlink:href="#glyph0-13" x="287.674105" y="92.338"/>
<use xlink:href="#glyph0-2" x="293.739565" y="92.338"/>
<use xlink:href="#glyph0-3" x="298.834115" y="92.338"/>
<use xlink:href="#glyph0-7" x="304.899574" y="92.338"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="316.67" y="92.338"/>
<use xlink:href="#glyph0-19" x="322.73546" y="92.338"/>
<use xlink:href="#glyph0-18" x="328.266373" y="92.338"/>
<use xlink:href="#glyph0-8" x="334.36456" y="92.338"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="5.009" y="108.609"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="23.733" y="108.609"/>
<use xlink:href="#glyph1-3" x="30.601262" y="108.609"/>
<use xlink:href="#glyph1-4" x="35.147227" y="108.609"/>
<use xlink:href="#glyph1-5" x="40.132546" y="108.609"/>
<use xlink:href="#glyph1-6" x="43.477013" y="108.609"/>
<use xlink:href="#glyph1-5" x="46.588354" y="108.609"/>
<use xlink:href="#glyph1-7" x="49.932821" y="108.609"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="67.436" y="108.609"/>
<use xlink:href="#glyph1-8" x="70.780467" y="108.609"/>
<use xlink:href="#glyph1-9" x="75.765786" y="108.609"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-10" x="90.629" y="108.609"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-11" x="95.955" y="108.609"/>
<use xlink:href="#glyph1-12" x="98.250398" y="108.609"/>
<use xlink:href="#glyph1-8" x="102.832229" y="108.609"/>
<use xlink:href="#glyph1-5" x="107.817547" y="108.609"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-13" x="131.46" y="108.609"/>
<use xlink:href="#glyph1-3" x="135.647309" y="108.609"/>
<use xlink:href="#glyph1-4" x="140.193274" y="108.609"/>
<use xlink:href="#glyph1-13" x="145.178592" y="108.609"/>
<use xlink:href="#glyph1-9" x="149.365901" y="108.609"/>
<use xlink:href="#glyph1-14" x="154.064294" y="108.609"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="177.451" y="108.609"/>
<use xlink:href="#glyph1-8" x="180.795467" y="108.609"/>
<use xlink:href="#glyph1-3" x="185.780786" y="108.609"/>
<use xlink:href="#glyph1-5" x="190.32675" y="108.609"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="207.803" y="108.609"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-15" x="223.857" y="108.609"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-9" x="228.331234" y="108.609"/>
<use xlink:href="#glyph1-16" x="233.029627" y="108.609"/>
<use xlink:href="#glyph1-5" x="236.921045" y="108.609"/>
<use xlink:href="#glyph1-9" x="240.265512" y="108.609"/>
<use xlink:href="#glyph1-17" x="244.963906" y="108.609"/>
<use xlink:href="#glyph1-18" x="248.577365" y="108.609"/>
<use xlink:href="#glyph1-3" x="253.589582" y="108.609"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-15" x="257.992085" y="108.609"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-19" x="275.065" y="108.609"/>
<use xlink:href="#glyph1-7" x="280.077218" y="108.609"/>
<use xlink:href="#glyph1-7" x="285.062536" y="108.609"/>
<use xlink:href="#glyph1-20" x="290.047854" y="108.609"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-9" x="294.477256" y="108.609"/>
<use xlink:href="#glyph1-18" x="299.17565" y="108.609"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-8" x="319.095" y="108.609"/>
<use xlink:href="#glyph1-3" x="324.080318" y="108.609"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-21" x="328.482821" y="108.609"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-9" x="332.957054" y="108.609"/>
</g>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -130.281781 85.414625 L -130.281781 18.516188 " transform="matrix(1,0,0,-1,169.606,97.024)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 39.324219 81.097656 L 41.394531 76.953125 L 39.324219 78.507812 L 37.25 76.953125 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -134.266156 15.926344 L -136.672406 27.258375 C -136.992719 28.781813 -138.516156 30.016188 -140.07475 30.016188 L -157.414594 30.016188 C -158.973187 30.016188 -160.496625 28.781813 -160.816937 27.258375 L -162.684125 18.4615 " transform="matrix(1,0,0,-1,169.606,97.024)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 6.382812 81.097656 L 9.273438 77.472656 L 6.921875 78.5625 L 5.214844 76.613281 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -126.297406 15.926344 L -123.902875 49.762281 C -123.57475 54.422438 -119.523969 58.199781 -114.852094 58.199781 L -37.141156 58.199781 C -32.469281 58.199781 -28.4185 54.422438 -28.090375 49.762281 L -25.879437 18.508375 " transform="matrix(1,0,0,-1,169.606,97.024)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 143.910156 81.097656 L 145.683594 76.820312 L 143.726562 78.515625 L 141.550781 77.109375 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -74.688031 15.926344 L -77.090375 27.258375 C -77.414594 28.781813 -78.938031 30.016188 -80.496625 30.016188 L -89.848187 30.016188 C -91.406781 30.016188 -92.930219 28.781813 -93.254437 27.258375 L -95.117719 18.4615 " transform="matrix(1,0,0,-1,169.606,97.024)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 73.949219 81.097656 L 76.835938 77.472656 L 74.488281 78.5625 L 72.78125 76.613281 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(3.529358%,63.920593%,83.529663%);stroke-opacity:1;stroke-miterlimit:10;" d="M -71.69975 15.926344 L -69.309125 68.926344 C -68.977094 76.238844 -62.777875 82.164625 -55.461469 82.164625 L 142.534625 82.164625 C 149.851031 82.164625 156.05025 76.238844 156.378375 68.926344 L 158.655719 18.512281 " transform="matrix(1,0,0,-1,169.606,97.024)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(3.529358%,63.920593%,83.529663%);fill-opacity:1;" d="M 328.378906 81.097656 L 330.261719 76.863281 L 328.261719 78.511719 L 326.121094 77.050781 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -29.680219 15.926344 L -32.086469 27.258375 C -32.406781 28.781813 -33.930219 30.016188 -35.488812 30.016188 L -62.902875 30.016188 C -64.461469 30.016188 -65.984906 28.781813 -66.305219 27.258375 L -68.172406 18.4615 " transform="matrix(1,0,0,-1,169.606,97.024)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 100.894531 81.097656 L 103.785156 77.472656 L 101.433594 78.5625 L 99.726562 76.613281 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(3.529358%,63.920593%,83.529663%);stroke-opacity:1;stroke-miterlimit:10;" d="M 116.038531 15.926344 L 113.644 42.445875 C 113.315875 46.090406 110.0815 49.043531 106.42525 49.043531 L 25.569781 49.043531 C 21.909625 49.043531 18.679156 46.090406 18.351031 42.445875 L 16.186969 18.504469 " transform="matrix(1,0,0,-1,169.606,97.024)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(3.529358%,63.920593%,83.529663%);fill-opacity:1;" d="M 185.5625 81.097656 L 187.996094 77.15625 L 185.792969 78.519531 L 183.871094 76.785156 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 113.046344 15.926344 L 110.644 27.258375 C 110.319781 28.781813 108.796344 30.016188 107.241656 30.016188 L 79.421344 30.016188 C 77.866656 30.016188 76.343219 28.781813 76.019 27.258375 L 74.151813 18.4615 " transform="matrix(1,0,0,-1,169.606,97.024)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 243.222656 81.097656 L 246.109375 77.472656 L 243.757812 78.5625 L 242.054688 76.613281 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.784625 15.926344 L 152.394 49.762281 C 152.065875 54.422438 148.011188 58.199781 143.343219 58.199781 L 51.019 58.199781 C 46.347125 58.199781 42.296344 54.422438 41.968219 49.762281 L 39.757281 18.508375 " transform="matrix(1,0,0,-1,169.606,97.024)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 209.179688 81.097656 L 211.539062 77.109375 L 209.363281 78.515625 L 207.40625 76.820312 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.796344 15.926344 L 149.394 27.258375 C 149.069781 28.781813 147.546344 30.016188 145.991656 30.016188 L 125.827594 30.016188 C 124.272906 30.016188 122.749469 28.781813 122.42525 27.258375 L 120.558063 18.4615 " transform="matrix(1,0,0,-1,169.606,97.024)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 289.628906 81.097656 L 292.515625 77.472656 L 290.164062 78.5625 L 288.460938 76.613281 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 288 KiB

View File

@ -0,0 +1,871 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="514pt" height="250pt" viewBox="0 0 514 250" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 1.359375 -6.21875 L 1.625 -5.8125 C 1.65625 -5.71875 1.734375 -5.6875 1.828125 -5.6875 C 1.859375 -5.6875 1.90625 -5.703125 1.953125 -5.734375 C 2 -5.765625 2.078125 -5.8125 2.140625 -5.84375 C 2.21875 -5.890625 2.296875 -5.921875 2.40625 -5.953125 C 2.515625 -5.984375 2.640625 -6 2.78125 -6 C 2.984375 -6 3.15625 -5.953125 3.296875 -5.84375 C 3.421875 -5.734375 3.484375 -5.578125 3.484375 -5.40625 C 3.484375 -5.25 3.46875 -5.125 3.40625 -5.015625 C 3.34375 -4.921875 3.265625 -4.828125 3.1875 -4.734375 C 3.09375 -4.65625 3 -4.578125 2.90625 -4.5 C 2.796875 -4.4375 2.71875 -4.359375 2.625 -4.28125 C 2.546875 -4.203125 2.484375 -4.109375 2.4375 -4.03125 C 2.390625 -3.921875 2.375 -3.828125 2.390625 -3.703125 L 2.453125 -3.0625 L 3.125 -3.0625 L 3.21875 -3.625 C 3.234375 -3.71875 3.265625 -3.796875 3.328125 -3.859375 C 3.390625 -3.921875 3.46875 -3.984375 3.5625 -4.0625 C 3.640625 -4.140625 3.734375 -4.203125 3.828125 -4.28125 C 3.9375 -4.359375 4.03125 -4.453125 4.09375 -4.5625 C 4.1875 -4.671875 4.25 -4.796875 4.3125 -4.9375 C 4.359375 -5.09375 4.390625 -5.25 4.390625 -5.453125 C 4.390625 -5.65625 4.359375 -5.84375 4.28125 -6.015625 C 4.203125 -6.171875 4.09375 -6.3125 3.96875 -6.4375 C 3.828125 -6.546875 3.671875 -6.640625 3.484375 -6.703125 C 3.296875 -6.765625 3.09375 -6.796875 2.859375 -6.796875 C 2.6875 -6.796875 2.546875 -6.78125 2.40625 -6.75 C 2.25 -6.71875 2.125 -6.6875 2 -6.625 C 1.875 -6.578125 1.75 -6.515625 1.65625 -6.453125 C 1.546875 -6.375 1.453125 -6.296875 1.359375 -6.21875 Z M 2.15625 -1.59375 C 2.15625 -1.421875 2.21875 -1.28125 2.328125 -1.171875 C 2.4375 -1.046875 2.578125 -1 2.765625 -1 C 2.84375 -1 2.921875 -1.015625 2.984375 -1.03125 C 3.0625 -1.0625 3.125 -1.109375 3.171875 -1.171875 C 3.234375 -1.21875 3.265625 -1.28125 3.296875 -1.359375 C 3.328125 -1.421875 3.34375 -1.515625 3.34375 -1.59375 C 3.34375 -1.671875 3.328125 -1.75 3.296875 -1.828125 C 3.265625 -1.90625 3.234375 -1.96875 3.171875 -2.015625 C 3.125 -2.078125 3.0625 -2.125 2.984375 -2.15625 C 2.921875 -2.1875 2.84375 -2.203125 2.765625 -2.203125 C 2.578125 -2.203125 2.4375 -2.140625 2.328125 -2.015625 C 2.21875 -1.90625 2.15625 -1.765625 2.15625 -1.59375 Z M 0.25 -7.8125 L 0.25 0 L 5.5625 0 L 5.5625 -7.8125 Z M 0.515625 -0.296875 L 0.515625 -7.515625 L 5.25 -7.515625 L 5.25 -0.296875 Z M 0.515625 -0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 2.203125 0 L 2.203125 -7.8125 L 1.140625 -7.8125 L 1.140625 0 Z M 2.203125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 4.5625 -4.546875 L 4.828125 -4.890625 C 4.59375 -5.125 4.328125 -5.296875 4.03125 -5.421875 C 3.734375 -5.546875 3.390625 -5.609375 3 -5.609375 C 2.578125 -5.609375 2.21875 -5.546875 1.890625 -5.40625 C 1.578125 -5.25 1.296875 -5.0625 1.078125 -4.8125 C 0.859375 -4.546875 0.6875 -4.25 0.578125 -3.90625 C 0.453125 -3.5625 0.40625 -3.171875 0.40625 -2.765625 C 0.40625 -2.3125 0.46875 -1.90625 0.59375 -1.5625 C 0.71875 -1.203125 0.890625 -0.90625 1.109375 -0.671875 C 1.328125 -0.421875 1.578125 -0.234375 1.875 -0.109375 C 2.171875 0.015625 2.5 0.078125 2.84375 0.078125 C 3.234375 0.078125 3.625 0.015625 3.984375 -0.125 C 4.34375 -0.265625 4.640625 -0.484375 4.875 -0.78125 L 4.609375 -1.125 C 4.5625 -1.1875 4.5 -1.21875 4.421875 -1.21875 C 4.359375 -1.21875 4.296875 -1.1875 4.21875 -1.140625 C 4.15625 -1.078125 4.078125 -1.015625 3.96875 -0.953125 C 3.875 -0.875 3.75 -0.8125 3.59375 -0.765625 C 3.4375 -0.703125 3.25 -0.671875 3.015625 -0.671875 C 2.765625 -0.671875 2.546875 -0.71875 2.34375 -0.8125 C 2.140625 -0.90625 1.96875 -1.046875 1.84375 -1.21875 C 1.703125 -1.390625 1.59375 -1.609375 1.515625 -1.875 C 1.4375 -2.125 1.40625 -2.4375 1.40625 -2.765625 C 1.40625 -3.09375 1.4375 -3.375 1.5 -3.625 C 1.578125 -3.890625 1.6875 -4.109375 1.828125 -4.296875 C 1.96875 -4.46875 2.140625 -4.609375 2.34375 -4.71875 C 2.546875 -4.796875 2.796875 -4.859375 3.0625 -4.859375 C 3.265625 -4.859375 3.4375 -4.828125 3.578125 -4.78125 C 3.71875 -4.734375 3.828125 -4.6875 3.9375 -4.640625 C 4.03125 -4.578125 4.109375 -4.53125 4.171875 -4.484375 C 4.234375 -4.4375 4.296875 -4.421875 4.359375 -4.421875 C 4.40625 -4.421875 4.453125 -4.421875 4.484375 -4.453125 C 4.5 -4.46875 4.53125 -4.5 4.5625 -4.546875 Z M 4.5625 -4.546875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 0.796875 0 L 1.765625 0 L 1.765625 -4.0625 C 1.984375 -4.296875 2.203125 -4.5 2.453125 -4.625 C 2.703125 -4.765625 2.96875 -4.84375 3.265625 -4.84375 C 3.65625 -4.84375 3.953125 -4.71875 4.140625 -4.5 C 4.328125 -4.265625 4.421875 -3.9375 4.421875 -3.515625 L 4.421875 0 L 5.390625 0 L 5.390625 -3.515625 C 5.390625 -3.828125 5.359375 -4.109375 5.265625 -4.375 C 5.1875 -4.625 5.078125 -4.859375 4.921875 -5.03125 C 4.765625 -5.21875 4.578125 -5.359375 4.34375 -5.46875 C 4.109375 -5.5625 3.84375 -5.609375 3.546875 -5.609375 C 3.171875 -5.609375 2.84375 -5.53125 2.546875 -5.390625 C 2.265625 -5.234375 2 -5.03125 1.765625 -4.78125 L 1.765625 -8.03125 L 0.796875 -8.03125 Z M 0.796875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 0.796875 0 L 1.765625 0 L 1.765625 -4.109375 C 1.9375 -4.34375 2.125 -4.515625 2.328125 -4.640625 C 2.53125 -4.765625 2.765625 -4.84375 3 -4.84375 C 3.34375 -4.84375 3.59375 -4.734375 3.78125 -4.515625 C 3.953125 -4.296875 4.046875 -3.953125 4.046875 -3.515625 L 4.046875 0 L 5.015625 0 L 5.015625 -3.515625 C 5.015625 -3.734375 5.046875 -3.921875 5.109375 -4.09375 C 5.171875 -4.265625 5.265625 -4.390625 5.375 -4.5 C 5.484375 -4.609375 5.609375 -4.6875 5.75 -4.75 C 5.890625 -4.8125 6.046875 -4.84375 6.203125 -4.84375 C 6.5625 -4.84375 6.84375 -4.71875 7.03125 -4.5 C 7.21875 -4.28125 7.3125 -3.953125 7.3125 -3.515625 L 7.3125 0 L 8.28125 0 L 8.28125 -3.515625 C 8.28125 -3.84375 8.234375 -4.15625 8.15625 -4.40625 C 8.078125 -4.671875 7.953125 -4.890625 7.796875 -5.0625 C 7.640625 -5.25 7.4375 -5.375 7.21875 -5.46875 C 6.984375 -5.5625 6.734375 -5.609375 6.4375 -5.609375 C 6.265625 -5.609375 6.078125 -5.59375 5.90625 -5.546875 C 5.71875 -5.5 5.5625 -5.4375 5.40625 -5.34375 C 5.25 -5.25 5.109375 -5.125 4.984375 -4.984375 C 4.859375 -4.828125 4.75 -4.65625 4.671875 -4.453125 C 4.578125 -4.8125 4.40625 -5.09375 4.171875 -5.296875 C 3.953125 -5.5 3.640625 -5.609375 3.265625 -5.609375 C 2.9375 -5.609375 2.640625 -5.53125 2.390625 -5.375 C 2.140625 -5.21875 1.90625 -5 1.703125 -4.75 L 1.640625 -5.328125 C 1.59375 -5.453125 1.515625 -5.53125 1.375 -5.53125 L 0.796875 -5.53125 Z M 0.796875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 1.296875 -7.03125 C 1.296875 -7.109375 1.28125 -7.1875 1.25 -7.265625 C 1.21875 -7.34375 1.171875 -7.40625 1.125 -7.46875 C 1.0625 -7.53125 1 -7.5625 0.921875 -7.609375 C 0.84375 -7.640625 0.765625 -7.65625 0.6875 -7.65625 C 0.59375 -7.65625 0.53125 -7.640625 0.453125 -7.609375 C 0.375 -7.5625 0.3125 -7.53125 0.265625 -7.46875 C 0.203125 -7.40625 0.15625 -7.34375 0.125 -7.265625 C 0.09375 -7.1875 0.078125 -7.109375 0.078125 -7.03125 C 0.078125 -6.953125 0.09375 -6.859375 0.125 -6.796875 C 0.15625 -6.71875 0.203125 -6.65625 0.265625 -6.609375 C 0.3125 -6.546875 0.375 -6.5 0.453125 -6.46875 C 0.53125 -6.4375 0.59375 -6.421875 0.6875 -6.421875 C 0.765625 -6.421875 0.84375 -6.4375 0.921875 -6.46875 C 1 -6.5 1.0625 -6.546875 1.125 -6.609375 C 1.171875 -6.65625 1.21875 -6.71875 1.25 -6.796875 C 1.28125 -6.859375 1.296875 -6.953125 1.296875 -7.03125 Z M 3.265625 -7.03125 C 3.265625 -7.109375 3.25 -7.1875 3.21875 -7.265625 C 3.171875 -7.34375 3.140625 -7.40625 3.078125 -7.46875 C 3.015625 -7.53125 2.953125 -7.5625 2.875 -7.609375 C 2.8125 -7.640625 2.71875 -7.65625 2.640625 -7.65625 C 2.5625 -7.65625 2.484375 -7.640625 2.40625 -7.609375 C 2.328125 -7.5625 2.265625 -7.53125 2.21875 -7.46875 C 2.15625 -7.40625 2.109375 -7.34375 2.078125 -7.265625 C 2.046875 -7.1875 2.03125 -7.109375 2.03125 -7.03125 C 2.03125 -6.953125 2.046875 -6.859375 2.078125 -6.796875 C 2.109375 -6.71875 2.15625 -6.65625 2.21875 -6.609375 C 2.265625 -6.546875 2.328125 -6.5 2.40625 -6.46875 C 2.484375 -6.4375 2.5625 -6.421875 2.640625 -6.421875 C 2.71875 -6.421875 2.8125 -6.4375 2.875 -6.46875 C 2.953125 -6.5 3.015625 -6.546875 3.078125 -6.609375 C 3.140625 -6.65625 3.171875 -6.71875 3.21875 -6.796875 C 3.25 -6.859375 3.265625 -6.953125 3.265625 -7.03125 Z M 3.265625 -7.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 3.03125 -5.609375 C 2.625 -5.609375 2.265625 -5.546875 1.9375 -5.40625 C 1.609375 -5.265625 1.34375 -5.078125 1.109375 -4.84375 C 0.875 -4.59375 0.703125 -4.296875 0.578125 -3.9375 C 0.453125 -3.59375 0.390625 -3.203125 0.390625 -2.765625 C 0.390625 -2.328125 0.453125 -1.9375 0.578125 -1.59375 C 0.703125 -1.234375 0.875 -0.9375 1.109375 -0.6875 C 1.34375 -0.453125 1.609375 -0.25 1.9375 -0.125 C 2.265625 0.015625 2.625 0.078125 3.03125 0.078125 C 3.4375 0.078125 3.796875 0.015625 4.125 -0.125 C 4.453125 -0.25 4.734375 -0.453125 4.953125 -0.6875 C 5.1875 -0.9375 5.359375 -1.234375 5.46875 -1.59375 C 5.59375 -1.9375 5.65625 -2.328125 5.65625 -2.765625 C 5.65625 -3.203125 5.59375 -3.59375 5.46875 -3.9375 C 5.359375 -4.296875 5.1875 -4.59375 4.953125 -4.84375 C 4.734375 -5.078125 4.453125 -5.265625 4.125 -5.40625 C 3.796875 -5.546875 3.4375 -5.609375 3.03125 -5.609375 Z M 3.03125 -0.6875 C 2.75 -0.6875 2.515625 -0.734375 2.3125 -0.828125 C 2.109375 -0.921875 1.9375 -1.046875 1.796875 -1.234375 C 1.671875 -1.40625 1.5625 -1.625 1.5 -1.875 C 1.421875 -2.140625 1.390625 -2.4375 1.390625 -2.765625 C 1.390625 -3.09375 1.421875 -3.375 1.5 -3.640625 C 1.5625 -3.90625 1.671875 -4.109375 1.796875 -4.296875 C 1.9375 -4.484375 2.109375 -4.609375 2.3125 -4.703125 C 2.515625 -4.796875 2.75 -4.84375 3.03125 -4.84375 C 3.578125 -4.84375 3.984375 -4.65625 4.25 -4.296875 C 4.515625 -3.9375 4.65625 -3.421875 4.65625 -2.765625 C 4.65625 -2.109375 4.515625 -1.59375 4.25 -1.234375 C 3.984375 -0.859375 3.578125 -0.6875 3.03125 -0.6875 Z M 3.03125 -0.6875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 2.46875 0.09375 C 2.71875 0.09375 2.96875 0.046875 3.203125 -0.046875 C 3.4375 -0.140625 3.640625 -0.25 3.8125 -0.421875 L 3.515625 -0.875 C 3.484375 -0.9375 3.4375 -0.96875 3.390625 -0.96875 C 3.359375 -0.96875 3.328125 -0.953125 3.28125 -0.921875 C 3.25 -0.90625 3.203125 -0.875 3.140625 -0.84375 C 3.09375 -0.8125 3.03125 -0.78125 2.953125 -0.75 C 2.875 -0.71875 2.796875 -0.703125 2.6875 -0.703125 C 2.515625 -0.703125 2.359375 -0.765625 2.25 -0.875 C 2.140625 -1 2.078125 -1.15625 2.078125 -1.390625 L 2.078125 -4.71875 L 3.671875 -4.71875 L 3.671875 -5.421875 L 2.078125 -5.421875 L 2.078125 -7.3125 L 1.59375 -7.3125 C 1.53125 -7.3125 1.484375 -7.296875 1.4375 -7.265625 C 1.40625 -7.234375 1.375 -7.1875 1.375 -7.125 L 1.140625 -5.421875 L 0.234375 -5.3125 L 0.234375 -4.921875 C 0.234375 -4.859375 0.265625 -4.796875 0.296875 -4.765625 C 0.34375 -4.734375 0.390625 -4.71875 0.453125 -4.71875 L 1.109375 -4.71875 L 1.109375 -1.328125 C 1.109375 -0.875 1.234375 -0.53125 1.46875 -0.28125 C 1.703125 -0.03125 2.03125 0.09375 2.46875 0.09375 Z M 2.46875 0.09375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 2.984375 -5.609375 C 2.578125 -5.609375 2.21875 -5.546875 1.90625 -5.40625 C 1.578125 -5.265625 1.3125 -5.078125 1.09375 -4.828125 C 0.859375 -4.578125 0.703125 -4.28125 0.578125 -3.953125 C 0.46875 -3.625 0.40625 -3.265625 0.40625 -2.875 C 0.40625 -2.40625 0.46875 -1.96875 0.59375 -1.609375 C 0.734375 -1.25 0.921875 -0.9375 1.140625 -0.6875 C 1.390625 -0.4375 1.65625 -0.25 1.984375 -0.125 C 2.296875 0.015625 2.65625 0.078125 3.03125 0.078125 C 3.234375 0.078125 3.4375 0.0625 3.640625 0.015625 C 3.84375 -0.015625 4.046875 -0.0625 4.234375 -0.125 C 4.421875 -0.203125 4.609375 -0.28125 4.765625 -0.390625 C 4.9375 -0.5 5.078125 -0.625 5.203125 -0.78125 L 4.921875 -1.125 C 4.890625 -1.1875 4.828125 -1.21875 4.75 -1.21875 C 4.6875 -1.21875 4.609375 -1.1875 4.53125 -1.140625 C 4.4375 -1.078125 4.328125 -1.015625 4.203125 -0.953125 C 4.078125 -0.890625 3.921875 -0.828125 3.75 -0.78125 C 3.578125 -0.71875 3.359375 -0.6875 3.125 -0.6875 C 2.859375 -0.6875 2.625 -0.734375 2.40625 -0.8125 C 2.203125 -0.90625 2.015625 -1.03125 1.859375 -1.203125 C 1.71875 -1.375 1.59375 -1.59375 1.5 -1.84375 C 1.421875 -2.109375 1.375 -2.40625 1.359375 -2.765625 L 5.03125 -2.765625 C 5.125 -2.765625 5.1875 -2.78125 5.21875 -2.828125 C 5.25 -2.890625 5.265625 -2.984375 5.265625 -3.140625 C 5.265625 -3.53125 5.21875 -3.875 5.109375 -4.1875 C 4.984375 -4.5 4.828125 -4.75 4.625 -4.96875 C 4.421875 -5.171875 4.171875 -5.328125 3.90625 -5.4375 C 3.625 -5.5625 3.3125 -5.609375 2.984375 -5.609375 Z M 3 -4.890625 C 3.234375 -4.890625 3.421875 -4.859375 3.59375 -4.78125 C 3.765625 -4.71875 3.921875 -4.609375 4.03125 -4.46875 C 4.15625 -4.328125 4.25 -4.171875 4.3125 -3.984375 C 4.375 -3.796875 4.40625 -3.59375 4.40625 -3.359375 L 1.390625 -3.359375 C 1.46875 -3.84375 1.625 -4.21875 1.890625 -4.5 C 2.171875 -4.765625 2.53125 -4.890625 3 -4.890625 Z M 3 -4.890625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 4.6875 0 L 5.265625 0 L 5.265625 -8.03125 L 4.296875 -8.03125 L 4.296875 -4.96875 C 4.09375 -5.171875 3.890625 -5.328125 3.640625 -5.453125 C 3.40625 -5.5625 3.125 -5.625 2.78125 -5.625 C 2.40625 -5.625 2.078125 -5.546875 1.78125 -5.40625 C 1.484375 -5.25 1.234375 -5.046875 1.03125 -4.796875 C 0.828125 -4.53125 0.671875 -4.234375 0.5625 -3.875 C 0.453125 -3.53125 0.390625 -3.15625 0.390625 -2.75 C 0.390625 -2.28125 0.4375 -1.875 0.546875 -1.53125 C 0.640625 -1.171875 0.78125 -0.875 0.953125 -0.640625 C 1.140625 -0.40625 1.359375 -0.234375 1.625 -0.109375 C 1.875 0.015625 2.171875 0.078125 2.484375 0.078125 C 2.875 0.078125 3.21875 -0.015625 3.515625 -0.1875 C 3.828125 -0.359375 4.09375 -0.578125 4.328125 -0.875 L 4.421875 -0.203125 C 4.453125 -0.0625 4.546875 0 4.6875 0 Z M 2.796875 -0.703125 C 2.578125 -0.703125 2.375 -0.75 2.203125 -0.828125 C 2.03125 -0.90625 1.875 -1.015625 1.765625 -1.1875 C 1.640625 -1.359375 1.546875 -1.5625 1.484375 -1.828125 C 1.421875 -2.078125 1.390625 -2.390625 1.390625 -2.75 C 1.390625 -3.421875 1.53125 -3.953125 1.8125 -4.3125 C 2.09375 -4.671875 2.484375 -4.859375 3 -4.859375 C 3.25 -4.859375 3.484375 -4.8125 3.703125 -4.71875 C 3.921875 -4.625 4.109375 -4.453125 4.296875 -4.21875 L 4.296875 -1.546875 C 4.09375 -1.28125 3.875 -1.078125 3.625 -0.921875 C 3.390625 -0.78125 3.125 -0.703125 2.796875 -0.703125 Z M 2.796875 -0.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 0.796875 0 L 1.765625 0 L 1.765625 -4.0625 C 1.984375 -4.296875 2.203125 -4.5 2.453125 -4.625 C 2.703125 -4.765625 2.96875 -4.84375 3.265625 -4.84375 C 3.65625 -4.84375 3.953125 -4.71875 4.140625 -4.5 C 4.328125 -4.265625 4.421875 -3.9375 4.421875 -3.515625 L 4.421875 0 L 5.390625 0 L 5.390625 -3.515625 C 5.390625 -3.828125 5.359375 -4.109375 5.265625 -4.375 C 5.1875 -4.625 5.078125 -4.859375 4.921875 -5.03125 C 4.765625 -5.21875 4.578125 -5.359375 4.34375 -5.46875 C 4.109375 -5.5625 3.84375 -5.609375 3.546875 -5.609375 C 3.15625 -5.609375 2.8125 -5.53125 2.515625 -5.359375 C 2.21875 -5.203125 1.953125 -4.984375 1.71875 -4.71875 L 1.640625 -5.328125 C 1.59375 -5.453125 1.515625 -5.53125 1.375 -5.53125 L 0.796875 -5.53125 Z M 0.796875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 5.765625 -7.8125 L 0.953125 -7.8125 L 0.953125 0 L 2.015625 0 L 2.015625 -3.359375 L 5.21875 -3.359375 L 5.21875 -4.21875 L 2.015625 -4.21875 L 2.015625 -6.953125 L 5.765625 -6.953125 Z M 5.765625 -7.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 1.875 -8.03125 L 0.90625 -8.03125 L 0.90625 0 L 1.875 0 Z M 1.875 -8.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 1.640625 -5.53125 L 0.671875 -5.53125 L 0.671875 -2 C 0.671875 -1.6875 0.703125 -1.40625 0.78125 -1.140625 C 0.859375 -0.890625 0.96875 -0.671875 1.140625 -0.484375 C 1.296875 -0.3125 1.484375 -0.15625 1.71875 -0.0625 C 1.953125 0.03125 2.21875 0.09375 2.515625 0.09375 C 2.90625 0.09375 3.234375 0 3.546875 -0.15625 C 3.84375 -0.3125 4.109375 -0.53125 4.34375 -0.796875 L 4.421875 -0.203125 C 4.453125 -0.0625 4.546875 0 4.6875 0 L 5.265625 0 L 5.265625 -5.53125 L 4.296875 -5.53125 L 4.296875 -1.453125 C 4.078125 -1.203125 3.84375 -1.03125 3.59375 -0.890625 C 3.34375 -0.75 3.078125 -0.6875 2.796875 -0.6875 C 2.40625 -0.6875 2.109375 -0.796875 1.921875 -1.03125 C 1.734375 -1.265625 1.640625 -1.578125 1.640625 -2 Z M 1.640625 -5.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 2.65625 -5.609375 C 2.34375 -5.609375 2.078125 -5.578125 1.8125 -5.484375 C 1.5625 -5.40625 1.34375 -5.296875 1.15625 -5.140625 C 0.96875 -4.984375 0.8125 -4.796875 0.71875 -4.5625 C 0.609375 -4.359375 0.5625 -4.109375 0.5625 -3.84375 C 0.5625 -3.5 0.640625 -3.203125 0.796875 -2.953125 C 0.953125 -2.703125 1.15625 -2.5 1.4375 -2.34375 C 1.3125 -2.28125 1.21875 -2.21875 1.125 -2.140625 C 1.046875 -2.0625 0.96875 -1.984375 0.90625 -1.90625 C 0.84375 -1.828125 0.796875 -1.734375 0.78125 -1.640625 C 0.75 -1.5625 0.734375 -1.484375 0.734375 -1.40625 C 0.734375 -1.203125 0.78125 -1.03125 0.875 -0.921875 C 0.953125 -0.796875 1.078125 -0.6875 1.25 -0.625 C 0.9375 -0.5 0.703125 -0.359375 0.53125 -0.15625 C 0.359375 0.015625 0.265625 0.25 0.265625 0.53125 C 0.265625 0.71875 0.328125 0.90625 0.421875 1.078125 C 0.53125 1.265625 0.671875 1.40625 0.875 1.546875 C 1.078125 1.6875 1.328125 1.78125 1.625 1.875 C 1.9375 1.953125 2.28125 1.984375 2.6875 1.984375 C 3.09375 1.984375 3.453125 1.9375 3.78125 1.828125 C 4.09375 1.734375 4.359375 1.59375 4.59375 1.421875 C 4.8125 1.25 4.984375 1.046875 5.09375 0.828125 C 5.21875 0.609375 5.265625 0.375 5.265625 0.140625 C 5.265625 -0.109375 5.21875 -0.328125 5.109375 -0.484375 C 5.015625 -0.640625 4.875 -0.765625 4.6875 -0.859375 C 4.515625 -0.953125 4.328125 -1.015625 4.09375 -1.046875 C 3.875 -1.09375 3.65625 -1.125 3.421875 -1.140625 C 3.1875 -1.15625 2.96875 -1.171875 2.75 -1.171875 C 2.515625 -1.171875 2.328125 -1.203125 2.15625 -1.234375 C 1.96875 -1.25 1.828125 -1.296875 1.734375 -1.375 C 1.625 -1.4375 1.578125 -1.53125 1.578125 -1.671875 C 1.578125 -1.75 1.609375 -1.828125 1.65625 -1.90625 C 1.71875 -2 1.8125 -2.078125 1.921875 -2.15625 C 2.15625 -2.09375 2.40625 -2.0625 2.65625 -2.0625 C 2.953125 -2.0625 3.234375 -2.09375 3.484375 -2.1875 C 3.734375 -2.265625 3.953125 -2.390625 4.140625 -2.546875 C 4.328125 -2.703125 4.46875 -2.890625 4.5625 -3.109375 C 4.671875 -3.328125 4.734375 -3.578125 4.734375 -3.84375 C 4.734375 -4.125 4.671875 -4.390625 4.546875 -4.625 L 5.171875 -4.71875 C 5.328125 -4.75 5.40625 -4.828125 5.40625 -4.953125 L 5.40625 -5.3125 L 3.90625 -5.3125 C 3.734375 -5.40625 3.546875 -5.484375 3.328125 -5.546875 C 3.125 -5.59375 2.890625 -5.609375 2.65625 -5.609375 Z M 4.375 0.296875 C 4.375 0.453125 4.34375 0.578125 4.265625 0.703125 C 4.1875 0.8125 4.078125 0.921875 3.9375 1.015625 C 3.796875 1.09375 3.609375 1.15625 3.40625 1.203125 C 3.203125 1.265625 2.96875 1.28125 2.703125 1.28125 C 2.4375 1.28125 2.203125 1.265625 2 1.203125 C 1.8125 1.171875 1.640625 1.109375 1.515625 1.03125 C 1.375 0.953125 1.28125 0.859375 1.21875 0.75 C 1.15625 0.640625 1.125 0.53125 1.125 0.40625 C 1.125 0.203125 1.1875 0.03125 1.3125 -0.109375 C 1.4375 -0.25 1.609375 -0.359375 1.828125 -0.46875 C 2 -0.4375 2.1875 -0.421875 2.390625 -0.40625 C 2.578125 -0.390625 2.765625 -0.375 2.96875 -0.375 C 3.15625 -0.359375 3.328125 -0.34375 3.5 -0.328125 C 3.671875 -0.3125 3.828125 -0.265625 3.953125 -0.234375 C 4.078125 -0.1875 4.1875 -0.109375 4.265625 -0.03125 C 4.34375 0.046875 4.375 0.15625 4.375 0.296875 Z M 2.65625 -2.703125 C 2.46875 -2.703125 2.296875 -2.71875 2.140625 -2.78125 C 2 -2.828125 1.875 -2.90625 1.765625 -3.015625 C 1.65625 -3.109375 1.59375 -3.234375 1.53125 -3.359375 C 1.484375 -3.5 1.453125 -3.640625 1.453125 -3.8125 C 1.453125 -4.15625 1.5625 -4.421875 1.765625 -4.625 C 1.96875 -4.828125 2.265625 -4.921875 2.65625 -4.921875 C 3.046875 -4.921875 3.34375 -4.828125 3.5625 -4.625 C 3.75 -4.421875 3.859375 -4.15625 3.859375 -3.8125 C 3.859375 -3.640625 3.828125 -3.5 3.78125 -3.359375 C 3.734375 -3.234375 3.65625 -3.109375 3.5625 -3.015625 C 3.453125 -2.90625 3.328125 -2.828125 3.171875 -2.78125 C 3.03125 -2.71875 2.859375 -2.703125 2.65625 -2.703125 Z M 2.65625 -2.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 3.953125 -4.609375 L 4.171875 -4.96875 C 3.96875 -5.171875 3.71875 -5.328125 3.421875 -5.4375 C 3.140625 -5.546875 2.8125 -5.609375 2.453125 -5.609375 C 2.140625 -5.609375 1.859375 -5.5625 1.609375 -5.484375 C 1.375 -5.390625 1.171875 -5.28125 1 -5.125 C 0.828125 -4.984375 0.703125 -4.8125 0.609375 -4.609375 C 0.53125 -4.421875 0.484375 -4.21875 0.484375 -4.015625 C 0.484375 -3.78125 0.53125 -3.578125 0.609375 -3.40625 C 0.6875 -3.234375 0.796875 -3.109375 0.9375 -2.984375 C 1.0625 -2.875 1.21875 -2.78125 1.390625 -2.703125 C 1.5625 -2.640625 1.75 -2.5625 1.921875 -2.515625 C 2.109375 -2.453125 2.28125 -2.390625 2.453125 -2.34375 C 2.625 -2.296875 2.78125 -2.21875 2.90625 -2.15625 C 3.046875 -2.078125 3.15625 -2 3.234375 -1.890625 C 3.3125 -1.796875 3.359375 -1.671875 3.359375 -1.515625 C 3.359375 -1.390625 3.34375 -1.28125 3.296875 -1.171875 C 3.25 -1.0625 3.171875 -0.96875 3.078125 -0.890625 C 2.984375 -0.796875 2.875 -0.734375 2.71875 -0.6875 C 2.578125 -0.625 2.421875 -0.609375 2.234375 -0.609375 C 2 -0.609375 1.828125 -0.640625 1.671875 -0.6875 C 1.53125 -0.734375 1.40625 -0.796875 1.296875 -0.859375 C 1.203125 -0.921875 1.109375 -0.96875 1.03125 -1.03125 C 0.96875 -1.078125 0.890625 -1.09375 0.828125 -1.09375 C 0.765625 -1.09375 0.703125 -1.09375 0.671875 -1.0625 C 0.625 -1.03125 0.59375 -1 0.5625 -0.953125 L 0.34375 -0.578125 C 0.5625 -0.390625 0.828125 -0.234375 1.140625 -0.09375 C 1.4375 0.015625 1.796875 0.09375 2.1875 0.09375 C 2.515625 0.09375 2.8125 0.046875 3.078125 -0.046875 C 3.328125 -0.140625 3.546875 -0.265625 3.734375 -0.421875 C 3.90625 -0.578125 4.046875 -0.765625 4.140625 -0.984375 C 4.21875 -1.203125 4.265625 -1.4375 4.265625 -1.6875 C 4.265625 -1.90625 4.234375 -2.109375 4.140625 -2.25 C 4.0625 -2.421875 3.953125 -2.546875 3.828125 -2.65625 C 3.6875 -2.765625 3.53125 -2.859375 3.359375 -2.9375 C 3.203125 -3 3.015625 -3.078125 2.828125 -3.125 C 2.65625 -3.203125 2.484375 -3.25 2.3125 -3.296875 C 2.140625 -3.359375 1.984375 -3.40625 1.859375 -3.484375 C 1.71875 -3.5625 1.609375 -3.640625 1.53125 -3.734375 C 1.453125 -3.828125 1.40625 -3.9375 1.40625 -4.078125 C 1.40625 -4.203125 1.421875 -4.296875 1.484375 -4.390625 C 1.53125 -4.5 1.609375 -4.578125 1.6875 -4.65625 C 1.78125 -4.71875 1.890625 -4.78125 2.03125 -4.828125 C 2.15625 -4.859375 2.3125 -4.890625 2.46875 -4.890625 C 2.65625 -4.890625 2.828125 -4.859375 2.96875 -4.828125 C 3.09375 -4.78125 3.21875 -4.734375 3.3125 -4.6875 C 3.421875 -4.640625 3.5 -4.59375 3.578125 -4.546875 C 3.640625 -4.515625 3.703125 -4.5 3.75 -4.5 C 3.84375 -4.5 3.921875 -4.53125 3.953125 -4.609375 Z M 3.953125 -4.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 0.796875 0 L 1.765625 0 L 1.765625 -3.515625 C 1.921875 -3.890625 2.109375 -4.171875 2.328125 -4.375 C 2.5625 -4.5625 2.84375 -4.671875 3.1875 -4.671875 C 3.375 -4.671875 3.515625 -4.65625 3.625 -4.609375 C 3.734375 -4.578125 3.8125 -4.5625 3.859375 -4.5625 C 3.953125 -4.5625 4 -4.609375 4.03125 -4.703125 L 4.15625 -5.421875 C 4.046875 -5.484375 3.9375 -5.53125 3.8125 -5.578125 C 3.6875 -5.609375 3.546875 -5.625 3.390625 -5.625 C 3.015625 -5.625 2.6875 -5.515625 2.421875 -5.296875 C 2.140625 -5.078125 1.90625 -4.78125 1.71875 -4.390625 L 1.65625 -5.25 C 1.640625 -5.359375 1.609375 -5.421875 1.578125 -5.46875 C 1.53125 -5.5 1.453125 -5.53125 1.359375 -5.53125 L 0.796875 -5.53125 Z M 0.796875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-17">
<path style="stroke:none;" d="M 1.875 -5.53125 L 0.90625 -5.53125 L 0.90625 0 L 1.875 0 Z M 2.09375 -7.265625 C 2.09375 -7.34375 2.078125 -7.4375 2.046875 -7.53125 C 2 -7.609375 1.953125 -7.6875 1.890625 -7.75 C 1.828125 -7.8125 1.75 -7.859375 1.65625 -7.90625 C 1.578125 -7.9375 1.484375 -7.953125 1.390625 -7.953125 C 1.296875 -7.953125 1.203125 -7.9375 1.140625 -7.90625 C 1.046875 -7.859375 0.96875 -7.8125 0.921875 -7.75 C 0.84375 -7.6875 0.796875 -7.609375 0.765625 -7.53125 C 0.71875 -7.4375 0.703125 -7.34375 0.703125 -7.265625 C 0.703125 -7.171875 0.71875 -7.078125 0.765625 -6.984375 C 0.796875 -6.921875 0.84375 -6.84375 0.921875 -6.765625 C 0.96875 -6.71875 1.046875 -6.65625 1.140625 -6.625 C 1.203125 -6.59375 1.296875 -6.578125 1.390625 -6.578125 C 1.484375 -6.578125 1.578125 -6.59375 1.65625 -6.625 C 1.75 -6.65625 1.828125 -6.71875 1.890625 -6.765625 C 1.953125 -6.84375 2 -6.921875 2.046875 -6.984375 C 2.078125 -7.078125 2.09375 -7.171875 2.09375 -7.265625 Z M 2.09375 -7.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-18">
<path style="stroke:none;" d="M 0.828125 0 L 1.453125 0 C 1.59375 0 1.671875 -0.078125 1.703125 -0.203125 L 1.75 -0.703125 C 1.9375 -0.46875 2.15625 -0.265625 2.40625 -0.125 C 2.65625 0 2.96875 0.078125 3.3125 0.078125 C 3.6875 0.078125 4.015625 0 4.3125 -0.140625 C 4.609375 -0.296875 4.859375 -0.484375 5.078125 -0.75 C 5.265625 -1 5.4375 -1.3125 5.546875 -1.65625 C 5.65625 -2.015625 5.703125 -2.390625 5.703125 -2.796875 C 5.703125 -3.25 5.65625 -3.65625 5.5625 -4.015625 C 5.453125 -4.359375 5.3125 -4.65625 5.140625 -4.890625 C 4.953125 -5.125 4.734375 -5.3125 4.484375 -5.4375 C 4.21875 -5.546875 3.9375 -5.609375 3.609375 -5.609375 C 3.234375 -5.609375 2.890625 -5.53125 2.59375 -5.359375 C 2.296875 -5.203125 2.03125 -5 1.8125 -4.734375 L 1.8125 -8.03125 L 0.828125 -8.03125 Z M 3.296875 -4.84375 C 3.515625 -4.84375 3.71875 -4.796875 3.890625 -4.71875 C 4.0625 -4.640625 4.203125 -4.53125 4.328125 -4.359375 C 4.453125 -4.1875 4.546875 -3.984375 4.609375 -3.71875 C 4.671875 -3.46875 4.703125 -3.15625 4.703125 -2.796875 C 4.703125 -2.109375 4.5625 -1.59375 4.28125 -1.234375 C 4.015625 -0.859375 3.609375 -0.671875 3.09375 -0.671875 C 2.828125 -0.671875 2.59375 -0.71875 2.390625 -0.828125 C 2.171875 -0.921875 1.984375 -1.09375 1.8125 -1.328125 L 1.8125 -4 C 2 -4.265625 2.21875 -4.46875 2.46875 -4.625 C 2.703125 -4.765625 2.984375 -4.84375 3.296875 -4.84375 Z M 3.296875 -4.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-19">
<path style="stroke:none;" d="M 4.859375 0 L 4.859375 -3.53125 C 4.859375 -3.84375 4.8125 -4.125 4.734375 -4.390625 C 4.640625 -4.640625 4.515625 -4.859375 4.359375 -5.046875 C 4.1875 -5.21875 3.984375 -5.359375 3.75 -5.46875 C 3.515625 -5.578125 3.234375 -5.625 2.921875 -5.625 C 2.5 -5.625 2.109375 -5.546875 1.75 -5.40625 C 1.40625 -5.25 1.078125 -5.03125 0.765625 -4.75 L 0.9375 -4.4375 C 0.96875 -4.390625 1.015625 -4.34375 1.0625 -4.3125 C 1.109375 -4.265625 1.171875 -4.25 1.234375 -4.25 C 1.3125 -4.25 1.40625 -4.28125 1.484375 -4.34375 C 1.578125 -4.40625 1.671875 -4.46875 1.78125 -4.546875 C 1.90625 -4.625 2.046875 -4.6875 2.21875 -4.75 C 2.375 -4.8125 2.578125 -4.84375 2.8125 -4.84375 C 3.171875 -4.84375 3.4375 -4.734375 3.625 -4.5 C 3.8125 -4.28125 3.90625 -3.96875 3.90625 -3.53125 L 3.90625 -3.109375 C 3.265625 -3.09375 2.75 -3.03125 2.3125 -2.9375 C 1.875 -2.828125 1.53125 -2.703125 1.265625 -2.546875 C 1 -2.390625 0.796875 -2.21875 0.6875 -2 C 0.5625 -1.8125 0.5 -1.59375 0.5 -1.375 C 0.5 -1.125 0.546875 -0.90625 0.625 -0.734375 C 0.703125 -0.546875 0.8125 -0.390625 0.953125 -0.265625 C 1.09375 -0.15625 1.25 -0.0625 1.4375 0 C 1.625 0.046875 1.828125 0.09375 2.046875 0.09375 C 2.25 0.09375 2.453125 0.078125 2.625 0.03125 C 2.796875 0 2.953125 -0.046875 3.109375 -0.125 C 3.265625 -0.203125 3.40625 -0.28125 3.546875 -0.390625 C 3.6875 -0.484375 3.828125 -0.609375 3.96875 -0.734375 L 4.078125 -0.234375 C 4.09375 -0.140625 4.140625 -0.078125 4.1875 -0.046875 C 4.25 -0.015625 4.328125 0 4.421875 0 Z M 2.328125 -0.59375 C 2.203125 -0.59375 2.09375 -0.609375 1.984375 -0.640625 C 1.875 -0.671875 1.78125 -0.71875 1.703125 -0.78125 C 1.609375 -0.859375 1.546875 -0.9375 1.5 -1.046875 C 1.453125 -1.15625 1.4375 -1.28125 1.4375 -1.421875 C 1.4375 -1.578125 1.484375 -1.71875 1.578125 -1.84375 C 1.65625 -1.96875 1.796875 -2.0625 2 -2.15625 C 2.1875 -2.25 2.453125 -2.328125 2.765625 -2.375 C 3.0625 -2.4375 3.453125 -2.46875 3.90625 -2.484375 L 3.90625 -1.34375 C 3.796875 -1.21875 3.671875 -1.125 3.5625 -1.03125 C 3.453125 -0.9375 3.328125 -0.859375 3.203125 -0.796875 C 3.078125 -0.734375 2.9375 -0.6875 2.796875 -0.640625 C 2.65625 -0.609375 2.5 -0.59375 2.328125 -0.59375 Z M 2.328125 -0.59375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d="M 1.125 -5.109375 L 1.328125 -4.78125 C 1.375 -4.703125 1.421875 -4.671875 1.5 -4.671875 C 1.53125 -4.671875 1.5625 -4.6875 1.609375 -4.71875 C 1.65625 -4.75 1.703125 -4.78125 1.765625 -4.8125 C 1.828125 -4.84375 1.890625 -4.875 1.984375 -4.890625 C 2.0625 -4.921875 2.171875 -4.9375 2.28125 -4.9375 C 2.453125 -4.9375 2.59375 -4.890625 2.703125 -4.796875 C 2.8125 -4.71875 2.875 -4.59375 2.875 -4.4375 C 2.875 -4.3125 2.84375 -4.21875 2.796875 -4.125 C 2.75 -4.046875 2.6875 -3.96875 2.625 -3.890625 C 2.546875 -3.828125 2.46875 -3.765625 2.390625 -3.703125 C 2.3125 -3.640625 2.234375 -3.578125 2.15625 -3.515625 C 2.09375 -3.453125 2.046875 -3.375 2 -3.3125 C 1.96875 -3.234375 1.953125 -3.140625 1.96875 -3.046875 L 2.015625 -2.515625 L 2.5625 -2.515625 L 2.640625 -2.984375 C 2.65625 -3.046875 2.6875 -3.109375 2.734375 -3.171875 C 2.796875 -3.234375 2.859375 -3.28125 2.921875 -3.34375 C 3 -3.40625 3.078125 -3.453125 3.15625 -3.53125 C 3.234375 -3.59375 3.3125 -3.65625 3.375 -3.75 C 3.4375 -3.84375 3.5 -3.9375 3.546875 -4.0625 C 3.59375 -4.1875 3.609375 -4.328125 3.609375 -4.484375 C 3.609375 -4.65625 3.578125 -4.8125 3.515625 -4.9375 C 3.453125 -5.078125 3.375 -5.203125 3.265625 -5.296875 C 3.15625 -5.390625 3.015625 -5.46875 2.875 -5.515625 C 2.71875 -5.5625 2.546875 -5.59375 2.359375 -5.59375 C 2.21875 -5.59375 2.09375 -5.578125 1.96875 -5.546875 C 1.859375 -5.53125 1.75 -5.5 1.640625 -5.453125 C 1.53125 -5.40625 1.4375 -5.359375 1.359375 -5.296875 C 1.28125 -5.25 1.203125 -5.1875 1.125 -5.109375 Z M 1.78125 -1.3125 C 1.78125 -1.171875 1.828125 -1.046875 1.921875 -0.953125 C 2.015625 -0.859375 2.125 -0.8125 2.265625 -0.8125 C 2.34375 -0.8125 2.40625 -0.828125 2.453125 -0.859375 C 2.515625 -0.875 2.5625 -0.921875 2.609375 -0.953125 C 2.65625 -1 2.6875 -1.0625 2.71875 -1.109375 C 2.734375 -1.171875 2.75 -1.234375 2.75 -1.3125 C 2.75 -1.375 2.734375 -1.4375 2.71875 -1.5 C 2.6875 -1.5625 2.65625 -1.625 2.609375 -1.65625 C 2.5625 -1.703125 2.515625 -1.75 2.453125 -1.765625 C 2.40625 -1.796875 2.34375 -1.8125 2.265625 -1.8125 C 2.125 -1.8125 2.015625 -1.765625 1.921875 -1.65625 C 1.828125 -1.5625 1.78125 -1.453125 1.78125 -1.3125 Z M 0.203125 -6.421875 L 0.203125 0 L 4.5625 0 L 4.5625 -6.421875 Z M 0.421875 -0.234375 L 0.421875 -6.171875 L 4.3125 -6.171875 L 4.3125 -0.234375 Z M 0.421875 -0.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 1.8125 0 L 1.8125 -6.421875 L 0.9375 -6.421875 L 0.9375 0 Z M 1.8125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 0.0625 -4.546875 L 1.53125 0 L 2.140625 0 C 2.21875 0 2.28125 -0.046875 2.3125 -0.15625 L 3.34375 -3.234375 C 3.359375 -3.296875 3.375 -3.375 3.390625 -3.4375 C 3.40625 -3.515625 3.421875 -3.578125 3.4375 -3.65625 C 3.453125 -3.578125 3.46875 -3.515625 3.484375 -3.4375 C 3.5 -3.375 3.515625 -3.296875 3.546875 -3.234375 L 4.546875 -0.15625 C 4.578125 -0.046875 4.625 0 4.703125 0 L 5.34375 0 L 6.8125 -4.546875 L 6.203125 -4.546875 C 6.15625 -4.546875 6.109375 -4.53125 6.0625 -4.5 C 6.015625 -4.46875 5.984375 -4.421875 5.984375 -4.375 L 5.09375 -1.453125 C 5.0625 -1.359375 5.03125 -1.265625 5.015625 -1.15625 C 4.984375 -1.046875 4.96875 -0.9375 4.953125 -0.84375 C 4.9375 -0.9375 4.90625 -1.046875 4.875 -1.140625 C 4.859375 -1.25 4.828125 -1.34375 4.796875 -1.453125 L 3.859375 -4.390625 C 3.84375 -4.4375 3.8125 -4.46875 3.78125 -4.5 C 3.734375 -4.53125 3.6875 -4.546875 3.625 -4.546875 L 3.28125 -4.546875 C 3.21875 -4.546875 3.171875 -4.53125 3.140625 -4.5 C 3.109375 -4.46875 3.078125 -4.4375 3.0625 -4.390625 L 2.109375 -1.453125 C 2.078125 -1.34375 2.046875 -1.234375 2.015625 -1.140625 C 1.984375 -1.046875 1.953125 -0.9375 1.921875 -0.84375 C 1.921875 -0.9375 1.890625 -1.046875 1.875 -1.140625 C 1.859375 -1.234375 1.828125 -1.34375 1.8125 -1.453125 L 0.9375 -4.375 C 0.921875 -4.421875 0.890625 -4.46875 0.859375 -4.5 C 0.8125 -4.53125 0.765625 -4.546875 0.6875 -4.546875 Z M 0.0625 -4.546875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 3.984375 0 L 3.984375 -2.90625 C 3.984375 -3.15625 3.953125 -3.390625 3.890625 -3.609375 C 3.828125 -3.8125 3.71875 -4 3.578125 -4.140625 C 3.453125 -4.296875 3.28125 -4.40625 3.078125 -4.5 C 2.890625 -4.578125 2.65625 -4.625 2.40625 -4.625 C 2.046875 -4.625 1.734375 -4.5625 1.4375 -4.4375 C 1.15625 -4.328125 0.890625 -4.140625 0.625 -3.90625 L 0.78125 -3.640625 C 0.796875 -3.609375 0.828125 -3.5625 0.875 -3.546875 C 0.921875 -3.515625 0.953125 -3.5 1.015625 -3.5 C 1.078125 -3.5 1.15625 -3.53125 1.21875 -3.5625 C 1.296875 -3.625 1.375 -3.671875 1.46875 -3.734375 C 1.5625 -3.796875 1.6875 -3.859375 1.828125 -3.90625 C 1.953125 -3.953125 2.109375 -3.984375 2.3125 -3.984375 C 2.609375 -3.984375 2.828125 -3.890625 2.984375 -3.703125 C 3.125 -3.53125 3.203125 -3.265625 3.203125 -2.90625 L 3.203125 -2.546875 C 2.6875 -2.53125 2.25 -2.5 1.90625 -2.40625 C 1.546875 -2.328125 1.25 -2.21875 1.046875 -2.09375 C 0.8125 -1.96875 0.65625 -1.828125 0.5625 -1.65625 C 0.46875 -1.484375 0.40625 -1.3125 0.40625 -1.140625 C 0.40625 -0.921875 0.453125 -0.75 0.515625 -0.59375 C 0.578125 -0.453125 0.671875 -0.328125 0.78125 -0.21875 C 0.890625 -0.125 1.03125 -0.046875 1.1875 0 C 1.34375 0.046875 1.5 0.078125 1.6875 0.078125 C 1.859375 0.078125 2.015625 0.0625 2.15625 0.03125 C 2.296875 0 2.4375 -0.046875 2.5625 -0.109375 C 2.6875 -0.15625 2.796875 -0.234375 2.921875 -0.328125 C 3.03125 -0.40625 3.140625 -0.5 3.265625 -0.609375 L 3.359375 -0.1875 C 3.375 -0.109375 3.40625 -0.0625 3.453125 -0.03125 C 3.5 -0.015625 3.5625 0 3.640625 0 Z M 1.921875 -0.484375 C 1.8125 -0.484375 1.71875 -0.5 1.625 -0.53125 C 1.53125 -0.546875 1.46875 -0.59375 1.390625 -0.640625 C 1.328125 -0.703125 1.28125 -0.78125 1.234375 -0.859375 C 1.203125 -0.953125 1.171875 -1.046875 1.171875 -1.171875 C 1.171875 -1.296875 1.21875 -1.40625 1.296875 -1.515625 C 1.359375 -1.609375 1.484375 -1.703125 1.640625 -1.78125 C 1.796875 -1.859375 2.015625 -1.90625 2.265625 -1.953125 C 2.53125 -2 2.84375 -2.03125 3.203125 -2.046875 L 3.203125 -1.09375 C 3.109375 -1 3.015625 -0.921875 2.9375 -0.84375 C 2.828125 -0.765625 2.734375 -0.703125 2.640625 -0.65625 C 2.53125 -0.59375 2.421875 -0.5625 2.3125 -0.53125 C 2.1875 -0.5 2.0625 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-4">
<path style="stroke:none;" d="M 0.65625 0 L 1.453125 0 L 1.453125 -3.34375 C 1.625 -3.53125 1.8125 -3.6875 2.015625 -3.8125 C 2.21875 -3.921875 2.4375 -3.984375 2.6875 -3.984375 C 3 -3.984375 3.25 -3.890625 3.40625 -3.6875 C 3.5625 -3.5 3.640625 -3.234375 3.640625 -2.890625 L 3.640625 0 L 4.4375 0 L 4.4375 -2.890625 C 4.4375 -3.140625 4.40625 -3.390625 4.34375 -3.59375 C 4.265625 -3.8125 4.171875 -3.984375 4.046875 -4.140625 C 3.921875 -4.296875 3.765625 -4.40625 3.5625 -4.5 C 3.375 -4.578125 3.15625 -4.609375 2.921875 -4.609375 C 2.59375 -4.609375 2.3125 -4.546875 2.078125 -4.40625 C 1.828125 -4.28125 1.609375 -4.109375 1.40625 -3.890625 L 1.34375 -4.375 C 1.3125 -4.484375 1.234375 -4.546875 1.125 -4.546875 L 0.65625 -4.546875 Z M 0.65625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-5">
<path style="stroke:none;" d="M 2.03125 0.078125 C 2.234375 0.078125 2.4375 0.03125 2.625 -0.03125 C 2.828125 -0.109375 2.984375 -0.203125 3.125 -0.34375 L 2.890625 -0.71875 C 2.859375 -0.765625 2.828125 -0.796875 2.78125 -0.796875 C 2.765625 -0.796875 2.734375 -0.796875 2.703125 -0.765625 C 2.671875 -0.75 2.625 -0.71875 2.59375 -0.6875 C 2.546875 -0.65625 2.484375 -0.640625 2.4375 -0.625 C 2.375 -0.59375 2.296875 -0.578125 2.203125 -0.578125 C 2.0625 -0.578125 1.953125 -0.625 1.859375 -0.71875 C 1.765625 -0.8125 1.71875 -0.953125 1.71875 -1.140625 L 1.71875 -3.875 L 3.015625 -3.875 L 3.015625 -4.453125 L 1.71875 -4.453125 L 1.71875 -6.015625 L 1.3125 -6.015625 C 1.265625 -6.015625 1.21875 -6 1.1875 -5.96875 C 1.15625 -5.953125 1.125 -5.90625 1.125 -5.859375 L 0.9375 -4.46875 L 0.203125 -4.375 L 0.203125 -4.046875 C 0.203125 -3.984375 0.21875 -3.953125 0.25 -3.921875 C 0.28125 -3.890625 0.3125 -3.875 0.375 -3.875 L 0.921875 -3.875 L 0.921875 -1.09375 C 0.921875 -0.71875 1.015625 -0.4375 1.203125 -0.234375 C 1.40625 -0.03125 1.671875 0.078125 2.03125 0.078125 Z M 2.03125 0.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-6">
<path style="stroke:none;" d="M 0.453125 -3.03125 L 0.453125 -2.34375 L 2.65625 -2.34375 L 2.65625 -3.03125 Z M 0.453125 -3.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-7">
<path style="stroke:none;" d="M 2.5 -4.609375 C 2.15625 -4.609375 1.859375 -4.5625 1.59375 -4.453125 C 1.328125 -4.34375 1.09375 -4.171875 0.90625 -3.984375 C 0.71875 -3.78125 0.578125 -3.53125 0.46875 -3.234375 C 0.375 -2.953125 0.328125 -2.625 0.328125 -2.28125 C 0.328125 -1.921875 0.375 -1.59375 0.46875 -1.3125 C 0.578125 -1.015625 0.71875 -0.765625 0.90625 -0.5625 C 1.09375 -0.375 1.328125 -0.203125 1.59375 -0.09375 C 1.859375 0.015625 2.15625 0.0625 2.5 0.0625 C 2.828125 0.0625 3.125 0.015625 3.390625 -0.09375 C 3.65625 -0.203125 3.890625 -0.375 4.078125 -0.5625 C 4.265625 -0.765625 4.40625 -1.015625 4.5 -1.3125 C 4.609375 -1.59375 4.65625 -1.921875 4.65625 -2.28125 C 4.65625 -2.625 4.609375 -2.953125 4.5 -3.234375 C 4.40625 -3.53125 4.265625 -3.78125 4.078125 -3.984375 C 3.890625 -4.171875 3.65625 -4.34375 3.390625 -4.453125 C 3.125 -4.5625 2.828125 -4.609375 2.5 -4.609375 Z M 2.5 -0.5625 C 2.265625 -0.5625 2.0625 -0.59375 1.90625 -0.671875 C 1.734375 -0.75 1.59375 -0.859375 1.484375 -1.015625 C 1.375 -1.15625 1.28125 -1.34375 1.234375 -1.546875 C 1.171875 -1.765625 1.140625 -2 1.140625 -2.265625 C 1.140625 -2.53125 1.171875 -2.78125 1.234375 -3 C 1.28125 -3.203125 1.375 -3.390625 1.484375 -3.53125 C 1.59375 -3.6875 1.734375 -3.796875 1.90625 -3.875 C 2.0625 -3.953125 2.265625 -3.984375 2.5 -3.984375 C 2.9375 -3.984375 3.28125 -3.828125 3.5 -3.53125 C 3.71875 -3.234375 3.828125 -2.8125 3.828125 -2.265625 C 3.828125 -1.734375 3.71875 -1.3125 3.5 -1.015625 C 3.28125 -0.703125 2.9375 -0.5625 2.5 -0.5625 Z M 2.5 -0.5625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-8">
<path style="stroke:none;" d="M 0.65625 0 L 1.453125 0 L 1.453125 -3.34375 C 1.625 -3.53125 1.8125 -3.6875 2.015625 -3.8125 C 2.21875 -3.921875 2.4375 -3.984375 2.6875 -3.984375 C 3 -3.984375 3.25 -3.890625 3.40625 -3.6875 C 3.5625 -3.5 3.640625 -3.234375 3.640625 -2.890625 L 3.640625 0 L 4.4375 0 L 4.4375 -2.890625 C 4.4375 -3.140625 4.40625 -3.390625 4.34375 -3.59375 C 4.265625 -3.8125 4.171875 -3.984375 4.046875 -4.140625 C 3.921875 -4.296875 3.765625 -4.40625 3.5625 -4.5 C 3.375 -4.578125 3.15625 -4.609375 2.921875 -4.609375 C 2.609375 -4.609375 2.34375 -4.546875 2.09375 -4.4375 C 1.859375 -4.3125 1.640625 -4.140625 1.453125 -3.9375 L 1.453125 -6.609375 L 0.65625 -6.609375 Z M 0.65625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-9">
<path style="stroke:none;" d="M 2.453125 -4.609375 C 2.125 -4.609375 1.828125 -4.5625 1.5625 -4.4375 C 1.296875 -4.328125 1.078125 -4.171875 0.890625 -3.96875 C 0.71875 -3.765625 0.578125 -3.53125 0.46875 -3.25 C 0.375 -2.984375 0.328125 -2.6875 0.328125 -2.359375 C 0.328125 -1.96875 0.390625 -1.625 0.5 -1.328125 C 0.59375 -1.015625 0.75 -0.765625 0.9375 -0.5625 C 1.140625 -0.359375 1.359375 -0.203125 1.625 -0.09375 C 1.890625 0.015625 2.1875 0.0625 2.5 0.0625 C 2.65625 0.0625 2.828125 0.046875 3 0.015625 C 3.15625 -0.015625 3.328125 -0.046875 3.484375 -0.109375 C 3.640625 -0.171875 3.78125 -0.234375 3.921875 -0.328125 C 4.0625 -0.40625 4.171875 -0.515625 4.28125 -0.640625 L 4.046875 -0.921875 C 4.015625 -0.984375 3.96875 -1 3.90625 -1 C 3.859375 -1 3.796875 -0.984375 3.71875 -0.9375 C 3.65625 -0.890625 3.5625 -0.84375 3.453125 -0.78125 C 3.359375 -0.734375 3.234375 -0.6875 3.078125 -0.640625 C 2.9375 -0.59375 2.765625 -0.5625 2.5625 -0.5625 C 2.34375 -0.5625 2.15625 -0.59375 1.984375 -0.671875 C 1.8125 -0.734375 1.65625 -0.84375 1.53125 -0.984375 C 1.40625 -1.125 1.3125 -1.3125 1.234375 -1.515625 C 1.171875 -1.734375 1.125 -1.984375 1.125 -2.265625 L 4.140625 -2.265625 C 4.21875 -2.265625 4.265625 -2.296875 4.296875 -2.328125 C 4.328125 -2.375 4.34375 -2.453125 4.34375 -2.578125 C 4.34375 -2.90625 4.28125 -3.1875 4.203125 -3.4375 C 4.09375 -3.703125 3.96875 -3.90625 3.796875 -4.078125 C 3.640625 -4.25 3.4375 -4.390625 3.203125 -4.46875 C 2.984375 -4.5625 2.71875 -4.609375 2.453125 -4.609375 Z M 2.46875 -4.03125 C 2.65625 -4.03125 2.8125 -4 2.953125 -3.9375 C 3.09375 -3.875 3.21875 -3.78125 3.3125 -3.671875 C 3.421875 -3.5625 3.5 -3.4375 3.546875 -3.28125 C 3.59375 -3.125 3.625 -2.953125 3.625 -2.765625 L 1.140625 -2.765625 C 1.203125 -3.15625 1.34375 -3.46875 1.5625 -3.6875 C 1.78125 -3.921875 2.078125 -4.03125 2.46875 -4.03125 Z M 2.46875 -4.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-10">
<path style="stroke:none;" d="M 0.828125 0 L 1.640625 0 L 1.640625 -3.875 L 2.796875 -3.875 L 2.796875 -4.453125 L 1.609375 -4.453125 L 1.609375 -4.6875 C 1.609375 -5.09375 1.71875 -5.40625 1.921875 -5.625 C 2.140625 -5.859375 2.4375 -5.96875 2.828125 -5.96875 C 2.9375 -5.96875 3.078125 -5.953125 3.25 -5.953125 C 3.40625 -5.9375 3.5625 -5.9375 3.734375 -5.921875 L 3.734375 0 L 4.53125 0 L 4.53125 -6.484375 L 4.078125 -6.484375 C 3.859375 -6.484375 3.640625 -6.5 3.421875 -6.515625 C 3.1875 -6.53125 2.953125 -6.546875 2.703125 -6.546875 C 2.390625 -6.546875 2.109375 -6.5 1.890625 -6.40625 C 1.65625 -6.296875 1.453125 -6.171875 1.296875 -6 C 1.140625 -5.828125 1.03125 -5.640625 0.953125 -5.40625 C 0.875 -5.1875 0.828125 -4.953125 0.828125 -4.6875 L 0.828125 -4.453125 L 0.109375 -4.453125 L 0.109375 -4.125 C 0.109375 -4.0625 0.140625 -4.015625 0.171875 -3.984375 C 0.21875 -3.953125 0.265625 -3.9375 0.328125 -3.921875 L 0.828125 -3.859375 Z M 0.828125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-11">
<path style="stroke:none;" d="M 1.546875 -4.546875 L 0.75 -4.546875 L 0.75 0 L 1.546875 0 Z M 1.71875 -5.96875 C 1.71875 -6.046875 1.703125 -6.125 1.671875 -6.1875 C 1.640625 -6.265625 1.59375 -6.328125 1.546875 -6.375 C 1.5 -6.421875 1.4375 -6.46875 1.375 -6.5 C 1.296875 -6.53125 1.21875 -6.546875 1.140625 -6.546875 C 1.078125 -6.546875 1 -6.53125 0.9375 -6.5 C 0.859375 -6.46875 0.796875 -6.421875 0.75 -6.375 C 0.703125 -6.328125 0.65625 -6.265625 0.625 -6.1875 C 0.59375 -6.125 0.578125 -6.046875 0.578125 -5.96875 C 0.578125 -5.890625 0.59375 -5.828125 0.625 -5.75 C 0.65625 -5.6875 0.703125 -5.625 0.75 -5.5625 C 0.796875 -5.515625 0.859375 -5.484375 0.9375 -5.453125 C 1 -5.421875 1.078125 -5.40625 1.140625 -5.40625 C 1.21875 -5.40625 1.296875 -5.421875 1.375 -5.453125 C 1.4375 -5.484375 1.5 -5.515625 1.546875 -5.5625 C 1.59375 -5.625 1.640625 -5.6875 1.671875 -5.75 C 1.703125 -5.828125 1.71875 -5.890625 1.71875 -5.96875 Z M 1.71875 -5.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-12">
<path style="stroke:none;" d="M 2.1875 -4.625 C 1.9375 -4.625 1.703125 -4.578125 1.484375 -4.515625 C 1.28125 -4.453125 1.09375 -4.34375 0.953125 -4.21875 C 0.796875 -4.09375 0.671875 -3.9375 0.59375 -3.765625 C 0.5 -3.578125 0.46875 -3.375 0.46875 -3.15625 C 0.46875 -2.875 0.53125 -2.640625 0.65625 -2.4375 C 0.78125 -2.21875 0.953125 -2.046875 1.171875 -1.921875 C 1.078125 -1.875 1 -1.828125 0.921875 -1.765625 C 0.859375 -1.703125 0.796875 -1.625 0.75 -1.5625 C 0.703125 -1.5 0.65625 -1.421875 0.640625 -1.359375 C 0.609375 -1.28125 0.59375 -1.21875 0.59375 -1.15625 C 0.59375 -0.984375 0.640625 -0.859375 0.71875 -0.75 C 0.796875 -0.65625 0.890625 -0.5625 1.015625 -0.515625 C 0.78125 -0.421875 0.578125 -0.296875 0.4375 -0.140625 C 0.296875 0.015625 0.21875 0.203125 0.21875 0.4375 C 0.21875 0.59375 0.265625 0.75 0.34375 0.890625 C 0.4375 1.03125 0.546875 1.15625 0.71875 1.28125 C 0.890625 1.390625 1.09375 1.46875 1.34375 1.53125 C 1.59375 1.609375 1.875 1.640625 2.203125 1.640625 C 2.546875 1.640625 2.84375 1.59375 3.109375 1.5 C 3.375 1.421875 3.59375 1.3125 3.765625 1.171875 C 3.953125 1.03125 4.09375 0.859375 4.1875 0.6875 C 4.28125 0.5 4.34375 0.3125 4.34375 0.109375 C 4.34375 -0.09375 4.296875 -0.265625 4.203125 -0.390625 C 4.125 -0.53125 4 -0.625 3.859375 -0.703125 C 3.71875 -0.78125 3.5625 -0.828125 3.375 -0.859375 C 3.1875 -0.890625 3 -0.921875 2.8125 -0.9375 C 2.625 -0.953125 2.4375 -0.953125 2.25 -0.96875 C 2.078125 -0.96875 1.90625 -0.984375 1.765625 -1.015625 C 1.625 -1.03125 1.5 -1.078125 1.421875 -1.125 C 1.34375 -1.1875 1.296875 -1.265625 1.296875 -1.375 C 1.296875 -1.4375 1.3125 -1.5 1.359375 -1.578125 C 1.421875 -1.640625 1.484375 -1.703125 1.578125 -1.765625 C 1.765625 -1.71875 1.96875 -1.6875 2.1875 -1.6875 C 2.4375 -1.6875 2.65625 -1.71875 2.875 -1.796875 C 3.078125 -1.859375 3.25 -1.953125 3.40625 -2.09375 C 3.5625 -2.21875 3.671875 -2.375 3.765625 -2.5625 C 3.84375 -2.734375 3.890625 -2.9375 3.890625 -3.15625 C 3.890625 -3.390625 3.84375 -3.609375 3.734375 -3.8125 L 4.25 -3.875 C 4.375 -3.90625 4.4375 -3.96875 4.4375 -4.0625 L 4.4375 -4.359375 L 3.203125 -4.359375 C 3.0625 -4.453125 2.90625 -4.515625 2.734375 -4.5625 C 2.5625 -4.59375 2.375 -4.625 2.1875 -4.625 Z M 3.59375 0.25 C 3.59375 0.375 3.5625 0.46875 3.5 0.578125 C 3.4375 0.671875 3.359375 0.765625 3.234375 0.828125 C 3.109375 0.90625 2.96875 0.953125 2.796875 1 C 2.625 1.03125 2.4375 1.046875 2.21875 1.046875 C 2 1.046875 1.8125 1.03125 1.65625 1 C 1.484375 0.953125 1.34375 0.90625 1.234375 0.84375 C 1.140625 0.78125 1.046875 0.703125 1 0.625 C 0.953125 0.53125 0.921875 0.4375 0.921875 0.328125 C 0.921875 0.171875 0.984375 0.03125 1.078125 -0.078125 C 1.1875 -0.203125 1.328125 -0.296875 1.5 -0.375 C 1.640625 -0.359375 1.796875 -0.34375 1.953125 -0.328125 C 2.125 -0.328125 2.28125 -0.3125 2.4375 -0.3125 C 2.59375 -0.296875 2.734375 -0.28125 2.875 -0.265625 C 3.015625 -0.25 3.140625 -0.21875 3.25 -0.1875 C 3.359375 -0.140625 3.4375 -0.09375 3.5 -0.03125 C 3.5625 0.046875 3.59375 0.140625 3.59375 0.25 Z M 2.1875 -2.21875 C 2.03125 -2.21875 1.890625 -2.25 1.765625 -2.28125 C 1.640625 -2.328125 1.53125 -2.390625 1.453125 -2.46875 C 1.375 -2.5625 1.3125 -2.65625 1.265625 -2.765625 C 1.21875 -2.875 1.203125 -3 1.203125 -3.140625 C 1.203125 -3.40625 1.28125 -3.625 1.453125 -3.796875 C 1.625 -3.96875 1.859375 -4.046875 2.1875 -4.046875 C 2.5 -4.046875 2.75 -3.96875 2.921875 -3.796875 C 3.09375 -3.625 3.171875 -3.40625 3.171875 -3.140625 C 3.171875 -3 3.15625 -2.875 3.109375 -2.765625 C 3.078125 -2.65625 3.015625 -2.5625 2.921875 -2.46875 C 2.84375 -2.390625 2.734375 -2.328125 2.609375 -2.28125 C 2.484375 -2.25 2.34375 -2.21875 2.1875 -2.21875 Z M 2.1875 -2.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-13">
<path style="stroke:none;" d="M 3.75 -3.734375 L 3.96875 -4.015625 C 3.78125 -4.203125 3.5625 -4.359375 3.3125 -4.453125 C 3.0625 -4.5625 2.796875 -4.609375 2.46875 -4.609375 C 2.125 -4.609375 1.828125 -4.5625 1.5625 -4.4375 C 1.296875 -4.328125 1.0625 -4.15625 0.890625 -3.953125 C 0.703125 -3.75 0.5625 -3.5 0.46875 -3.203125 C 0.375 -2.921875 0.328125 -2.609375 0.328125 -2.28125 C 0.328125 -1.90625 0.390625 -1.578125 0.484375 -1.28125 C 0.59375 -0.984375 0.734375 -0.75 0.90625 -0.546875 C 1.09375 -0.34375 1.296875 -0.203125 1.546875 -0.09375 C 1.796875 0.015625 2.046875 0.0625 2.34375 0.0625 C 2.65625 0.0625 2.984375 0.015625 3.28125 -0.109375 C 3.5625 -0.21875 3.8125 -0.390625 4.015625 -0.640625 L 3.796875 -0.921875 C 3.765625 -0.984375 3.703125 -1 3.640625 -1 C 3.578125 -1 3.53125 -0.984375 3.46875 -0.9375 C 3.421875 -0.890625 3.359375 -0.84375 3.265625 -0.78125 C 3.1875 -0.71875 3.078125 -0.671875 2.953125 -0.625 C 2.828125 -0.578125 2.671875 -0.5625 2.46875 -0.5625 C 2.28125 -0.5625 2.09375 -0.59375 1.921875 -0.671875 C 1.765625 -0.75 1.625 -0.859375 1.515625 -1 C 1.40625 -1.140625 1.3125 -1.328125 1.25 -1.546875 C 1.1875 -1.75 1.15625 -2 1.15625 -2.28125 C 1.15625 -2.53125 1.1875 -2.78125 1.234375 -2.984375 C 1.296875 -3.203125 1.390625 -3.375 1.5 -3.53125 C 1.609375 -3.671875 1.765625 -3.796875 1.921875 -3.875 C 2.09375 -3.953125 2.296875 -3.984375 2.515625 -3.984375 C 2.6875 -3.984375 2.828125 -3.96875 2.9375 -3.9375 C 3.046875 -3.890625 3.15625 -3.859375 3.234375 -3.8125 C 3.3125 -3.765625 3.375 -3.71875 3.4375 -3.6875 C 3.484375 -3.65625 3.53125 -3.625 3.578125 -3.625 C 3.625 -3.625 3.65625 -3.640625 3.6875 -3.65625 C 3.703125 -3.671875 3.734375 -3.703125 3.75 -3.734375 Z M 3.75 -3.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-14">
<path style="stroke:none;" d="M 1.546875 -6.609375 L 0.75 -6.609375 L 0.75 0 L 1.546875 0 Z M 1.546875 -6.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-15">
<path style="stroke:none;" d="M 1.984375 1.34375 L 4.515625 -4.546875 L 3.890625 -4.546875 C 3.828125 -4.546875 3.78125 -4.53125 3.734375 -4.5 C 3.703125 -4.46875 3.671875 -4.421875 3.65625 -4.375 L 2.46875 -1.515625 C 2.4375 -1.453125 2.421875 -1.390625 2.40625 -1.3125 C 2.375 -1.25 2.359375 -1.1875 2.34375 -1.109375 C 2.328125 -1.1875 2.3125 -1.25 2.28125 -1.3125 C 2.265625 -1.390625 2.25 -1.453125 2.21875 -1.515625 L 1 -4.375 C 0.984375 -4.421875 0.953125 -4.453125 0.921875 -4.5 C 0.875 -4.53125 0.828125 -4.546875 0.75 -4.546875 L 0.0625 -4.546875 L 1.9375 -0.265625 L 1.109375 1.53125 L 1.703125 1.53125 C 1.78125 1.53125 1.84375 1.515625 1.890625 1.484375 C 1.921875 1.453125 1.953125 1.40625 1.984375 1.34375 Z M 1.984375 1.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-16">
<path style="stroke:none;" d="M 3.25 -3.796875 L 3.4375 -4.078125 C 3.265625 -4.25 3.0625 -4.375 2.8125 -4.46875 C 2.578125 -4.5625 2.3125 -4.609375 2.015625 -4.609375 C 1.765625 -4.609375 1.53125 -4.578125 1.328125 -4.5 C 1.125 -4.4375 0.953125 -4.34375 0.828125 -4.21875 C 0.6875 -4.09375 0.578125 -3.953125 0.5 -3.796875 C 0.4375 -3.640625 0.40625 -3.46875 0.40625 -3.296875 C 0.40625 -3.109375 0.4375 -2.9375 0.5 -2.796875 C 0.5625 -2.65625 0.65625 -2.546875 0.765625 -2.453125 C 0.875 -2.359375 1 -2.28125 1.140625 -2.21875 C 1.28125 -2.171875 1.4375 -2.109375 1.578125 -2.0625 C 1.734375 -2.015625 1.875 -1.96875 2.015625 -1.921875 C 2.15625 -1.890625 2.28125 -1.828125 2.390625 -1.78125 C 2.5 -1.71875 2.59375 -1.640625 2.65625 -1.5625 C 2.71875 -1.484375 2.765625 -1.375 2.765625 -1.25 C 2.765625 -1.140625 2.75 -1.046875 2.703125 -0.96875 C 2.671875 -0.875 2.609375 -0.796875 2.53125 -0.71875 C 2.453125 -0.65625 2.359375 -0.59375 2.25 -0.5625 C 2.125 -0.515625 1.984375 -0.5 1.828125 -0.5 C 1.65625 -0.5 1.5 -0.53125 1.375 -0.5625 C 1.25 -0.609375 1.15625 -0.65625 1.0625 -0.703125 C 0.984375 -0.75 0.90625 -0.796875 0.859375 -0.84375 C 0.796875 -0.890625 0.734375 -0.90625 0.6875 -0.90625 C 0.625 -0.90625 0.578125 -0.890625 0.546875 -0.875 C 0.515625 -0.859375 0.484375 -0.828125 0.46875 -0.78125 L 0.28125 -0.484375 C 0.453125 -0.3125 0.671875 -0.1875 0.9375 -0.078125 C 1.1875 0.015625 1.46875 0.078125 1.796875 0.078125 C 2.078125 0.078125 2.3125 0.03125 2.53125 -0.046875 C 2.734375 -0.109375 2.921875 -0.21875 3.0625 -0.34375 C 3.21875 -0.46875 3.328125 -0.625 3.40625 -0.8125 C 3.46875 -0.984375 3.515625 -1.171875 3.515625 -1.390625 C 3.515625 -1.578125 3.484375 -1.734375 3.40625 -1.859375 C 3.34375 -1.984375 3.25 -2.09375 3.140625 -2.1875 C 3.03125 -2.28125 2.90625 -2.359375 2.765625 -2.40625 C 2.625 -2.46875 2.484375 -2.53125 2.328125 -2.578125 C 2.1875 -2.625 2.046875 -2.671875 1.90625 -2.71875 C 1.765625 -2.765625 1.640625 -2.8125 1.53125 -2.859375 C 1.40625 -2.921875 1.328125 -2.984375 1.25 -3.0625 C 1.1875 -3.140625 1.15625 -3.25 1.15625 -3.359375 C 1.15625 -3.453125 1.171875 -3.53125 1.21875 -3.609375 C 1.25 -3.6875 1.3125 -3.765625 1.390625 -3.828125 C 1.46875 -3.890625 1.5625 -3.9375 1.671875 -3.96875 C 1.78125 -4 1.890625 -4.015625 2.03125 -4.015625 C 2.1875 -4.015625 2.328125 -4 2.4375 -3.96875 C 2.546875 -3.9375 2.640625 -3.890625 2.71875 -3.859375 C 2.8125 -3.8125 2.875 -3.78125 2.9375 -3.75 C 3 -3.71875 3.046875 -3.6875 3.09375 -3.6875 C 3.171875 -3.6875 3.21875 -3.71875 3.25 -3.796875 Z M 3.25 -3.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-17">
<path style="stroke:none;" d="M 0.65625 0 L 1.453125 0 L 1.453125 -2.890625 C 1.578125 -3.203125 1.734375 -3.4375 1.921875 -3.59375 C 2.109375 -3.765625 2.34375 -3.84375 2.625 -3.84375 C 2.78125 -3.84375 2.890625 -3.828125 2.984375 -3.796875 C 3.0625 -3.765625 3.140625 -3.75 3.171875 -3.75 C 3.25 -3.75 3.296875 -3.796875 3.3125 -3.859375 L 3.421875 -4.46875 C 3.328125 -4.515625 3.234375 -4.546875 3.140625 -4.578125 C 3.03125 -4.609375 2.921875 -4.625 2.796875 -4.625 C 2.484375 -4.625 2.21875 -4.53125 1.984375 -4.359375 C 1.765625 -4.171875 1.5625 -3.9375 1.40625 -3.609375 L 1.359375 -4.328125 C 1.34375 -4.40625 1.328125 -4.46875 1.296875 -4.5 C 1.265625 -4.53125 1.203125 -4.546875 1.109375 -4.546875 L 0.65625 -4.546875 Z M 0.65625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-18">
<path style="stroke:none;" d="M 3.859375 0 L 4.328125 0 L 4.328125 -6.609375 L 3.53125 -6.609375 L 3.53125 -4.078125 C 3.375 -4.25 3.203125 -4.390625 3 -4.484375 C 2.796875 -4.578125 2.5625 -4.625 2.28125 -4.625 C 1.984375 -4.625 1.703125 -4.5625 1.46875 -4.4375 C 1.21875 -4.328125 1.015625 -4.15625 0.84375 -3.9375 C 0.671875 -3.734375 0.546875 -3.484375 0.453125 -3.1875 C 0.375 -2.90625 0.328125 -2.59375 0.328125 -2.25 C 0.328125 -1.875 0.359375 -1.546875 0.4375 -1.25 C 0.53125 -0.96875 0.640625 -0.71875 0.796875 -0.53125 C 0.9375 -0.34375 1.125 -0.1875 1.328125 -0.09375 C 1.546875 0.015625 1.78125 0.0625 2.046875 0.0625 C 2.359375 0.0625 2.65625 -0.015625 2.890625 -0.15625 C 3.140625 -0.296875 3.375 -0.484375 3.5625 -0.71875 L 3.640625 -0.171875 C 3.671875 -0.046875 3.734375 0 3.859375 0 Z M 2.3125 -0.578125 C 2.125 -0.578125 1.953125 -0.609375 1.8125 -0.671875 C 1.671875 -0.734375 1.546875 -0.84375 1.453125 -0.984375 C 1.34375 -1.109375 1.28125 -1.28125 1.21875 -1.5 C 1.171875 -1.703125 1.140625 -1.953125 1.140625 -2.25 C 1.140625 -2.8125 1.265625 -3.25 1.484375 -3.546875 C 1.71875 -3.84375 2.046875 -4 2.46875 -4 C 2.671875 -4 2.875 -3.953125 3.046875 -3.890625 C 3.21875 -3.796875 3.375 -3.65625 3.53125 -3.46875 L 3.53125 -1.265625 C 3.359375 -1.046875 3.1875 -0.890625 2.984375 -0.765625 C 2.796875 -0.640625 2.5625 -0.578125 2.3125 -0.578125 Z M 2.3125 -0.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-19">
<path style="stroke:none;" d="M 0.6875 0 L 1.203125 0 C 1.3125 0 1.375 -0.0625 1.40625 -0.171875 L 1.4375 -0.578125 C 1.59375 -0.375 1.78125 -0.21875 1.984375 -0.109375 C 2.1875 0 2.4375 0.0625 2.71875 0.0625 C 3.03125 0.0625 3.3125 0 3.546875 -0.109375 C 3.796875 -0.234375 4 -0.40625 4.171875 -0.625 C 4.34375 -0.828125 4.46875 -1.078125 4.5625 -1.359375 C 4.640625 -1.65625 4.6875 -1.96875 4.6875 -2.296875 C 4.6875 -2.671875 4.65625 -3.015625 4.5625 -3.296875 C 4.484375 -3.59375 4.375 -3.828125 4.21875 -4.03125 C 4.078125 -4.21875 3.890625 -4.375 3.6875 -4.46875 C 3.46875 -4.5625 3.234375 -4.609375 2.96875 -4.609375 C 2.65625 -4.609375 2.375 -4.546875 2.140625 -4.40625 C 1.890625 -4.28125 1.671875 -4.109375 1.484375 -3.890625 L 1.484375 -6.609375 L 0.6875 -6.609375 Z M 2.703125 -3.984375 C 2.890625 -3.984375 3.046875 -3.953125 3.203125 -3.890625 C 3.34375 -3.828125 3.46875 -3.71875 3.5625 -3.59375 C 3.65625 -3.453125 3.734375 -3.28125 3.78125 -3.0625 C 3.84375 -2.859375 3.859375 -2.59375 3.859375 -2.296875 C 3.859375 -1.734375 3.75 -1.3125 3.53125 -1.015625 C 3.296875 -0.703125 2.96875 -0.5625 2.546875 -0.5625 C 2.328125 -0.5625 2.140625 -0.59375 1.96875 -0.671875 C 1.78125 -0.765625 1.625 -0.890625 1.484375 -1.09375 L 1.484375 -3.296875 C 1.65625 -3.515625 1.828125 -3.671875 2.03125 -3.796875 C 2.21875 -3.921875 2.453125 -3.984375 2.703125 -3.984375 Z M 2.703125 -3.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-20">
<path style="stroke:none;" d="M 1.484375 -6.609375 L 0.6875 -6.609375 L 0.6875 0 L 1.484375 0 L 1.484375 -2.171875 L 1.703125 -2.171875 C 1.796875 -2.171875 1.859375 -2.15625 1.90625 -2.140625 C 1.953125 -2.125 2 -2.078125 2.046875 -2.015625 L 3.53125 -0.15625 C 3.578125 -0.109375 3.625 -0.0625 3.671875 -0.03125 C 3.71875 -0.015625 3.765625 0 3.84375 0 L 4.5625 0 L 2.78125 -2.25 C 2.734375 -2.296875 2.703125 -2.359375 2.65625 -2.40625 C 2.609375 -2.453125 2.5625 -2.484375 2.515625 -2.53125 C 2.5625 -2.5625 2.609375 -2.59375 2.640625 -2.625 C 2.6875 -2.671875 2.734375 -2.71875 2.765625 -2.765625 L 4.4375 -4.546875 L 3.71875 -4.546875 C 3.640625 -4.546875 3.578125 -4.53125 3.53125 -4.5 C 3.5 -4.46875 3.453125 -4.4375 3.40625 -4.375 L 1.96875 -2.84375 C 1.921875 -2.796875 1.875 -2.765625 1.84375 -2.75 C 1.796875 -2.71875 1.75 -2.71875 1.6875 -2.71875 L 1.484375 -2.71875 Z M 1.484375 -6.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-21">
<path style="stroke:none;" d="M 0.078125 -4.546875 L 1.9375 0 L 2.65625 0 L 4.5 -4.546875 L 3.890625 -4.546875 C 3.828125 -4.546875 3.78125 -4.53125 3.734375 -4.5 C 3.6875 -4.46875 3.65625 -4.421875 3.640625 -4.375 L 2.484375 -1.453125 C 2.4375 -1.34375 2.40625 -1.234375 2.375 -1.125 C 2.34375 -1.015625 2.328125 -0.921875 2.296875 -0.8125 C 2.28125 -0.921875 2.25 -1.015625 2.234375 -1.125 C 2.203125 -1.234375 2.171875 -1.34375 2.140625 -1.453125 L 0.984375 -4.375 C 0.96875 -4.421875 0.9375 -4.46875 0.890625 -4.5 C 0.859375 -4.53125 0.796875 -4.546875 0.734375 -4.546875 Z M 0.078125 -4.546875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d="M 0.953125 -4.359375 L 1.140625 -4.0625 C 1.171875 -4.015625 1.21875 -3.984375 1.28125 -3.984375 C 1.296875 -3.984375 1.34375 -4 1.375 -4.015625 C 1.40625 -4.046875 1.453125 -4.0625 1.5 -4.09375 C 1.546875 -4.125 1.609375 -4.15625 1.6875 -4.171875 C 1.75 -4.1875 1.84375 -4.203125 1.953125 -4.203125 C 2.09375 -4.203125 2.21875 -4.171875 2.3125 -4.09375 C 2.40625 -4.015625 2.4375 -3.90625 2.4375 -3.78125 C 2.4375 -3.671875 2.421875 -3.59375 2.390625 -3.515625 C 2.34375 -3.453125 2.296875 -3.375 2.234375 -3.3125 C 2.171875 -3.265625 2.109375 -3.203125 2.03125 -3.15625 C 1.96875 -3.109375 1.90625 -3.046875 1.84375 -3 C 1.78125 -2.9375 1.734375 -2.875 1.703125 -2.8125 C 1.671875 -2.75 1.65625 -2.671875 1.671875 -2.59375 L 1.71875 -2.140625 L 2.1875 -2.140625 L 2.25 -2.546875 C 2.265625 -2.609375 2.28125 -2.65625 2.328125 -2.703125 C 2.375 -2.75 2.4375 -2.796875 2.484375 -2.84375 C 2.546875 -2.890625 2.609375 -2.953125 2.6875 -3 C 2.75 -3.0625 2.8125 -3.125 2.875 -3.1875 C 2.9375 -3.265625 2.984375 -3.359375 3.015625 -3.46875 C 3.0625 -3.5625 3.078125 -3.6875 3.078125 -3.828125 C 3.078125 -3.96875 3.046875 -4.09375 3 -4.203125 C 2.953125 -4.328125 2.875 -4.421875 2.78125 -4.515625 C 2.6875 -4.59375 2.578125 -4.65625 2.4375 -4.703125 C 2.3125 -4.734375 2.171875 -4.765625 2 -4.765625 C 1.890625 -4.765625 1.78125 -4.75 1.6875 -4.734375 C 1.578125 -4.703125 1.484375 -4.6875 1.390625 -4.640625 C 1.3125 -4.609375 1.234375 -4.5625 1.15625 -4.515625 C 1.078125 -4.46875 1.015625 -4.421875 0.953125 -4.359375 Z M 1.515625 -1.109375 C 1.515625 -1 1.546875 -0.890625 1.625 -0.8125 C 1.71875 -0.734375 1.8125 -0.703125 1.9375 -0.703125 C 1.984375 -0.703125 2.046875 -0.703125 2.09375 -0.71875 C 2.140625 -0.75 2.1875 -0.78125 2.21875 -0.8125 C 2.265625 -0.859375 2.296875 -0.90625 2.3125 -0.953125 C 2.328125 -1 2.34375 -1.0625 2.34375 -1.109375 C 2.34375 -1.171875 2.328125 -1.234375 2.3125 -1.28125 C 2.296875 -1.328125 2.265625 -1.375 2.21875 -1.421875 C 2.1875 -1.453125 2.140625 -1.484375 2.09375 -1.5 C 2.046875 -1.53125 1.984375 -1.546875 1.9375 -1.546875 C 1.8125 -1.546875 1.71875 -1.5 1.625 -1.421875 C 1.546875 -1.34375 1.515625 -1.234375 1.515625 -1.109375 Z M 0.171875 -5.46875 L 0.171875 0 L 3.890625 0 L 3.890625 -5.46875 Z M 0.359375 -0.203125 L 0.359375 -5.265625 L 3.671875 -5.265625 L 3.671875 -0.203125 Z M 0.359375 -0.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 5.171875 0 L 2.984375 -5.46875 L 2.234375 -5.46875 L 0.03125 0 L 0.609375 0 C 0.671875 0 0.734375 -0.015625 0.765625 -0.046875 C 0.8125 -0.09375 0.84375 -0.125 0.859375 -0.171875 L 1.375 -1.5 L 3.828125 -1.5 L 4.34375 -0.171875 C 4.359375 -0.125 4.390625 -0.078125 4.4375 -0.046875 C 4.484375 -0.015625 4.53125 0 4.59375 0 Z M 1.578125 -2.03125 L 2.4375 -4.25 C 2.46875 -4.328125 2.484375 -4.40625 2.515625 -4.484375 C 2.546875 -4.578125 2.578125 -4.671875 2.609375 -4.78125 C 2.65625 -4.5625 2.703125 -4.390625 2.765625 -4.265625 L 3.625 -2.03125 Z M 1.578125 -2.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 0.671875 0 L 2.609375 0 C 2.90625 0 3.171875 -0.03125 3.421875 -0.109375 C 3.65625 -0.1875 3.859375 -0.296875 4.015625 -0.4375 C 4.1875 -0.5625 4.3125 -0.734375 4.390625 -0.921875 C 4.484375 -1.109375 4.515625 -1.328125 4.515625 -1.5625 C 4.515625 -1.90625 4.421875 -2.171875 4.21875 -2.390625 C 4.015625 -2.59375 3.71875 -2.734375 3.3125 -2.8125 C 3.484375 -2.875 3.640625 -2.9375 3.765625 -3.015625 C 3.890625 -3.109375 4 -3.203125 4.09375 -3.3125 C 4.171875 -3.421875 4.234375 -3.53125 4.28125 -3.65625 C 4.3125 -3.78125 4.34375 -3.90625 4.34375 -4.046875 C 4.34375 -4.265625 4.296875 -4.46875 4.21875 -4.640625 C 4.15625 -4.828125 4.03125 -4.96875 3.875 -5.09375 C 3.71875 -5.21875 3.515625 -5.3125 3.28125 -5.375 C 3.03125 -5.4375 2.75 -5.46875 2.40625 -5.46875 L 0.671875 -5.46875 Z M 1.40625 -2.5 L 2.59375 -2.5 C 2.984375 -2.5 3.296875 -2.421875 3.484375 -2.25 C 3.6875 -2.09375 3.796875 -1.859375 3.796875 -1.578125 C 3.796875 -1.4375 3.765625 -1.296875 3.71875 -1.171875 C 3.671875 -1.0625 3.609375 -0.953125 3.5 -0.859375 C 3.40625 -0.78125 3.28125 -0.703125 3.125 -0.65625 C 2.984375 -0.609375 2.796875 -0.59375 2.59375 -0.59375 L 1.40625 -0.59375 Z M 1.40625 -3.015625 L 1.40625 -4.890625 L 2.40625 -4.890625 C 2.8125 -4.890625 3.125 -4.8125 3.3125 -4.671875 C 3.5 -4.515625 3.609375 -4.28125 3.609375 -3.953125 C 3.609375 -3.828125 3.578125 -3.6875 3.53125 -3.578125 C 3.484375 -3.46875 3.40625 -3.359375 3.3125 -3.28125 C 3.203125 -3.203125 3.078125 -3.140625 2.921875 -3.09375 C 2.78125 -3.046875 2.59375 -3.015625 2.390625 -3.015625 Z M 1.40625 -3.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 1.9375 -2.8125 L 0.046875 0 L 0.734375 0 C 0.796875 0 0.84375 -0.015625 0.859375 -0.046875 C 0.890625 -0.078125 0.921875 -0.109375 0.9375 -0.140625 L 2.375 -2.28125 C 2.40625 -2.328125 2.421875 -2.390625 2.4375 -2.4375 L 3.90625 -0.140625 C 3.921875 -0.109375 3.953125 -0.078125 3.984375 -0.046875 C 4.015625 -0.015625 4.0625 0 4.125 0 L 4.859375 0 L 2.96875 -2.84375 L 4.796875 -5.46875 L 4.078125 -5.46875 C 4.046875 -5.46875 4.015625 -5.46875 3.984375 -5.4375 C 3.953125 -5.421875 3.9375 -5.390625 3.90625 -5.359375 L 2.5625 -3.359375 C 2.53125 -3.296875 2.5 -3.234375 2.484375 -3.171875 L 1.046875 -5.375 C 1.03125 -5.40625 1.015625 -5.421875 0.984375 -5.453125 C 0.953125 -5.46875 0.921875 -5.46875 0.875 -5.46875 L 0.125 -5.46875 Z M 1.9375 -2.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 2.78125 -2.171875 L 4.78125 -5.46875 L 4.125 -5.46875 C 4.0625 -5.46875 4.015625 -5.453125 3.96875 -5.421875 C 3.9375 -5.390625 3.90625 -5.34375 3.875 -5.296875 L 2.625 -3.171875 C 2.578125 -3.09375 2.53125 -3 2.5 -2.921875 C 2.46875 -2.84375 2.4375 -2.765625 2.40625 -2.6875 C 2.390625 -2.765625 2.359375 -2.84375 2.3125 -2.921875 C 2.28125 -3 2.234375 -3.09375 2.1875 -3.171875 L 0.9375 -5.296875 C 0.90625 -5.359375 0.875 -5.390625 0.84375 -5.421875 C 0.796875 -5.453125 0.75 -5.46875 0.6875 -5.46875 L 0.03125 -5.46875 L 2.03125 -2.171875 L 2.03125 0 L 2.78125 0 Z M 2.78125 -2.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d="M 1 -4.546875 L 1.1875 -4.25 C 1.21875 -4.1875 1.265625 -4.15625 1.328125 -4.15625 C 1.359375 -4.15625 1.390625 -4.171875 1.4375 -4.1875 C 1.46875 -4.21875 1.515625 -4.25 1.5625 -4.265625 C 1.625 -4.296875 1.6875 -4.328125 1.75 -4.34375 C 1.828125 -4.375 1.921875 -4.390625 2.03125 -4.390625 C 2.1875 -4.390625 2.3125 -4.34375 2.40625 -4.265625 C 2.5 -4.1875 2.546875 -4.078125 2.546875 -3.9375 C 2.546875 -3.84375 2.53125 -3.75 2.484375 -3.671875 C 2.4375 -3.59375 2.390625 -3.515625 2.328125 -3.46875 C 2.265625 -3.40625 2.203125 -3.34375 2.125 -3.296875 C 2.046875 -3.234375 1.984375 -3.1875 1.921875 -3.125 C 1.859375 -3.0625 1.8125 -3 1.78125 -2.9375 C 1.75 -2.875 1.734375 -2.796875 1.75 -2.703125 L 1.796875 -2.234375 L 2.28125 -2.234375 L 2.34375 -2.65625 C 2.359375 -2.71875 2.390625 -2.765625 2.4375 -2.828125 C 2.484375 -2.875 2.53125 -2.921875 2.59375 -2.96875 C 2.65625 -3.015625 2.734375 -3.078125 2.796875 -3.125 C 2.875 -3.1875 2.9375 -3.25 3 -3.328125 C 3.0625 -3.40625 3.109375 -3.5 3.140625 -3.609375 C 3.1875 -3.71875 3.203125 -3.84375 3.203125 -3.984375 C 3.203125 -4.140625 3.171875 -4.265625 3.125 -4.390625 C 3.078125 -4.515625 3 -4.625 2.90625 -4.703125 C 2.796875 -4.78125 2.6875 -4.859375 2.546875 -4.90625 C 2.40625 -4.9375 2.265625 -4.96875 2.09375 -4.96875 C 1.96875 -4.96875 1.859375 -4.953125 1.75 -4.9375 C 1.640625 -4.90625 1.546875 -4.875 1.453125 -4.84375 C 1.359375 -4.8125 1.28125 -4.765625 1.21875 -4.703125 C 1.125 -4.65625 1.0625 -4.609375 1 -4.546875 Z M 1.578125 -1.15625 C 1.578125 -1.046875 1.625 -0.9375 1.703125 -0.859375 C 1.78125 -0.765625 1.890625 -0.71875 2.015625 -0.71875 C 2.078125 -0.71875 2.125 -0.734375 2.1875 -0.75 C 2.234375 -0.78125 2.28125 -0.8125 2.3125 -0.859375 C 2.359375 -0.890625 2.390625 -0.9375 2.421875 -0.984375 C 2.4375 -1.046875 2.453125 -1.109375 2.453125 -1.15625 C 2.453125 -1.21875 2.4375 -1.28125 2.421875 -1.34375 C 2.390625 -1.390625 2.359375 -1.4375 2.3125 -1.484375 C 2.28125 -1.515625 2.234375 -1.546875 2.1875 -1.5625 C 2.125 -1.59375 2.078125 -1.609375 2.015625 -1.609375 C 1.890625 -1.609375 1.78125 -1.5625 1.703125 -1.484375 C 1.625 -1.390625 1.578125 -1.28125 1.578125 -1.15625 Z M 0.171875 -5.703125 L 0.171875 0 L 4.0625 0 L 4.0625 -5.703125 Z M 0.375 -0.21875 L 0.375 -5.484375 L 3.828125 -5.484375 L 3.828125 -0.21875 Z M 0.375 -0.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 4.578125 -5.703125 L 0.109375 -5.703125 L 0.109375 -5.0625 L 1.96875 -5.0625 L 1.96875 0 L 2.734375 0 L 2.734375 -5.0625 L 4.578125 -5.0625 Z M 4.578125 -5.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 0.578125 0 L 1.296875 0 L 1.296875 -2.5625 C 1.40625 -2.84375 1.546875 -3.046875 1.703125 -3.203125 C 1.875 -3.34375 2.078125 -3.40625 2.328125 -3.40625 C 2.46875 -3.40625 2.578125 -3.40625 2.65625 -3.375 C 2.71875 -3.34375 2.78125 -3.328125 2.828125 -3.328125 C 2.890625 -3.328125 2.921875 -3.359375 2.9375 -3.4375 L 3.03125 -3.96875 C 2.953125 -4.015625 2.875 -4.046875 2.78125 -4.078125 C 2.6875 -4.09375 2.59375 -4.109375 2.484375 -4.109375 C 2.203125 -4.109375 1.96875 -4.03125 1.765625 -3.875 C 1.5625 -3.71875 1.390625 -3.5 1.25 -3.21875 L 1.203125 -3.84375 C 1.203125 -3.90625 1.171875 -3.96875 1.140625 -4 C 1.125 -4.015625 1.0625 -4.03125 0.984375 -4.03125 L 0.578125 -4.03125 Z M 0.578125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 3.546875 0 L 3.546875 -2.578125 C 3.546875 -2.8125 3.515625 -3.015625 3.453125 -3.203125 C 3.390625 -3.390625 3.296875 -3.546875 3.1875 -3.6875 C 3.0625 -3.8125 2.921875 -3.921875 2.734375 -4 C 2.5625 -4.078125 2.359375 -4.109375 2.140625 -4.109375 C 1.828125 -4.109375 1.546875 -4.0625 1.28125 -3.953125 C 1.03125 -3.84375 0.78125 -3.6875 0.5625 -3.46875 L 0.6875 -3.234375 C 0.703125 -3.203125 0.734375 -3.171875 0.765625 -3.140625 C 0.8125 -3.125 0.859375 -3.109375 0.90625 -3.109375 C 0.953125 -3.109375 1.03125 -3.125 1.078125 -3.171875 C 1.140625 -3.21875 1.21875 -3.265625 1.3125 -3.328125 C 1.390625 -3.375 1.5 -3.421875 1.625 -3.46875 C 1.734375 -3.515625 1.875 -3.53125 2.046875 -3.53125 C 2.3125 -3.53125 2.515625 -3.453125 2.640625 -3.296875 C 2.78125 -3.125 2.84375 -2.890625 2.84375 -2.578125 L 2.84375 -2.265625 C 2.390625 -2.25 2 -2.21875 1.6875 -2.140625 C 1.375 -2.0625 1.109375 -1.96875 0.921875 -1.859375 C 0.71875 -1.75 0.578125 -1.625 0.5 -1.46875 C 0.40625 -1.328125 0.359375 -1.171875 0.359375 -1.015625 C 0.359375 -0.828125 0.40625 -0.671875 0.453125 -0.53125 C 0.515625 -0.40625 0.59375 -0.28125 0.703125 -0.203125 C 0.796875 -0.109375 0.921875 -0.046875 1.046875 0 C 1.1875 0.046875 1.34375 0.0625 1.5 0.0625 C 1.65625 0.0625 1.78125 0.046875 1.90625 0.03125 C 2.046875 0 2.15625 -0.046875 2.265625 -0.09375 C 2.375 -0.140625 2.484375 -0.203125 2.59375 -0.28125 C 2.6875 -0.359375 2.796875 -0.453125 2.90625 -0.546875 L 2.984375 -0.171875 C 3 -0.09375 3.015625 -0.046875 3.0625 -0.03125 C 3.109375 -0.015625 3.15625 0 3.234375 0 Z M 1.703125 -0.4375 C 1.609375 -0.4375 1.53125 -0.453125 1.453125 -0.46875 C 1.359375 -0.484375 1.296875 -0.53125 1.234375 -0.578125 C 1.171875 -0.625 1.140625 -0.6875 1.09375 -0.765625 C 1.0625 -0.84375 1.046875 -0.9375 1.046875 -1.046875 C 1.046875 -1.15625 1.078125 -1.25 1.140625 -1.34375 C 1.21875 -1.4375 1.3125 -1.515625 1.453125 -1.578125 C 1.609375 -1.640625 1.78125 -1.703125 2.015625 -1.734375 C 2.25 -1.78125 2.515625 -1.8125 2.84375 -1.8125 L 2.84375 -0.96875 C 2.765625 -0.890625 2.6875 -0.8125 2.609375 -0.75 C 2.515625 -0.6875 2.4375 -0.625 2.34375 -0.578125 C 2.25 -0.53125 2.15625 -0.5 2.046875 -0.46875 C 1.9375 -0.453125 1.828125 -0.4375 1.703125 -0.4375 Z M 1.703125 -0.4375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 0.578125 0 L 1.296875 0 L 1.296875 -2.96875 C 1.453125 -3.140625 1.609375 -3.28125 1.796875 -3.375 C 1.96875 -3.484375 2.171875 -3.53125 2.375 -3.53125 C 2.671875 -3.53125 2.890625 -3.453125 3.015625 -3.28125 C 3.15625 -3.109375 3.234375 -2.875 3.234375 -2.5625 L 3.234375 0 L 3.9375 0 L 3.9375 -2.5625 C 3.9375 -2.796875 3.90625 -3.015625 3.859375 -3.203125 C 3.796875 -3.375 3.703125 -3.546875 3.59375 -3.6875 C 3.484375 -3.8125 3.34375 -3.921875 3.171875 -4 C 3 -4.0625 2.8125 -4.09375 2.59375 -4.09375 C 2.3125 -4.09375 2.0625 -4.046875 1.84375 -3.921875 C 1.625 -3.796875 1.421875 -3.640625 1.25 -3.453125 L 1.203125 -3.890625 C 1.171875 -3.984375 1.109375 -4.03125 1 -4.03125 L 0.578125 -4.03125 Z M 0.578125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-5">
<path style="stroke:none;" d="M 2.890625 -3.375 L 3.046875 -3.625 C 2.890625 -3.78125 2.71875 -3.890625 2.5 -3.96875 C 2.296875 -4.0625 2.0625 -4.09375 1.78125 -4.09375 C 1.5625 -4.09375 1.359375 -4.0625 1.171875 -4 C 1 -3.9375 0.859375 -3.859375 0.734375 -3.75 C 0.609375 -3.640625 0.515625 -3.515625 0.453125 -3.375 C 0.390625 -3.234375 0.359375 -3.078125 0.359375 -2.921875 C 0.359375 -2.75 0.375 -2.609375 0.453125 -2.484375 C 0.5 -2.359375 0.578125 -2.265625 0.6875 -2.1875 C 0.78125 -2.09375 0.890625 -2.03125 1.015625 -1.96875 C 1.140625 -1.921875 1.28125 -1.875 1.40625 -1.828125 C 1.53125 -1.78125 1.671875 -1.75 1.796875 -1.71875 C 1.921875 -1.671875 2.03125 -1.625 2.125 -1.578125 C 2.234375 -1.515625 2.296875 -1.46875 2.359375 -1.390625 C 2.421875 -1.3125 2.453125 -1.21875 2.453125 -1.109375 C 2.453125 -1.015625 2.4375 -0.9375 2.40625 -0.859375 C 2.375 -0.78125 2.3125 -0.703125 2.25 -0.640625 C 2.1875 -0.578125 2.09375 -0.53125 2 -0.5 C 1.890625 -0.46875 1.765625 -0.453125 1.625 -0.453125 C 1.46875 -0.453125 1.328125 -0.46875 1.234375 -0.5 C 1.109375 -0.53125 1.03125 -0.578125 0.953125 -0.625 C 0.875 -0.671875 0.8125 -0.71875 0.75 -0.75 C 0.703125 -0.78125 0.65625 -0.8125 0.609375 -0.8125 C 0.5625 -0.8125 0.515625 -0.796875 0.484375 -0.78125 C 0.46875 -0.75 0.4375 -0.734375 0.421875 -0.703125 L 0.25 -0.421875 C 0.40625 -0.28125 0.609375 -0.171875 0.828125 -0.078125 C 1.0625 0.015625 1.3125 0.0625 1.59375 0.0625 C 1.84375 0.0625 2.0625 0.03125 2.25 -0.03125 C 2.4375 -0.109375 2.59375 -0.1875 2.71875 -0.3125 C 2.859375 -0.421875 2.953125 -0.5625 3.015625 -0.71875 C 3.09375 -0.875 3.125 -1.046875 3.125 -1.234375 C 3.125 -1.40625 3.09375 -1.53125 3.03125 -1.65625 C 2.96875 -1.765625 2.890625 -1.859375 2.796875 -1.9375 C 2.6875 -2.03125 2.578125 -2.09375 2.453125 -2.140625 C 2.328125 -2.203125 2.203125 -2.25 2.078125 -2.28125 C 1.9375 -2.328125 1.8125 -2.375 1.6875 -2.421875 C 1.5625 -2.453125 1.453125 -2.5 1.359375 -2.546875 C 1.25 -2.59375 1.171875 -2.65625 1.109375 -2.71875 C 1.0625 -2.796875 1.03125 -2.875 1.03125 -2.984375 C 1.03125 -3.0625 1.046875 -3.140625 1.078125 -3.21875 C 1.109375 -3.28125 1.171875 -3.34375 1.234375 -3.40625 C 1.3125 -3.453125 1.390625 -3.5 1.484375 -3.515625 C 1.578125 -3.546875 1.6875 -3.5625 1.8125 -3.5625 C 1.9375 -3.5625 2.0625 -3.546875 2.15625 -3.515625 C 2.265625 -3.5 2.34375 -3.453125 2.421875 -3.421875 C 2.5 -3.390625 2.5625 -3.359375 2.609375 -3.328125 C 2.65625 -3.296875 2.703125 -3.28125 2.75 -3.28125 C 2.8125 -3.28125 2.859375 -3.3125 2.890625 -3.375 Z M 2.890625 -3.375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-6">
<path style="stroke:none;" d="M 0.734375 0 L 1.453125 0 L 1.453125 -3.4375 L 2.59375 -3.4375 L 2.59375 -3.953125 L 1.4375 -3.953125 L 1.4375 -4.328125 C 1.4375 -4.5 1.453125 -4.640625 1.484375 -4.765625 C 1.53125 -4.875 1.578125 -4.96875 1.65625 -5.046875 C 1.71875 -5.109375 1.8125 -5.171875 1.90625 -5.203125 C 2.015625 -5.234375 2.125 -5.25 2.25 -5.25 L 2.359375 -5.25 C 2.4375 -5.25 2.5 -5.25 2.546875 -5.265625 C 2.59375 -5.28125 2.609375 -5.3125 2.609375 -5.359375 L 2.625 -5.71875 C 2.46875 -5.765625 2.3125 -5.796875 2.125 -5.796875 C 1.921875 -5.796875 1.71875 -5.765625 1.546875 -5.703125 C 1.375 -5.640625 1.234375 -5.53125 1.109375 -5.421875 C 1 -5.296875 0.90625 -5.140625 0.84375 -4.96875 C 0.765625 -4.78125 0.734375 -4.578125 0.734375 -4.34375 L 0.734375 -3.953125 L 0.109375 -3.953125 L 0.109375 -3.671875 C 0.109375 -3.609375 0.125 -3.5625 0.15625 -3.546875 C 0.1875 -3.515625 0.234375 -3.5 0.296875 -3.484375 L 0.734375 -3.4375 Z M 0.734375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-7">
<path style="stroke:none;" d="M 2.21875 -4.09375 C 1.921875 -4.09375 1.65625 -4.046875 1.421875 -3.953125 C 1.171875 -3.859375 0.96875 -3.71875 0.8125 -3.53125 C 0.640625 -3.359375 0.515625 -3.140625 0.421875 -2.875 C 0.328125 -2.625 0.28125 -2.328125 0.28125 -2.015625 C 0.28125 -1.703125 0.328125 -1.421875 0.421875 -1.15625 C 0.515625 -0.90625 0.640625 -0.6875 0.8125 -0.5 C 0.96875 -0.328125 1.171875 -0.1875 1.421875 -0.09375 C 1.65625 0.015625 1.921875 0.0625 2.21875 0.0625 C 2.515625 0.0625 2.78125 0.015625 3.015625 -0.09375 C 3.25 -0.1875 3.453125 -0.328125 3.625 -0.5 C 3.78125 -0.6875 3.90625 -0.90625 4 -1.15625 C 4.09375 -1.421875 4.140625 -1.703125 4.140625 -2.015625 C 4.140625 -2.328125 4.09375 -2.625 4 -2.875 C 3.90625 -3.140625 3.78125 -3.359375 3.625 -3.53125 C 3.453125 -3.71875 3.25 -3.859375 3.015625 -3.953125 C 2.78125 -4.046875 2.515625 -4.09375 2.21875 -4.09375 Z M 2.21875 -0.5 C 2.015625 -0.5 1.84375 -0.53125 1.6875 -0.609375 C 1.546875 -0.671875 1.421875 -0.765625 1.3125 -0.90625 C 1.21875 -1.03125 1.140625 -1.1875 1.09375 -1.375 C 1.046875 -1.5625 1.015625 -1.78125 1.015625 -2.015625 C 1.015625 -2.25 1.046875 -2.46875 1.09375 -2.65625 C 1.140625 -2.84375 1.21875 -3.015625 1.3125 -3.140625 C 1.421875 -3.265625 1.546875 -3.375 1.6875 -3.4375 C 1.84375 -3.5 2.015625 -3.546875 2.21875 -3.546875 C 2.609375 -3.546875 2.90625 -3.40625 3.109375 -3.140625 C 3.296875 -2.875 3.40625 -2.5 3.40625 -2.015625 C 3.40625 -1.53125 3.296875 -1.15625 3.109375 -0.90625 C 2.90625 -0.625 2.609375 -0.5 2.21875 -0.5 Z M 2.21875 -0.5 "/>
</symbol>
<symbol overflow="visible" id="glyph3-8">
<path style="stroke:none;" d="M 0.578125 0 L 1.296875 0 L 1.296875 -3.015625 C 1.421875 -3.171875 1.546875 -3.296875 1.703125 -3.390625 C 1.859375 -3.484375 2.015625 -3.53125 2.1875 -3.53125 C 2.4375 -3.53125 2.625 -3.453125 2.765625 -3.296875 C 2.890625 -3.140625 2.953125 -2.890625 2.953125 -2.5625 L 2.953125 0 L 3.671875 0 L 3.671875 -2.5625 C 3.671875 -2.734375 3.6875 -2.875 3.734375 -2.984375 C 3.78125 -3.109375 3.84375 -3.21875 3.921875 -3.296875 C 4 -3.375 4.09375 -3.4375 4.203125 -3.46875 C 4.3125 -3.515625 4.421875 -3.53125 4.53125 -3.53125 C 4.796875 -3.53125 5 -3.453125 5.140625 -3.296875 C 5.28125 -3.125 5.34375 -2.890625 5.34375 -2.5625 L 5.34375 0 L 6.046875 0 L 6.046875 -2.5625 C 6.046875 -2.8125 6.015625 -3.03125 5.953125 -3.21875 C 5.90625 -3.40625 5.8125 -3.5625 5.703125 -3.703125 C 5.578125 -3.828125 5.4375 -3.921875 5.28125 -4 C 5.109375 -4.0625 4.921875 -4.09375 4.703125 -4.09375 C 4.578125 -4.09375 4.4375 -4.078125 4.3125 -4.046875 C 4.1875 -4.015625 4.0625 -3.96875 3.953125 -3.90625 C 3.828125 -3.828125 3.734375 -3.75 3.640625 -3.640625 C 3.546875 -3.53125 3.46875 -3.40625 3.421875 -3.265625 C 3.34375 -3.515625 3.21875 -3.71875 3.046875 -3.875 C 2.890625 -4.03125 2.671875 -4.09375 2.390625 -4.09375 C 2.140625 -4.09375 1.9375 -4.046875 1.75 -3.921875 C 1.5625 -3.8125 1.390625 -3.65625 1.25 -3.46875 L 1.203125 -3.890625 C 1.171875 -3.984375 1.109375 -4.03125 1 -4.03125 L 0.578125 -4.03125 Z M 0.578125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-9">
<path style="stroke:none;" d="M 1.375 -4.03125 L 0.65625 -4.03125 L 0.65625 0 L 1.375 0 Z M 1.53125 -5.296875 C 1.53125 -5.375 1.515625 -5.4375 1.484375 -5.5 C 1.453125 -5.5625 1.421875 -5.625 1.375 -5.671875 C 1.328125 -5.703125 1.28125 -5.75 1.21875 -5.78125 C 1.15625 -5.796875 1.09375 -5.8125 1.015625 -5.8125 C 0.953125 -5.8125 0.890625 -5.796875 0.828125 -5.78125 C 0.765625 -5.75 0.71875 -5.703125 0.671875 -5.671875 C 0.625 -5.625 0.578125 -5.5625 0.5625 -5.5 C 0.53125 -5.4375 0.515625 -5.375 0.515625 -5.296875 C 0.515625 -5.234375 0.53125 -5.171875 0.5625 -5.109375 C 0.578125 -5.046875 0.625 -5 0.671875 -4.953125 C 0.71875 -4.90625 0.765625 -4.875 0.828125 -4.84375 C 0.890625 -4.8125 0.953125 -4.796875 1.015625 -4.796875 C 1.09375 -4.796875 1.15625 -4.8125 1.21875 -4.84375 C 1.28125 -4.875 1.328125 -4.90625 1.375 -4.953125 C 1.421875 -5 1.453125 -5.046875 1.484375 -5.109375 C 1.515625 -5.171875 1.53125 -5.234375 1.53125 -5.296875 Z M 1.53125 -5.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-10">
<path style="stroke:none;" d="M 1.8125 0.0625 C 1.984375 0.0625 2.171875 0.03125 2.34375 -0.03125 C 2.515625 -0.09375 2.65625 -0.1875 2.78125 -0.296875 L 2.578125 -0.640625 C 2.546875 -0.6875 2.515625 -0.703125 2.46875 -0.703125 C 2.453125 -0.703125 2.4375 -0.703125 2.40625 -0.671875 C 2.375 -0.65625 2.34375 -0.640625 2.296875 -0.609375 C 2.265625 -0.59375 2.21875 -0.5625 2.15625 -0.546875 C 2.109375 -0.53125 2.046875 -0.515625 1.96875 -0.515625 C 1.828125 -0.515625 1.734375 -0.5625 1.640625 -0.640625 C 1.5625 -0.71875 1.515625 -0.84375 1.515625 -1.015625 L 1.515625 -3.4375 L 2.671875 -3.4375 L 2.671875 -3.953125 L 1.515625 -3.953125 L 1.515625 -5.34375 L 1.15625 -5.34375 C 1.125 -5.34375 1.078125 -5.328125 1.046875 -5.3125 C 1.03125 -5.28125 1 -5.25 1 -5.21875 L 0.84375 -3.96875 L 0.171875 -3.875 L 0.171875 -3.59375 C 0.171875 -3.546875 0.1875 -3.5 0.21875 -3.484375 C 0.25 -3.453125 0.28125 -3.4375 0.328125 -3.4375 L 0.8125 -3.4375 L 0.8125 -0.96875 C 0.8125 -0.640625 0.90625 -0.375 1.0625 -0.203125 C 1.25 -0.03125 1.484375 0.0625 1.8125 0.0625 Z M 1.8125 0.0625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-11">
<path style="stroke:none;" d="M 0.578125 1.359375 L 1.296875 1.359375 L 1.296875 -0.421875 C 1.421875 -0.265625 1.578125 -0.15625 1.765625 -0.0625 C 1.9375 0.015625 2.140625 0.0625 2.40625 0.0625 C 2.671875 0.0625 2.90625 0 3.125 -0.109375 C 3.34375 -0.21875 3.53125 -0.359375 3.671875 -0.546875 C 3.828125 -0.734375 3.9375 -0.953125 4.015625 -1.21875 C 4.09375 -1.46875 4.140625 -1.75 4.140625 -2.046875 C 4.140625 -2.375 4.109375 -2.671875 4.03125 -2.9375 C 3.953125 -3.1875 3.859375 -3.40625 3.71875 -3.578125 C 3.59375 -3.75 3.4375 -3.890625 3.25 -3.96875 C 3.0625 -4.0625 2.84375 -4.109375 2.609375 -4.109375 C 2.328125 -4.109375 2.0625 -4.046875 1.84375 -3.921875 C 1.625 -3.796875 1.421875 -3.625 1.25 -3.40625 L 1.203125 -3.890625 C 1.171875 -3.984375 1.109375 -4.03125 1 -4.03125 L 0.578125 -4.03125 Z M 2.375 -3.53125 C 2.546875 -3.53125 2.6875 -3.5 2.8125 -3.453125 C 2.9375 -3.390625 3.046875 -3.3125 3.140625 -3.1875 C 3.21875 -3.0625 3.296875 -2.90625 3.34375 -2.71875 C 3.375 -2.53125 3.40625 -2.3125 3.40625 -2.046875 C 3.40625 -1.546875 3.3125 -1.15625 3.109375 -0.890625 C 2.90625 -0.625 2.609375 -0.5 2.234375 -0.5 C 2.046875 -0.5 1.875 -0.53125 1.71875 -0.609375 C 1.5625 -0.671875 1.421875 -0.796875 1.296875 -0.96875 L 1.296875 -2.921875 C 1.4375 -3.125 1.59375 -3.265625 1.765625 -3.375 C 1.9375 -3.484375 2.140625 -3.53125 2.375 -3.53125 Z M 2.375 -3.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-12">
<path style="stroke:none;" d="M 1.375 -4.03125 L 0.65625 -4.03125 L 0.65625 0.296875 C 0.65625 0.515625 0.625 0.671875 0.53125 0.765625 C 0.4375 0.859375 0.296875 0.90625 0.09375 0.90625 C 0.046875 0.90625 0.03125 0.90625 0 0.90625 C -0.03125 0.90625 -0.046875 0.90625 -0.0625 0.90625 C -0.109375 0.90625 -0.140625 0.90625 -0.15625 0.921875 C -0.171875 0.9375 -0.1875 0.953125 -0.1875 0.984375 L -0.21875 1.375 C -0.15625 1.40625 -0.078125 1.421875 -0.015625 1.4375 C 0.0625 1.4375 0.140625 1.453125 0.234375 1.453125 C 0.4375 1.453125 0.609375 1.421875 0.75 1.359375 C 0.890625 1.296875 1.015625 1.21875 1.109375 1.109375 C 1.203125 1.015625 1.265625 0.890625 1.3125 0.75 C 1.34375 0.609375 1.375 0.46875 1.375 0.296875 Z M 1.53125 -5.296875 C 1.53125 -5.375 1.515625 -5.4375 1.484375 -5.5 C 1.453125 -5.5625 1.421875 -5.625 1.375 -5.671875 C 1.328125 -5.703125 1.28125 -5.75 1.21875 -5.78125 C 1.15625 -5.796875 1.09375 -5.8125 1.015625 -5.8125 C 0.953125 -5.8125 0.890625 -5.796875 0.828125 -5.78125 C 0.765625 -5.75 0.71875 -5.703125 0.671875 -5.671875 C 0.625 -5.625 0.578125 -5.5625 0.5625 -5.5 C 0.53125 -5.4375 0.515625 -5.375 0.515625 -5.296875 C 0.515625 -5.234375 0.53125 -5.171875 0.5625 -5.109375 C 0.578125 -5.046875 0.625 -5 0.671875 -4.953125 C 0.71875 -4.90625 0.765625 -4.875 0.828125 -4.84375 C 0.890625 -4.8125 0.953125 -4.796875 1.015625 -4.796875 C 1.09375 -4.796875 1.15625 -4.8125 1.21875 -4.84375 C 1.28125 -4.875 1.328125 -4.90625 1.375 -4.953125 C 1.421875 -5 1.453125 -5.046875 1.484375 -5.109375 C 1.515625 -5.171875 1.53125 -5.234375 1.53125 -5.296875 Z M 1.53125 -5.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-13">
<path style="stroke:none;" d="M 2.171875 -4.09375 C 1.890625 -4.09375 1.625 -4.046875 1.390625 -3.9375 C 1.15625 -3.84375 0.953125 -3.703125 0.796875 -3.515625 C 0.640625 -3.34375 0.515625 -3.125 0.421875 -2.890625 C 0.34375 -2.640625 0.296875 -2.375 0.296875 -2.09375 C 0.296875 -1.75 0.34375 -1.4375 0.4375 -1.171875 C 0.53125 -0.90625 0.671875 -0.6875 0.84375 -0.5 C 1.015625 -0.3125 1.21875 -0.171875 1.453125 -0.09375 C 1.6875 0.015625 1.9375 0.0625 2.21875 0.0625 C 2.359375 0.0625 2.515625 0.046875 2.65625 0.015625 C 2.8125 -0.015625 2.953125 -0.046875 3.09375 -0.09375 C 3.234375 -0.140625 3.359375 -0.21875 3.484375 -0.28125 C 3.609375 -0.359375 3.71875 -0.453125 3.796875 -0.5625 L 3.609375 -0.828125 C 3.5625 -0.875 3.53125 -0.890625 3.46875 -0.890625 C 3.421875 -0.890625 3.359375 -0.875 3.3125 -0.828125 C 3.25 -0.78125 3.15625 -0.75 3.078125 -0.703125 C 2.984375 -0.65625 2.875 -0.609375 2.734375 -0.5625 C 2.609375 -0.515625 2.453125 -0.5 2.28125 -0.5 C 2.09375 -0.5 1.921875 -0.53125 1.765625 -0.59375 C 1.609375 -0.65625 1.46875 -0.75 1.359375 -0.875 C 1.25 -1 1.15625 -1.15625 1.09375 -1.34375 C 1.03125 -1.53125 1 -1.765625 1 -2.015625 L 3.6875 -2.015625 C 3.75 -2.015625 3.796875 -2.03125 3.8125 -2.078125 C 3.84375 -2.109375 3.859375 -2.1875 3.859375 -2.296875 C 3.859375 -2.578125 3.8125 -2.84375 3.734375 -3.0625 C 3.640625 -3.28125 3.53125 -3.46875 3.375 -3.625 C 3.234375 -3.78125 3.046875 -3.890625 2.84375 -3.96875 C 2.640625 -4.0625 2.421875 -4.09375 2.171875 -4.09375 Z M 2.203125 -3.578125 C 2.359375 -3.578125 2.5 -3.546875 2.625 -3.5 C 2.75 -3.4375 2.859375 -3.359375 2.953125 -3.265625 C 3.03125 -3.15625 3.109375 -3.046875 3.140625 -2.90625 C 3.1875 -2.765625 3.21875 -2.625 3.21875 -2.453125 L 1.015625 -2.453125 C 1.0625 -2.8125 1.1875 -3.078125 1.390625 -3.28125 C 1.578125 -3.484375 1.859375 -3.578125 2.203125 -3.578125 Z M 2.203125 -3.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-14">
<path style="stroke:none;" d="M 3.328125 -3.3125 L 3.515625 -3.578125 C 3.359375 -3.734375 3.15625 -3.875 2.9375 -3.953125 C 2.71875 -4.0625 2.484375 -4.09375 2.203125 -4.09375 C 1.890625 -4.09375 1.625 -4.046875 1.375 -3.9375 C 1.140625 -3.84375 0.953125 -3.703125 0.78125 -3.515625 C 0.625 -3.328125 0.5 -3.109375 0.421875 -2.859375 C 0.328125 -2.59375 0.296875 -2.3125 0.296875 -2.015625 C 0.296875 -1.6875 0.34375 -1.40625 0.4375 -1.140625 C 0.53125 -0.875 0.65625 -0.671875 0.8125 -0.484375 C 0.96875 -0.3125 1.15625 -0.171875 1.375 -0.078125 C 1.59375 0.015625 1.828125 0.0625 2.078125 0.0625 C 2.359375 0.0625 2.640625 0.015625 2.90625 -0.09375 C 3.171875 -0.1875 3.390625 -0.34375 3.5625 -0.5625 L 3.359375 -0.828125 C 3.34375 -0.875 3.296875 -0.890625 3.234375 -0.890625 C 3.1875 -0.890625 3.140625 -0.875 3.09375 -0.828125 C 3.046875 -0.78125 2.984375 -0.75 2.90625 -0.6875 C 2.828125 -0.640625 2.734375 -0.59375 2.625 -0.5625 C 2.515625 -0.515625 2.375 -0.5 2.203125 -0.5 C 2.015625 -0.5 1.859375 -0.53125 1.71875 -0.59375 C 1.5625 -0.65625 1.4375 -0.765625 1.34375 -0.890625 C 1.25 -1.015625 1.15625 -1.171875 1.109375 -1.375 C 1.046875 -1.5625 1.03125 -1.78125 1.03125 -2.015625 C 1.03125 -2.25 1.046875 -2.46875 1.09375 -2.65625 C 1.15625 -2.84375 1.234375 -3 1.328125 -3.140625 C 1.4375 -3.265625 1.5625 -3.375 1.71875 -3.4375 C 1.859375 -3.515625 2.046875 -3.546875 2.234375 -3.546875 C 2.375 -3.546875 2.515625 -3.53125 2.609375 -3.5 C 2.71875 -3.46875 2.796875 -3.421875 2.875 -3.390625 C 2.9375 -3.34375 3 -3.3125 3.046875 -3.28125 C 3.09375 -3.25 3.140625 -3.234375 3.171875 -3.234375 C 3.21875 -3.234375 3.25 -3.234375 3.265625 -3.25 C 3.296875 -3.265625 3.3125 -3.296875 3.328125 -3.3125 Z M 3.328125 -3.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-15">
<path style="stroke:none;" d="M 0.078125 -4.03125 L 1.71875 0 L 2.359375 0 L 4 -4.03125 L 3.453125 -4.03125 C 3.40625 -4.03125 3.359375 -4.03125 3.3125 -4 C 3.28125 -3.96875 3.25 -3.9375 3.234375 -3.890625 L 2.203125 -1.296875 C 2.171875 -1.203125 2.140625 -1.09375 2.109375 -1 C 2.09375 -0.90625 2.0625 -0.8125 2.046875 -0.71875 C 2.03125 -0.8125 2 -0.90625 1.984375 -1 C 1.96875 -1.09375 1.9375 -1.203125 1.890625 -1.296875 L 0.875 -3.890625 C 0.859375 -3.921875 0.828125 -3.96875 0.796875 -4 C 0.75 -4.015625 0.703125 -4.03125 0.65625 -4.03125 Z M 0.078125 -4.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-16">
<path style="stroke:none;" d="M 0.34375 -0.4375 C 0.34375 -0.359375 0.359375 -0.296875 0.390625 -0.234375 C 0.421875 -0.1875 0.453125 -0.125 0.5 -0.078125 C 0.53125 -0.046875 0.59375 0 0.65625 0.03125 C 0.703125 0.046875 0.78125 0.0625 0.84375 0.0625 C 0.90625 0.0625 0.984375 0.046875 1.046875 0.03125 C 1.09375 0 1.15625 -0.046875 1.203125 -0.078125 C 1.25 -0.125 1.28125 -0.1875 1.3125 -0.234375 C 1.328125 -0.296875 1.34375 -0.359375 1.34375 -0.4375 C 1.34375 -0.5 1.328125 -0.578125 1.3125 -0.640625 C 1.28125 -0.6875 1.25 -0.75 1.203125 -0.796875 C 1.15625 -0.84375 1.09375 -0.875 1.046875 -0.90625 C 0.984375 -0.921875 0.90625 -0.9375 0.84375 -0.9375 C 0.78125 -0.9375 0.703125 -0.921875 0.65625 -0.90625 C 0.59375 -0.875 0.53125 -0.84375 0.5 -0.796875 C 0.453125 -0.75 0.421875 -0.6875 0.390625 -0.640625 C 0.359375 -0.578125 0.34375 -0.5 0.34375 -0.4375 Z M 0.34375 -0.4375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-17">
<path style="stroke:none;" d="M 6 -2.859375 C 6 -3.28125 5.921875 -3.671875 5.796875 -4.03125 C 5.65625 -4.390625 5.46875 -4.6875 5.21875 -4.953125 C 4.96875 -5.21875 4.671875 -5.421875 4.328125 -5.5625 C 3.984375 -5.703125 3.59375 -5.78125 3.171875 -5.78125 C 2.765625 -5.78125 2.375 -5.703125 2.03125 -5.5625 C 1.6875 -5.421875 1.390625 -5.21875 1.140625 -4.953125 C 0.890625 -4.6875 0.703125 -4.390625 0.5625 -4.03125 C 0.4375 -3.671875 0.359375 -3.28125 0.359375 -2.859375 C 0.359375 -2.421875 0.4375 -2.03125 0.5625 -1.671875 C 0.703125 -1.3125 0.890625 -1.015625 1.140625 -0.75 C 1.390625 -0.5 1.6875 -0.296875 2.03125 -0.15625 C 2.375 -0.015625 2.765625 0.0625 3.171875 0.0625 C 3.59375 0.0625 3.984375 -0.015625 4.328125 -0.15625 C 4.671875 -0.296875 4.96875 -0.5 5.21875 -0.75 C 5.46875 -1.015625 5.65625 -1.3125 5.796875 -1.671875 C 5.921875 -2.03125 6 -2.421875 6 -2.859375 Z M 5.203125 -2.859375 C 5.203125 -2.5 5.15625 -2.1875 5.0625 -1.90625 C 4.96875 -1.640625 4.828125 -1.40625 4.65625 -1.203125 C 4.484375 -1.015625 4.265625 -0.859375 4.015625 -0.765625 C 3.765625 -0.65625 3.484375 -0.609375 3.171875 -0.609375 C 2.875 -0.609375 2.59375 -0.65625 2.34375 -0.765625 C 2.09375 -0.859375 1.890625 -1.015625 1.703125 -1.203125 C 1.53125 -1.40625 1.390625 -1.640625 1.296875 -1.90625 C 1.203125 -2.1875 1.15625 -2.5 1.15625 -2.859375 C 1.15625 -3.203125 1.203125 -3.515625 1.296875 -3.796875 C 1.390625 -4.078125 1.53125 -4.3125 1.703125 -4.5 C 1.890625 -4.703125 2.09375 -4.84375 2.34375 -4.953125 C 2.59375 -5.046875 2.875 -5.109375 3.171875 -5.109375 C 3.484375 -5.109375 3.765625 -5.046875 4.015625 -4.953125 C 4.265625 -4.84375 4.484375 -4.703125 4.65625 -4.5 C 4.828125 -4.3125 4.96875 -4.078125 5.0625 -3.796875 C 5.15625 -3.515625 5.203125 -3.203125 5.203125 -2.859375 Z M 5.203125 -2.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-18">
<path style="stroke:none;" d="M 1.9375 -4.109375 C 1.71875 -4.109375 1.515625 -4.078125 1.328125 -4.015625 C 1.140625 -3.953125 0.96875 -3.859375 0.84375 -3.75 C 0.703125 -3.640625 0.59375 -3.5 0.53125 -3.34375 C 0.453125 -3.171875 0.40625 -3 0.40625 -2.8125 C 0.40625 -2.5625 0.46875 -2.34375 0.578125 -2.15625 C 0.6875 -1.96875 0.84375 -1.828125 1.046875 -1.71875 C 0.96875 -1.671875 0.890625 -1.625 0.828125 -1.5625 C 0.765625 -1.515625 0.703125 -1.453125 0.65625 -1.390625 C 0.625 -1.328125 0.578125 -1.265625 0.5625 -1.203125 C 0.546875 -1.140625 0.53125 -1.078125 0.53125 -1.03125 C 0.53125 -0.875 0.5625 -0.75 0.640625 -0.671875 C 0.703125 -0.578125 0.796875 -0.5 0.90625 -0.453125 C 0.6875 -0.375 0.515625 -0.265625 0.390625 -0.125 C 0.265625 0.015625 0.203125 0.1875 0.203125 0.390625 C 0.203125 0.53125 0.234375 0.65625 0.3125 0.78125 C 0.375 0.921875 0.484375 1.03125 0.640625 1.125 C 0.78125 1.234375 0.96875 1.3125 1.1875 1.359375 C 1.40625 1.421875 1.671875 1.453125 1.96875 1.453125 C 2.265625 1.453125 2.515625 1.421875 2.75 1.34375 C 3 1.265625 3.1875 1.15625 3.34375 1.03125 C 3.515625 0.90625 3.640625 0.765625 3.71875 0.609375 C 3.8125 0.4375 3.859375 0.28125 3.859375 0.109375 C 3.859375 -0.078125 3.8125 -0.234375 3.734375 -0.34375 C 3.65625 -0.46875 3.5625 -0.5625 3.4375 -0.625 C 3.296875 -0.6875 3.15625 -0.734375 3 -0.765625 C 2.828125 -0.796875 2.671875 -0.828125 2.5 -0.828125 C 2.328125 -0.84375 2.171875 -0.859375 2 -0.859375 C 1.84375 -0.859375 1.703125 -0.875 1.5625 -0.890625 C 1.4375 -0.921875 1.34375 -0.953125 1.265625 -1 C 1.1875 -1.046875 1.140625 -1.125 1.140625 -1.21875 C 1.140625 -1.28125 1.171875 -1.34375 1.21875 -1.40625 C 1.265625 -1.453125 1.328125 -1.515625 1.40625 -1.5625 C 1.578125 -1.53125 1.75 -1.5 1.9375 -1.5 C 2.15625 -1.5 2.359375 -1.53125 2.546875 -1.59375 C 2.734375 -1.65625 2.890625 -1.734375 3.03125 -1.859375 C 3.15625 -1.96875 3.265625 -2.109375 3.34375 -2.265625 C 3.421875 -2.4375 3.453125 -2.609375 3.453125 -2.8125 C 3.453125 -3.015625 3.40625 -3.21875 3.3125 -3.375 L 3.78125 -3.453125 C 3.890625 -3.46875 3.9375 -3.53125 3.9375 -3.609375 L 3.9375 -3.875 L 2.84375 -3.875 C 2.71875 -3.953125 2.578125 -4.015625 2.4375 -4.046875 C 2.28125 -4.078125 2.109375 -4.109375 1.9375 -4.109375 Z M 3.203125 0.21875 C 3.203125 0.328125 3.171875 0.421875 3.109375 0.515625 C 3.0625 0.59375 2.984375 0.671875 2.875 0.734375 C 2.765625 0.796875 2.640625 0.84375 2.484375 0.890625 C 2.34375 0.921875 2.171875 0.9375 1.96875 0.9375 C 1.78125 0.9375 1.609375 0.921875 1.46875 0.890625 C 1.3125 0.859375 1.203125 0.8125 1.109375 0.75 C 1.015625 0.6875 0.9375 0.625 0.890625 0.546875 C 0.84375 0.46875 0.828125 0.390625 0.828125 0.296875 C 0.828125 0.15625 0.875 0.03125 0.96875 -0.078125 C 1.0625 -0.171875 1.171875 -0.265625 1.328125 -0.34375 C 1.46875 -0.3125 1.59375 -0.296875 1.734375 -0.296875 C 1.890625 -0.28125 2.03125 -0.28125 2.15625 -0.265625 C 2.296875 -0.265625 2.4375 -0.25 2.5625 -0.234375 C 2.6875 -0.21875 2.796875 -0.203125 2.890625 -0.171875 C 2.984375 -0.125 3.0625 -0.078125 3.109375 -0.03125 C 3.171875 0.03125 3.203125 0.125 3.203125 0.21875 Z M 1.9375 -1.96875 C 1.796875 -1.96875 1.671875 -2 1.5625 -2.03125 C 1.453125 -2.078125 1.359375 -2.125 1.296875 -2.203125 C 1.21875 -2.265625 1.15625 -2.359375 1.125 -2.453125 C 1.078125 -2.5625 1.0625 -2.671875 1.0625 -2.78125 C 1.0625 -3.03125 1.140625 -3.234375 1.296875 -3.375 C 1.4375 -3.515625 1.65625 -3.59375 1.9375 -3.59375 C 2.234375 -3.59375 2.453125 -3.515625 2.59375 -3.375 C 2.75 -3.234375 2.828125 -3.03125 2.828125 -2.78125 C 2.828125 -2.671875 2.796875 -2.5625 2.765625 -2.453125 C 2.734375 -2.359375 2.671875 -2.265625 2.59375 -2.203125 C 2.515625 -2.125 2.4375 -2.078125 2.3125 -2.03125 C 2.21875 -2 2.078125 -1.96875 1.9375 -1.96875 Z M 1.9375 -1.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-19">
<path style="stroke:none;" d="M 1.375 -5.875 L 0.65625 -5.875 L 0.65625 0 L 1.375 0 Z M 1.375 -5.875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-20">
<path style="stroke:none;" d="M 0.578125 0 L 1.296875 0 L 1.296875 -2.96875 C 1.453125 -3.140625 1.609375 -3.28125 1.796875 -3.375 C 1.96875 -3.484375 2.171875 -3.53125 2.375 -3.53125 C 2.671875 -3.53125 2.890625 -3.453125 3.015625 -3.28125 C 3.15625 -3.109375 3.234375 -2.875 3.234375 -2.5625 L 3.234375 0 L 3.9375 0 L 3.9375 -2.5625 C 3.9375 -2.796875 3.90625 -3.015625 3.859375 -3.203125 C 3.796875 -3.375 3.703125 -3.546875 3.59375 -3.6875 C 3.484375 -3.8125 3.34375 -3.921875 3.171875 -4 C 3 -4.0625 2.8125 -4.09375 2.59375 -4.09375 C 2.3125 -4.09375 2.078125 -4.046875 1.859375 -3.9375 C 1.65625 -3.828125 1.46875 -3.671875 1.296875 -3.5 L 1.296875 -5.875 L 0.578125 -5.875 Z M 0.578125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-21">
<path style="stroke:none;" d="M 0.40625 -2.6875 L 0.40625 -2.09375 L 2.359375 -2.09375 L 2.359375 -2.6875 Z M 0.40625 -2.6875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-22">
<path style="stroke:none;" d="M 1.3125 -5.875 L 0.609375 -5.875 L 0.609375 0 L 1.3125 0 L 1.3125 -1.921875 L 1.515625 -1.921875 C 1.59375 -1.921875 1.65625 -1.921875 1.703125 -1.90625 C 1.734375 -1.890625 1.78125 -1.84375 1.8125 -1.796875 L 3.140625 -0.140625 C 3.171875 -0.09375 3.21875 -0.0625 3.265625 -0.03125 C 3.296875 -0.015625 3.34375 0 3.40625 0 L 4.046875 0 L 2.46875 -2 C 2.4375 -2.046875 2.40625 -2.09375 2.359375 -2.140625 C 2.328125 -2.171875 2.28125 -2.21875 2.234375 -2.25 C 2.28125 -2.265625 2.3125 -2.296875 2.34375 -2.328125 C 2.390625 -2.375 2.421875 -2.40625 2.46875 -2.453125 L 3.953125 -4.03125 L 3.296875 -4.03125 C 3.234375 -4.03125 3.1875 -4.03125 3.140625 -4 C 3.109375 -3.96875 3.0625 -3.9375 3.03125 -3.890625 L 1.75 -2.53125 C 1.703125 -2.484375 1.671875 -2.453125 1.640625 -2.4375 C 1.59375 -2.421875 1.546875 -2.421875 1.5 -2.421875 L 1.3125 -2.421875 Z M 1.3125 -5.875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-23">
<path style="stroke:none;" d="M 3.421875 0 L 3.84375 0 L 3.84375 -5.875 L 3.140625 -5.875 L 3.140625 -3.625 C 3 -3.78125 2.84375 -3.890625 2.671875 -3.984375 C 2.484375 -4.0625 2.28125 -4.109375 2.03125 -4.109375 C 1.75 -4.109375 1.515625 -4.0625 1.296875 -3.9375 C 1.078125 -3.84375 0.90625 -3.6875 0.75 -3.5 C 0.609375 -3.3125 0.484375 -3.09375 0.40625 -2.84375 C 0.328125 -2.578125 0.28125 -2.296875 0.28125 -2 C 0.28125 -1.671875 0.328125 -1.375 0.390625 -1.109375 C 0.46875 -0.859375 0.5625 -0.640625 0.703125 -0.46875 C 0.828125 -0.296875 1 -0.171875 1.1875 -0.078125 C 1.375 0.015625 1.578125 0.0625 1.8125 0.0625 C 2.09375 0.0625 2.359375 -0.015625 2.578125 -0.140625 C 2.796875 -0.265625 3 -0.421875 3.171875 -0.640625 L 3.234375 -0.140625 C 3.265625 -0.046875 3.328125 0 3.421875 0 Z M 2.046875 -0.515625 C 1.890625 -0.515625 1.734375 -0.546875 1.609375 -0.609375 C 1.484375 -0.65625 1.375 -0.75 1.28125 -0.875 C 1.203125 -0.984375 1.125 -1.140625 1.09375 -1.328125 C 1.046875 -1.515625 1.015625 -1.734375 1.015625 -2 C 1.015625 -2.5 1.125 -2.890625 1.328125 -3.15625 C 1.53125 -3.421875 1.8125 -3.546875 2.1875 -3.546875 C 2.375 -3.546875 2.546875 -3.515625 2.703125 -3.453125 C 2.859375 -3.375 3 -3.25 3.140625 -3.078125 L 3.140625 -1.125 C 2.984375 -0.9375 2.828125 -0.78125 2.65625 -0.671875 C 2.484375 -0.5625 2.28125 -0.515625 2.046875 -0.515625 Z M 2.046875 -0.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-24">
<path style="stroke:none;" d="M 0.609375 0 L 1.0625 0 C 1.15625 0 1.234375 -0.046875 1.25 -0.15625 L 1.28125 -0.515625 C 1.421875 -0.34375 1.578125 -0.1875 1.765625 -0.09375 C 1.9375 0 2.15625 0.0625 2.421875 0.0625 C 2.6875 0.0625 2.9375 0 3.15625 -0.109375 C 3.375 -0.21875 3.546875 -0.359375 3.703125 -0.546875 C 3.859375 -0.734375 3.96875 -0.953125 4.046875 -1.21875 C 4.125 -1.46875 4.171875 -1.75 4.171875 -2.046875 C 4.171875 -2.375 4.125 -2.671875 4.0625 -2.9375 C 3.984375 -3.1875 3.890625 -3.40625 3.75 -3.578125 C 3.625 -3.75 3.453125 -3.875 3.265625 -3.96875 C 3.078125 -4.0625 2.875 -4.09375 2.640625 -4.09375 C 2.359375 -4.09375 2.109375 -4.046875 1.890625 -3.921875 C 1.671875 -3.8125 1.484375 -3.65625 1.3125 -3.453125 L 1.3125 -5.875 L 0.609375 -5.875 Z M 2.40625 -3.53125 C 2.5625 -3.53125 2.71875 -3.5 2.84375 -3.453125 C 2.96875 -3.390625 3.078125 -3.3125 3.15625 -3.1875 C 3.25 -3.0625 3.3125 -2.90625 3.359375 -2.71875 C 3.40625 -2.53125 3.4375 -2.3125 3.4375 -2.046875 C 3.4375 -1.546875 3.328125 -1.15625 3.125 -0.890625 C 2.921875 -0.625 2.640625 -0.5 2.265625 -0.5 C 2.078125 -0.5 1.890625 -0.53125 1.75 -0.609375 C 1.578125 -0.671875 1.453125 -0.796875 1.3125 -0.96875 L 1.3125 -2.921875 C 1.46875 -3.125 1.625 -3.265625 1.796875 -3.375 C 1.96875 -3.484375 2.171875 -3.53125 2.40625 -3.53125 Z M 2.40625 -3.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-25">
<path style="stroke:none;" d="M 5.640625 -2.859375 C 5.640625 -3.28125 5.578125 -3.671875 5.4375 -4.015625 C 5.296875 -4.375 5.109375 -4.671875 4.859375 -4.921875 C 4.625 -5.171875 4.328125 -5.359375 3.96875 -5.5 C 3.625 -5.640625 3.25 -5.703125 2.828125 -5.703125 L 0.6875 -5.703125 L 0.6875 0 L 2.828125 0 C 3.25 0 3.625 -0.0625 3.96875 -0.203125 C 4.328125 -0.34375 4.625 -0.53125 4.859375 -0.78125 C 5.109375 -1.03125 5.296875 -1.328125 5.4375 -1.6875 C 5.578125 -2.03125 5.640625 -2.421875 5.640625 -2.859375 Z M 4.84375 -2.859375 C 4.84375 -2.5 4.796875 -2.1875 4.703125 -1.90625 C 4.609375 -1.640625 4.46875 -1.40625 4.296875 -1.21875 C 4.125 -1.03125 3.90625 -0.875 3.65625 -0.78125 C 3.40625 -0.671875 3.140625 -0.625 2.828125 -0.625 L 1.46875 -0.625 L 1.46875 -5.078125 L 2.828125 -5.078125 C 3.140625 -5.078125 3.40625 -5.03125 3.65625 -4.9375 C 3.90625 -4.828125 4.125 -4.6875 4.296875 -4.5 C 4.46875 -4.296875 4.609375 -4.0625 4.703125 -3.796875 C 4.796875 -3.515625 4.84375 -3.203125 4.84375 -2.859375 Z M 4.84375 -2.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-26">
<path style="stroke:none;" d="M 3.40625 -3.734375 L 3.40625 -4.03125 L 0.40625 -4.03125 L 0.40625 -3.484375 L 2.578125 -3.484375 L 0.375 -0.546875 C 0.34375 -0.5 0.328125 -0.46875 0.296875 -0.421875 C 0.28125 -0.375 0.28125 -0.328125 0.28125 -0.296875 L 0.28125 0 L 3.3125 0 L 3.3125 -0.546875 L 1.109375 -0.546875 L 3.296875 -3.46875 C 3.328125 -3.5 3.34375 -3.546875 3.375 -3.59375 C 3.390625 -3.640625 3.40625 -3.6875 3.40625 -3.734375 Z M 3.40625 -3.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-27">
<path style="stroke:none;" d="M 1.203125 -4.03125 L 0.484375 -4.03125 L 0.484375 -1.46875 C 0.484375 -1.234375 0.515625 -1.03125 0.578125 -0.84375 C 0.625 -0.65625 0.71875 -0.484375 0.828125 -0.359375 C 0.9375 -0.21875 1.078125 -0.125 1.25 -0.046875 C 1.421875 0.03125 1.625 0.0625 1.84375 0.0625 C 2.125 0.0625 2.359375 0 2.578125 -0.109375 C 2.8125 -0.234375 3 -0.390625 3.171875 -0.578125 L 3.234375 -0.140625 C 3.265625 -0.046875 3.328125 0 3.421875 0 L 3.84375 0 L 3.84375 -4.03125 L 3.140625 -4.03125 L 3.140625 -1.0625 C 2.984375 -0.890625 2.8125 -0.75 2.625 -0.65625 C 2.453125 -0.546875 2.25 -0.5 2.046875 -0.5 C 1.765625 -0.5 1.546875 -0.578125 1.40625 -0.75 C 1.265625 -0.921875 1.203125 -1.15625 1.203125 -1.46875 Z M 1.203125 -4.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-28">
<path style="stroke:none;" d="M 1.765625 1.1875 L 4.015625 -4.03125 L 3.453125 -4.03125 C 3.40625 -4.03125 3.359375 -4.03125 3.328125 -4 C 3.28125 -3.96875 3.265625 -3.9375 3.25 -3.890625 L 2.203125 -1.34375 C 2.171875 -1.296875 2.15625 -1.234375 2.125 -1.171875 C 2.109375 -1.109375 2.09375 -1.046875 2.078125 -0.984375 C 2.0625 -1.046875 2.046875 -1.109375 2.03125 -1.171875 C 2.015625 -1.234375 2 -1.28125 1.96875 -1.34375 L 0.890625 -3.890625 C 0.875 -3.921875 0.84375 -3.953125 0.8125 -4 C 0.78125 -4.015625 0.734375 -4.03125 0.671875 -4.03125 L 0.0625 -4.03125 L 1.71875 -0.234375 L 0.984375 1.359375 L 1.515625 1.359375 C 1.578125 1.359375 1.640625 1.34375 1.671875 1.3125 C 1.71875 1.28125 1.734375 1.25 1.765625 1.1875 Z M 1.765625 1.1875 "/>
</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 1.21875 -5.453125 C 1.21875 -5.59375 1.21875 -5.734375 1.0625 -5.734375 C 0.90625 -5.734375 0.90625 -5.59375 0.90625 -5.453125 L 0.90625 1.640625 C 0.90625 1.765625 0.90625 1.90625 1.0625 1.90625 C 1.21875 1.90625 1.21875 1.765625 1.21875 1.640625 Z M 1.21875 -5.453125 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="83.525" y="91.838"/>
<use xlink:href="#glyph0-2" x="86.874094" y="91.838"/>
<use xlink:href="#glyph0-3" x="91.968643" y="91.838"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="105.736" y="91.838"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="116.05" y="91.783"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="114.692" y="91.838"/>
<use xlink:href="#glyph0-2" x="120.75746" y="91.838"/>
<use xlink:href="#glyph0-3" x="125.852009" y="91.838"/>
<use xlink:href="#glyph0-7" x="131.917469" y="91.838"/>
<use xlink:href="#glyph0-8" x="135.986563" y="91.838"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="149.405" y="91.838"/>
<use xlink:href="#glyph0-8" x="155.503187" y="91.838"/>
<use xlink:href="#glyph0-10" x="161.219555" y="91.838"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-11" x="174.987" y="91.838"/>
<use xlink:href="#glyph0-12" x="181.161551" y="91.838"/>
<use xlink:href="#glyph0-13" x="183.95428" y="91.838"/>
<use xlink:href="#glyph0-14" x="190.01974" y="91.838"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-15" x="203.296" y="91.838"/>
<use xlink:href="#glyph0-7" x="208.030549" y="91.838"/>
<use xlink:href="#glyph0-6" x="212.099644" y="91.838"/>
<use xlink:href="#glyph0-16" x="218.165103" y="91.838"/>
<use xlink:href="#glyph0-10" x="222.561471" y="91.838"/>
<use xlink:href="#glyph0-17" x="228.62693" y="91.838"/>
<use xlink:href="#glyph0-8" x="231.41966" y="91.838"/>
<use xlink:href="#glyph0-16" x="237.136028" y="91.838"/>
<use xlink:href="#glyph0-8" x="241.532396" y="91.838"/>
<use xlink:href="#glyph0-10" x="247.248764" y="91.838"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="261.015" y="91.838"/>
<use xlink:href="#glyph0-8" x="267.113187" y="91.838"/>
<use xlink:href="#glyph0-10" x="272.829555" y="91.838"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-17" x="286.597" y="91.838"/>
<use xlink:href="#glyph0-2" x="289.38973" y="91.838"/>
<use xlink:href="#glyph0-3" x="294.484279" y="91.838"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-14" x="309.478" y="91.838"/>
<use xlink:href="#glyph0-8" x="315.05255" y="91.838"/>
<use xlink:href="#glyph0-15" x="320.768918" y="91.838"/>
<use xlink:href="#glyph0-7" x="325.503468" y="91.838"/>
<use xlink:href="#glyph0-8" x="329.572562" y="91.838"/>
<use xlink:href="#glyph0-16" x="335.288931" y="91.838"/>
<use xlink:href="#glyph0-10" x="339.685298" y="91.838"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-14" x="354.679" y="91.838"/>
<use xlink:href="#glyph0-8" x="360.25355" y="91.838"/>
<use xlink:href="#glyph0-18" x="365.969919" y="91.838"/>
<use xlink:href="#glyph0-13" x="372.068105" y="91.838"/>
<use xlink:href="#glyph0-2" x="378.133565" y="91.838"/>
<use xlink:href="#glyph0-3" x="383.228115" y="91.838"/>
<use xlink:href="#glyph0-7" x="389.293574" y="91.838"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="401.064" y="91.838"/>
<use xlink:href="#glyph0-19" x="407.12946" y="91.838"/>
<use xlink:href="#glyph0-18" x="412.660373" y="91.838"/>
<use xlink:href="#glyph0-8" x="418.75856" y="91.838"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="89.403" y="108.108"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="108.128" y="108.108"/>
<use xlink:href="#glyph1-3" x="114.996262" y="108.108"/>
<use xlink:href="#glyph1-4" x="119.542227" y="108.108"/>
<use xlink:href="#glyph1-5" x="124.527546" y="108.108"/>
<use xlink:href="#glyph1-6" x="127.872013" y="108.108"/>
<use xlink:href="#glyph1-5" x="130.983354" y="108.108"/>
<use xlink:href="#glyph1-7" x="134.327821" y="108.108"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="151.832" y="108.108"/>
<use xlink:href="#glyph1-8" x="155.176467" y="108.108"/>
<use xlink:href="#glyph1-9" x="160.161786" y="108.108"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-10" x="175.025" y="108.108"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-11" x="180.351" y="108.108"/>
<use xlink:href="#glyph1-12" x="182.646398" y="108.108"/>
<use xlink:href="#glyph1-8" x="187.228229" y="108.108"/>
<use xlink:href="#glyph1-5" x="192.213547" y="108.108"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-13" x="215.856" y="108.108"/>
<use xlink:href="#glyph1-3" x="220.043309" y="108.108"/>
<use xlink:href="#glyph1-4" x="224.589274" y="108.108"/>
<use xlink:href="#glyph1-13" x="229.574592" y="108.108"/>
<use xlink:href="#glyph1-9" x="233.761901" y="108.108"/>
<use xlink:href="#glyph1-14" x="238.460294" y="108.108"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="261.846" y="108.108"/>
<use xlink:href="#glyph1-8" x="265.190467" y="108.108"/>
<use xlink:href="#glyph1-3" x="270.175786" y="108.108"/>
<use xlink:href="#glyph1-5" x="274.72175" y="108.108"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="292.198" y="108.108"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-15" x="308.252" y="108.108"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-9" x="312.726234" y="108.108"/>
<use xlink:href="#glyph1-16" x="317.424627" y="108.108"/>
<use xlink:href="#glyph1-5" x="321.316045" y="108.108"/>
<use xlink:href="#glyph1-9" x="324.660512" y="108.108"/>
<use xlink:href="#glyph1-17" x="329.358906" y="108.108"/>
<use xlink:href="#glyph1-18" x="332.972365" y="108.108"/>
<use xlink:href="#glyph1-3" x="337.984582" y="108.108"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-15" x="342.387085" y="108.108"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-19" x="359.46" y="108.108"/>
<use xlink:href="#glyph1-7" x="364.472218" y="108.108"/>
<use xlink:href="#glyph1-7" x="369.457536" y="108.108"/>
<use xlink:href="#glyph1-20" x="374.442854" y="108.108"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-9" x="378.872256" y="108.108"/>
<use xlink:href="#glyph1-18" x="383.57065" y="108.108"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-8" x="403.49" y="108.108"/>
<use xlink:href="#glyph1-3" x="408.475318" y="108.108"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-21" x="412.877821" y="108.108"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-9" x="417.352054" y="108.108"/>
</g>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 32.98375 -30.367375 L 32.98375 -97.265813 " transform="matrix(1,0,0,-1,90.735,-19.258)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 123.71875 80.597656 L 125.792969 76.453125 L 123.71875 78.007812 L 121.648438 76.453125 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.999375 -99.855656 L 26.597031 -88.523625 C 26.272813 -87.000188 24.749375 -85.765813 23.194688 -85.765813 L 5.850938 -85.765813 C 4.29625 -85.765813 2.772813 -87.000188 2.448594 -88.523625 L 0.581406 -97.324406 " transform="matrix(1,0,0,-1,90.735,-19.258)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 90.78125 80.597656 L 93.667969 76.972656 L 91.316406 78.066406 L 89.613281 76.113281 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.972031 -99.855656 L 39.362656 -66.019719 C 39.690781 -61.359563 43.745469 -57.586125 48.413438 -57.586125 L 126.128281 -57.586125 C 130.79625 -57.586125 134.850938 -61.359563 135.179063 -66.019719 L 137.39 -97.273625 " transform="matrix(1,0,0,-1,90.735,-19.258)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 228.304688 80.597656 L 230.082031 76.320312 L 228.125 78.015625 L 225.945312 76.609375 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 88.5775 -99.855656 L 86.175156 -88.523625 C 85.850938 -87.000188 84.3275 -85.765813 82.772813 -85.765813 L 73.417344 -85.765813 C 71.862656 -85.765813 70.339219 -87.000188 70.015 -88.523625 L 68.147813 -97.324406 " transform="matrix(1,0,0,-1,90.735,-19.258)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 158.347656 80.597656 L 161.234375 76.972656 L 158.882812 78.066406 L 157.179688 76.113281 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(3.529358%,63.920593%,83.529663%);stroke-opacity:1;stroke-miterlimit:10;" d="M 91.565781 -99.855656 L 93.960313 -46.855656 C 94.288438 -39.543156 100.487656 -33.617375 107.804063 -33.617375 L 305.800156 -33.617375 C 313.120469 -33.617375 319.315781 -39.543156 319.647812 -46.855656 L 321.92125 -97.269719 " transform="matrix(1,0,0,-1,90.735,-19.258)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(3.529358%,63.920593%,83.529663%);fill-opacity:1;" d="M 412.773438 80.597656 L 414.65625 76.363281 L 412.65625 78.011719 L 410.515625 76.550781 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="294.939" y="11.461"/>
</g>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 133.585313 -99.855656 L 131.182969 -88.523625 C 130.85875 -87.000188 129.335313 -85.765813 127.780625 -85.765813 L 100.362656 -85.765813 C 98.807969 -85.765813 97.284531 -87.000188 96.960313 -88.523625 L 95.093125 -97.324406 " transform="matrix(1,0,0,-1,90.735,-19.258)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 185.292969 80.597656 L 188.179688 76.972656 L 185.828125 78.066406 L 184.125 76.113281 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="202.334" y="63.61"/>
</g>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(3.529358%,63.920593%,83.529663%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.304062 -99.855656 L 276.909531 -73.336125 C 276.581406 -69.691594 273.350937 -66.738469 269.690781 -66.738469 L 188.835313 -66.738469 C 185.179063 -66.738469 181.944688 -69.691594 181.616563 -73.336125 L 179.456406 -97.277531 " transform="matrix(1,0,0,-1,90.735,-19.258)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(3.529358%,63.920593%,83.529663%);fill-opacity:1;" d="M 269.957031 80.597656 L 272.394531 76.65625 L 270.191406 78.019531 L 268.265625 76.285156 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="317.54" y="44.581"/>
</g>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.315781 -99.855656 L 273.913437 -88.523625 C 273.589219 -87.000188 272.065781 -85.765813 270.507187 -85.765813 L 242.690781 -85.765813 C 241.132188 -85.765813 239.60875 -87.000188 239.284531 -88.523625 L 237.42125 -97.324406 " transform="matrix(1,0,0,-1,90.735,-19.258)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 327.617188 80.597656 L 330.503906 76.972656 L 328.15625 78.066406 L 326.449219 76.113281 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.054062 -99.855656 L 315.659531 -66.019719 C 315.331406 -61.359563 311.280625 -57.586125 306.60875 -57.586125 L 214.284531 -57.586125 C 209.616563 -57.586125 205.561875 -61.359563 205.23375 -66.019719 L 203.022813 -97.273625 " transform="matrix(1,0,0,-1,90.735,-19.258)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 293.578125 80.597656 L 295.933594 76.609375 L 293.757812 78.015625 L 291.800781 76.320312 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 315.065781 -99.855656 L 312.659531 -88.523625 C 312.339219 -87.000188 310.815781 -85.765813 309.257187 -85.765813 L 289.097031 -85.765813 C 287.538437 -85.765813 286.015 -87.000188 285.694687 -88.523625 L 283.8275 -97.324406 " transform="matrix(1,0,0,-1,90.735,-19.258)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 374.023438 80.597656 L 376.914062 76.972656 L 374.5625 78.066406 L 372.855469 76.113281 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="387.507" y="63.61"/>
</g>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 336.468125 -105.8205 C 362.839219 -151.492375 362.839219 -195.379094 336.823594 -240.437688 " transform="matrix(1,0,0,-1,90.735,-19.258)"/>
<path style="fill:none;stroke-width:0.6376;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -1.55501 2.073297 C -1.424526 1.294334 -0.000814476 0.128925 0.389052 -0.00119941 C 0.000822228 -0.130915 -1.426063 -1.296423 -1.553994 -2.071704 " transform="matrix(-0.50157,0.86877,0.86877,0.50157,427.55946,221.17823)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="451.01" y="127.985"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="455.074751" y="127.985"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="458.135269" y="127.985"/>
<use xlink:href="#glyph3-4" x="462.17611" y="127.985"/>
<use xlink:href="#glyph3-5" x="466.607486" y="127.985"/>
<use xlink:href="#glyph3-6" x="470.066509" y="127.985"/>
<use xlink:href="#glyph3-7" x="472.752433" y="127.985"/>
<use xlink:href="#glyph3-2" x="477.183808" y="127.985"/>
<use xlink:href="#glyph3-8" x="480.395759" y="127.985"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-9" x="489.593254" y="127.985"/>
<use xlink:href="#glyph3-4" x="491.6336" y="127.985"/>
<use xlink:href="#glyph3-10" x="496.064975" y="127.985"/>
<use xlink:href="#glyph3-7" x="499.037823" y="127.985"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-11" x="451.01" y="137.45"/>
<use xlink:href="#glyph3-2" x="455.409495" y="137.45"/>
<use xlink:href="#glyph3-7" x="458.621445" y="137.45"/>
<use xlink:href="#glyph3-12" x="463.052821" y="137.45"/>
<use xlink:href="#glyph3-13" x="465.077226" y="137.45"/>
<use xlink:href="#glyph3-14" x="469.253559" y="137.45"/>
<use xlink:href="#glyph3-10" x="472.975596" y="137.45"/>
<use xlink:href="#glyph3-9" x="475.948443" y="137.45"/>
<use xlink:href="#glyph3-15" x="477.988788" y="137.45"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-13" x="481.965868" y="137.45"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-10" x="488.796244" y="137.45"/>
<use xlink:href="#glyph3-2" x="491.769091" y="137.45"/>
<use xlink:href="#glyph3-13" x="494.981042" y="137.45"/>
<use xlink:href="#glyph3-13" x="499.157374" y="137.45"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-10" x="505.99572" y="137.45"/>
<use xlink:href="#glyph3-7" x="508.968567" y="137.45"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-10" x="451.01" y="146.914"/>
<use xlink:href="#glyph3-2" x="453.982847" y="146.914"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="457.043366" y="146.914"/>
<use xlink:href="#glyph3-9" x="461.084206" y="146.914"/>
<use xlink:href="#glyph3-4" x="463.124552" y="146.914"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-11" x="470.209971" y="146.914"/>
<use xlink:href="#glyph3-3" x="474.609466" y="146.914"/>
<use xlink:href="#glyph3-2" x="478.650307" y="146.914"/>
<use xlink:href="#glyph3-5" x="481.862257" y="146.914"/>
<use xlink:href="#glyph3-13" x="485.321281" y="146.914"/>
<use xlink:href="#glyph3-2" x="489.497613" y="146.914"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-16" x="492.183537" y="146.914"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-17" x="451.01" y="156.379"/>
<use xlink:href="#glyph3-2" x="457.37014" y="156.379"/>
<use xlink:href="#glyph3-9" x="460.58209" y="156.379"/>
<use xlink:href="#glyph3-18" x="462.622436" y="156.379"/>
<use xlink:href="#glyph3-9" x="466.695157" y="156.379"/>
<use xlink:href="#glyph3-4" x="468.735502" y="156.379"/>
<use xlink:href="#glyph3-3" x="473.166878" y="156.379"/>
<use xlink:href="#glyph3-19" x="477.207719" y="156.379"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="481.902108" y="156.379"/>
<use xlink:href="#glyph3-10" x="485.942948" y="156.379"/>
<use xlink:href="#glyph3-10" x="488.915796" y="156.379"/>
<use xlink:href="#glyph3-3" x="491.888643" y="156.379"/>
<use xlink:href="#glyph3-14" x="495.929484" y="156.379"/>
<use xlink:href="#glyph3-20" x="499.65152" y="156.379"/>
<use xlink:href="#glyph3-21" x="504.082896" y="156.379"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-8" x="451.01" y="165.843"/>
<use xlink:href="#glyph3-13" x="457.553452" y="165.843"/>
<use xlink:href="#glyph3-4" x="461.729785" y="165.843"/>
<use xlink:href="#glyph3-10" x="466.16116" y="165.843"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-5" x="471.788051" y="165.843"/>
<use xlink:href="#glyph3-9" x="475.247074" y="165.843"/>
<use xlink:href="#glyph3-10" x="477.28742" y="165.843"/>
<use xlink:href="#glyph3-13" x="480.260267" y="165.843"/>
<use xlink:href="#glyph3-5" x="484.436599" y="165.843"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="490.557636" y="165.843"/>
<use xlink:href="#glyph3-2" x="494.598477" y="165.843"/>
<use xlink:href="#glyph3-13" x="497.810427" y="165.843"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-8" x="451.01" y="175.308"/>
<use xlink:href="#glyph3-3" x="457.553452" y="175.308"/>
<use xlink:href="#glyph3-2" x="461.594293" y="175.308"/>
<use xlink:href="#glyph3-22" x="464.806243" y="175.308"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-13" x="468.743473" y="175.308"/>
<use xlink:href="#glyph3-23" x="472.919805" y="175.308"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-7" x="480.029134" y="175.308"/>
<use xlink:href="#glyph3-4" x="484.46051" y="175.308"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-10" x="491.553899" y="175.308"/>
<use xlink:href="#glyph3-20" x="494.526746" y="175.308"/>
<use xlink:href="#glyph3-13" x="498.958122" y="175.308"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-13" x="451.01" y="184.772"/>
<use xlink:href="#glyph3-23" x="455.186332" y="184.772"/>
<use xlink:href="#glyph3-18" x="459.641618" y="184.772"/>
<use xlink:href="#glyph3-13" x="463.714339" y="184.772"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-19" x="470.544715" y="184.772"/>
<use xlink:href="#glyph3-3" x="472.585061" y="184.772"/>
<use xlink:href="#glyph3-24" x="476.625901" y="184.772"/>
<use xlink:href="#glyph3-13" x="481.081187" y="184.772"/>
<use xlink:href="#glyph3-19" x="485.25752" y="184.772"/>
<use xlink:href="#glyph3-16" x="487.297865" y="184.772"/>
</g>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -10.289687 -106.433781 C -36.301406 -151.492375 -36.301406 -195.379094 -9.934219 -241.050969 " transform="matrix(1,0,0,-1,90.735,-19.258)"/>
<path style="fill:none;stroke-width:0.6376;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -1.554457 2.070069 C -1.425919 1.294477 0.00116414 0.131016 0.387658 -0.00105583 C -0.000571425 -0.130772 -1.424085 -1.294332 -1.555387 -2.07156 " transform="matrix(0.50157,-0.86877,-0.86877,-0.50157,80.44527,87.1761)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-25" x="3.088" y="132.718"/>
<use xlink:href="#glyph3-13" x="9.089485" y="132.718"/>
<use xlink:href="#glyph3-21" x="13.265818" y="132.718"/>
<use xlink:href="#glyph3-11" x="16.031442" y="132.718"/>
<use xlink:href="#glyph3-2" x="20.430938" y="132.718"/>
<use xlink:href="#glyph3-7" x="23.642888" y="132.718"/>
<use xlink:href="#glyph3-12" x="28.074263" y="132.718"/>
<use xlink:href="#glyph3-13" x="30.098669" y="132.718"/>
<use xlink:href="#glyph3-14" x="34.275001" y="132.718"/>
<use xlink:href="#glyph3-10" x="37.997038" y="132.718"/>
<use xlink:href="#glyph3-9" x="40.969885" y="132.718"/>
<use xlink:href="#glyph3-15" x="43.010231" y="132.718"/>
<use xlink:href="#glyph3-9" x="47.090922" y="132.718"/>
<use xlink:href="#glyph3-26" x="49.131268" y="132.718"/>
<use xlink:href="#glyph3-13" x="52.813454" y="132.718"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-11" x="8.194" y="142.182"/>
<use xlink:href="#glyph3-3" x="12.593495" y="142.182"/>
<use xlink:href="#glyph3-2" x="16.634336" y="142.182"/>
<use xlink:href="#glyph3-5" x="19.846286" y="142.182"/>
<use xlink:href="#glyph3-13" x="23.30531" y="142.182"/>
<use xlink:href="#glyph3-2" x="27.481642" y="142.182"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-7" x="33.347636" y="142.182"/>
<use xlink:href="#glyph3-27" x="37.779011" y="142.182"/>
<use xlink:href="#glyph3-10" x="42.210387" y="142.182"/>
<use xlink:href="#glyph3-11" x="45.183234" y="142.182"/>
<use xlink:href="#glyph3-27" x="49.582729" y="142.182"/>
<use xlink:href="#glyph3-10" x="54.014105" y="142.182"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-24" x="13.176" y="151.647"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-28" x="17.527675" y="151.647"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="24.262409" y="151.647"/>
<use xlink:href="#glyph3-10" x="28.30325" y="151.647"/>
<use xlink:href="#glyph3-10" x="31.276097" y="151.647"/>
<use xlink:href="#glyph3-3" x="34.248944" y="151.647"/>
<use xlink:href="#glyph3-14" x="38.289785" y="151.647"/>
<use xlink:href="#glyph3-20" x="42.011822" y="151.647"/>
<use xlink:href="#glyph3-9" x="46.443197" y="151.647"/>
<use xlink:href="#glyph3-4" x="48.483543" y="151.647"/>
<use xlink:href="#glyph3-18" x="52.914919" y="151.647"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-23" x="4.409" y="161.111"/>
<use xlink:href="#glyph3-13" x="8.864286" y="161.111"/>
<use xlink:href="#glyph3-14" x="13.040618" y="161.111"/>
<use xlink:href="#glyph3-7" x="16.762655" y="161.111"/>
<use xlink:href="#glyph3-2" x="21.194031" y="161.111"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="24.254549" y="161.111"/>
<use xlink:href="#glyph3-10" x="28.29539" y="161.111"/>
<use xlink:href="#glyph3-13" x="31.268237" y="161.111"/>
<use xlink:href="#glyph3-23" x="35.444569" y="161.111"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="42.553899" y="161.111"/>
<use xlink:href="#glyph3-2" x="46.594739" y="161.111"/>
<use xlink:href="#glyph3-14" x="49.80669" y="161.111"/>
<use xlink:href="#glyph3-5" x="53.528726" y="161.111"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-10" x="11.38" y="170.576"/>
<use xlink:href="#glyph3-7" x="14.352847" y="170.576"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-10" x="21.438266" y="170.576"/>
<use xlink:href="#glyph3-20" x="24.411113" y="170.576"/>
<use xlink:href="#glyph3-13" x="28.842489" y="170.576"/>
<use xlink:href="#glyph3-9" x="33.018821" y="170.576"/>
<use xlink:href="#glyph3-2" x="35.059167" y="170.576"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-4" x="40.933131" y="170.576"/>
<use xlink:href="#glyph3-7" x="45.364506" y="170.576"/>
<use xlink:href="#glyph3-4" x="49.795882" y="170.576"/>
<use xlink:href="#glyph3-21" x="54.227258" y="170.576"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-11" x="0.408" y="180.04"/>
<use xlink:href="#glyph3-2" x="4.807495" y="180.04"/>
<use xlink:href="#glyph3-7" x="8.019445" y="180.04"/>
<use xlink:href="#glyph3-12" x="12.450821" y="180.04"/>
<use xlink:href="#glyph3-13" x="14.475226" y="180.04"/>
<use xlink:href="#glyph3-14" x="18.651559" y="180.04"/>
<use xlink:href="#glyph3-10" x="22.373596" y="180.04"/>
<use xlink:href="#glyph3-9" x="25.346443" y="180.04"/>
<use xlink:href="#glyph3-15" x="27.386788" y="180.04"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-13" x="31.363868" y="180.04"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-20" x="38.194244" y="180.04"/>
<use xlink:href="#glyph3-13" x="42.62562" y="180.04"/>
<use xlink:href="#glyph3-3" x="46.801952" y="180.04"/>
<use xlink:href="#glyph3-23" x="50.842793" y="180.04"/>
<use xlink:href="#glyph3-16" x="55.298079" y="180.04"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="83.525" y="231.314"/>
<use xlink:href="#glyph0-2" x="86.874094" y="231.314"/>
<use xlink:href="#glyph0-3" x="91.968643" y="231.314"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="105.736" y="231.314"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="116.05" y="231.26"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="114.692" y="231.314"/>
<use xlink:href="#glyph0-2" x="120.75746" y="231.314"/>
<use xlink:href="#glyph0-3" x="125.852009" y="231.314"/>
<use xlink:href="#glyph0-7" x="131.917469" y="231.314"/>
<use xlink:href="#glyph0-8" x="135.986563" y="231.314"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="149.405" y="231.314"/>
<use xlink:href="#glyph0-8" x="155.503187" y="231.314"/>
<use xlink:href="#glyph0-10" x="161.219555" y="231.314"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-11" x="174.987" y="231.314"/>
<use xlink:href="#glyph0-12" x="181.161551" y="231.314"/>
<use xlink:href="#glyph0-13" x="183.95428" y="231.314"/>
<use xlink:href="#glyph0-14" x="190.01974" y="231.314"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-15" x="203.296" y="231.314"/>
<use xlink:href="#glyph0-7" x="208.030549" y="231.314"/>
<use xlink:href="#glyph0-6" x="212.099644" y="231.314"/>
<use xlink:href="#glyph0-16" x="218.165103" y="231.314"/>
<use xlink:href="#glyph0-10" x="222.561471" y="231.314"/>
<use xlink:href="#glyph0-17" x="228.62693" y="231.314"/>
<use xlink:href="#glyph0-8" x="231.41966" y="231.314"/>
<use xlink:href="#glyph0-16" x="237.136028" y="231.314"/>
<use xlink:href="#glyph0-8" x="241.532396" y="231.314"/>
<use xlink:href="#glyph0-10" x="247.248764" y="231.314"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="261.015" y="231.314"/>
<use xlink:href="#glyph0-8" x="267.113187" y="231.314"/>
<use xlink:href="#glyph0-10" x="272.829555" y="231.314"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-17" x="286.597" y="231.314"/>
<use xlink:href="#glyph0-2" x="289.38973" y="231.314"/>
<use xlink:href="#glyph0-3" x="294.484279" y="231.314"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-14" x="309.478" y="231.314"/>
<use xlink:href="#glyph0-8" x="315.05255" y="231.314"/>
<use xlink:href="#glyph0-15" x="320.768918" y="231.314"/>
<use xlink:href="#glyph0-7" x="325.503468" y="231.314"/>
<use xlink:href="#glyph0-8" x="329.572562" y="231.314"/>
<use xlink:href="#glyph0-16" x="335.288931" y="231.314"/>
<use xlink:href="#glyph0-10" x="339.685298" y="231.314"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-14" x="354.679" y="231.314"/>
<use xlink:href="#glyph0-8" x="360.25355" y="231.314"/>
<use xlink:href="#glyph0-18" x="365.969919" y="231.314"/>
<use xlink:href="#glyph0-13" x="372.068105" y="231.314"/>
<use xlink:href="#glyph0-2" x="378.133565" y="231.314"/>
<use xlink:href="#glyph0-3" x="383.228115" y="231.314"/>
<use xlink:href="#glyph0-7" x="389.293574" y="231.314"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="401.064" y="231.314"/>
<use xlink:href="#glyph0-19" x="407.12946" y="231.314"/>
<use xlink:href="#glyph0-18" x="412.660373" y="231.314"/>
<use xlink:href="#glyph0-8" x="418.75856" y="231.314"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="89.403" y="247.585"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="108.127" y="247.585"/>
<use xlink:href="#glyph1-3" x="114.995262" y="247.585"/>
<use xlink:href="#glyph1-4" x="119.541227" y="247.585"/>
<use xlink:href="#glyph1-5" x="124.526546" y="247.585"/>
<use xlink:href="#glyph1-6" x="127.871013" y="247.585"/>
<use xlink:href="#glyph1-5" x="130.982354" y="247.585"/>
<use xlink:href="#glyph1-7" x="134.326821" y="247.585"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="151.831" y="247.585"/>
<use xlink:href="#glyph1-8" x="155.175467" y="247.585"/>
<use xlink:href="#glyph1-9" x="160.160786" y="247.585"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-10" x="175.024" y="247.585"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-11" x="180.35" y="247.585"/>
<use xlink:href="#glyph1-12" x="182.645398" y="247.585"/>
<use xlink:href="#glyph1-8" x="187.227229" y="247.585"/>
<use xlink:href="#glyph1-5" x="192.212547" y="247.585"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-13" x="215.855" y="247.585"/>
<use xlink:href="#glyph1-3" x="220.042309" y="247.585"/>
<use xlink:href="#glyph1-4" x="224.588274" y="247.585"/>
<use xlink:href="#glyph1-13" x="229.573592" y="247.585"/>
<use xlink:href="#glyph1-9" x="233.760901" y="247.585"/>
<use xlink:href="#glyph1-14" x="238.459294" y="247.585"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="261.845" y="247.585"/>
<use xlink:href="#glyph1-8" x="265.189467" y="247.585"/>
<use xlink:href="#glyph1-3" x="270.174786" y="247.585"/>
<use xlink:href="#glyph1-5" x="274.72075" y="247.585"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="292.197" y="247.585"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-15" x="308.251" y="247.585"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-9" x="312.725234" y="247.585"/>
<use xlink:href="#glyph1-16" x="317.423627" y="247.585"/>
<use xlink:href="#glyph1-5" x="321.315045" y="247.585"/>
<use xlink:href="#glyph1-9" x="324.659512" y="247.585"/>
<use xlink:href="#glyph1-17" x="329.357906" y="247.585"/>
<use xlink:href="#glyph1-18" x="332.971365" y="247.585"/>
<use xlink:href="#glyph1-3" x="337.983582" y="247.585"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-15" x="342.386085" y="247.585"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-19" x="359.459" y="247.585"/>
<use xlink:href="#glyph1-7" x="364.471218" y="247.585"/>
<use xlink:href="#glyph1-7" x="369.456536" y="247.585"/>
<use xlink:href="#glyph1-20" x="374.441854" y="247.585"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-9" x="378.871256" y="247.585"/>
<use xlink:href="#glyph1-18" x="383.56965" y="247.585"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-8" x="403.489" y="247.585"/>
<use xlink:href="#glyph1-3" x="408.474318" y="247.585"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-21" x="412.876821" y="247.585"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-9" x="417.351054" y="247.585"/>
</g>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 32.98375 -156.294938 L 32.98375 -223.197281 " transform="matrix(1,0,0,-1,90.735,-5.709)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 123.71875 220.078125 L 125.792969 215.933594 L 123.71875 217.488281 L 121.648438 215.933594 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.999375 -225.787125 L 26.597031 -214.455094 C 26.272813 -212.931656 24.749375 -211.697281 23.194688 -211.697281 L 5.850938 -211.697281 C 4.29625 -211.697281 2.772813 -212.931656 2.448594 -214.455094 L 0.581406 -223.251969 " transform="matrix(1,0,0,-1,90.735,-5.709)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 90.78125 220.078125 L 93.667969 216.453125 L 91.316406 217.542969 L 89.613281 215.589844 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.972031 -225.787125 L 39.362656 -191.947281 C 39.690781 -187.291031 43.745469 -183.513688 48.413438 -183.513688 L 126.128281 -183.513688 C 130.79625 -183.513688 134.850938 -187.291031 135.179063 -191.947281 L 137.39 -223.201188 " transform="matrix(1,0,0,-1,90.735,-5.709)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 228.304688 220.078125 L 230.082031 215.796875 L 228.125 217.492188 L 225.945312 216.089844 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 88.5775 -225.787125 L 86.175156 -214.455094 C 85.850938 -212.931656 84.3275 -211.697281 82.772813 -211.697281 L 73.417344 -211.697281 C 71.862656 -211.697281 70.339219 -212.931656 70.015 -214.455094 L 68.147813 -223.251969 " transform="matrix(1,0,0,-1,90.735,-5.709)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 158.347656 220.078125 L 161.234375 216.453125 L 158.882812 217.542969 L 157.179688 215.589844 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(3.529358%,63.920593%,83.529663%);stroke-opacity:1;stroke-miterlimit:10;" d="M 141.557969 -225.787125 L 143.948594 -170.576188 C 144.276719 -162.959 150.722031 -156.787125 158.347031 -156.787125 L 305.249375 -156.787125 C 312.870469 -156.787125 319.315781 -162.959 319.647812 -170.576188 L 321.925156 -223.197281 " transform="matrix(1,0,0,-1,90.735,-5.709)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(3.529358%,63.920593%,83.529663%);fill-opacity:1;" d="M 412.773438 220.078125 L 414.664062 215.847656 L 412.660156 217.488281 L 410.523438 216.027344 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="316.402" y="148.178"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="321.5946" y="148.178"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="323.7163" y="148.178"/>
</g>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 133.585313 -225.787125 L 131.182969 -214.455094 C 130.85875 -212.931656 129.335313 -211.697281 127.780625 -211.697281 L 100.362656 -211.697281 C 98.807969 -211.697281 97.284531 -212.931656 96.960313 -214.455094 L 95.093125 -223.251969 " transform="matrix(1,0,0,-1,90.735,-5.709)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 185.292969 220.078125 L 188.179688 216.453125 L 185.828125 217.542969 L 184.125 215.589844 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="202.334" y="203.086"/>
</g>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(3.529358%,63.920593%,83.529663%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.054062 -225.787125 L 315.663437 -190.443375 C 315.331406 -185.572281 311.112656 -181.626969 306.23375 -181.626969 L 191.042344 -181.626969 C 186.167344 -181.626969 181.944688 -185.572281 181.616563 -190.443375 L 179.397813 -223.201188 " transform="matrix(1,0,0,-1,90.735,-5.709)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(3.529358%,63.920593%,83.529663%);fill-opacity:1;" d="M 269.957031 220.078125 L 272.304688 216.082031 L 270.132812 217.492188 L 268.167969 215.800781 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="333.453" y="173.017"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="338.3628" y="173.017"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="340.4838" y="173.017"/>
</g>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.315781 -225.787125 L 273.913437 -214.455094 C 273.589219 -212.931656 272.065781 -211.697281 270.507187 -211.697281 L 242.690781 -211.697281 C 241.132188 -211.697281 239.60875 -212.931656 239.284531 -214.455094 L 237.42125 -223.251969 " transform="matrix(1,0,0,-1,90.735,-5.709)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 327.617188 220.078125 L 330.503906 216.453125 L 328.15625 217.542969 L 326.449219 215.589844 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 315.065781 -225.787125 L 312.67125 -199.263688 C 312.343125 -195.619156 309.10875 -192.666031 305.4525 -192.666031 L 212.4525 -192.666031 C 208.79625 -192.666031 205.561875 -195.619156 205.23375 -199.263688 L 203.073594 -223.205094 " transform="matrix(1,0,0,-1,90.735,-5.709)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 293.578125 220.078125 L 296.011719 216.136719 L 293.808594 217.496094 L 291.886719 215.765625 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 312.0775 -225.787125 L 309.67125 -214.455094 C 309.350937 -212.931656 307.8275 -211.697281 306.268906 -211.697281 L 289.097031 -211.697281 C 287.538437 -211.697281 286.015 -212.931656 285.694687 -214.455094 L 283.8275 -223.251969 " transform="matrix(1,0,0,-1,90.735,-5.709)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 374.023438 220.078125 L 376.914062 216.453125 L 374.5625 217.542969 L 372.855469 215.589844 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="386.012" y="203.086"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 140 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

View File

@ -0,0 +1,319 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="304pt" height="74pt" viewBox="0 0 304 74" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 1.359375 -6.21875 L 1.625 -5.8125 C 1.65625 -5.71875 1.734375 -5.6875 1.828125 -5.6875 C 1.859375 -5.6875 1.90625 -5.703125 1.953125 -5.734375 C 2 -5.765625 2.078125 -5.8125 2.140625 -5.84375 C 2.21875 -5.890625 2.296875 -5.921875 2.40625 -5.953125 C 2.515625 -5.984375 2.640625 -6 2.78125 -6 C 2.984375 -6 3.15625 -5.953125 3.296875 -5.84375 C 3.421875 -5.734375 3.484375 -5.578125 3.484375 -5.40625 C 3.484375 -5.25 3.46875 -5.125 3.40625 -5.015625 C 3.34375 -4.921875 3.265625 -4.828125 3.1875 -4.734375 C 3.09375 -4.65625 3 -4.578125 2.90625 -4.5 C 2.796875 -4.4375 2.71875 -4.359375 2.625 -4.28125 C 2.546875 -4.203125 2.484375 -4.109375 2.4375 -4.03125 C 2.390625 -3.921875 2.375 -3.828125 2.390625 -3.703125 L 2.453125 -3.0625 L 3.125 -3.0625 L 3.21875 -3.625 C 3.234375 -3.71875 3.265625 -3.796875 3.328125 -3.859375 C 3.390625 -3.921875 3.46875 -3.984375 3.5625 -4.0625 C 3.640625 -4.140625 3.734375 -4.203125 3.828125 -4.28125 C 3.9375 -4.359375 4.03125 -4.453125 4.09375 -4.5625 C 4.1875 -4.671875 4.25 -4.796875 4.3125 -4.9375 C 4.359375 -5.09375 4.390625 -5.25 4.390625 -5.453125 C 4.390625 -5.65625 4.359375 -5.84375 4.28125 -6.015625 C 4.203125 -6.171875 4.09375 -6.3125 3.96875 -6.4375 C 3.828125 -6.546875 3.671875 -6.640625 3.484375 -6.703125 C 3.296875 -6.765625 3.09375 -6.796875 2.859375 -6.796875 C 2.6875 -6.796875 2.546875 -6.78125 2.40625 -6.75 C 2.25 -6.71875 2.125 -6.6875 2 -6.625 C 1.875 -6.578125 1.75 -6.515625 1.65625 -6.453125 C 1.546875 -6.375 1.453125 -6.296875 1.359375 -6.21875 Z M 2.15625 -1.59375 C 2.15625 -1.421875 2.21875 -1.28125 2.328125 -1.171875 C 2.4375 -1.046875 2.578125 -1 2.765625 -1 C 2.84375 -1 2.921875 -1.015625 2.984375 -1.03125 C 3.0625 -1.0625 3.125 -1.109375 3.171875 -1.171875 C 3.234375 -1.21875 3.265625 -1.28125 3.296875 -1.359375 C 3.328125 -1.421875 3.34375 -1.515625 3.34375 -1.59375 C 3.34375 -1.671875 3.328125 -1.75 3.296875 -1.828125 C 3.265625 -1.90625 3.234375 -1.96875 3.171875 -2.015625 C 3.125 -2.078125 3.0625 -2.125 2.984375 -2.15625 C 2.921875 -2.1875 2.84375 -2.203125 2.765625 -2.203125 C 2.578125 -2.203125 2.4375 -2.140625 2.328125 -2.015625 C 2.21875 -1.90625 2.15625 -1.765625 2.15625 -1.59375 Z M 0.25 -7.8125 L 0.25 0 L 5.5625 0 L 5.5625 -7.8125 Z M 0.515625 -0.296875 L 0.515625 -7.515625 L 5.25 -7.515625 L 5.25 -0.296875 Z M 0.515625 -0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 6.265625 -7.8125 L 0.15625 -7.8125 L 0.15625 -6.921875 L 2.6875 -6.921875 L 2.6875 0 L 3.75 0 L 3.75 -6.921875 L 6.265625 -6.921875 Z M 6.265625 -7.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 0.796875 0 L 1.765625 0 L 1.765625 -4.0625 C 1.984375 -4.296875 2.203125 -4.5 2.453125 -4.625 C 2.703125 -4.765625 2.96875 -4.84375 3.265625 -4.84375 C 3.65625 -4.84375 3.953125 -4.71875 4.140625 -4.5 C 4.328125 -4.265625 4.421875 -3.9375 4.421875 -3.515625 L 4.421875 0 L 5.390625 0 L 5.390625 -3.515625 C 5.390625 -3.828125 5.359375 -4.109375 5.265625 -4.375 C 5.1875 -4.625 5.078125 -4.859375 4.921875 -5.03125 C 4.765625 -5.21875 4.578125 -5.359375 4.34375 -5.46875 C 4.109375 -5.5625 3.84375 -5.609375 3.546875 -5.609375 C 3.171875 -5.609375 2.84375 -5.53125 2.546875 -5.390625 C 2.265625 -5.234375 2 -5.03125 1.765625 -4.78125 L 1.765625 -8.03125 L 0.796875 -8.03125 Z M 0.796875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 2.984375 -5.609375 C 2.578125 -5.609375 2.21875 -5.546875 1.90625 -5.40625 C 1.578125 -5.265625 1.3125 -5.078125 1.09375 -4.828125 C 0.859375 -4.578125 0.703125 -4.28125 0.578125 -3.953125 C 0.46875 -3.625 0.40625 -3.265625 0.40625 -2.875 C 0.40625 -2.40625 0.46875 -1.96875 0.59375 -1.609375 C 0.734375 -1.25 0.921875 -0.9375 1.140625 -0.6875 C 1.390625 -0.4375 1.65625 -0.25 1.984375 -0.125 C 2.296875 0.015625 2.65625 0.078125 3.03125 0.078125 C 3.234375 0.078125 3.4375 0.0625 3.640625 0.015625 C 3.84375 -0.015625 4.046875 -0.0625 4.234375 -0.125 C 4.421875 -0.203125 4.609375 -0.28125 4.765625 -0.390625 C 4.9375 -0.5 5.078125 -0.625 5.203125 -0.78125 L 4.921875 -1.125 C 4.890625 -1.1875 4.828125 -1.21875 4.75 -1.21875 C 4.6875 -1.21875 4.609375 -1.1875 4.53125 -1.140625 C 4.4375 -1.078125 4.328125 -1.015625 4.203125 -0.953125 C 4.078125 -0.890625 3.921875 -0.828125 3.75 -0.78125 C 3.578125 -0.71875 3.359375 -0.6875 3.125 -0.6875 C 2.859375 -0.6875 2.625 -0.734375 2.40625 -0.8125 C 2.203125 -0.90625 2.015625 -1.03125 1.859375 -1.203125 C 1.71875 -1.375 1.59375 -1.59375 1.5 -1.84375 C 1.421875 -2.109375 1.375 -2.40625 1.359375 -2.765625 L 5.03125 -2.765625 C 5.125 -2.765625 5.1875 -2.78125 5.21875 -2.828125 C 5.25 -2.890625 5.265625 -2.984375 5.265625 -3.140625 C 5.265625 -3.53125 5.21875 -3.875 5.109375 -4.1875 C 4.984375 -4.5 4.828125 -4.75 4.625 -4.96875 C 4.421875 -5.171875 4.171875 -5.328125 3.90625 -5.4375 C 3.625 -5.5625 3.3125 -5.609375 2.984375 -5.609375 Z M 3 -4.890625 C 3.234375 -4.890625 3.421875 -4.859375 3.59375 -4.78125 C 3.765625 -4.71875 3.921875 -4.609375 4.03125 -4.46875 C 4.15625 -4.328125 4.25 -4.171875 4.3125 -3.984375 C 4.375 -3.796875 4.40625 -3.59375 4.40625 -3.359375 L 1.390625 -3.359375 C 1.46875 -3.84375 1.625 -4.21875 1.890625 -4.5 C 2.171875 -4.765625 2.53125 -4.890625 3 -4.890625 Z M 3 -4.890625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 0.078125 -5.53125 L 1.859375 0 L 2.59375 0 C 2.703125 0 2.78125 -0.0625 2.8125 -0.1875 L 4.0625 -3.921875 C 4.078125 -4.015625 4.109375 -4.09375 4.125 -4.1875 C 4.140625 -4.265625 4.171875 -4.359375 4.1875 -4.4375 C 4.203125 -4.359375 4.21875 -4.265625 4.234375 -4.1875 C 4.25 -4.09375 4.28125 -4.015625 4.3125 -3.9375 L 5.53125 -0.1875 C 5.5625 -0.0625 5.640625 0 5.71875 0 L 6.5 0 L 8.28125 -5.53125 L 7.546875 -5.53125 C 7.484375 -5.53125 7.421875 -5.5 7.375 -5.46875 C 7.328125 -5.4375 7.28125 -5.375 7.265625 -5.328125 L 6.1875 -1.765625 C 6.15625 -1.65625 6.125 -1.53125 6.09375 -1.40625 C 6.0625 -1.265625 6.046875 -1.140625 6.03125 -1.03125 C 6 -1.140625 5.96875 -1.265625 5.9375 -1.390625 C 5.90625 -1.515625 5.875 -1.640625 5.828125 -1.765625 L 4.6875 -5.34375 C 4.671875 -5.40625 4.640625 -5.4375 4.59375 -5.484375 C 4.546875 -5.515625 4.484375 -5.53125 4.40625 -5.53125 L 3.984375 -5.53125 C 3.921875 -5.53125 3.859375 -5.515625 3.8125 -5.484375 C 3.78125 -5.4375 3.734375 -5.40625 3.71875 -5.34375 L 2.5625 -1.765625 C 2.515625 -1.640625 2.484375 -1.515625 2.4375 -1.390625 C 2.40625 -1.265625 2.375 -1.140625 2.34375 -1.015625 C 2.328125 -1.140625 2.3125 -1.265625 2.28125 -1.390625 C 2.25 -1.515625 2.21875 -1.640625 2.203125 -1.765625 L 1.140625 -5.328125 C 1.125 -5.375 1.078125 -5.421875 1.03125 -5.46875 C 0.984375 -5.5 0.921875 -5.53125 0.84375 -5.53125 Z M 0.078125 -5.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 3.03125 -5.609375 C 2.625 -5.609375 2.265625 -5.546875 1.9375 -5.40625 C 1.609375 -5.265625 1.34375 -5.078125 1.109375 -4.84375 C 0.875 -4.59375 0.703125 -4.296875 0.578125 -3.9375 C 0.453125 -3.59375 0.390625 -3.203125 0.390625 -2.765625 C 0.390625 -2.328125 0.453125 -1.9375 0.578125 -1.59375 C 0.703125 -1.234375 0.875 -0.9375 1.109375 -0.6875 C 1.34375 -0.453125 1.609375 -0.25 1.9375 -0.125 C 2.265625 0.015625 2.625 0.078125 3.03125 0.078125 C 3.4375 0.078125 3.796875 0.015625 4.125 -0.125 C 4.453125 -0.25 4.734375 -0.453125 4.953125 -0.6875 C 5.1875 -0.9375 5.359375 -1.234375 5.46875 -1.59375 C 5.59375 -1.9375 5.65625 -2.328125 5.65625 -2.765625 C 5.65625 -3.203125 5.59375 -3.59375 5.46875 -3.9375 C 5.359375 -4.296875 5.1875 -4.59375 4.953125 -4.84375 C 4.734375 -5.078125 4.453125 -5.265625 4.125 -5.40625 C 3.796875 -5.546875 3.4375 -5.609375 3.03125 -5.609375 Z M 3.03125 -0.6875 C 2.75 -0.6875 2.515625 -0.734375 2.3125 -0.828125 C 2.109375 -0.921875 1.9375 -1.046875 1.796875 -1.234375 C 1.671875 -1.40625 1.5625 -1.625 1.5 -1.875 C 1.421875 -2.140625 1.390625 -2.4375 1.390625 -2.765625 C 1.390625 -3.09375 1.421875 -3.375 1.5 -3.640625 C 1.5625 -3.90625 1.671875 -4.109375 1.796875 -4.296875 C 1.9375 -4.484375 2.109375 -4.609375 2.3125 -4.703125 C 2.515625 -4.796875 2.75 -4.84375 3.03125 -4.84375 C 3.578125 -4.84375 3.984375 -4.65625 4.25 -4.296875 C 4.515625 -3.9375 4.65625 -3.421875 4.65625 -2.765625 C 4.65625 -2.109375 4.515625 -1.59375 4.25 -1.234375 C 3.984375 -0.859375 3.578125 -0.6875 3.03125 -0.6875 Z M 3.03125 -0.6875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 0.796875 0 L 1.765625 0 L 1.765625 -4.109375 C 1.9375 -4.34375 2.125 -4.515625 2.328125 -4.640625 C 2.53125 -4.765625 2.765625 -4.84375 3 -4.84375 C 3.34375 -4.84375 3.59375 -4.734375 3.78125 -4.515625 C 3.953125 -4.296875 4.046875 -3.953125 4.046875 -3.515625 L 4.046875 0 L 5.015625 0 L 5.015625 -3.515625 C 5.015625 -3.734375 5.046875 -3.921875 5.109375 -4.09375 C 5.171875 -4.265625 5.265625 -4.390625 5.375 -4.5 C 5.484375 -4.609375 5.609375 -4.6875 5.75 -4.75 C 5.890625 -4.8125 6.046875 -4.84375 6.203125 -4.84375 C 6.5625 -4.84375 6.84375 -4.71875 7.03125 -4.5 C 7.21875 -4.28125 7.3125 -3.953125 7.3125 -3.515625 L 7.3125 0 L 8.28125 0 L 8.28125 -3.515625 C 8.28125 -3.84375 8.234375 -4.15625 8.15625 -4.40625 C 8.078125 -4.671875 7.953125 -4.890625 7.796875 -5.0625 C 7.640625 -5.25 7.4375 -5.375 7.21875 -5.46875 C 6.984375 -5.5625 6.734375 -5.609375 6.4375 -5.609375 C 6.265625 -5.609375 6.078125 -5.59375 5.90625 -5.546875 C 5.71875 -5.5 5.5625 -5.4375 5.40625 -5.34375 C 5.25 -5.25 5.109375 -5.125 4.984375 -4.984375 C 4.859375 -4.828125 4.75 -4.65625 4.671875 -4.453125 C 4.578125 -4.8125 4.40625 -5.09375 4.171875 -5.296875 C 3.953125 -5.5 3.640625 -5.609375 3.265625 -5.609375 C 2.9375 -5.609375 2.640625 -5.53125 2.390625 -5.375 C 2.140625 -5.21875 1.90625 -5 1.703125 -4.75 L 1.640625 -5.328125 C 1.59375 -5.453125 1.515625 -5.53125 1.375 -5.53125 L 0.796875 -5.53125 Z M 0.796875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 4.859375 0 L 4.859375 -3.53125 C 4.859375 -3.84375 4.8125 -4.125 4.734375 -4.390625 C 4.640625 -4.640625 4.515625 -4.859375 4.359375 -5.046875 C 4.1875 -5.21875 3.984375 -5.359375 3.75 -5.46875 C 3.515625 -5.578125 3.234375 -5.625 2.921875 -5.625 C 2.5 -5.625 2.109375 -5.546875 1.75 -5.40625 C 1.40625 -5.25 1.078125 -5.03125 0.765625 -4.75 L 0.9375 -4.4375 C 0.96875 -4.390625 1.015625 -4.34375 1.0625 -4.3125 C 1.109375 -4.265625 1.171875 -4.25 1.234375 -4.25 C 1.3125 -4.25 1.40625 -4.28125 1.484375 -4.34375 C 1.578125 -4.40625 1.671875 -4.46875 1.78125 -4.546875 C 1.90625 -4.625 2.046875 -4.6875 2.21875 -4.75 C 2.375 -4.8125 2.578125 -4.84375 2.8125 -4.84375 C 3.171875 -4.84375 3.4375 -4.734375 3.625 -4.5 C 3.8125 -4.28125 3.90625 -3.96875 3.90625 -3.53125 L 3.90625 -3.109375 C 3.265625 -3.09375 2.75 -3.03125 2.3125 -2.9375 C 1.875 -2.828125 1.53125 -2.703125 1.265625 -2.546875 C 1 -2.390625 0.796875 -2.21875 0.6875 -2 C 0.5625 -1.8125 0.5 -1.59375 0.5 -1.375 C 0.5 -1.125 0.546875 -0.90625 0.625 -0.734375 C 0.703125 -0.546875 0.8125 -0.390625 0.953125 -0.265625 C 1.09375 -0.15625 1.25 -0.0625 1.4375 0 C 1.625 0.046875 1.828125 0.09375 2.046875 0.09375 C 2.25 0.09375 2.453125 0.078125 2.625 0.03125 C 2.796875 0 2.953125 -0.046875 3.109375 -0.125 C 3.265625 -0.203125 3.40625 -0.28125 3.546875 -0.390625 C 3.6875 -0.484375 3.828125 -0.609375 3.96875 -0.734375 L 4.078125 -0.234375 C 4.09375 -0.140625 4.140625 -0.078125 4.1875 -0.046875 C 4.25 -0.015625 4.328125 0 4.421875 0 Z M 2.328125 -0.59375 C 2.203125 -0.59375 2.09375 -0.609375 1.984375 -0.640625 C 1.875 -0.671875 1.78125 -0.71875 1.703125 -0.78125 C 1.609375 -0.859375 1.546875 -0.9375 1.5 -1.046875 C 1.453125 -1.15625 1.4375 -1.28125 1.4375 -1.421875 C 1.4375 -1.578125 1.484375 -1.71875 1.578125 -1.84375 C 1.65625 -1.96875 1.796875 -2.0625 2 -2.15625 C 2.1875 -2.25 2.453125 -2.328125 2.765625 -2.375 C 3.0625 -2.4375 3.453125 -2.46875 3.90625 -2.484375 L 3.90625 -1.34375 C 3.796875 -1.21875 3.671875 -1.125 3.5625 -1.03125 C 3.453125 -0.9375 3.328125 -0.859375 3.203125 -0.796875 C 3.078125 -0.734375 2.9375 -0.6875 2.796875 -0.640625 C 2.65625 -0.609375 2.5 -0.59375 2.328125 -0.59375 Z M 2.328125 -0.59375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 0.796875 0 L 1.765625 0 L 1.765625 -4.0625 C 1.984375 -4.296875 2.203125 -4.5 2.453125 -4.625 C 2.703125 -4.765625 2.96875 -4.84375 3.265625 -4.84375 C 3.65625 -4.84375 3.953125 -4.71875 4.140625 -4.5 C 4.328125 -4.265625 4.421875 -3.9375 4.421875 -3.515625 L 4.421875 0 L 5.390625 0 L 5.390625 -3.515625 C 5.390625 -3.828125 5.359375 -4.109375 5.265625 -4.375 C 5.1875 -4.625 5.078125 -4.859375 4.921875 -5.03125 C 4.765625 -5.21875 4.578125 -5.359375 4.34375 -5.46875 C 4.109375 -5.5625 3.84375 -5.609375 3.546875 -5.609375 C 3.15625 -5.609375 2.8125 -5.53125 2.515625 -5.359375 C 2.21875 -5.203125 1.953125 -4.984375 1.71875 -4.71875 L 1.640625 -5.328125 C 1.59375 -5.453125 1.515625 -5.53125 1.375 -5.53125 L 0.796875 -5.53125 Z M 0.796875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 3.953125 -4.609375 L 4.171875 -4.96875 C 3.96875 -5.171875 3.71875 -5.328125 3.421875 -5.4375 C 3.140625 -5.546875 2.8125 -5.609375 2.453125 -5.609375 C 2.140625 -5.609375 1.859375 -5.5625 1.609375 -5.484375 C 1.375 -5.390625 1.171875 -5.28125 1 -5.125 C 0.828125 -4.984375 0.703125 -4.8125 0.609375 -4.609375 C 0.53125 -4.421875 0.484375 -4.21875 0.484375 -4.015625 C 0.484375 -3.78125 0.53125 -3.578125 0.609375 -3.40625 C 0.6875 -3.234375 0.796875 -3.109375 0.9375 -2.984375 C 1.0625 -2.875 1.21875 -2.78125 1.390625 -2.703125 C 1.5625 -2.640625 1.75 -2.5625 1.921875 -2.515625 C 2.109375 -2.453125 2.28125 -2.390625 2.453125 -2.34375 C 2.625 -2.296875 2.78125 -2.21875 2.90625 -2.15625 C 3.046875 -2.078125 3.15625 -2 3.234375 -1.890625 C 3.3125 -1.796875 3.359375 -1.671875 3.359375 -1.515625 C 3.359375 -1.390625 3.34375 -1.28125 3.296875 -1.171875 C 3.25 -1.0625 3.171875 -0.96875 3.078125 -0.890625 C 2.984375 -0.796875 2.875 -0.734375 2.71875 -0.6875 C 2.578125 -0.625 2.421875 -0.609375 2.234375 -0.609375 C 2 -0.609375 1.828125 -0.640625 1.671875 -0.6875 C 1.53125 -0.734375 1.40625 -0.796875 1.296875 -0.859375 C 1.203125 -0.921875 1.109375 -0.96875 1.03125 -1.03125 C 0.96875 -1.078125 0.890625 -1.09375 0.828125 -1.09375 C 0.765625 -1.09375 0.703125 -1.09375 0.671875 -1.0625 C 0.625 -1.03125 0.59375 -1 0.5625 -0.953125 L 0.34375 -0.578125 C 0.5625 -0.390625 0.828125 -0.234375 1.140625 -0.09375 C 1.4375 0.015625 1.796875 0.09375 2.1875 0.09375 C 2.515625 0.09375 2.8125 0.046875 3.078125 -0.046875 C 3.328125 -0.140625 3.546875 -0.265625 3.734375 -0.421875 C 3.90625 -0.578125 4.046875 -0.765625 4.140625 -0.984375 C 4.21875 -1.203125 4.265625 -1.4375 4.265625 -1.6875 C 4.265625 -1.90625 4.234375 -2.109375 4.140625 -2.25 C 4.0625 -2.421875 3.953125 -2.546875 3.828125 -2.65625 C 3.6875 -2.765625 3.53125 -2.859375 3.359375 -2.9375 C 3.203125 -3 3.015625 -3.078125 2.828125 -3.125 C 2.65625 -3.203125 2.484375 -3.25 2.3125 -3.296875 C 2.140625 -3.359375 1.984375 -3.40625 1.859375 -3.484375 C 1.71875 -3.5625 1.609375 -3.640625 1.53125 -3.734375 C 1.453125 -3.828125 1.40625 -3.9375 1.40625 -4.078125 C 1.40625 -4.203125 1.421875 -4.296875 1.484375 -4.390625 C 1.53125 -4.5 1.609375 -4.578125 1.6875 -4.65625 C 1.78125 -4.71875 1.890625 -4.78125 2.03125 -4.828125 C 2.15625 -4.859375 2.3125 -4.890625 2.46875 -4.890625 C 2.65625 -4.890625 2.828125 -4.859375 2.96875 -4.828125 C 3.09375 -4.78125 3.21875 -4.734375 3.3125 -4.6875 C 3.421875 -4.640625 3.5 -4.59375 3.578125 -4.546875 C 3.640625 -4.515625 3.703125 -4.5 3.75 -4.5 C 3.84375 -4.5 3.921875 -4.53125 3.953125 -4.609375 Z M 3.953125 -4.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 0.828125 0 L 1.453125 0 C 1.59375 0 1.671875 -0.078125 1.703125 -0.203125 L 1.75 -0.703125 C 1.9375 -0.46875 2.15625 -0.265625 2.40625 -0.125 C 2.65625 0 2.96875 0.078125 3.3125 0.078125 C 3.6875 0.078125 4.015625 0 4.3125 -0.140625 C 4.609375 -0.296875 4.859375 -0.484375 5.078125 -0.75 C 5.265625 -1 5.4375 -1.3125 5.546875 -1.65625 C 5.65625 -2.015625 5.703125 -2.390625 5.703125 -2.796875 C 5.703125 -3.25 5.65625 -3.65625 5.5625 -4.015625 C 5.453125 -4.359375 5.3125 -4.65625 5.140625 -4.890625 C 4.953125 -5.125 4.734375 -5.3125 4.484375 -5.4375 C 4.21875 -5.546875 3.9375 -5.609375 3.609375 -5.609375 C 3.234375 -5.609375 2.890625 -5.53125 2.59375 -5.359375 C 2.296875 -5.203125 2.03125 -5 1.8125 -4.734375 L 1.8125 -8.03125 L 0.828125 -8.03125 Z M 3.296875 -4.84375 C 3.515625 -4.84375 3.71875 -4.796875 3.890625 -4.71875 C 4.0625 -4.640625 4.203125 -4.53125 4.328125 -4.359375 C 4.453125 -4.1875 4.546875 -3.984375 4.609375 -3.71875 C 4.671875 -3.46875 4.703125 -3.15625 4.703125 -2.796875 C 4.703125 -2.109375 4.5625 -1.59375 4.28125 -1.234375 C 4.015625 -0.859375 3.609375 -0.671875 3.09375 -0.671875 C 2.828125 -0.671875 2.59375 -0.71875 2.390625 -0.828125 C 2.171875 -0.921875 1.984375 -1.09375 1.8125 -1.328125 L 1.8125 -4 C 2 -4.265625 2.21875 -4.46875 2.46875 -4.625 C 2.703125 -4.765625 2.984375 -4.84375 3.296875 -4.84375 Z M 3.296875 -4.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 1.640625 -5.53125 L 0.671875 -5.53125 L 0.671875 -2 C 0.671875 -1.6875 0.703125 -1.40625 0.78125 -1.140625 C 0.859375 -0.890625 0.96875 -0.671875 1.140625 -0.484375 C 1.296875 -0.3125 1.484375 -0.15625 1.71875 -0.0625 C 1.953125 0.03125 2.21875 0.09375 2.515625 0.09375 C 2.90625 0.09375 3.234375 0 3.546875 -0.15625 C 3.84375 -0.3125 4.109375 -0.53125 4.34375 -0.796875 L 4.421875 -0.203125 C 4.453125 -0.0625 4.546875 0 4.6875 0 L 5.265625 0 L 5.265625 -5.53125 L 4.296875 -5.53125 L 4.296875 -1.453125 C 4.078125 -1.203125 3.84375 -1.03125 3.59375 -0.890625 C 3.34375 -0.75 3.078125 -0.6875 2.796875 -0.6875 C 2.40625 -0.6875 2.109375 -0.796875 1.921875 -1.03125 C 1.734375 -1.265625 1.640625 -1.578125 1.640625 -2 Z M 1.640625 -5.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 2.65625 -5.609375 C 2.34375 -5.609375 2.078125 -5.578125 1.8125 -5.484375 C 1.5625 -5.40625 1.34375 -5.296875 1.15625 -5.140625 C 0.96875 -4.984375 0.8125 -4.796875 0.71875 -4.5625 C 0.609375 -4.359375 0.5625 -4.109375 0.5625 -3.84375 C 0.5625 -3.5 0.640625 -3.203125 0.796875 -2.953125 C 0.953125 -2.703125 1.15625 -2.5 1.4375 -2.34375 C 1.3125 -2.28125 1.21875 -2.21875 1.125 -2.140625 C 1.046875 -2.0625 0.96875 -1.984375 0.90625 -1.90625 C 0.84375 -1.828125 0.796875 -1.734375 0.78125 -1.640625 C 0.75 -1.5625 0.734375 -1.484375 0.734375 -1.40625 C 0.734375 -1.203125 0.78125 -1.03125 0.875 -0.921875 C 0.953125 -0.796875 1.078125 -0.6875 1.25 -0.625 C 0.9375 -0.5 0.703125 -0.359375 0.53125 -0.15625 C 0.359375 0.015625 0.265625 0.25 0.265625 0.53125 C 0.265625 0.71875 0.328125 0.90625 0.421875 1.078125 C 0.53125 1.265625 0.671875 1.40625 0.875 1.546875 C 1.078125 1.6875 1.328125 1.78125 1.625 1.875 C 1.9375 1.953125 2.28125 1.984375 2.6875 1.984375 C 3.09375 1.984375 3.453125 1.9375 3.78125 1.828125 C 4.09375 1.734375 4.359375 1.59375 4.59375 1.421875 C 4.8125 1.25 4.984375 1.046875 5.09375 0.828125 C 5.21875 0.609375 5.265625 0.375 5.265625 0.140625 C 5.265625 -0.109375 5.21875 -0.328125 5.109375 -0.484375 C 5.015625 -0.640625 4.875 -0.765625 4.6875 -0.859375 C 4.515625 -0.953125 4.328125 -1.015625 4.09375 -1.046875 C 3.875 -1.09375 3.65625 -1.125 3.421875 -1.140625 C 3.1875 -1.15625 2.96875 -1.171875 2.75 -1.171875 C 2.515625 -1.171875 2.328125 -1.203125 2.15625 -1.234375 C 1.96875 -1.25 1.828125 -1.296875 1.734375 -1.375 C 1.625 -1.4375 1.578125 -1.53125 1.578125 -1.671875 C 1.578125 -1.75 1.609375 -1.828125 1.65625 -1.90625 C 1.71875 -2 1.8125 -2.078125 1.921875 -2.15625 C 2.15625 -2.09375 2.40625 -2.0625 2.65625 -2.0625 C 2.953125 -2.0625 3.234375 -2.09375 3.484375 -2.1875 C 3.734375 -2.265625 3.953125 -2.390625 4.140625 -2.546875 C 4.328125 -2.703125 4.46875 -2.890625 4.5625 -3.109375 C 4.671875 -3.328125 4.734375 -3.578125 4.734375 -3.84375 C 4.734375 -4.125 4.671875 -4.390625 4.546875 -4.625 L 5.171875 -4.71875 C 5.328125 -4.75 5.40625 -4.828125 5.40625 -4.953125 L 5.40625 -5.3125 L 3.90625 -5.3125 C 3.734375 -5.40625 3.546875 -5.484375 3.328125 -5.546875 C 3.125 -5.59375 2.890625 -5.609375 2.65625 -5.609375 Z M 4.375 0.296875 C 4.375 0.453125 4.34375 0.578125 4.265625 0.703125 C 4.1875 0.8125 4.078125 0.921875 3.9375 1.015625 C 3.796875 1.09375 3.609375 1.15625 3.40625 1.203125 C 3.203125 1.265625 2.96875 1.28125 2.703125 1.28125 C 2.4375 1.28125 2.203125 1.265625 2 1.203125 C 1.8125 1.171875 1.640625 1.109375 1.515625 1.03125 C 1.375 0.953125 1.28125 0.859375 1.21875 0.75 C 1.15625 0.640625 1.125 0.53125 1.125 0.40625 C 1.125 0.203125 1.1875 0.03125 1.3125 -0.109375 C 1.4375 -0.25 1.609375 -0.359375 1.828125 -0.46875 C 2 -0.4375 2.1875 -0.421875 2.390625 -0.40625 C 2.578125 -0.390625 2.765625 -0.375 2.96875 -0.375 C 3.15625 -0.359375 3.328125 -0.34375 3.5 -0.328125 C 3.671875 -0.3125 3.828125 -0.265625 3.953125 -0.234375 C 4.078125 -0.1875 4.1875 -0.109375 4.265625 -0.03125 C 4.34375 0.046875 4.375 0.15625 4.375 0.296875 Z M 2.65625 -2.703125 C 2.46875 -2.703125 2.296875 -2.71875 2.140625 -2.78125 C 2 -2.828125 1.875 -2.90625 1.765625 -3.015625 C 1.65625 -3.109375 1.59375 -3.234375 1.53125 -3.359375 C 1.484375 -3.5 1.453125 -3.640625 1.453125 -3.8125 C 1.453125 -4.15625 1.5625 -4.421875 1.765625 -4.625 C 1.96875 -4.828125 2.265625 -4.921875 2.65625 -4.921875 C 3.046875 -4.921875 3.34375 -4.828125 3.5625 -4.625 C 3.75 -4.421875 3.859375 -4.15625 3.859375 -3.8125 C 3.859375 -3.640625 3.828125 -3.5 3.78125 -3.359375 C 3.734375 -3.234375 3.65625 -3.109375 3.5625 -3.015625 C 3.453125 -2.90625 3.328125 -2.828125 3.171875 -2.78125 C 3.03125 -2.71875 2.859375 -2.703125 2.65625 -2.703125 Z M 2.65625 -2.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 2.46875 0.09375 C 2.71875 0.09375 2.96875 0.046875 3.203125 -0.046875 C 3.4375 -0.140625 3.640625 -0.25 3.8125 -0.421875 L 3.515625 -0.875 C 3.484375 -0.9375 3.4375 -0.96875 3.390625 -0.96875 C 3.359375 -0.96875 3.328125 -0.953125 3.28125 -0.921875 C 3.25 -0.90625 3.203125 -0.875 3.140625 -0.84375 C 3.09375 -0.8125 3.03125 -0.78125 2.953125 -0.75 C 2.875 -0.71875 2.796875 -0.703125 2.6875 -0.703125 C 2.515625 -0.703125 2.359375 -0.765625 2.25 -0.875 C 2.140625 -1 2.078125 -1.15625 2.078125 -1.390625 L 2.078125 -4.71875 L 3.671875 -4.71875 L 3.671875 -5.421875 L 2.078125 -5.421875 L 2.078125 -7.3125 L 1.59375 -7.3125 C 1.53125 -7.3125 1.484375 -7.296875 1.4375 -7.265625 C 1.40625 -7.234375 1.375 -7.1875 1.375 -7.125 L 1.140625 -5.421875 L 0.234375 -5.3125 L 0.234375 -4.921875 C 0.234375 -4.859375 0.265625 -4.796875 0.296875 -4.765625 C 0.34375 -4.734375 0.390625 -4.71875 0.453125 -4.71875 L 1.109375 -4.71875 L 1.109375 -1.328125 C 1.109375 -0.875 1.234375 -0.53125 1.46875 -0.28125 C 1.703125 -0.03125 2.03125 0.09375 2.46875 0.09375 Z M 2.46875 0.09375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 1.875 -5.53125 L 0.90625 -5.53125 L 0.90625 0 L 1.875 0 Z M 2.09375 -7.265625 C 2.09375 -7.34375 2.078125 -7.4375 2.046875 -7.53125 C 2 -7.609375 1.953125 -7.6875 1.890625 -7.75 C 1.828125 -7.8125 1.75 -7.859375 1.65625 -7.90625 C 1.578125 -7.9375 1.484375 -7.953125 1.390625 -7.953125 C 1.296875 -7.953125 1.203125 -7.9375 1.140625 -7.90625 C 1.046875 -7.859375 0.96875 -7.8125 0.921875 -7.75 C 0.84375 -7.6875 0.796875 -7.609375 0.765625 -7.53125 C 0.71875 -7.4375 0.703125 -7.34375 0.703125 -7.265625 C 0.703125 -7.171875 0.71875 -7.078125 0.765625 -6.984375 C 0.796875 -6.921875 0.84375 -6.84375 0.921875 -6.765625 C 0.96875 -6.71875 1.046875 -6.65625 1.140625 -6.625 C 1.203125 -6.59375 1.296875 -6.578125 1.390625 -6.578125 C 1.484375 -6.578125 1.578125 -6.59375 1.65625 -6.625 C 1.75 -6.65625 1.828125 -6.71875 1.890625 -6.765625 C 1.953125 -6.84375 2 -6.921875 2.046875 -6.984375 C 2.078125 -7.078125 2.09375 -7.171875 2.09375 -7.265625 Z M 2.09375 -7.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 4.5625 -4.546875 L 4.828125 -4.890625 C 4.59375 -5.125 4.328125 -5.296875 4.03125 -5.421875 C 3.734375 -5.546875 3.390625 -5.609375 3 -5.609375 C 2.578125 -5.609375 2.21875 -5.546875 1.890625 -5.40625 C 1.578125 -5.25 1.296875 -5.0625 1.078125 -4.8125 C 0.859375 -4.546875 0.6875 -4.25 0.578125 -3.90625 C 0.453125 -3.5625 0.40625 -3.171875 0.40625 -2.765625 C 0.40625 -2.3125 0.46875 -1.90625 0.59375 -1.5625 C 0.71875 -1.203125 0.890625 -0.90625 1.109375 -0.671875 C 1.328125 -0.421875 1.578125 -0.234375 1.875 -0.109375 C 2.171875 0.015625 2.5 0.078125 2.84375 0.078125 C 3.234375 0.078125 3.625 0.015625 3.984375 -0.125 C 4.34375 -0.265625 4.640625 -0.484375 4.875 -0.78125 L 4.609375 -1.125 C 4.5625 -1.1875 4.5 -1.21875 4.421875 -1.21875 C 4.359375 -1.21875 4.296875 -1.1875 4.21875 -1.140625 C 4.15625 -1.078125 4.078125 -1.015625 3.96875 -0.953125 C 3.875 -0.875 3.75 -0.8125 3.59375 -0.765625 C 3.4375 -0.703125 3.25 -0.671875 3.015625 -0.671875 C 2.765625 -0.671875 2.546875 -0.71875 2.34375 -0.8125 C 2.140625 -0.90625 1.96875 -1.046875 1.84375 -1.21875 C 1.703125 -1.390625 1.59375 -1.609375 1.515625 -1.875 C 1.4375 -2.125 1.40625 -2.4375 1.40625 -2.765625 C 1.40625 -3.09375 1.4375 -3.375 1.5 -3.625 C 1.578125 -3.890625 1.6875 -4.109375 1.828125 -4.296875 C 1.96875 -4.46875 2.140625 -4.609375 2.34375 -4.71875 C 2.546875 -4.796875 2.796875 -4.859375 3.0625 -4.859375 C 3.265625 -4.859375 3.4375 -4.828125 3.578125 -4.78125 C 3.71875 -4.734375 3.828125 -4.6875 3.9375 -4.640625 C 4.03125 -4.578125 4.109375 -4.53125 4.171875 -4.484375 C 4.234375 -4.4375 4.296875 -4.421875 4.359375 -4.421875 C 4.40625 -4.421875 4.453125 -4.421875 4.484375 -4.453125 C 4.5 -4.46875 4.53125 -4.5 4.5625 -4.546875 Z M 4.5625 -4.546875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 1.8125 -8.03125 L 0.828125 -8.03125 L 0.828125 0 L 1.8125 0 L 1.8125 -2.640625 L 2.078125 -2.640625 C 2.1875 -2.640625 2.265625 -2.625 2.328125 -2.609375 C 2.375 -2.578125 2.4375 -2.53125 2.484375 -2.453125 L 4.296875 -0.1875 C 4.359375 -0.125 4.40625 -0.078125 4.453125 -0.046875 C 4.515625 -0.015625 4.59375 0 4.671875 0 L 5.546875 0 L 3.375 -2.71875 C 3.328125 -2.796875 3.28125 -2.859375 3.234375 -2.921875 C 3.171875 -2.984375 3.125 -3.03125 3.046875 -3.0625 C 3.109375 -3.109375 3.171875 -3.140625 3.21875 -3.203125 C 3.265625 -3.25 3.328125 -3.296875 3.375 -3.359375 L 5.40625 -5.53125 L 4.515625 -5.53125 C 4.421875 -5.53125 4.359375 -5.5 4.296875 -5.46875 C 4.25 -5.4375 4.1875 -5.390625 4.140625 -5.328125 L 2.390625 -3.453125 C 2.328125 -3.390625 2.28125 -3.359375 2.234375 -3.34375 C 2.1875 -3.3125 2.125 -3.296875 2.0625 -3.296875 L 1.8125 -3.296875 Z M 1.8125 -8.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-17">
<path style="stroke:none;" d="M 0.796875 0 L 1.765625 0 L 1.765625 -3.515625 C 1.921875 -3.890625 2.109375 -4.171875 2.328125 -4.375 C 2.5625 -4.5625 2.84375 -4.671875 3.1875 -4.671875 C 3.375 -4.671875 3.515625 -4.65625 3.625 -4.609375 C 3.734375 -4.578125 3.8125 -4.5625 3.859375 -4.5625 C 3.953125 -4.5625 4 -4.609375 4.03125 -4.703125 L 4.15625 -5.421875 C 4.046875 -5.484375 3.9375 -5.53125 3.8125 -5.578125 C 3.6875 -5.609375 3.546875 -5.625 3.390625 -5.625 C 3.015625 -5.625 2.6875 -5.515625 2.421875 -5.296875 C 2.140625 -5.078125 1.90625 -4.78125 1.71875 -4.390625 L 1.65625 -5.25 C 1.640625 -5.359375 1.609375 -5.421875 1.578125 -5.46875 C 1.53125 -5.5 1.453125 -5.53125 1.359375 -5.53125 L 0.796875 -5.53125 Z M 0.796875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-18">
<path style="stroke:none;" d="M 7.71875 -3.90625 C 7.71875 -4.484375 7.625 -5.015625 7.4375 -5.5 C 7.265625 -5.984375 7 -6.390625 6.65625 -6.734375 C 6.3125 -7.078125 5.921875 -7.34375 5.4375 -7.53125 C 4.96875 -7.71875 4.4375 -7.8125 3.875 -7.8125 L 0.953125 -7.8125 L 0.953125 0 L 3.875 0 C 4.4375 0 4.96875 -0.09375 5.4375 -0.28125 C 5.921875 -0.46875 6.3125 -0.734375 6.65625 -1.078125 C 7 -1.421875 7.265625 -1.828125 7.4375 -2.3125 C 7.625 -2.78125 7.71875 -3.328125 7.71875 -3.90625 Z M 6.640625 -3.90625 C 6.640625 -3.421875 6.578125 -3 6.4375 -2.625 C 6.3125 -2.234375 6.125 -1.921875 5.890625 -1.65625 C 5.640625 -1.40625 5.359375 -1.203125 5.015625 -1.0625 C 4.671875 -0.921875 4.296875 -0.859375 3.875 -0.859375 L 2.015625 -0.859375 L 2.015625 -6.953125 L 3.875 -6.953125 C 4.296875 -6.953125 4.671875 -6.890625 5.015625 -6.75 C 5.359375 -6.609375 5.640625 -6.40625 5.890625 -6.15625 C 6.125 -5.890625 6.3125 -5.5625 6.4375 -5.1875 C 6.578125 -4.8125 6.640625 -4.390625 6.640625 -3.90625 Z M 6.640625 -3.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-19">
<path style="stroke:none;" d="M 5.765625 -7.8125 L 0.953125 -7.8125 L 0.953125 0 L 2.015625 0 L 2.015625 -3.359375 L 5.21875 -3.359375 L 5.21875 -4.21875 L 2.015625 -4.21875 L 2.015625 -6.953125 L 5.765625 -6.953125 Z M 5.765625 -7.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-20">
<path style="stroke:none;" d="M 0.953125 0 L 3.71875 0 C 4.15625 0 4.53125 -0.046875 4.875 -0.15625 C 5.21875 -0.265625 5.5 -0.421875 5.734375 -0.609375 C 5.984375 -0.8125 6.15625 -1.046875 6.265625 -1.3125 C 6.390625 -1.59375 6.453125 -1.890625 6.453125 -2.21875 C 6.453125 -2.703125 6.3125 -3.109375 6.015625 -3.40625 C 5.734375 -3.703125 5.296875 -3.90625 4.734375 -4.015625 C 4.96875 -4.09375 5.1875 -4.1875 5.375 -4.3125 C 5.5625 -4.4375 5.703125 -4.5625 5.828125 -4.71875 C 5.953125 -4.875 6.046875 -5.03125 6.109375 -5.21875 C 6.15625 -5.40625 6.1875 -5.578125 6.1875 -5.78125 C 6.1875 -6.09375 6.140625 -6.375 6.03125 -6.625 C 5.921875 -6.875 5.765625 -7.09375 5.546875 -7.265625 C 5.3125 -7.4375 5.03125 -7.578125 4.671875 -7.671875 C 4.328125 -7.765625 3.921875 -7.8125 3.4375 -7.8125 L 0.953125 -7.8125 Z M 2 -3.5625 L 3.6875 -3.5625 C 4.265625 -3.5625 4.703125 -3.453125 4.984375 -3.203125 C 5.265625 -2.984375 5.421875 -2.65625 5.421875 -2.25 C 5.421875 -2.046875 5.375 -1.859375 5.3125 -1.671875 C 5.25 -1.515625 5.140625 -1.359375 5 -1.234375 C 4.875 -1.109375 4.6875 -1.015625 4.46875 -0.9375 C 4.265625 -0.875 4 -0.84375 3.703125 -0.84375 L 2 -0.84375 Z M 2 -4.3125 L 2 -6.984375 L 3.4375 -6.984375 C 4.03125 -6.984375 4.453125 -6.875 4.734375 -6.65625 C 5 -6.453125 5.140625 -6.109375 5.140625 -5.65625 C 5.140625 -5.453125 5.109375 -5.265625 5.03125 -5.109375 C 4.96875 -4.9375 4.859375 -4.796875 4.71875 -4.6875 C 4.578125 -4.5625 4.390625 -4.484375 4.171875 -4.40625 C 3.953125 -4.34375 3.703125 -4.3125 3.40625 -4.3125 Z M 2 -4.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-21">
<path style="stroke:none;" d="M 1.015625 0 L 1.984375 0 L 1.984375 -4.71875 L 3.5625 -4.71875 L 3.5625 -5.421875 L 1.953125 -5.421875 L 1.953125 -5.921875 C 1.953125 -6.15625 1.984375 -6.359375 2.046875 -6.515625 C 2.09375 -6.671875 2.171875 -6.8125 2.265625 -6.90625 C 2.359375 -7 2.46875 -7.078125 2.625 -7.109375 C 2.75 -7.15625 2.90625 -7.1875 3.0625 -7.1875 L 3.234375 -7.1875 C 3.34375 -7.1875 3.421875 -7.1875 3.484375 -7.203125 C 3.546875 -7.21875 3.578125 -7.265625 3.578125 -7.328125 L 3.59375 -7.8125 C 3.390625 -7.890625 3.15625 -7.921875 2.90625 -7.921875 C 2.625 -7.921875 2.359375 -7.890625 2.125 -7.796875 C 1.890625 -7.703125 1.703125 -7.578125 1.53125 -7.421875 C 1.359375 -7.234375 1.234375 -7.03125 1.140625 -6.796875 C 1.0625 -6.546875 1.015625 -6.265625 1.015625 -5.953125 L 1.015625 -5.421875 L 0.140625 -5.421875 L 0.140625 -5.015625 C 0.140625 -4.953125 0.15625 -4.890625 0.21875 -4.859375 C 0.265625 -4.8125 0.328125 -4.78125 0.40625 -4.765625 L 1.015625 -4.6875 Z M 1.015625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d="M 1.125 -5.109375 L 1.328125 -4.78125 C 1.375 -4.703125 1.421875 -4.671875 1.5 -4.671875 C 1.53125 -4.671875 1.5625 -4.6875 1.609375 -4.71875 C 1.65625 -4.75 1.703125 -4.78125 1.765625 -4.8125 C 1.828125 -4.84375 1.890625 -4.875 1.984375 -4.890625 C 2.0625 -4.921875 2.171875 -4.9375 2.28125 -4.9375 C 2.453125 -4.9375 2.59375 -4.890625 2.703125 -4.796875 C 2.8125 -4.71875 2.875 -4.59375 2.875 -4.4375 C 2.875 -4.3125 2.84375 -4.21875 2.796875 -4.125 C 2.75 -4.046875 2.6875 -3.96875 2.625 -3.890625 C 2.546875 -3.828125 2.46875 -3.765625 2.390625 -3.703125 C 2.3125 -3.640625 2.234375 -3.578125 2.15625 -3.515625 C 2.09375 -3.453125 2.046875 -3.375 2 -3.3125 C 1.96875 -3.234375 1.953125 -3.140625 1.96875 -3.046875 L 2.015625 -2.515625 L 2.5625 -2.515625 L 2.640625 -2.984375 C 2.65625 -3.046875 2.6875 -3.109375 2.734375 -3.171875 C 2.796875 -3.234375 2.859375 -3.28125 2.921875 -3.34375 C 3 -3.40625 3.078125 -3.453125 3.15625 -3.53125 C 3.234375 -3.59375 3.3125 -3.65625 3.375 -3.75 C 3.4375 -3.84375 3.5 -3.9375 3.546875 -4.0625 C 3.59375 -4.1875 3.609375 -4.328125 3.609375 -4.484375 C 3.609375 -4.65625 3.578125 -4.8125 3.515625 -4.9375 C 3.453125 -5.078125 3.375 -5.203125 3.265625 -5.296875 C 3.15625 -5.390625 3.015625 -5.46875 2.875 -5.515625 C 2.71875 -5.5625 2.546875 -5.59375 2.359375 -5.59375 C 2.21875 -5.59375 2.09375 -5.578125 1.96875 -5.546875 C 1.859375 -5.53125 1.75 -5.5 1.640625 -5.453125 C 1.53125 -5.40625 1.4375 -5.359375 1.359375 -5.296875 C 1.28125 -5.25 1.203125 -5.1875 1.125 -5.109375 Z M 1.78125 -1.3125 C 1.78125 -1.171875 1.828125 -1.046875 1.921875 -0.953125 C 2.015625 -0.859375 2.125 -0.8125 2.265625 -0.8125 C 2.34375 -0.8125 2.40625 -0.828125 2.453125 -0.859375 C 2.515625 -0.875 2.5625 -0.921875 2.609375 -0.953125 C 2.65625 -1 2.6875 -1.0625 2.71875 -1.109375 C 2.734375 -1.171875 2.75 -1.234375 2.75 -1.3125 C 2.75 -1.375 2.734375 -1.4375 2.71875 -1.5 C 2.6875 -1.5625 2.65625 -1.625 2.609375 -1.65625 C 2.5625 -1.703125 2.515625 -1.75 2.453125 -1.765625 C 2.40625 -1.796875 2.34375 -1.8125 2.265625 -1.8125 C 2.125 -1.8125 2.015625 -1.765625 1.921875 -1.65625 C 1.828125 -1.5625 1.78125 -1.453125 1.78125 -1.3125 Z M 0.203125 -6.421875 L 0.203125 0 L 4.5625 0 L 4.5625 -6.421875 Z M 0.421875 -0.234375 L 0.421875 -6.171875 L 4.3125 -6.171875 L 4.3125 -0.234375 Z M 0.421875 -0.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 2.03125 0.078125 C 2.234375 0.078125 2.4375 0.03125 2.625 -0.03125 C 2.828125 -0.109375 2.984375 -0.203125 3.125 -0.34375 L 2.890625 -0.71875 C 2.859375 -0.765625 2.828125 -0.796875 2.78125 -0.796875 C 2.765625 -0.796875 2.734375 -0.796875 2.703125 -0.765625 C 2.671875 -0.75 2.625 -0.71875 2.59375 -0.6875 C 2.546875 -0.65625 2.484375 -0.640625 2.4375 -0.625 C 2.375 -0.59375 2.296875 -0.578125 2.203125 -0.578125 C 2.0625 -0.578125 1.953125 -0.625 1.859375 -0.71875 C 1.765625 -0.8125 1.71875 -0.953125 1.71875 -1.140625 L 1.71875 -3.875 L 3.015625 -3.875 L 3.015625 -4.453125 L 1.71875 -4.453125 L 1.71875 -6.015625 L 1.3125 -6.015625 C 1.265625 -6.015625 1.21875 -6 1.1875 -5.96875 C 1.15625 -5.953125 1.125 -5.90625 1.125 -5.859375 L 0.9375 -4.46875 L 0.203125 -4.375 L 0.203125 -4.046875 C 0.203125 -3.984375 0.21875 -3.953125 0.25 -3.921875 C 0.28125 -3.890625 0.3125 -3.875 0.375 -3.875 L 0.921875 -3.875 L 0.921875 -1.09375 C 0.921875 -0.71875 1.015625 -0.4375 1.203125 -0.234375 C 1.40625 -0.03125 1.671875 0.078125 2.03125 0.078125 Z M 2.03125 0.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 0.65625 0 L 1.453125 0 L 1.453125 -3.34375 C 1.625 -3.53125 1.8125 -3.6875 2.015625 -3.8125 C 2.21875 -3.921875 2.4375 -3.984375 2.6875 -3.984375 C 3 -3.984375 3.25 -3.890625 3.40625 -3.6875 C 3.5625 -3.5 3.640625 -3.234375 3.640625 -2.890625 L 3.640625 0 L 4.4375 0 L 4.4375 -2.890625 C 4.4375 -3.140625 4.40625 -3.390625 4.34375 -3.59375 C 4.265625 -3.8125 4.171875 -3.984375 4.046875 -4.140625 C 3.921875 -4.296875 3.765625 -4.40625 3.5625 -4.5 C 3.375 -4.578125 3.15625 -4.609375 2.921875 -4.609375 C 2.609375 -4.609375 2.34375 -4.546875 2.09375 -4.4375 C 1.859375 -4.3125 1.640625 -4.140625 1.453125 -3.9375 L 1.453125 -6.609375 L 0.65625 -6.609375 Z M 0.65625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 2.453125 -4.609375 C 2.125 -4.609375 1.828125 -4.5625 1.5625 -4.4375 C 1.296875 -4.328125 1.078125 -4.171875 0.890625 -3.96875 C 0.71875 -3.765625 0.578125 -3.53125 0.46875 -3.25 C 0.375 -2.984375 0.328125 -2.6875 0.328125 -2.359375 C 0.328125 -1.96875 0.390625 -1.625 0.5 -1.328125 C 0.59375 -1.015625 0.75 -0.765625 0.9375 -0.5625 C 1.140625 -0.359375 1.359375 -0.203125 1.625 -0.09375 C 1.890625 0.015625 2.1875 0.0625 2.5 0.0625 C 2.65625 0.0625 2.828125 0.046875 3 0.015625 C 3.15625 -0.015625 3.328125 -0.046875 3.484375 -0.109375 C 3.640625 -0.171875 3.78125 -0.234375 3.921875 -0.328125 C 4.0625 -0.40625 4.171875 -0.515625 4.28125 -0.640625 L 4.046875 -0.921875 C 4.015625 -0.984375 3.96875 -1 3.90625 -1 C 3.859375 -1 3.796875 -0.984375 3.71875 -0.9375 C 3.65625 -0.890625 3.5625 -0.84375 3.453125 -0.78125 C 3.359375 -0.734375 3.234375 -0.6875 3.078125 -0.640625 C 2.9375 -0.59375 2.765625 -0.5625 2.5625 -0.5625 C 2.34375 -0.5625 2.15625 -0.59375 1.984375 -0.671875 C 1.8125 -0.734375 1.65625 -0.84375 1.53125 -0.984375 C 1.40625 -1.125 1.3125 -1.3125 1.234375 -1.515625 C 1.171875 -1.734375 1.125 -1.984375 1.125 -2.265625 L 4.140625 -2.265625 C 4.21875 -2.265625 4.265625 -2.296875 4.296875 -2.328125 C 4.328125 -2.375 4.34375 -2.453125 4.34375 -2.578125 C 4.34375 -2.90625 4.28125 -3.1875 4.203125 -3.4375 C 4.09375 -3.703125 3.96875 -3.90625 3.796875 -4.078125 C 3.640625 -4.25 3.4375 -4.390625 3.203125 -4.46875 C 2.984375 -4.5625 2.71875 -4.609375 2.453125 -4.609375 Z M 2.46875 -4.03125 C 2.65625 -4.03125 2.8125 -4 2.953125 -3.9375 C 3.09375 -3.875 3.21875 -3.78125 3.3125 -3.671875 C 3.421875 -3.5625 3.5 -3.4375 3.546875 -3.28125 C 3.59375 -3.125 3.625 -2.953125 3.625 -2.765625 L 1.140625 -2.765625 C 1.203125 -3.15625 1.34375 -3.46875 1.5625 -3.6875 C 1.78125 -3.921875 2.078125 -4.03125 2.46875 -4.03125 Z M 2.46875 -4.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-4">
<path style="stroke:none;" d="M 0.0625 -4.546875 L 1.53125 0 L 2.140625 0 C 2.21875 0 2.28125 -0.046875 2.3125 -0.15625 L 3.34375 -3.234375 C 3.359375 -3.296875 3.375 -3.375 3.390625 -3.4375 C 3.40625 -3.515625 3.421875 -3.578125 3.4375 -3.65625 C 3.453125 -3.578125 3.46875 -3.515625 3.484375 -3.4375 C 3.5 -3.375 3.515625 -3.296875 3.546875 -3.234375 L 4.546875 -0.15625 C 4.578125 -0.046875 4.625 0 4.703125 0 L 5.34375 0 L 6.8125 -4.546875 L 6.203125 -4.546875 C 6.15625 -4.546875 6.109375 -4.53125 6.0625 -4.5 C 6.015625 -4.46875 5.984375 -4.421875 5.984375 -4.375 L 5.09375 -1.453125 C 5.0625 -1.359375 5.03125 -1.265625 5.015625 -1.15625 C 4.984375 -1.046875 4.96875 -0.9375 4.953125 -0.84375 C 4.9375 -0.9375 4.90625 -1.046875 4.875 -1.140625 C 4.859375 -1.25 4.828125 -1.34375 4.796875 -1.453125 L 3.859375 -4.390625 C 3.84375 -4.4375 3.8125 -4.46875 3.78125 -4.5 C 3.734375 -4.53125 3.6875 -4.546875 3.625 -4.546875 L 3.28125 -4.546875 C 3.21875 -4.546875 3.171875 -4.53125 3.140625 -4.5 C 3.109375 -4.46875 3.078125 -4.4375 3.0625 -4.390625 L 2.109375 -1.453125 C 2.078125 -1.34375 2.046875 -1.234375 2.015625 -1.140625 C 1.984375 -1.046875 1.953125 -0.9375 1.921875 -0.84375 C 1.921875 -0.9375 1.890625 -1.046875 1.875 -1.140625 C 1.859375 -1.234375 1.828125 -1.34375 1.8125 -1.453125 L 0.9375 -4.375 C 0.921875 -4.421875 0.890625 -4.46875 0.859375 -4.5 C 0.8125 -4.53125 0.765625 -4.546875 0.6875 -4.546875 Z M 0.0625 -4.546875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-5">
<path style="stroke:none;" d="M 2.5 -4.609375 C 2.15625 -4.609375 1.859375 -4.5625 1.59375 -4.453125 C 1.328125 -4.34375 1.09375 -4.171875 0.90625 -3.984375 C 0.71875 -3.78125 0.578125 -3.53125 0.46875 -3.234375 C 0.375 -2.953125 0.328125 -2.625 0.328125 -2.28125 C 0.328125 -1.921875 0.375 -1.59375 0.46875 -1.3125 C 0.578125 -1.015625 0.71875 -0.765625 0.90625 -0.5625 C 1.09375 -0.375 1.328125 -0.203125 1.59375 -0.09375 C 1.859375 0.015625 2.15625 0.0625 2.5 0.0625 C 2.828125 0.0625 3.125 0.015625 3.390625 -0.09375 C 3.65625 -0.203125 3.890625 -0.375 4.078125 -0.5625 C 4.265625 -0.765625 4.40625 -1.015625 4.5 -1.3125 C 4.609375 -1.59375 4.65625 -1.921875 4.65625 -2.28125 C 4.65625 -2.625 4.609375 -2.953125 4.5 -3.234375 C 4.40625 -3.53125 4.265625 -3.78125 4.078125 -3.984375 C 3.890625 -4.171875 3.65625 -4.34375 3.390625 -4.453125 C 3.125 -4.5625 2.828125 -4.609375 2.5 -4.609375 Z M 2.5 -0.5625 C 2.265625 -0.5625 2.0625 -0.59375 1.90625 -0.671875 C 1.734375 -0.75 1.59375 -0.859375 1.484375 -1.015625 C 1.375 -1.15625 1.28125 -1.34375 1.234375 -1.546875 C 1.171875 -1.765625 1.140625 -2 1.140625 -2.265625 C 1.140625 -2.53125 1.171875 -2.78125 1.234375 -3 C 1.28125 -3.203125 1.375 -3.390625 1.484375 -3.53125 C 1.59375 -3.6875 1.734375 -3.796875 1.90625 -3.875 C 2.0625 -3.953125 2.265625 -3.984375 2.5 -3.984375 C 2.9375 -3.984375 3.28125 -3.828125 3.5 -3.53125 C 3.71875 -3.234375 3.828125 -2.8125 3.828125 -2.265625 C 3.828125 -1.734375 3.71875 -1.3125 3.5 -1.015625 C 3.28125 -0.703125 2.9375 -0.5625 2.5 -0.5625 Z M 2.5 -0.5625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-6">
<path style="stroke:none;" d="M 0.65625 0 L 1.453125 0 L 1.453125 -3.390625 C 1.59375 -3.5625 1.75 -3.71875 1.921875 -3.828125 C 2.078125 -3.921875 2.265625 -3.984375 2.46875 -3.984375 C 2.75 -3.984375 2.953125 -3.890625 3.109375 -3.703125 C 3.25 -3.53125 3.328125 -3.25 3.328125 -2.890625 L 3.328125 0 L 4.125 0 L 4.125 -2.890625 C 4.125 -3.078125 4.15625 -3.234375 4.203125 -3.359375 C 4.25 -3.5 4.328125 -3.609375 4.421875 -3.703125 C 4.5 -3.796875 4.609375 -3.859375 4.734375 -3.90625 C 4.84375 -3.953125 4.96875 -3.984375 5.109375 -3.984375 C 5.40625 -3.984375 5.625 -3.890625 5.78125 -3.703125 C 5.9375 -3.515625 6.015625 -3.25 6.015625 -2.890625 L 6.015625 0 L 6.8125 0 L 6.8125 -2.890625 C 6.8125 -3.171875 6.78125 -3.40625 6.703125 -3.625 C 6.640625 -3.84375 6.53125 -4.015625 6.40625 -4.171875 C 6.28125 -4.3125 6.125 -4.421875 5.9375 -4.5 C 5.75 -4.578125 5.53125 -4.609375 5.296875 -4.609375 C 5.140625 -4.609375 5 -4.59375 4.859375 -4.5625 C 4.703125 -4.53125 4.578125 -4.46875 4.4375 -4.390625 C 4.3125 -4.3125 4.203125 -4.21875 4.09375 -4.09375 C 3.984375 -3.96875 3.90625 -3.828125 3.84375 -3.671875 C 3.765625 -3.953125 3.625 -4.1875 3.4375 -4.359375 C 3.25 -4.53125 3 -4.609375 2.6875 -4.609375 C 2.421875 -4.609375 2.171875 -4.546875 1.96875 -4.421875 C 1.765625 -4.28125 1.5625 -4.109375 1.40625 -3.90625 L 1.34375 -4.375 C 1.3125 -4.484375 1.234375 -4.546875 1.125 -4.546875 L 0.65625 -4.546875 Z M 0.65625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-7">
<path style="stroke:none;" d="M 3.984375 0 L 3.984375 -2.90625 C 3.984375 -3.15625 3.953125 -3.390625 3.890625 -3.609375 C 3.828125 -3.8125 3.71875 -4 3.578125 -4.140625 C 3.453125 -4.296875 3.28125 -4.40625 3.078125 -4.5 C 2.890625 -4.578125 2.65625 -4.625 2.40625 -4.625 C 2.046875 -4.625 1.734375 -4.5625 1.4375 -4.4375 C 1.15625 -4.328125 0.890625 -4.140625 0.625 -3.90625 L 0.78125 -3.640625 C 0.796875 -3.609375 0.828125 -3.5625 0.875 -3.546875 C 0.921875 -3.515625 0.953125 -3.5 1.015625 -3.5 C 1.078125 -3.5 1.15625 -3.53125 1.21875 -3.5625 C 1.296875 -3.625 1.375 -3.671875 1.46875 -3.734375 C 1.5625 -3.796875 1.6875 -3.859375 1.828125 -3.90625 C 1.953125 -3.953125 2.109375 -3.984375 2.3125 -3.984375 C 2.609375 -3.984375 2.828125 -3.890625 2.984375 -3.703125 C 3.125 -3.53125 3.203125 -3.265625 3.203125 -2.90625 L 3.203125 -2.546875 C 2.6875 -2.53125 2.25 -2.5 1.90625 -2.40625 C 1.546875 -2.328125 1.25 -2.21875 1.046875 -2.09375 C 0.8125 -1.96875 0.65625 -1.828125 0.5625 -1.65625 C 0.46875 -1.484375 0.40625 -1.3125 0.40625 -1.140625 C 0.40625 -0.921875 0.453125 -0.75 0.515625 -0.59375 C 0.578125 -0.453125 0.671875 -0.328125 0.78125 -0.21875 C 0.890625 -0.125 1.03125 -0.046875 1.1875 0 C 1.34375 0.046875 1.5 0.078125 1.6875 0.078125 C 1.859375 0.078125 2.015625 0.0625 2.15625 0.03125 C 2.296875 0 2.4375 -0.046875 2.5625 -0.109375 C 2.6875 -0.15625 2.796875 -0.234375 2.921875 -0.328125 C 3.03125 -0.40625 3.140625 -0.5 3.265625 -0.609375 L 3.359375 -0.1875 C 3.375 -0.109375 3.40625 -0.0625 3.453125 -0.03125 C 3.5 -0.015625 3.5625 0 3.640625 0 Z M 1.921875 -0.484375 C 1.8125 -0.484375 1.71875 -0.5 1.625 -0.53125 C 1.53125 -0.546875 1.46875 -0.59375 1.390625 -0.640625 C 1.328125 -0.703125 1.28125 -0.78125 1.234375 -0.859375 C 1.203125 -0.953125 1.171875 -1.046875 1.171875 -1.171875 C 1.171875 -1.296875 1.21875 -1.40625 1.296875 -1.515625 C 1.359375 -1.609375 1.484375 -1.703125 1.640625 -1.78125 C 1.796875 -1.859375 2.015625 -1.90625 2.265625 -1.953125 C 2.53125 -2 2.84375 -2.03125 3.203125 -2.046875 L 3.203125 -1.09375 C 3.109375 -1 3.015625 -0.921875 2.9375 -0.84375 C 2.828125 -0.765625 2.734375 -0.703125 2.640625 -0.65625 C 2.53125 -0.59375 2.421875 -0.5625 2.3125 -0.53125 C 2.1875 -0.5 2.0625 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-8">
<path style="stroke:none;" d="M 0.65625 0 L 1.453125 0 L 1.453125 -3.34375 C 1.625 -3.53125 1.8125 -3.6875 2.015625 -3.8125 C 2.21875 -3.921875 2.4375 -3.984375 2.6875 -3.984375 C 3 -3.984375 3.25 -3.890625 3.40625 -3.6875 C 3.5625 -3.5 3.640625 -3.234375 3.640625 -2.890625 L 3.640625 0 L 4.4375 0 L 4.4375 -2.890625 C 4.4375 -3.140625 4.40625 -3.390625 4.34375 -3.59375 C 4.265625 -3.8125 4.171875 -3.984375 4.046875 -4.140625 C 3.921875 -4.296875 3.765625 -4.40625 3.5625 -4.5 C 3.375 -4.578125 3.15625 -4.609375 2.921875 -4.609375 C 2.59375 -4.609375 2.3125 -4.546875 2.078125 -4.40625 C 1.828125 -4.28125 1.609375 -4.109375 1.40625 -3.890625 L 1.34375 -4.375 C 1.3125 -4.484375 1.234375 -4.546875 1.125 -4.546875 L 0.65625 -4.546875 Z M 0.65625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-9">
<path style="stroke:none;" d="M 3.25 -3.796875 L 3.4375 -4.078125 C 3.265625 -4.25 3.0625 -4.375 2.8125 -4.46875 C 2.578125 -4.5625 2.3125 -4.609375 2.015625 -4.609375 C 1.765625 -4.609375 1.53125 -4.578125 1.328125 -4.5 C 1.125 -4.4375 0.953125 -4.34375 0.828125 -4.21875 C 0.6875 -4.09375 0.578125 -3.953125 0.5 -3.796875 C 0.4375 -3.640625 0.40625 -3.46875 0.40625 -3.296875 C 0.40625 -3.109375 0.4375 -2.9375 0.5 -2.796875 C 0.5625 -2.65625 0.65625 -2.546875 0.765625 -2.453125 C 0.875 -2.359375 1 -2.28125 1.140625 -2.21875 C 1.28125 -2.171875 1.4375 -2.109375 1.578125 -2.0625 C 1.734375 -2.015625 1.875 -1.96875 2.015625 -1.921875 C 2.15625 -1.890625 2.28125 -1.828125 2.390625 -1.78125 C 2.5 -1.71875 2.59375 -1.640625 2.65625 -1.5625 C 2.71875 -1.484375 2.765625 -1.375 2.765625 -1.25 C 2.765625 -1.140625 2.75 -1.046875 2.703125 -0.96875 C 2.671875 -0.875 2.609375 -0.796875 2.53125 -0.71875 C 2.453125 -0.65625 2.359375 -0.59375 2.25 -0.5625 C 2.125 -0.515625 1.984375 -0.5 1.828125 -0.5 C 1.65625 -0.5 1.5 -0.53125 1.375 -0.5625 C 1.25 -0.609375 1.15625 -0.65625 1.0625 -0.703125 C 0.984375 -0.75 0.90625 -0.796875 0.859375 -0.84375 C 0.796875 -0.890625 0.734375 -0.90625 0.6875 -0.90625 C 0.625 -0.90625 0.578125 -0.890625 0.546875 -0.875 C 0.515625 -0.859375 0.484375 -0.828125 0.46875 -0.78125 L 0.28125 -0.484375 C 0.453125 -0.3125 0.671875 -0.1875 0.9375 -0.078125 C 1.1875 0.015625 1.46875 0.078125 1.796875 0.078125 C 2.078125 0.078125 2.3125 0.03125 2.53125 -0.046875 C 2.734375 -0.109375 2.921875 -0.21875 3.0625 -0.34375 C 3.21875 -0.46875 3.328125 -0.625 3.40625 -0.8125 C 3.46875 -0.984375 3.515625 -1.171875 3.515625 -1.390625 C 3.515625 -1.578125 3.484375 -1.734375 3.40625 -1.859375 C 3.34375 -1.984375 3.25 -2.09375 3.140625 -2.1875 C 3.03125 -2.28125 2.90625 -2.359375 2.765625 -2.40625 C 2.625 -2.46875 2.484375 -2.53125 2.328125 -2.578125 C 2.1875 -2.625 2.046875 -2.671875 1.90625 -2.71875 C 1.765625 -2.765625 1.640625 -2.8125 1.53125 -2.859375 C 1.40625 -2.921875 1.328125 -2.984375 1.25 -3.0625 C 1.1875 -3.140625 1.15625 -3.25 1.15625 -3.359375 C 1.15625 -3.453125 1.171875 -3.53125 1.21875 -3.609375 C 1.25 -3.6875 1.3125 -3.765625 1.390625 -3.828125 C 1.46875 -3.890625 1.5625 -3.9375 1.671875 -3.96875 C 1.78125 -4 1.890625 -4.015625 2.03125 -4.015625 C 2.1875 -4.015625 2.328125 -4 2.4375 -3.96875 C 2.546875 -3.9375 2.640625 -3.890625 2.71875 -3.859375 C 2.8125 -3.8125 2.875 -3.78125 2.9375 -3.75 C 3 -3.71875 3.046875 -3.6875 3.09375 -3.6875 C 3.171875 -3.6875 3.21875 -3.71875 3.25 -3.796875 Z M 3.25 -3.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-10">
<path style="stroke:none;" d="M 1.546875 -4.546875 L 0.75 -4.546875 L 0.75 0 L 1.546875 0 Z M 1.71875 -5.96875 C 1.71875 -6.046875 1.703125 -6.125 1.671875 -6.1875 C 1.640625 -6.265625 1.59375 -6.328125 1.546875 -6.375 C 1.5 -6.421875 1.4375 -6.46875 1.375 -6.5 C 1.296875 -6.53125 1.21875 -6.546875 1.140625 -6.546875 C 1.078125 -6.546875 1 -6.53125 0.9375 -6.5 C 0.859375 -6.46875 0.796875 -6.421875 0.75 -6.375 C 0.703125 -6.328125 0.65625 -6.265625 0.625 -6.1875 C 0.59375 -6.125 0.578125 -6.046875 0.578125 -5.96875 C 0.578125 -5.890625 0.59375 -5.828125 0.625 -5.75 C 0.65625 -5.6875 0.703125 -5.625 0.75 -5.5625 C 0.796875 -5.515625 0.859375 -5.484375 0.9375 -5.453125 C 1 -5.421875 1.078125 -5.40625 1.140625 -5.40625 C 1.21875 -5.40625 1.296875 -5.421875 1.375 -5.453125 C 1.4375 -5.484375 1.5 -5.515625 1.546875 -5.5625 C 1.59375 -5.625 1.640625 -5.6875 1.671875 -5.75 C 1.703125 -5.828125 1.71875 -5.890625 1.71875 -5.96875 Z M 1.71875 -5.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-11">
<path style="stroke:none;" d="M 3.75 -3.734375 L 3.96875 -4.015625 C 3.78125 -4.203125 3.5625 -4.359375 3.3125 -4.453125 C 3.0625 -4.5625 2.796875 -4.609375 2.46875 -4.609375 C 2.125 -4.609375 1.828125 -4.5625 1.5625 -4.4375 C 1.296875 -4.328125 1.0625 -4.15625 0.890625 -3.953125 C 0.703125 -3.75 0.5625 -3.5 0.46875 -3.203125 C 0.375 -2.921875 0.328125 -2.609375 0.328125 -2.28125 C 0.328125 -1.90625 0.390625 -1.578125 0.484375 -1.28125 C 0.59375 -0.984375 0.734375 -0.75 0.90625 -0.546875 C 1.09375 -0.34375 1.296875 -0.203125 1.546875 -0.09375 C 1.796875 0.015625 2.046875 0.0625 2.34375 0.0625 C 2.65625 0.0625 2.984375 0.015625 3.28125 -0.109375 C 3.5625 -0.21875 3.8125 -0.390625 4.015625 -0.640625 L 3.796875 -0.921875 C 3.765625 -0.984375 3.703125 -1 3.640625 -1 C 3.578125 -1 3.53125 -0.984375 3.46875 -0.9375 C 3.421875 -0.890625 3.359375 -0.84375 3.265625 -0.78125 C 3.1875 -0.71875 3.078125 -0.671875 2.953125 -0.625 C 2.828125 -0.578125 2.671875 -0.5625 2.46875 -0.5625 C 2.28125 -0.5625 2.09375 -0.59375 1.921875 -0.671875 C 1.765625 -0.75 1.625 -0.859375 1.515625 -1 C 1.40625 -1.140625 1.3125 -1.328125 1.25 -1.546875 C 1.1875 -1.75 1.15625 -2 1.15625 -2.28125 C 1.15625 -2.53125 1.1875 -2.78125 1.234375 -2.984375 C 1.296875 -3.203125 1.390625 -3.375 1.5 -3.53125 C 1.609375 -3.671875 1.765625 -3.796875 1.921875 -3.875 C 2.09375 -3.953125 2.296875 -3.984375 2.515625 -3.984375 C 2.6875 -3.984375 2.828125 -3.96875 2.9375 -3.9375 C 3.046875 -3.890625 3.15625 -3.859375 3.234375 -3.8125 C 3.3125 -3.765625 3.375 -3.71875 3.4375 -3.6875 C 3.484375 -3.65625 3.53125 -3.625 3.578125 -3.625 C 3.625 -3.625 3.65625 -3.640625 3.6875 -3.65625 C 3.703125 -3.671875 3.734375 -3.703125 3.75 -3.734375 Z M 3.75 -3.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-12">
<path style="stroke:none;" d="M 1.484375 -6.609375 L 0.6875 -6.609375 L 0.6875 0 L 1.484375 0 L 1.484375 -2.171875 L 1.703125 -2.171875 C 1.796875 -2.171875 1.859375 -2.15625 1.90625 -2.140625 C 1.953125 -2.125 2 -2.078125 2.046875 -2.015625 L 3.53125 -0.15625 C 3.578125 -0.109375 3.625 -0.0625 3.671875 -0.03125 C 3.71875 -0.015625 3.765625 0 3.84375 0 L 4.5625 0 L 2.78125 -2.25 C 2.734375 -2.296875 2.703125 -2.359375 2.65625 -2.40625 C 2.609375 -2.453125 2.5625 -2.484375 2.515625 -2.53125 C 2.5625 -2.5625 2.609375 -2.59375 2.640625 -2.625 C 2.6875 -2.671875 2.734375 -2.71875 2.765625 -2.765625 L 4.4375 -4.546875 L 3.71875 -4.546875 C 3.640625 -4.546875 3.578125 -4.53125 3.53125 -4.5 C 3.5 -4.46875 3.453125 -4.4375 3.40625 -4.375 L 1.96875 -2.84375 C 1.921875 -2.796875 1.875 -2.765625 1.84375 -2.75 C 1.796875 -2.71875 1.75 -2.71875 1.6875 -2.71875 L 1.484375 -2.71875 Z M 1.484375 -6.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-13">
<path style="stroke:none;" d="M 0.453125 -3.03125 L 0.453125 -2.34375 L 2.65625 -2.34375 L 2.65625 -3.03125 Z M 0.453125 -3.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-14">
<path style="stroke:none;" d="M 0.65625 0 L 1.453125 0 L 1.453125 -2.890625 C 1.578125 -3.203125 1.734375 -3.4375 1.921875 -3.59375 C 2.109375 -3.765625 2.34375 -3.84375 2.625 -3.84375 C 2.78125 -3.84375 2.890625 -3.828125 2.984375 -3.796875 C 3.0625 -3.765625 3.140625 -3.75 3.171875 -3.75 C 3.25 -3.75 3.296875 -3.796875 3.3125 -3.859375 L 3.421875 -4.46875 C 3.328125 -4.515625 3.234375 -4.546875 3.140625 -4.578125 C 3.03125 -4.609375 2.921875 -4.625 2.796875 -4.625 C 2.484375 -4.625 2.21875 -4.53125 1.984375 -4.359375 C 1.765625 -4.171875 1.5625 -3.9375 1.40625 -3.609375 L 1.359375 -4.328125 C 1.34375 -4.40625 1.328125 -4.46875 1.296875 -4.5 C 1.265625 -4.53125 1.203125 -4.546875 1.109375 -4.546875 L 0.65625 -4.546875 Z M 0.65625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-15">
<path style="stroke:none;" d="M 0.6875 0 L 1.203125 0 C 1.3125 0 1.375 -0.0625 1.40625 -0.171875 L 1.4375 -0.578125 C 1.59375 -0.375 1.78125 -0.21875 1.984375 -0.109375 C 2.1875 0 2.4375 0.0625 2.71875 0.0625 C 3.03125 0.0625 3.3125 0 3.546875 -0.109375 C 3.796875 -0.234375 4 -0.40625 4.171875 -0.625 C 4.34375 -0.828125 4.46875 -1.078125 4.5625 -1.359375 C 4.640625 -1.65625 4.6875 -1.96875 4.6875 -2.296875 C 4.6875 -2.671875 4.65625 -3.015625 4.5625 -3.296875 C 4.484375 -3.59375 4.375 -3.828125 4.21875 -4.03125 C 4.078125 -4.21875 3.890625 -4.375 3.6875 -4.46875 C 3.46875 -4.5625 3.234375 -4.609375 2.96875 -4.609375 C 2.65625 -4.609375 2.375 -4.546875 2.140625 -4.40625 C 1.890625 -4.28125 1.671875 -4.109375 1.484375 -3.890625 L 1.484375 -6.609375 L 0.6875 -6.609375 Z M 2.703125 -3.984375 C 2.890625 -3.984375 3.046875 -3.953125 3.203125 -3.890625 C 3.34375 -3.828125 3.46875 -3.71875 3.5625 -3.59375 C 3.65625 -3.453125 3.734375 -3.28125 3.78125 -3.0625 C 3.84375 -2.859375 3.859375 -2.59375 3.859375 -2.296875 C 3.859375 -1.734375 3.75 -1.3125 3.53125 -1.015625 C 3.296875 -0.703125 2.96875 -0.5625 2.546875 -0.5625 C 2.328125 -0.5625 2.140625 -0.59375 1.96875 -0.671875 C 1.78125 -0.765625 1.625 -0.890625 1.484375 -1.09375 L 1.484375 -3.296875 C 1.65625 -3.515625 1.828125 -3.671875 2.03125 -3.796875 C 2.21875 -3.921875 2.453125 -3.984375 2.703125 -3.984375 Z M 2.703125 -3.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-16">
<path style="stroke:none;" d="M 1.34375 -4.546875 L 0.546875 -4.546875 L 0.546875 -1.640625 C 0.546875 -1.390625 0.578125 -1.15625 0.640625 -0.9375 C 0.703125 -0.734375 0.796875 -0.546875 0.9375 -0.40625 C 1.0625 -0.25 1.21875 -0.140625 1.40625 -0.046875 C 1.59375 0.03125 1.828125 0.078125 2.0625 0.078125 C 2.390625 0.078125 2.65625 0 2.90625 -0.125 C 3.15625 -0.265625 3.375 -0.4375 3.578125 -0.65625 L 3.640625 -0.171875 C 3.671875 -0.046875 3.734375 0 3.859375 0 L 4.328125 0 L 4.328125 -4.546875 L 3.53125 -4.546875 L 3.53125 -1.1875 C 3.359375 -1 3.171875 -0.84375 2.953125 -0.734375 C 2.75 -0.625 2.53125 -0.5625 2.296875 -0.5625 C 1.984375 -0.5625 1.734375 -0.65625 1.578125 -0.84375 C 1.421875 -1.03125 1.34375 -1.296875 1.34375 -1.640625 Z M 1.34375 -4.546875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-17">
<path style="stroke:none;" d="M 2.1875 -4.625 C 1.9375 -4.625 1.703125 -4.578125 1.484375 -4.515625 C 1.28125 -4.453125 1.09375 -4.34375 0.953125 -4.21875 C 0.796875 -4.09375 0.671875 -3.9375 0.59375 -3.765625 C 0.5 -3.578125 0.46875 -3.375 0.46875 -3.15625 C 0.46875 -2.875 0.53125 -2.640625 0.65625 -2.4375 C 0.78125 -2.21875 0.953125 -2.046875 1.171875 -1.921875 C 1.078125 -1.875 1 -1.828125 0.921875 -1.765625 C 0.859375 -1.703125 0.796875 -1.625 0.75 -1.5625 C 0.703125 -1.5 0.65625 -1.421875 0.640625 -1.359375 C 0.609375 -1.28125 0.59375 -1.21875 0.59375 -1.15625 C 0.59375 -0.984375 0.640625 -0.859375 0.71875 -0.75 C 0.796875 -0.65625 0.890625 -0.5625 1.015625 -0.515625 C 0.78125 -0.421875 0.578125 -0.296875 0.4375 -0.140625 C 0.296875 0.015625 0.21875 0.203125 0.21875 0.4375 C 0.21875 0.59375 0.265625 0.75 0.34375 0.890625 C 0.4375 1.03125 0.546875 1.15625 0.71875 1.28125 C 0.890625 1.390625 1.09375 1.46875 1.34375 1.53125 C 1.59375 1.609375 1.875 1.640625 2.203125 1.640625 C 2.546875 1.640625 2.84375 1.59375 3.109375 1.5 C 3.375 1.421875 3.59375 1.3125 3.765625 1.171875 C 3.953125 1.03125 4.09375 0.859375 4.1875 0.6875 C 4.28125 0.5 4.34375 0.3125 4.34375 0.109375 C 4.34375 -0.09375 4.296875 -0.265625 4.203125 -0.390625 C 4.125 -0.53125 4 -0.625 3.859375 -0.703125 C 3.71875 -0.78125 3.5625 -0.828125 3.375 -0.859375 C 3.1875 -0.890625 3 -0.921875 2.8125 -0.9375 C 2.625 -0.953125 2.4375 -0.953125 2.25 -0.96875 C 2.078125 -0.96875 1.90625 -0.984375 1.765625 -1.015625 C 1.625 -1.03125 1.5 -1.078125 1.421875 -1.125 C 1.34375 -1.1875 1.296875 -1.265625 1.296875 -1.375 C 1.296875 -1.4375 1.3125 -1.5 1.359375 -1.578125 C 1.421875 -1.640625 1.484375 -1.703125 1.578125 -1.765625 C 1.765625 -1.71875 1.96875 -1.6875 2.1875 -1.6875 C 2.4375 -1.6875 2.65625 -1.71875 2.875 -1.796875 C 3.078125 -1.859375 3.25 -1.953125 3.40625 -2.09375 C 3.5625 -2.21875 3.671875 -2.375 3.765625 -2.5625 C 3.84375 -2.734375 3.890625 -2.9375 3.890625 -3.15625 C 3.890625 -3.390625 3.84375 -3.609375 3.734375 -3.8125 L 4.25 -3.875 C 4.375 -3.90625 4.4375 -3.96875 4.4375 -4.0625 L 4.4375 -4.359375 L 3.203125 -4.359375 C 3.0625 -4.453125 2.90625 -4.515625 2.734375 -4.5625 C 2.5625 -4.59375 2.375 -4.625 2.1875 -4.625 Z M 3.59375 0.25 C 3.59375 0.375 3.5625 0.46875 3.5 0.578125 C 3.4375 0.671875 3.359375 0.765625 3.234375 0.828125 C 3.109375 0.90625 2.96875 0.953125 2.796875 1 C 2.625 1.03125 2.4375 1.046875 2.21875 1.046875 C 2 1.046875 1.8125 1.03125 1.65625 1 C 1.484375 0.953125 1.34375 0.90625 1.234375 0.84375 C 1.140625 0.78125 1.046875 0.703125 1 0.625 C 0.953125 0.53125 0.921875 0.4375 0.921875 0.328125 C 0.921875 0.171875 0.984375 0.03125 1.078125 -0.078125 C 1.1875 -0.203125 1.328125 -0.296875 1.5 -0.375 C 1.640625 -0.359375 1.796875 -0.34375 1.953125 -0.328125 C 2.125 -0.328125 2.28125 -0.3125 2.4375 -0.3125 C 2.59375 -0.296875 2.734375 -0.28125 2.875 -0.265625 C 3.015625 -0.25 3.140625 -0.21875 3.25 -0.1875 C 3.359375 -0.140625 3.4375 -0.09375 3.5 -0.03125 C 3.5625 0.046875 3.59375 0.140625 3.59375 0.25 Z M 2.1875 -2.21875 C 2.03125 -2.21875 1.890625 -2.25 1.765625 -2.28125 C 1.640625 -2.328125 1.53125 -2.390625 1.453125 -2.46875 C 1.375 -2.5625 1.3125 -2.65625 1.265625 -2.765625 C 1.21875 -2.875 1.203125 -3 1.203125 -3.140625 C 1.203125 -3.40625 1.28125 -3.625 1.453125 -3.796875 C 1.625 -3.96875 1.859375 -4.046875 2.1875 -4.046875 C 2.5 -4.046875 2.75 -3.96875 2.921875 -3.796875 C 3.09375 -3.625 3.171875 -3.40625 3.171875 -3.140625 C 3.171875 -3 3.15625 -2.875 3.109375 -2.765625 C 3.078125 -2.65625 3.015625 -2.5625 2.921875 -2.46875 C 2.84375 -2.390625 2.734375 -2.328125 2.609375 -2.28125 C 2.484375 -2.25 2.34375 -2.21875 2.1875 -2.21875 Z M 2.1875 -2.21875 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="0.348" y="8.057"/>
<use xlink:href="#glyph0-2" x="6.784369" y="8.057"/>
<use xlink:href="#glyph0-3" x="12.849829" y="8.057"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="28.02" y="8.057"/>
<use xlink:href="#glyph0-5" x="36.376371" y="8.057"/>
<use xlink:href="#glyph0-6" x="42.44183" y="8.057"/>
<use xlink:href="#glyph0-7" x="51.398201" y="8.057"/>
<use xlink:href="#glyph0-8" x="56.929115" y="8.057"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="72.448" y="8.057"/>
<use xlink:href="#glyph0-7" x="78.51346" y="8.057"/>
<use xlink:href="#glyph0-9" x="84.044373" y="8.057"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="98.232" y="8.057"/>
<use xlink:href="#glyph0-5" x="104.330187" y="8.057"/>
<use xlink:href="#glyph0-11" x="110.395647" y="8.057"/>
<use xlink:href="#glyph0-12" x="116.461106" y="8.057"/>
<use xlink:href="#glyph0-2" x="122.035656" y="8.057"/>
<use xlink:href="#glyph0-13" x="128.101116" y="8.057"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="141.624" y="8.057"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="156.609" y="8.057"/>
<use xlink:href="#glyph0-14" x="160.678094" y="8.057"/>
<use xlink:href="#glyph0-15" x="163.470824" y="8.057"/>
<use xlink:href="#glyph0-16" x="168.565374" y="8.057"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="173.954469" y="8.057"/>
<use xlink:href="#glyph0-13" x="179.670837" y="8.057"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="193.193" y="8.057"/>
<use xlink:href="#glyph0-13" x="198.723914" y="8.057"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="212.247" y="8.057"/>
<use xlink:href="#glyph0-2" x="216.316094" y="8.057"/>
<use xlink:href="#glyph0-3" x="222.381554" y="8.057"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="237.551" y="8.057"/>
<use xlink:href="#glyph0-17" x="241.620094" y="8.057"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="245.809189" y="8.057"/>
<use xlink:href="#glyph0-14" x="251.340102" y="8.057"/>
<use xlink:href="#glyph0-8" x="254.132832" y="8.057"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="269.652" y="8.057"/>
<use xlink:href="#glyph0-13" x="274.386549" y="8.057"/>
<use xlink:href="#glyph0-7" x="278.455644" y="8.057"/>
<use xlink:href="#glyph0-13" x="283.986557" y="8.057"/>
<use xlink:href="#glyph0-14" x="288.055652" y="8.057"/>
<use xlink:href="#glyph0-5" x="290.848381" y="8.057"/>
<use xlink:href="#glyph0-8" x="296.913841" y="8.057"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-18" x="0.007" y="54.988"/>
<use xlink:href="#glyph0-14" x="8.221552" y="54.988"/>
<use xlink:href="#glyph0-3" x="11.014282" y="54.988"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-19" x="29.741" y="54.988"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-17" x="35.588278" y="54.988"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="39.777372" y="54.988"/>
<use xlink:href="#glyph0-11" x="45.308286" y="54.988"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="64.384" y="54.988"/>
<use xlink:href="#glyph0-7" x="70.44946" y="54.988"/>
<use xlink:href="#glyph0-13" x="75.980373" y="54.988"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="89.503" y="54.988"/>
<use xlink:href="#glyph0-14" x="95.219368" y="54.988"/>
<use xlink:href="#glyph0-8" x="98.012098" y="54.988"/>
<use xlink:href="#glyph0-3" x="104.077558" y="54.988"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-19" x="119.248" y="54.988"/>
<use xlink:href="#glyph0-7" x="125.422551" y="54.988"/>
<use xlink:href="#glyph0-2" x="130.953464" y="54.988"/>
<use xlink:href="#glyph0-17" x="137.018924" y="54.988"/>
<use xlink:href="#glyph0-16" x="141.415291" y="54.988"/>
<use xlink:href="#glyph0-7" x="147.13166" y="54.988"/>
<use xlink:href="#glyph0-17" x="152.662573" y="54.988"/>
<use xlink:href="#glyph0-13" x="157.058941" y="54.988"/>
<use xlink:href="#glyph0-3" x="161.128035" y="54.988"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="181.069" y="54.988"/>
<use xlink:href="#glyph0-6" x="186.599914" y="54.988"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-20" x="213.386" y="54.988"/>
<use xlink:href="#glyph0-7" x="220.444188" y="54.988"/>
<use xlink:href="#glyph0-2" x="225.975101" y="54.988"/>
<use xlink:href="#glyph0-8" x="232.040561" y="54.988"/>
<use xlink:href="#glyph0-2" x="238.106021" y="54.988"/>
<use xlink:href="#glyph0-5" x="244.17148" y="54.988"/>
<use xlink:href="#glyph0-21" x="250.23694" y="54.988"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="266.972" y="54.988"/>
<use xlink:href="#glyph0-3" x="272.54655" y="54.988"/>
<use xlink:href="#glyph0-16" x="278.262919" y="54.988"/>
<use xlink:href="#glyph0-7" x="283.979287" y="54.988"/>
<use xlink:href="#glyph0-11" x="289.510201" y="54.988"/>
<use xlink:href="#glyph0-21" x="295.57566" y="54.988"/>
<use xlink:href="#glyph0-13" x="299.252027" y="54.988"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="1.854" y="72.096"/>
<use xlink:href="#glyph1-2" x="5.198467" y="72.096"/>
<use xlink:href="#glyph1-3" x="10.183786" y="72.096"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="26.184" y="72.096"/>
<use xlink:href="#glyph1-5" x="33.052262" y="72.096"/>
<use xlink:href="#glyph1-6" x="38.037581" y="72.096"/>
<use xlink:href="#glyph1-7" x="45.398995" y="72.096"/>
<use xlink:href="#glyph1-8" x="49.94496" y="72.096"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="65.505" y="72.096"/>
<use xlink:href="#glyph1-7" x="70.490318" y="72.096"/>
<use xlink:href="#glyph1-9" x="75.036283" y="72.096"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-7" x="97.375" y="72.096"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="131.896" y="72.096"/>
<use xlink:href="#glyph1-10" x="135.240467" y="72.096"/>
<use xlink:href="#glyph1-11" x="137.535866" y="72.096"/>
<use xlink:href="#glyph1-12" x="141.723174" y="72.096"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="146.152576" y="72.096"/>
<use xlink:href="#glyph1-1" x="150.85097" y="72.096"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-7" x="176.297" y="72.096"/>
<use xlink:href="#glyph1-1" x="180.842965" y="72.096"/>
<use xlink:href="#glyph1-13" x="184.187432" y="72.096"/>
<use xlink:href="#glyph1-1" x="187.298773" y="72.096"/>
<use xlink:href="#glyph1-2" x="190.64324" y="72.096"/>
<use xlink:href="#glyph1-3" x="195.628558" y="72.096"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="209.781" y="72.096"/>
<use xlink:href="#glyph1-14" x="213.125467" y="72.096"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-7" x="216.568565" y="72.096"/>
<use xlink:href="#glyph1-10" x="221.11453" y="72.096"/>
<use xlink:href="#glyph1-8" x="223.409928" y="72.096"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-9" x="230.125762" y="72.096"/>
<use xlink:href="#glyph1-1" x="234.017179" y="72.096"/>
<use xlink:href="#glyph1-7" x="237.361646" y="72.096"/>
<use xlink:href="#glyph1-1" x="241.907611" y="72.096"/>
<use xlink:href="#glyph1-10" x="245.252078" y="72.096"/>
<use xlink:href="#glyph1-5" x="247.547477" y="72.096"/>
<use xlink:href="#glyph1-8" x="252.532795" y="72.096"/>
</g>
<g style="fill:rgb(50%,50%,50%);fill-opacity:1;">
<use xlink:href="#glyph1-15" x="271.199" y="72.096"/>
<use xlink:href="#glyph1-5" x="276.211218" y="72.096"/>
<use xlink:href="#glyph1-16" x="281.196536" y="72.096"/>
<use xlink:href="#glyph1-17" x="286.181854" y="72.096"/>
<use xlink:href="#glyph1-2" x="290.763685" y="72.096"/>
<use xlink:href="#glyph1-1" x="295.749003" y="72.096"/>
</g>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -72.628844 -8.822281 L -77.871031 -38.111344 " transform="matrix(1,0,0,-1,151.664,5.041)"/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -36.460875 -8.822281 L 133.484437 -38.111344 " transform="matrix(1,0,0,-1,151.664,5.041)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 383 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 613 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 118 KiB

View File

@ -0,0 +1,157 @@
include ../_includes/_mixins
+lead In v0.100.3, we quietly rolled out support for GIL-free multi-threading for spaCy's syntactic dependency parsing and named entity recognition models. Because these models take up a lot of memory, we've wanted to release the global interpretter lock (GIL) around them for a long time. When we finally did, it seemed a little too good to be true, so we delayed celebration &mdash; and then quickly moved on to other things. It's now past time for a write-up.
p This is mostly an implementation post, but to me, implementation is the pain and the product is the pleasure. So, let's start with the pay-off. The pay-off is the #[code .pipe()] method, which adds #[em data-streaming] capabilities to spaCy:
+code('python', 'Stream Parsing').
import spacy
nlp = spacy.load('de')
for doc in nlp.pipe(texts, n_threads=16, batch_size=10000):
analyse_text(doc)
p The #[code .pipe()] method accepts an iterator (above, #[code texts]), and produces an iterator. Internally, a buffer is accumulated (given by the #[code batch_size] argument, and multiple threads are allowed to work on the batch simultaneously. Once the batch is complete, the processed documents are yielded from the iterator.
+aside("Iterators") #[a(href="http://rare-technologies.com/data-streaming-in-python-generators-iterators-iterables/") My favourite post] on the Zen of Python iterators was written by Radim, the creator of #[a(href="http://radimrehurek.com/gensim/") Gensim]. I was on board with generators before, but I hadn't really thought about the simplicity of minibatching.
p Each document is processed independently, so if your batch size is large enough, and OpenMP is enabled, you should be able to work all your cores with only one copy of the spaCy models in memory. spaCy is designed for web-scale data processing &mdash; we want you to be able to perform sophisticated linguistic analysis on whole dumps of the Common Crawl. With effective shared memory parallelism, those jobs are many times cheaper.
+table(["Method", "Number threads", "Seconds (lower is better)"])
+row
+cell Loop
+cell 1
+cell 691s
+row
+cell Pipe
+cell 1
+cell 678s
+row
+cell Pipe
+cell 2
+cell 432s
+row
+cell Pipe
+cell 4
+cell 312s
caption.
Seconds to parse 20,000 documents, with 1, 2 or 4 threads. The #[em loop] condition uses the #[code doc = nlp(text)] function, instead of the #[code .pipe] method, to show the overhead incurred from the minibatched stream processing (within measurement error).
+h3("implementation") Python, Cython and the Global Interpretter Lock
p Endless ink has been spilled about the CPython #[a(href="https://wiki.python.org/moin/GlobalInterpreterLock") Global Interpretter Lock (GIL)]. It isn't a problem for most code, but for spaCy, it really is. Computers may be fast and getting faster, but the internet is big and getting bigger. We have a lot fo text to process, and we'd like to use our machines efficiently.
p Python maintains reference counts in a global data structure. When you create or delete a Python object, its reference count has to change. However, the data structure holding the reference counts is not thread-safe. To change the reference counts, you therefore need to acquire the global interpretter lock.
p One way around the GIL is therefore to avoid the need for Python variables. This is what I've done with spaCy. More specifically, spaCy is a Python library, but it's not actually written in Python. It's implemented in Cython, and transpiled into a C++ extension module.
p In ordinary Python code, you can have a list of numbers like this:
+code('my_list.py', 'Python list').
my_list = [0, 1, 2]
p In Cython, you can write exactly the same code, but the code is not interpreted by Python directly. Instead, it's transpiled into C or C++ code, which calls the Python C-API. Here's some of the resulting code:
+code('my_list.pyx', 'Transpiled C').
__pyx_t_1 = PyList_New(3); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1);
__Pyx_INCREF(__pyx_int_0);
__Pyx_GIVEREF(__pyx_int_0);
PyList_SET_ITEM(__pyx_t_1, 0, __pyx_int_0);
__Pyx_INCREF(__pyx_int_1);
__Pyx_GIVEREF(__pyx_int_1);
PyList_SET_ITEM(__pyx_t_1, 1, __pyx_int_1);
__Pyx_INCREF(__pyx_int_2);
__Pyx_GIVEREF(__pyx_int_2);
PyList_SET_ITEM(__pyx_t_1, 2, __pyx_int_2)
p You can't call any of those functions if you're not holding the GIL. But you can call plain old C and C++ functions, such as #[code malloc()] and #[code free]:
+code('my_array.pyx', 'C in Cython').
from libc.stlib cimport malloc, free
my_arr = &lt;int*&gt;malloc(sizeof(int) * 3)
my_arr[0] = 1
my_arr[1] = 2
my_arr[2] = 3
do_stuff(my_arr)
free(my_arr)
p The Cython #[code nogil] keyword allows you to declare that a function is safe to call even if you're not already holding the GIL. You can read more about releasing the GIL with Cython #[a(href="http://docs.cython.org/src/userguide/parallelism.html") here].
p The disadvantages of writing with #[code nogil] semantics are obvious &mdash; you're limited to writing #[a(href="https://spacy.io/blog/writing-c-in-cython") C with (arguably) nicer syntax]. If you've never tried it, I think it's an interesting exercise to do without the Python semantics. It does make you appreciate what the language is providing. Probably the thing I miss most are the exceptions and the lists. The Python unicode object is also very useful.
+h3("parser-pipe") Implementation of the Parser.pipe method
p Here's the implementation of the Parser.pipe method in spaCy. This method does the following:
+list
+item Buffers the texts into temporary work arrays
+item Releases the GIL
+item Iterates over the work arrays in an OpenMP #[code prange] loop
+item Calls the #[code Parser.parseC()] method for each unit of work (each document)
+code('python', 'Parser.pipe').
def pipe(self, stream, int batch_size=1000, int n_threads=2):
cdef Pool mem = Pool()
cdef TokenC** doc_ptr = &lt;TokenC**&gt;mem.alloc(batch_size, sizeof(TokenC*))
cdef int* lengths = &lt;int*&gt;mem.alloc(batch_size, sizeof(int))
cdef Doc doc
cdef int i
cdef int nr_class = self.moves.n_moves
cdef int nr_feat = self.model.nr_feat
cdef int status
queue = []
for doc in stream:
doc_ptr[len(queue)] = doc.c
lengths[len(queue)] = doc.length
queue.append(doc)
if len(queue) == batch_size:
with nogil:
for i in cython.parallel.prange(batch_size, num_threads=n_threads):
status = self.parseC(doc_ptr[i], lengths[i], nr_feat, nr_class)
if status != 0:
with gil:
sent_str = queue[i].text
raise ValueError("Error parsing doc: %s" % sent_str)
PyErr_CheckSignals()
for doc in queue:
self.moves.finalize_doc(doc)
yield doc
queue = []
batch_size = len(queue)
with nogil:
for i in cython.parallel.prange(batch_size, num_threads=n_threads):
status = self.parseC(doc_ptr[i], lengths[i], nr_feat, nr_class)
if status != 0:
with gil:
sent_str = queue[i].text
raise ValueError("Error parsing doc: %s" % sent_str)
PyErr_CheckSignals()
for doc in queue:
self.moves.finalize_doc(doc)
yield doc
p The actual mechanics of the multi-threading are super simple, because NLP is (often) embarrassingly parallel &mdash; every document is parsed independently, so we just need to make a #[code prange] loop over a stream of texts. The #[code prange] function is an auto-magical work-sharing loop, that manages the OpenMP semantics for you. You still need to reason about false-sharing, thread safety, etc &mdash; all the parts that make writing multi-threaded code fundamentally challenging. But, at least the calling syntax is clean, and a few incidental details are taken care of for you.
+h3('the-hard-part') The hard part
p I couldn't tell you that multi-threading the parser was easy. At least, not with a straight face. I've never written a significant Java program, but I imagine writing multi-threaded Java is significantly easier. Using Cython, the task was at least possible. But it definitely wasn't easy.
p If you count my time in academia, I've been writing statistical parsers in Cython for a five or six years now, and I've always wanted to release the GIL around the parsing loop. By late 2015 I had the machine learning, hash table, outer parsing loop, and most of the feature extraction as #[code nogil] functions. But the #[a(href="https://github.com/spacy-io/spaCy/blob/0.100.2/spacy/syntax/stateclass.pxd#L10") state object] had a complicated interface, and was implemented as a #[code cdef class]. I couldn't create this object or store it in a container without acquiring the GIL.
p The break-through came when I figured out an undocumented way to write a C++ class in Cython. This allowed me to hollow out the existing #[code cdef class] that controlled the parser state. I proxied its interface to the inner C++ class, method by method. This way I could keep the code working, and make sure I didn't introduce any subtle bugs into the feature calculation.
p You can see the inner class #[a(href="https://github.com/spacy-io/spaCy/blob/master/spacy/syntax/_state.pxd") here]. If you navigate around the git history of this file, you can see the patches where I implemented the #[code .pipe] method.
+h3('conclusion') Conclusion
p Natural language processing (NLP) programs have some peculiar performance characterstics. The algorithms and data structures involved are often rather complicated, and the numeric calculations being performed are often quite trivial.
p spaCy's parser and named entity recognition system have to make two or three predictions on each word of the input document, using a linear model. All of the complexity is in the feature extraction and state management code, and the computational bottle-neck ends up being #[a(href="https://github.com/spacy-io/thinc/blob/master/thinc/linear/avgtron.pyx#L128") retrieval of the weights data] from main memory.
p When we finally switch over to a neural network model, the considerations will be a little bit different. It's possible to implement the parser such that you're stepping forward through multiple sentences at once. However, that has its own challenges. I think it's both easier and more effective to parallelise the outer loop, so I expect the work put into the current implementation will serve us well.

View File

@ -37,7 +37,7 @@ p Here's how the current pre-processing function looks, at the time of writing.
# Merge them into single tokens
ent.merge(ent.root.tag_, ent.text, ent.label_)
token_strings = []
for token in doc:
for token in tokens:
text = token.text.replace(' ', '_')
tag = token.ent_type_ or token.pos_
token_strings.append('%s|%s' % (text, tag))

View File

@ -0,0 +1,55 @@
include ../_includes/_mixins
+lead Yesterday, Google open sourced their Tensorflow-based dependency parsing library, SyntaxNet. The library gives access to a line of neural network parsing models published by Google researchers over the last two years. I've been following this work closely since it was published, and have been looking forward to the software being published. This post tries to provide some context around the release &mdash; what's new here, and how important is it?
p #[a(href="http://googleresearch.blogspot.de/2016/05/announcing-syntaxnet-worlds-most.html") SyntaxNet] provides an important module in a #[a(href="https://en.wikipedia.org/wiki/Natural_language_processing") natural language processing (NLP)] pipeline such as #[a(href="https://spacy.io" target="_blank") spaCy]. If you zoom out of NLP a little, the technology trend you see is all about extending the range of work computers can take on. Until recently, you couldn't write software to control a car, and you couldn't write software to tweak #[a(href="https://foxtype.com") the tone of your emails], analyse #[a(href="https://wonderflo.co") customer feedback] or monitor global news for #[a(href="http://cytora.com/") significant business risks]. Admittedly, none of those capabilities are a self-driving car. But just wait. Language is at the heart of human endeavour. Our total mastery of moving stuff around has long been inevitable, but the potential upside of NLP technologies is so good that it's hard to predict.
+aside("NLP's killer app") Google search is an NLP application, so in some ways its weird to talk about #[em waiting] for NLP to change the world. It already did. But I definitely think there's still much more to come.
p Within this larger value chain, SyntaxNet is a fairly low-level technology. It's like an improved drill bit. By itself, it doesn't give you any oil &mdash; and oil, by itself, doesn't give you any energy or plastics, and energy and plastics by themselves don't give you any work or any products. But if the bottle-neck in that whole value chain was in the efficiency of oil extraction, and your drill bit improves that substantially, the low-level technology can prove #[a(href="https://en.wikipedia.org/wiki/Hughes_Tool_Company") pretty important].
p I think that syntactic parsing is a bottle-neck technology in NLP, and that the last 4 or 5 years of improvements to this technology will have outsize impacts. Now, you could argue that I think that because this is the problem I've been working on for all my adult life, and the technology that I left academia to #[a(href="https://spacy.io/blog/introducing-spacy") take commercial]. All I can say is that this reverses causation: it's my belief in the problem's importance that's caused my investment in it, not the other way around.
p Okay, so I think the #[em problem] is important. But how big a step forward is SyntaxNet? If you've been using the neural network model in #[a(href="http://stanfordnlp.github.io/CoreNLP/") Stanford CoreNLP], you're using an algorithm that's almost identical in design, but not in detail. The #[a(href="https://aclweb.org/anthology/D/D15/D15-1162.pdf") parsing model] used by spaCy is also similar. Conceptually, the contribution of the SyntaxNet work is pretty subtle. It's mostly about careful experimentation, tuning, and refinement. However, if Google didn't do this work, it's possible that nobody else would have. The neural network models that make SyntaxNet tick have also opened up a rich landscape of sexier ideas, and researchers are busily exploring them. There's a bias towards ideas that make researchers look (and feel!) clever. Probably, we would have ended up with parsing models that were just as accurate, but with incorrect assumptions about which aspects of the system design were important to accuracy, leading to slower progress in the future.
+aside("Research notes") #[a(href="http://www.petrovi.de/data/acl15.pdf") The first SyntaxNet paper] was published about six months after the description of #[a(href="http://cs.stanford.edu/people/danqi/papers/emnlp2014.pdf") the CoreNLP model]. Mostly, they used a larger network, a better activation function, and a different optimisation method. They also applied a somewhat hacky approach to beam-search, which #[a(href="http://arxiv.org/pdf/1603.06042v1.pdf") their more recent work] replaced with a more principled approach. A parallel line of work that achieves equivalent accuracy using #[a(href="http://www.cs.cmu.edu/~lingwang/papers/acl2015.pdf") LSTM] models instead of feed-forward networks was published at the same time as the first SyntaxNet paper.
+h2("dependency-parsing") What SyntaxNet does
p A #[a(href="http://googleresearch.blogspot.de/2013/05/syntactic-ngrams-over-time.html" target="_blank") syntactic parser] describes a sentences grammatical structure, to help another application reason about it. Natural languages introduce many unexpected ambiguities, which our world-knowledge immediately filters out. A favourite example:
+example They ate the pizza with anchovies
+image("anchovies.png", "Eat-with pizza-with ambiguity")
p A correct parse would link “with” to “pizza”, while an incorrect parse would link “with” to “eat”:
+displacy("pizza-with-anchovies-bad")
+displacy("pizza-with-anchovies-good")
p You can explore the technology visually with our #[a(href="https://spacy.io/demos/displacy/") displaCy demo], or see a terse example of a #[a(href="https://spacy.io/docs/tutorials/syntax-search") rule-based approach] to computing with the parse tree. The tree of word-word relationships can also be used to recognise simple phrases, which makes it easy to extend "bag-of-words" technologies such as word2vec. For instance, we parsed every comment posted to Reddit in 2015, and used word2vec on the phrases, entities and words. This produces a nice #[a(href="https://spacy.io/demos/sense2vec") conceptual map] that's more useful than a model strictly limited to whitespace-delimited words.
p SyntaxNet is a library for training and running syntactic dependency parsing models. One model that it provides offers a particularly good speed/accuracy trade-off. In keeping with the fashion of the moment, they've called this model Parsey McParseface. Hopefully, they can maintain this sort of meme-based naming system. I think it'll be a good way to keep the timeline clear. Memes get old fast, and so does NLP technology.
+h2("advance") How big is the advance?
p Despite the "most accurate in the world" billing, Parsey McParseface is really only inches ahead of #[a(href="http://arxiv.org/pdf/1603.04351v1.pdf") equivalent recent research], that uses a more complicated neural network architecture, but with more limited parameter tuning. So, similar technologies are out there in academia. On the other hand, if what you care about is actually #[em doing] things, those technologies haven't been available yet.
+aside("Why doesn't spaCy use a neural network?") I've been working on a neural network model for spaCy on and off since the first SyntaxNet paper was published last year. However, we want to keep spaCy easy to install, we want it to be fast on a CPU, and we want it to stay multi-threaded. This has turned out to be a tricky mix of requirements to deliver.
p On the time-honoured benchmark for this task, Parsey McParseface achieves over 94% accuracy, at around 600 words per second. On the same task, spaCy achieves 92.4%, at around 15,000 words per second. The extra accuracy might not sound like much, but for applications, it's likely to be pretty significant.
p For any predictive system, often the important consideration is the difference to a baseline predictor, rather than the absolute accuracy. A model that predicts that the weather will be the same as yesterday will often be accurate, but it's not adding any value. The thing about dependency parsing is that about 80% of the dependencies are very easy and unambiguous, which means that a system that only predicts those dependencies correctly is injecting very little extra information, that wasn't trivially available by just looking at each word and its neighbours.
p In summary, I think Parsey McParseface is a very nice milestone on a larger trend. The thing that's really significant is how quickly the speed and accuracy of natural language processing technologies is advancing. I think there are lots of ideas that didn't work yesterday, that are suddenly becoming very viable.
+h2("whats-next") What's next?
p One of the things I'm most excited about is that there's a very clear way forward, given the design of the Parsey McParseface model. It's one of those things where you can say, "Okay, if this works, that's great news". This type of parser, pioneered by #[a(href="https://www.semanticscholar.org/author/Joakim-Nivre/1720988") Joakim Nivre] in 2004, reads the sentence one word at a time, and maintains only a handful of competing representations. You can slot in any state representation, any set of actions, and any probability model into this architecture. For instance, if you're parsing the output of a speech recognition system, you could have the parser refine the speech recogniser's guess at the words, based on the syntactic context. If you're populating a knowledge base, you can extend the state representation to include your target semantics, and learn it jointly with the syntax.
p Joint models and semi-supervised learning have always been the "motherhood and apple pie" of natural language understanding research. There was never any doubt that these things were good &mdash; but without a concrete proposal, they're just platitudes. It was always clear that chopping the task of understanding a sentence up into lots of subproblems, and having a pipeline of distinct models, was an unsatisfying solution. It was also obvious that a natural language understanding system should be able to make use of the vast quantities of unannotated text available. I think a transition-based neural network model gives a convincing answer to both questions. You can learn any structure you like this way, and the more text you see, the more you learn, without adding any new parameters to the model.
p Obviously, we want to build a bridge between Parsey McParseface and spaCy, so that you can use the more accurate model with the sweeter spaCy API. However, for any individual use-case, there's always a lot of tuning to do to make these technologies really perform. In particular, every application sees a different type of text. Accuracy goes up substantially if the statistical model is tuned to the domain. For instance, in well edited text such as a financial report, you want the model to consider capitalisation as a decisive indicator &mdash; but if you're parsing tweets, capitalisation is almost meaningless.
p Our plan is to solve this problem by providing a range of pre-trained models, adapted to different languages and genres. We also have some ideas we're really excited about, to help each user train their own custom model, as painlessly as possible. We think that in NLP, the algorithms are racing ahead, while the data is lagging behind. We want to fix that. If you can't wait for the result, I hope you'll #[a(href="mailto:contact@spacy.io") get in touch].

View File

@ -1,6 +1,26 @@
{
"index": {
"title": "Demos",
"demos": ["displacy", "sense2vec"]
"demos": {
"displacy": {
"title": "displaCy: Dependency Parse Tree Visualization with CSS and JavaScript",
"description": "displaCy lets you peek inside spaCy's syntactic parser, as it reads a sentence word-by-word. By repeatedly choosing from a small set of actions, it links the words together according to their syntactic structure.",
"image": {
"file": "displacy.jpg"
}
},
"sense2vec": {
"title": "Semantic Analysis of the Reddit Hivemind",
"description": "Our neural network read every comment posted to Reddit from 2015. We combined word2vec with sophisticated natural language processing, to give you a little look into the Reddit hivemind. Type a phrase, and see what Reddit associates it with.",
"image": {
"file": "sense2vec.jpg"
},
"links": {
"blogpost": "https://spacy.io/blog/sense2vec-with-spacy",
"github": "https://github.com/spacy-io/sense2vec"
}
}
}
}
}

View File

@ -4,12 +4,15 @@ include ../_includes/_mixins
//- ============================================================================
+grid('padding')
each demo in demos
- var teaser = public.demos[demo]._data.index
- teaser.target = '_blank'
- teaser.showmeta = false
each demo, slug in demos
+grid-col('half', 'space-between')
!=partial('../_includes/_teaser', { teaser: teaser, showmeta: false, slug: demo, _root: '/demos/' })
.teaser
a(href='https://' + slug + '.spacy.io' target='_blank')
.image-ratio: img(src='/demos/img/' + demo.image.file)
+h2
a.block(href='https://' + slug + '.spacy.io' target='_blank')=demo.title
p=demo.description
!=partial('../_includes/_newsletter', { divider: 'top' })

View File

@ -23,7 +23,7 @@
+code.
from spacy.en import English
nlp = English(parse=False)
nlp = English(parser=False)
tokens = nlp('Some\nspaces and\ttab characters')
print([t.orth_ for t in tokens])
@ -102,8 +102,8 @@
+cell Nationalities or religious or political groups.
+row
+cell FACILITY
+cell Buildings, airports, highways, bridges, etc.
+cell FAC
+cell Facilities, such as buildings, airports, highways, bridges, etc.
+row
+cell ORG

View File

@ -108,7 +108,7 @@
use (e.g. tokenizer, parser, entity recognizer).
+row
+cell orth_and_spaces
+cell orths_and_spaces
+cell.
A list of tokens in the document as a sequence of
#[code (orth_id, has_space)] tuples, where #[code orth_id]
@ -186,7 +186,7 @@
assert ents[0].label == 346
assert ents[0].label_ == 'PERSON'
assert ents[0].orth_ == 'Best'
assert ents[0].string == ents[0].string
assert ents[0].text == 'Mr. Best'
+h3('doc-spans-nounchunks')
| #[+label('tag') property] Doc.noun_chunks

View File

@ -27,8 +27,8 @@
class English(Language):
lang = 'en'
# class German(Language): &lt;-- Coming soon
# lang = 'de'
class German(Language):
lang = 'de'
+section('english-init')
+h3('english-init')

View File

@ -267,6 +267,10 @@
| Navigating the Parse Tree
+table(['Name', 'Description'], 'params')
+row
+cell dep / dep_
+cell.
The syntactic relation type, aka the dependency label, connecting the word to its head.
+row
+cell head
+cell.

View File

@ -4,7 +4,7 @@
"sidebar": {
"Quickstart": [
["Install", "#install", "install"],
["Getting started", "#getting-started", "getting-started"],
["Usage Examples", "#examples", "examples"]
],
"API": [

View File

@ -8,9 +8,10 @@
+h3('examples-resources') Load resources and process text
+code.
from spacy.en import English
nlp = English()
doc = nlp(u'Hello, world. Here are two sentences.')
import spacy
en_nlp = spacy.load('en')
en_doc = en_nlp(u'Hello, world. Here are two sentences.')
de_doc = de_nlp(u'ich bin ein Berliner.')
+h3('multi-threaded') Multi-threaded generator (using OpenMP. No GIL!)
@ -46,13 +47,13 @@
assert token.shape_ == 'Xxxxx'
for lexeme in nlp.vocab:
if lexeme.is_alpha:
lexeme.shape_ = u'W'
lexeme.shape_ = 'W'
elif lexeme.is_digit:
lexeme.shape_ = u'D'
lexeme.shape_ = 'D'
elif lexeme.is_punct:
lexeme.shape_ = u'P'
lexeme.shape_ = 'P'
else:
lexeme.shape_ = u'M'
lexeme.shape_ = 'M'
assert token.shape_ == 'W'
+h3('examples-numpy-arrays') Export to numpy arrays
@ -162,12 +163,13 @@
+h3('examples-binary') Efficient binary serialization
+code.
import spacy
from spacy.tokens.doc import Doc
byte_string = doc.to_bytes()
open('moby_dick.bin', 'wb').write(byte_string)
nlp = spacy.en.English()
nlp = spacy.load('en')
for byte_string in Doc.read_bytes(open('moby_dick.bin', 'rb')):
doc = Doc(nlp.vocab)
doc.from_bytes(byte_string)

View File

@ -1,119 +1,177 @@
//- Docs > Quickstart > Install
//- Docs > Quickstart > Getting started
//- ============================================================================
+section('install')
+h2('install')
| Install spaCy v#{spacy_version}
+section('getting-started')
+h2('getting-started')
| Getting started
+section('install-pip-virtualenv')
+h3('install-pip-virtualenv')
| pip and virtualenv
+section('install-spacy')
+h3('install-spacy')
| Install spaCy
p.
With Python 2.7 or Python 3, using Linux or OSX, ensure that you have
the packages #[code build-essential] and #[code python-dev] installed.
Then run:
spaCy is compatible with 64-bit CPython 2.6+/3.3+ and runs on Unix/Linux,
OS X and Windows. Source and binary packages are available via
#[a(href='https://pypi.python.org/pypi/spacy' target='_blank') pip] and
#[a(href='https://anaconda.org/spacy/spacy' target='_blank') conda]. If there are
no binary packages for your platform available please make sure that you have
a working build enviroment set up. See
notes on #[a(href="/docs#install-source-ubuntu") Ubuntu],
#[a(href="/docs#install-source-osx") OS X] and
#[a(href="/docs#install-source-windows") Windows] for details.
+code('bash').
pip install spacy
python -m spacy.en.download
+code('bash', 'conda').
conda config --add channels spacy # only needed once
conda install spacy
p.
The download command fetches and installs about 500mb of data, for the
parser model and word vectors, which it installs within the spacy
package directory. Usually you'll want to install spaCy within a
#[a(href='https://virtualenv.readthedocs.org/en/latest/' target='_blank') virtualenv],
When using pip it is generally recommended to install packages in a
#[a(href='https://virtualenv.readthedocs.org/en/latest/' target='_blank') virtualenv]
to avoid modifying system state:
+code('bash').
virtualenv my_env_dir
source my_env_dir/bin/activate
+code('bash', 'pip').
# make sure you are using a recent pip/virtualenv version
python -m pip install -U pip virtualenv
+section('install-conda')
+h3('install-conda')
| conda
virtualenv .env
source .env/bin/activate
+code('bash').
conda config --add channels spacy
conda install spacy
python -m spacy.en.download
p.
Sometimes conda is not up to date with the latest release. If you
can't get the latest version on conda, you can always fall back to the
pip install.
+section('install-windows')
+h3('install-windows')
| Windows (64 bit)
p.
We've been working on Windows support. Our tests now succeed on 64 bit
builds of Windows. Installation from pip should work if you have a C++
compiler installed. Please see the README-MSVC.txt file for instructions
on compiling from source.
+section('install-update')
+h3('install-update')
| Updating your installation
p.
To update your installation:
+code('bash').
pip install --upgrade spacy
python -m spacy.en.download
p.
Most updates ship a new model, so you will usually have to redownload
the data.
+section('install-obsolete-python')
+h3('install-obsolete-python')
| Workaround for obsolete system Python
p.
If you're stuck using a server with an old version of Python, and you
don't have root access, we've prepared a bootstrap script to help you
compile a local Python install. Run:
+code('bash')
curl https://raw.githubusercontent.com/spacy-io/gist/master/bootstrap_python_env.sh | bash && source .env/bin/activate
+section('install-compile')
+h3('install-compile')
| Compile from source
p.
The other way to install the package is to clone the github repository,
and build it from source. This installs an additional dependency, Cython.
If you're using Python 2, we also recommend installing fabric and
fabtools this is how we build the project. Ensure that you have the
packages #[code build-essential], #[code python-dev], #[code git] and
#[code python-virtualenv] installed.
+code('bash')
git clone https://github.com/spacy-io/spaCy.git
cd spaCy
virtualenv .env && source .env/bin/activate
pip install -r requirements.txt
pip install -e .
python -m spacy.en.download
pip install pytest
python -m pytest spacy
pip install spacy
p.
Python packaging is awkward at the best of times, and it's particularly
tricky with C extensions, built via Cython, requiring large data files.
So, please report issues as you encounter them.
+section('install-pypy')
+h3('install-pypy')
| pypy (unsupported)
+section('install-model')
+h3('install-model')
| Install model
p.
If PyPy support is a priority for you, please get in touch. We could
likely fix the remaining issues, if necessary. However, the library
is likely to be much slower on PyPy, as it's written in Cython, which
produces code tuned for the performance of CPython.
After installation you need to download a language model.
Currently only models for English and German, named #[code en] and #[code de], are available. Please get in touch with us if you need support for a particular language.
+code('bash').
sputnik --name spacy --repository-url http://index.spacy.io install en==1.1.0
p.
Then check whether the model was successfully installed:
+code('bash').
python -c "import spacy; spacy.load('en'); print('OK')"
p.
The download command fetches and installs about 500 MB of data which it installs
within the #[code spacy] package directory.
+section('install-upgrade')
+h3('install-upgrade')
| Upgrading spaCy
p.
To upgrade spaCy to the latest release:
+code('bash', 'conda').
conda update spacy
+code('bash', 'pip').
pip install -U spacy
p.
Sometimes new releases require a new language model. Then you will have to upgrade to
a new model, too. You can also force re-downloading and installing a new language model:
+code('bash').
python -m spacy.en.download --force
+section('install-source')
+h3('install-source')
| Compile from source
p.
The other way to install spaCy is to clone its
#[a(href="https://github.com/spacy-io/spaCy") GitHub repository] and
build it from source. That is the common way if you want to make changes
to the code base.
p.
You'll need to make sure that you have a development enviroment consisting
of a Python distribution including header files, a compiler, pip,
virtualenv and git installed. The compiler
part is the trickiest. How to do that depends on your system. See
notes on #[a(href="/docs#install-source-ubuntu") Ubuntu],
#[a(href="/docs#install-source-osx") OS X] and
#[a(href="/docs#install-source-windows") Windows] for details.
+code('bash').
# make sure you are using recent pip/virtualenv versions
python -m pip install -U pip virtualenv
# find git install instructions at https://git-scm.com/downloads
git clone https://github.com/spacy-io/spaCy.git
cd spaCy
virtualenv .env && source .env/bin/activate
pip install -r requirements.txt
pip install -e .
p.
Compared to regular install via #[code pip] and #[code conda]
#[a(href="https://github.com/spacy-io/spaCy/blob/master/requirements.txt") requirements.txt]
additionally installs developer dependencies such as #[code cython].
+h4('install-source-ubuntu')
| Ubuntu
p.
Install system-level dependencies via #[code apt-get]:
+code('bash').
sudo apt-get install build-essential python-dev git
+h4('install-source-osx')
| OS X
p.
Install a recent version of XCode, including the so-called "Command Line Tools". OS X
ships with Python and git preinstalled.
+h4('install-source-windows')
| Windows
p.
Install a version of Visual Studio Express or higher that matches the version that was
used to compile your Python interpreter. For official distributions
these are VS 2008 (Python 2.7), VS 2010 (Python 3.4) and VS 2015 (Python 3.5).
+section('install-obsolete-python')
+h3('install-obsolete-python')
| Workaround for obsolete system Python
p.
If you're stuck using a system with an old version of Python, and you
don't have root access, we've prepared a bootstrap script to help you
compile a local Python install. Run:
+code('bash').
curl https://raw.githubusercontent.com/spacy-io/gist/master/bootstrap_python_env.sh | bash && source .env/bin/activate
+section('run-tests')
+h3('run-tests')
| Run tests
p.
spaCy comes with an extensive test suite. First, find out where spaCy is installed:
+code('bash').
python -c "import os; import spacy; print(os.path.dirname(spacy.__file__))"
p.
Then run #[code pytest] on that directory. The flags #[code --vectors],
#[code --slow] and #[code --model] are optional and enable additional tests:
+code('bash').
# make sure you are using recent pytest version
python -m pip install -U pytest
python -m pytest &lt;spacy-directory&gt; --vectors --model --slow

View File

@ -8,13 +8,13 @@ include ../_includes/_mixins
//- Docs
//- ============================================================================
+infobox('Update March, 2016').
We know change can be jarring, especially when you've got a deadline. So to
ease the transition to the new documentation style, we've kept
#[a(href='/docs/legacy' target='_blank') the old docs] online too.
If you have any problems, you can let us know on the
#[a(href='https://github.com/' + profiles.github + '/spaCy' target='_blank') spaCy issue tracker]
or the #[a(href='https://reddit.com/r/' + profiles.reddit target='_blank') Reddit user group].
//+infobox('Update March, 2016').
// We know change can be jarring, especially when you've got a deadline. So to
// ease the transition to the new documentation style, we've kept
// #[a(href='/docs/legacy' target='_blank') the old docs] online too.
// If you have any problems, you can let us know on the
// #[a(href='https://github.com/' + profiles.github + '/spaCy' target='_blank') spaCy issue tracker]
// or the #[a(href='https://reddit.com/r/' + profiles.reddit target='_blank') Reddit user group].
include _quickstart-install
include _quickstart-examples

View File

@ -6,6 +6,13 @@
"description": "Word vectors allow simple similarity queries, and drive many NLP applications. This tutorial explains how to load custom word vectors into spaCy, to make use of task or data-specific representations."
},
"byo-annotations": {
"template": "article",
"title": "Using Pre-existing Tokenization, Tags, and Other Annotations",
"date": "2016-04-15",
"description": "spaCy assumes by default that your data is raw text. However, sometimes your data is partially annotated, e.g. with pre-existing tokenization, part-of-speech tags, etc. This tutorial explains how to use these annotations in spaCy."
},
"mark-adverbs": {
"template": "article",
"title": "Mark all adverbs, particularly for verbs of speech",

View File

@ -0,0 +1,118 @@
include ../../_includes/_mixins
+lead spaCy assumes by default that your data is raw text. However, sometimes your data is partially annotated, e.g. with pre-existing tokenization, part-of-speech tags, etc. This tutorial explains how to use these annotations in spaCy.
+h2 Quick Reference
+table(['Description', 'Usage'], 'code')
+row
+cell Use pre-existing tokenization
+cell #[code.lang-python doc = Doc(nlp.vocab, [('A', True), ('token', False), ('!', False)])]
+row
+cell Use pre-existing tokenization (deprecated)
+cell #[code.lang-python doc = nlp.tokenizer.tokens_from_list([u'A', u'token', u'!'])]
+row
+cell Assign pre-existing tags
+cell #[code.lang-python nlp.tagger.tag_from_strings(doc, ['DT', 'NN'])]
+row
+cell Assign named entity annotations from an array
+cell #[code.lang-python doc.from_array([ENT_TYPE, ENT_IOB], values)]
+row
+cell Assign dependency parse annotations from an array
+cell #[code.lang-python doc.from_array([HEAD, DEP], values)]
+h2 Examples
+code('python', 'Tokenization').
import spacy
nlp = spacy.load('en')
tokens = [u'A', u'list', u'of', u'strings', u'.']
doc = nlp.tokenizer.tokens_from_list(tokens)
assert len(doc) == len(tokens)
# With this method, we don't get to specify how the corresponding string
# would be spaced, so we have to assume a space before every token.
assert doc.text == u'A list of strings .'
+code('python', 'Tokenization').
import spacy
from spacy.tokens import Doc
nlp = spacy.load('en')
tokens = [u'A', u'list', u'of', u'strings', u'.']
has_space = [True, True, True, False, False]
doc = Doc(nlp.vocab, orth_and_spaces=zip(tokens, has_space))
assert len(doc) == len(tokens)
# Spacing is correct, given by boolean values above.
assert doc.text == u'A list of strings.'
# Here's how it would look with different boolean values.
tokens = [u'A', u'list', u'of', u'strings', u'.']
has_space = [False, True, True, True, False]
doc = Doc(nlp.vocab, orth_and_spaces=zip(tokens, has_space))
assert doc.text == u'Alist of strings .'
+code('python', 'POS Tags').
import spacy
nlp = spacy.load('en')
# Tokenize a string into a Doc, but don't apply the whole pipeline ---
# that is, don't predict the part-of-speech tags, syntactic parse, named
# entities, etc.
doc = nlp.tokenizer(u'A unicode string, untokenized.')
nlp.tagger.tag_from_strings([u'DT', u'JJ', u'NN', u',', u'VBN', u'.'])
# Now predict dependency parse and named entities. Note that if you assign
# tags in a way that's very unlike the behaviour of the POS tagger model,
# the subsequent models may perform worse. These models use the POS tags
# as features, so if you give them unexpected tags, you may be giving them
# run-time conditions that don't resemble the training data.
nlp.parser(doc)
nlp.entity(doc)
+code('python', 'Dependency Parse').
import spacy
from spacy.attrs import HEAD, DEP
from spacy.symbols import det, nmod, root, punct
from numpy import ndarray
nlp = spacy.load('en')
# Get the Doc object, and apply the pipeline except the dependency parser
doc = nlp(u'A unicode string.', parse=False)
columns = [HEAD, DEP]
values = ndarray(shape=(len(columns), len(doc)), dtype='int32')
# Syntactic parse specified as head offsets
heads = [2, 1, 0, -1]
# Integer IDs for the dependency labels. See the parse in the displaCy
# demo at spacy.io/demos/displacy
labels = [det, nmod, root, punct]
values[0] = heads
values[1] = labels
doc.from_array(columns, values)
+code('python', 'Named Entities').
import spacy
from spacy.attrs import ENT_TYPE, ENT_IOB
from spacy.symbols import PERSON, ORG
from numpy import ndarray
nlp = spacy.load('en')
# Get the Doc object, and apply the pipeline except the entity recognizer
doc = nlp(u'My name is Matt.', entity=False)
columns = [ENT_TYPE, ENT_IOB]
values = ndarray(shape=(len(columns), len(doc)), dtype='int32')
# IOB values are 0=missing, 1=I, 2=O, 3=B
values[0] = [1, 1, 1, 3, 1]
values[1] = [0, 0, 0, PERSON, 0]
doc.from_array(columns, values)

View File

@ -12,19 +12,19 @@ rss(version='2.0', xmlns:atom='http://www.w3.org/2005/Atom')
description= description
atom:link(href='#{ url }/feed.xml', rel='self', type='application/rss+xml')
for post, slug in public.blog._data
if post.published != false
if post.published != false && slug != 'index'
item
title=post.title
description
| <![CDATA[
if post.image
p: img(src=url + '/blog/img/' + post.image.file)
title=post.title
description
| <![CDATA[
if post.image
p: img(src=url + '/blog/img/' + post.image.file)
!=partial('blog/' + slug)
| ]]>
!=partial('blog/' + slug)
| ]]>
if post.date
pubDate=convertPubDate(post.date)
if post.date
pubDate=convertPubDate(post.date)
link #{ url }/blog/#{ slug }
guid(isPermaLink='true') #{ url }/blog/#{ slug }
link #{ url }/blog/#{ slug }
guid(isPermaLink='true') #{ url }/blog/#{ slug }

View File

@ -1,6 +1,6 @@
include _includes/_mixins
- var logos = [ ['chartbeat', 'https://chartbeat.com'], ['socrata', 'https://www.socrata.com'], ['keyreply', 'https://keyreply.com/'], [ 'kip', 'http://kipthis.com'], ['cytora', 'http://www.cytora.com'], ['signaln', 'http://signaln.com'] ]
- var logos = [ ['chartbeat', 'https://chartbeat.com'], ['socrata', 'https://www.socrata.com'], ['chattermill', 'https://chattermill.io'], ['cytora', 'http://www.cytora.com'], ['signaln', 'http://signaln.com'], ['duedil', 'https://www.duedil.com/'], ['spyjack', 'https://spyjack.io'], ['keyreply', 'https://keyreply.com/'], ['dato', 'https://dato.com'], [ 'kip', 'http://kipthis.com'], ['wonderflow', 'http://www.wonderflow.co'], ['foxtype', 'https://foxtype.com'], ['synapsify', 'http://www.gosynapsify.com'], ['stitchfix', 'https://www.stitchfix.com/'], ['wayblazer', 'http://wayblazer.com'] ]
//- Landing Page
@ -20,7 +20,7 @@ header.header
| We help you get their work out of papers and#[br]
| into production.#[br]
+button('secondary')(href='/docs/#install') Install spaCy
+button('secondary')(href='/docs/#getting-started') Install spaCy
+divider('bar')
| #[a(href='https://github.com/' + profiles.github + '/spaCy/releases' target='_blank'): #[strong Latest Release:] v#{spacy_version}]
@ -96,10 +96,12 @@ main.main
+h2.text-center
+label('strong') spaCy is trusted by
+grid('space-around', 'valign-center', 'padding')
each logo in logos
a(href=logo[1] target='_blank')
img(src='assets/img/logos/' + logo[0] + '.png').logo--small
+grid('align-center')
+grid-col('two-thirds')
+grid('align-center', 'valign-center', 'padding')
each logo in logos
a(href=logo[1] target='_blank')
img(src='assets/img/logos/' + logo[0] + '.png').logo--small
+divider
@ -130,7 +132,7 @@ main.main
<blockquote class="twitter-tweet" data-cards="hidden" data-lang="en"><p lang="en" dir="ltr">spaCy seems pretty exciting to me - and it is clear that NLTK has not kept up with <a href="https://twitter.com/hashtag/NLP?src=hash">#NLP</a>. <a href="http://t.co/mUPFUMLrbo">http://t.co/mUPFUMLrbo</a> <a href="https://twitter.com/hashtag/python?src=hash">#python</a> <a href="https://twitter.com/hashtag/datascience?src=hash">#datascience</a></p>&mdash; Alex Engler (@AlexCEngler) <a href="https://twitter.com/AlexCEngler/status/648537133544833025">September 28, 2015</a></blockquote>
+grid-col('third', 'valign-center')
<blockquote class="twitter-tweet" data-lang="en"><p lang="en" dir="ltr">Explore what NLP can do these days with Sense2vec and Spacy <a href="https://t.co/MHZEP2yLo4">https://t.co/MHZEP2yLo4</a></p>&mdash; Chattermill.io (@chatter_mill) <a href="https://twitter.com/chatter_mill/status/699660272907059200">February 16, 2016</a></blockquote>
<blockquote class="twitter-tweet" data-lang="en"><p lang="en" dir="ltr">I wish I&#39;d known about nlp.pipe about two weeks ago. Nice feature in <a href="https://twitter.com/Spacy">@spacy</a> to parallelize your NLP pipeline.</p>&mdash; Matti Lyra (@mattilyra) <a href="https://twitter.com/mattilyra/status/704753660329369600">March 1, 2016</a></blockquote>
+divider

View File

@ -1,77 +0,0 @@
include _includes/_mixins
//- Legal / Imprint
//- ============================================================================
+h2 Imprint
+label('strong') Editorial responsibility
p spaCy GmbH
+label('strong') Information according to § 5 TMG (Telekommunikationsgesetz)
p.
Buchholzer Str. 2#[br]
10437 Berlin#[br]
Germany
p.
#[strong Authorized representative:]
Henning Peters#[br]
+label('strong') Contact
p #[a(href='mailto:' + email)=email]
p.
#[strong Registergericht/district court:] Amtsgericht Berlin-Charlottenburg#[br]
#[strong Handelsregister/Commercial Register:] HRB 168190 B#[br]
#[strong Umsatzsteuer-Identifikationsnummer/ VATID No.:] DE304746312#[br]
p.
#[strong Responsible for the content according to § 55 RStV (Rundfunkstaatsvertrag):]
Henning Peters
+h2 Credits
p.
#[strong Illustrations:]
#[a(href='https://dribbble.com/kemal' target='_blank') Kemal Sanli]#[br]
#[strong Photography:]
#[a(href='http://johannawarda.com' target='_blank') Johanna Warda]
+h2 Disclaimer
+label('strong') Legal notice
p.
spaCy constantly checks and updates the information on its web pages. Despite
the utmost care taken, we cannot rule out that some of the data may since have
become outdated. Therefore, we cannot accept liability for the currency,
accuracy and completeness of the information displayed. The same applies to
all other web pages that can be reached via hyperlink. spaCy is not responsible
for the content of websites which can be reached via such links. Furthermore,
spaCy reserves the right to make changes or additions to the information
displayed. Content and structure of the spaCy website is protected by
copyright. The reproduction of information or data, in particular the use of
texts, text excerpts or illustrative material, requires our prior approval.
We wish you an informative stay on our pages and would welcome any suggestions,
requests or criticism you may have.
+label('strong') Web Analytics
p.
This website uses Google Analytics, a web analytics service provided by Google,
Inc. Google Analytics uses “cookies”, which are text files placed on your
computer, to help the website analyze how users use the site. The information
generated by the cookie about your use of the website (including your IP
address) will be transmitted to and stored by Google on servers in the United
States . Google will use this information for the purpose of evaluating your
use of the website, compiling reports on website activity for website operators
and providing other services relating to website activity and internet usage.
Google may also transfer this information to third parties where required to
do so by law, or where such third parties process the information on Googles
behalf. Google will not associate your IP address with any other data held by
Google. You may refuse the use of cookies by selecting the appropriate settings
on your browser, however please note that if you do this you may not be able
to use the full functionality of this website. By using this website, you
consent to the processing of data about you by Google in the manner and for
the purposes set out above.

View File

@ -1,19 +0,0 @@
include _includes/_mixins
//- Team
//- ============================================================================
+grid('align-center', 'padding')
each member in team_members
+grid-col('fifth', 'valign-center')
.image-container
img(src='/assets/img/profile_' + member + '.png')
!=authors[member].name
+label=(authors[member].title || 'job title')
if authors[member].links
.block
each link, index in authors[member].links
a(href=link[0] target='_blank')
+icon(index)(data-tooltip=(link[1] || index))