Dave Jarvis' Repositories

git clone https://repo.autonoma.ca/repo/delibero.git

Completed kiosks section; nearly completed notifications.

Author Dave Jarvis <email>
Date 2014-08-16 19:01:31 GMT-0700
Commit 89dfe3dc67ac405b9ca1496f19501dc516ef6898
Parent 9436487
xml/account.css
}
-.reputation {
+.account > .implications {
+ display: table;
border-top: 1px solid black;
padding-top: 0.5em;
- margin-top: 0.5em;
- margin-bottom: 0.5em;
-}
-
-.reputation::after {
- content: " reputation";
-}
-
-.comments {
- display: table;
}
-.comments > .entry, .comments > .header {
+.implications > .entry, .implications > .header {
display: table-row;
}
-.comments > * > * {
+.implications > * > * {
display: table-cell;
padding: 0.25em;
}
-.comments > .entry:nth-child(odd) {
+.implications > .entry:nth-child(odd) {
display: table-row;
background-color: #EEE;
}
-.comments > .header {
+.implications > .header {
background-color: black;
color: white;
font-weight: bold;
}
-.comments > .entry > .timestamp > * {
+.implications > .entry > .timestamp > * {
display: table-cell;
padding-right: 0.25em;
}
-.comments > .entry > .policy,
-.comments > .entry > .timestamp > .date {
+.implications > .entry > .policy,
+.implications > .entry > .timestamp > .date {
white-space: nowrap;
}
-.related > .comments { order: 1; }
+.related > .implications { order: 1; }
.related > .interests { order: 2; }
.related > .edits { order: 3; }
}
-.comments > a::before { content: "comments"; }
+.implications > a::before { content: "implications"; }
.interests > a::before { content: "interests"; }
.edits > a::before { content: "edits"; }
xml/account.xml
<?xml-stylesheet type="text/xsl" href="common.xsl"?>
<account>
- <reputation>11,319</reputation>
- <comments>
+ <implications>
<header>
- <comment>Comment</comment>
- <policy>Policy</policy>
+ <implication>Implication</implication>
+ <policy>Proposal</policy>
<timestamp>Date</timestamp>
<state>State</state>
</header>
<entry>
- <comment>
- Surveillance data is susceptible to <xref id="1">theft</xref>.
- </comment>
+ <implication>
+ Surveillance data is susceptible to theft.
+ </implication>
<policy><xref id="3">Digital Freedom Act</xref></policy>
<timestamp><date>Jun 15, 2014</date><time>14:32:05</time></timestamp>
<state>Accepted</state>
</entry>
<entry>
- <comment>
- Data retention can <xref id="2">overturn</xref> the
- presumption of innocence.
- </comment>
+ <implication>
+ Data retention can overturn the presumption of innocence.
+ </implication>
<policy><xref id="3">Digital Freedom Act</xref></policy>
<timestamp><date>Jun 15, 2014</date><time>16:12:50</time></timestamp>
<state>Accepted</state>
</entry>
<entry>
- <comment>
+ <implication>
Ensure anonymity when seeking or communicating sensitive
health-related information.
- </comment>
+ </implication>
<policy><xref id="3">Digital Freedom Act</xref></policy>
<timestamp><date>Jun 15, 2014</date><time>18:21:22</time></timestamp>
<state>Pending</state>
</entry>
<entry>
- <comment>
+ <implication>
Improve the mental and physical health of citizens.
- </comment>
+ </implication>
<policy><xref id="3">Digital Freedom Act</xref></policy>
<timestamp><date>Jun 16, 2014</date><time>09:15:38</time></timestamp>
<state>Conjecture</state>
</entry>
- </comments>
+ </implications>
<related>
- <comments id="1" />
+ <implications id="1" />
<interests id="1" />
<edits id="1" />
xml/chart.xsl
<xsl:variable name="title"
select="concat(../name,' (',format-number(., '###,###'),')')"/>
- <!-- Abbreviation. -->
- <xsl:variable name="r" select="$radius"/>
<!-- Set the start and ending angles. -->
</xsl:variable>
- <!-- Help the path's d attribute fit on a printed page. -->
+ <!-- Ensure the path's d attribute fits on a printed page. -->
+ <!-- Note: superfluous variables. -->
+ <xsl:variable name="r" select="$radius"/>
<xsl:variable name="x1r" select="$x1 * $r"/>
<xsl:variable name="y1r" select="$y1 * $r"/>
xml/common.xsl
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
-<xsl:include href="chart.xsl" />
+<xsl:include href="chart.xsl"/>
<!-- Minor optimization. -->
-<xsl:output indent="no" encoding="utf-8" />
+<xsl:output indent="no" encoding="utf-8"/>
<!-- Action parser that responds to HTTP requests. -->
-<xsl:param name="action" select="'do.dhtml'" />
+<xsl:param name="action" select="'do.dhtml'"/>
<xsl:template match="/">
<html>
<head>
- <meta charset="utf-8" />
+ <meta charset="utf-8"/>
<title>Liberum Consilium: moderated, transparent deliberation</title>
<link rel="stylesheet" type="text/css"
- href="common.css" />
+ href="common.css"/>
<link rel="stylesheet" type="text/css"
- href="//fonts.googleapis.com/css?family=Open+Sans" />
+ href="//fonts.googleapis.com/css?family=Open+Sans"/>
<link rel="stylesheet" type="text/css"
- href="//fonts.googleapis.com/css?family=Montserrat" />
+ href="//fonts.googleapis.com/css?family=Montserrat"/>
<script type="text/javascript">
</head>
<body>
- <xsl:apply-templates />
+ <xsl:apply-templates/>
</body>
</html>
<div class="{local-name()}"><a
href="{$action}?action={local-name()}&amp;id={@id}"><xsl:apply-templates
- select="node()|*" /></a></div>
+ select="node()|*"/></a></div>
</xsl:template>
<!-- Retain the attributes (except if named "class"). -->
<xsl:template match="@*">
<xsl:if test="name() != 'class'"><xsl:copy-of select="."/></xsl:if>
</xsl:template>
<xsl:template match="expenses">
<div class="expenses">
- <xsl:apply-templates mode="piechart" />
- <xsl:apply-templates select="dataset" />
+ <xsl:apply-templates mode="piechart"/>
+ <xsl:apply-templates select="dataset"/>
</div>
</xsl:template>
<xsl:template match="//dataset/*[name()='data' or name()='footer']/value">
<div class="value"><xsl:value-of
- select="format-number(., '###,###')" /></div>
+ select="format-number(., '###,###')"/></div>
</xsl:template>
xml/math.xsl
<xsl:template name="sqrt">
<!-- Number to root. -->
- <xsl:param name="n" select="0" />
+ <xsl:param name="n" select="0"/>
<!-- Used internally. -->
- <xsl:param name="try" select="1" />
+ <xsl:param name="try" select="1"/>
<!-- Maximum number of iterations (decreases recursively). -->
- <xsl:param name="iter" select="20" />
+ <xsl:param name="iter" select="20"/>
<!-- Nate Austin's implementation using Newton's method -->
<xsl:choose>
<xsl:when test="($try * $try = $n) or ($iter = 0)">
- <xsl:value-of select="$try" />
+ <xsl:value-of select="$try"/>
</xsl:when>
<xsl:otherwise>
<!--
- | Calculates sin(x), given x in degrees (not radians):
+ | Calculates sin(x) using:
| x(1 - (x^2/2*3)(1 - (x^2/4*5)(1 - (x^2/6*7))))
+-->
<xsl:template name="sine">
<!-- Degrees (should be between 0 and 360). -->
- <xsl:param name="degrees" />
+ <xsl:param name="degrees"/>
<!-- Used internally to convert degrees to radians. -->
- <xsl:param name="rad" select="$degrees * $PI div 180" />
+ <xsl:param name="rad" select="$degrees * $PI div 180"/>
<!-- Maximum number of iterations (decreases recursively). -->
- <xsl:param name="iter" select="31" />
+ <xsl:param name="iter" select="31"/>
<!-- Collects the value of all the terms. -->
- <xsl:param name="result" select="1" />
+ <xsl:param name="result" select="1"/>
<xsl:choose>
<xsl:when test="$iter &gt; 2">
<xsl:call-template name="sine">
- <xsl:with-param name="rad"
- select="$rad" />
- <xsl:with-param name="iter"
- select="$iter - 2" />
+ <xsl:with-param name="rad" select="$rad"/>
+ <xsl:with-param name="iter" select="$iter - 2"/>
<xsl:with-param name="result"
- select="1 - ((($rad * $rad) div (($iter - 1) * $iter)) * $result)" />
+ select="1 - ((($rad * $rad) div (($iter - 1) * $iter)) * $result)"/>
</xsl:call-template>
</xsl:when>
- <xsl:otherwise><xsl:value-of select="$rad * $result" /></xsl:otherwise>
+ <xsl:otherwise><xsl:value-of select="$rad * $result"/></xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- Calculates the normalized arc tangent form. -->
<xsl:template name="atan2">
- <xsl:param name="y" />
- <xsl:param name="x" />
+ <xsl:param name="y"/>
+ <xsl:param name="x"/>
<!--
| http://lists.apple.com/archives/PerfOptimization-dev/2005/Jan/msg00051.html
<!-- Returns the larger of two values (a, b). -->
<xsl:template name="max">
- <xsl:param name="a" />
- <xsl:param name="b" />
+ <xsl:param name="a"/>
+ <xsl:param name="b"/>
- <xsl:if test="$a &gt;= $b"><xsl:value-of select="$a" /></xsl:if>
- <xsl:if test="$a &lt; $b"><xsl:value-of select="$b" /></xsl:if>
+ <xsl:if test="$a &gt;= $b"><xsl:value-of select="$a"/></xsl:if>
+ <xsl:if test="$a &lt; $b"><xsl:value-of select="$b"/></xsl:if>
</xsl:template>
<!-- Converts a two-digit hexadecimal number to decimal. -->
<xsl:template name="hex2dec">
- <xsl:param name="hex" />
+ <xsl:param name="hex"/>
- <xsl:variable name="digits" select="'0123456789ABCDEF'" />
- <xsl:variable name="X" select="substring( $hex, 1, 1 )" />
- <xsl:variable name="Y" select="substring( $hex, 2, 1 )" />
+ <xsl:variable name="digits" select="'0123456789ABCDEF'"/>
+ <xsl:variable name="X" select="substring( $hex, 1, 1 )"/>
+ <xsl:variable name="Y" select="substring( $hex, 2, 1 )"/>
<xsl:variable name="Xval"
- select="string-length(substring-before($digits,$X))" />
+ select="string-length(substring-before($digits,$X))"/>
<xsl:variable name="Yval"
- select="string-length(substring-before($digits,$Y))" />
- <xsl:value-of select="16 * $Xval + $Yval" />
+ select="string-length(substring-before($digits,$Y))"/>
+ <xsl:value-of select="16 * $Xval + $Yval"/>
</xsl:template>
xml/tex/ch-introduction.tex
\startsection[title={\WPintro{}}]
{\it\WPname{}} is a system for moderated deliberation to achieve
- group consensus on \WPproposal{}s by facilitating anonymous
+ group consensus on \WPproposals{} by facilitating anonymous
contributions and collaboration.
\stopsection
xml/tex/ch-kiosks.tex
\startsection[title={\WPintro{}}]
+ For political implementations, kiosks must be made available to
+ help anyone participate who could not otherwise use the system
+ (by choice or due to disability). Account credentials supplied
+ by the RA are required to use the system at a kiosk.
\stopsection
\startsection[title={Accessibility}]
-
+ All kiosk locations must have entrances and floorplans that
+ allow safe and unobstructed passage for wheelchairs and walkers.
+
\startsubsection[title={Location}]
+ Kiosks should be centrally, and conveniently located.
\stopsubsection
\startsubsection[title={Hours}]
+ Kiosks should be open 7:00am to 9:00pm on weekdays, and
+ 10:00am to 4:00pm on weekends.
\stopsubsection
\stopsection
\startsection[title={Braille}]
Kiosk hardware must have high-resolution braille
display capabilities.\cite[gu@microfluidic]
\stopsection
\startsection[title={Assistants}]
-
+ Assistants must be trained with knowledge of both the system and
+ privacy laws. All interactions must involve two assistants to
+ uphold voting integrity.
\stopsection
-
\stopchapter
xml/tex/ch-notifications.tex
\startsection[title={\WPintro{}}]
+ Upon creation, new content is associated with the creator's
+ account, including: tags, \WPproposals{}, resources, hypotheses,
+ implications, and refutations. Users may add their account to
+ the watch list for any content.
\stopsection
\startsection[title={Revisions}]
+ Content revision results in notifications sent to all accounts
+ on the watch list of said content. Example notification triggers
+ include:
+
+ \startitemize
+ \startitem
+ When a \WPproposal{} is added, accounts watching any of
+ tags for that \WPproposal{} are notified.
+ \stopitem
+ \startitem
+ When a tag synonym is created, accounts watching the tag are
+ notified.
+ \stopitem
+ \startitem
+ When an implication is drafted, accounts watching the
+ \WPproposal{} are notified.
+ \stopitem
+ \stopitemize
\stopsection
\startsection[title={Flags}]
- All content can be flagged for moderator review. All accounts
-
+ Most content can be flagged for moderator review.
\startsubsection[title={Timeout}]
- Users who
+ Users who
\stopsubsection
-
\stopsection
-
\stopchapter
xml/tex/ch-page-account.tex
\startsection[title={\WPintro{}}]
All system interactions are recorded to ensure accountability.
+ Except where noted, every account's system interaction history
+ is placed the public domain.
\stopsection
- \startsection[title={\WPnavigation{}}]
- \WPxref{navigation-account}
-
- \placefigure[force][fig:navigation-account]{Account Navigation}{%
- \externalfigure[navigation-account.svg]
- }
- \stopsection
-
\startsection[title={\WPui{}}]
- \WPxref{page-account}
-
+ \WPxref{page-account} an example implications page.
\WPpage{account}
+
+ Execpt for the interests page, the other account pages are
+ nearly identical to the implications page. The common columns
+ include:
+
+ \startitemize
+ \startitem
+ \bold{\WPProposal{}.} Navigates to the corresponding summary
+ page.
+ \stopitem
+ \startitem
+ \bold{Date.} The date and time the contribution was made.
+ \stopitem
+ \startitem
+ \bold{State.} Whether the contribution passed moderation.
+ \stopitem
+ \stopitemize
\stopsection
- \startsubsection[title={Interests}]
- An account can subscribe to multiple tags, which identifies the
- areas of interest for a particular user. The subscriptions filter
- the \WPproposal{}s that are shown on the home page (see figure
- \in[fig:page-home] on page \at[fig:page-home]).
+ \startsubsection[title={Implications}]
+ The implications page lists both implications and refutations.
\stopsubsection
- \startsubsection[title={Edits}]
+ \startsubsection[title={Interests}]
+ An account can subscribe to multiple tags, which identify the
+ areas of interest for a particular user. The subscriptions
+ filter the \WPproposals{} that are shown on the user's home page
+ (see \in{figure}[fig:page-home] on page \at[fig:page-home]).
+ Each subscribed tag is listed beside the user's total reputation
+ for that tag.
+
+ Interests are private.
\stopsubsection
\startsubsection[title={Edits}]
+ The edits page lists types of suggested changes, including:
+ implication, proposal, resource, or hypothesis. The type is
+ listed with the revision.
\stopsubsection
- \startsubsection[title={\WPProposal{}s}]
+ \startsubsection[title={\WPProposals{}}]
+ The \WPproposals{} page lists all first drafts created by an
+ account.
\stopsubsection
\startsubsection[title={Votes}]
+ The votes page lists all votes an account made.
+
+ Votes are private.
\stopsubsection
\startsubsection[title={Views}]
+ The views page lists the first time an account visited a
+ \WPproposal{}.
+
+ Views are private.
\stopsubsection
\startsubsection[title={Flags}]
+ The flags page lists all contributions manually marked for
+ further moderator review.
\stopsubsection
\stopchapter
xml/tex/ch-page-discuss.tex
A refutation differs from an implication in that it is listed
- directly below the implication it is intended to refute.
+ directly below the implication it is intended to refute, and
+ denoted as such.
\stopsection
xml/tex/ch-page-home.tex
\startsection[title={\WPui{}}]
- The home page lists upcoming \WPproposal{}s. The \WPproposal{}s
+ The home page lists upcoming \WPproposals{}. The \WPproposals{}
can be filtered by tags. \WPxref{page-home} an example home
page.
\WPpage{home}
- In this example, all \WPproposal{}s are tagged with either an
+ In this example, all \WPproposals{} are tagged with either an
{\it{environment}} or a {\it{criminal code}} tag. Since tags are
- hierarchical, \WPproposal{}s tagged with a subtag of either
+ hierarchical, \WPproposals{} tagged with a subtag of either
{\it{environment}} or {\it{criminal code}} are also shown.
xml/tex/ch-page-resources.tex
]
\WPquote{There ain't no such thing as a free lunch.}
- {Robert Heinlein}{The Moon is a Harsh Mistress }
+ {Jack Falstaff}{Cleveland Press (1938)}
\startsection[title={\WPintro{}}]
xml/tex/ch-page-support.tex
\startsection[title={\WPintro{}}]
- Since \WPproposal{}s are meant to engender change, its
- implications must be documented.
+ Since \WPproposals{} are meant to engender change, its
+ implications must be documented. Each implication is documented
+ through a support page.
\stopsection
\startsection[title={\WPui{}}]
\WPxref{page-support} an example support page.
\WPpage{support}
\stopsection
- \startsection[title={References}]
- This section defines the permissible hyperlinked references
- to bolster an implication. When possible,
- \href{Digital Object Identifiers}
- {http://en.wikipedia.org/wiki/List_of_scientific_journals}
- (DOI) should be used.
+ \startsection[title={Votes}]
+ Implications that receive the most votes are listed on the
+ summary page; the community determines the most important
+ implications.
+ \stopsection
+ \startsection[title={References}]
+ This section defines permissible hyperlinked references.
+
\startsubsection[title={Science Publications}]
- Any reputable scientific, peer-reviewed publication may be
- included with a deliberation point.
+ References to reputable scientific, peer-reviewed publications
+ are allowed.
\stopsubsection
\startsubsection[title={Legal Documents}]
- References to notarized legal documents may be used to
- validate a point.
+ References to notarized legal documents are allowed.
\stopsubsection
- \stopsection
+ \startsubsection[title={Terminology}]
+ Referencing a single definition source avoids inconsistent
+ terminology.
+ \stopsubsection
+
+ \startsubsection[title={Support Pages}]
+ References to other \WPproposals{} are allowed.
+ \stopsubsection
+ \startsubsection[title={Multimedia}]
+ Video, audio, photographs, and graphics may be embedded.
+ To simplify security uploads are forbidden. Instead, the
+ system sends notifications regarding broken hyperlinks.
+ \stopsubsection
+ \stopsection
\stopchapter
xml/tex/ch-source-xsl.tex
\startsection[title=Common]
- The main XSL template includes JavaScript to inject a CSS file.
- The CSS filename is dynamically obtained from the URL. This allows
- each XML file to be laid out while the XSL code remains generic.
+ The main XSL template includes JavaScript code to inject a CSS
+ file before page load. (The CSS filename is based on the URL
+ filename.) This allows each XML document to use a specifically
+ tailored CSS file for layout. The XSL code remains trivially
+ generic.
\\
\typeXSLfile{../common.xsl}
xml/tex/constants.tex
\define\WPnavigation{Navigation}
\define\WPproposal{proposal}
+\define\WPproposals{\WPproposal{}s}
\define\WPProposal{\Word{\WPproposal{}}}
+\define\WPProposals{\WPProposal{}s}
% Since the TOC suppresses a chapter title, conditionally set the
xml/tex/graphs/navigation-account.dot
// IMPORT
- Account -> {Comments Interests Edits Proposals Votes Views Flags};
+ Account -> {Implications Interests Edits Proposals Votes Views Flags};
}
xml/tex/graphs/navigation-account.svg
<text text-anchor="middle" x="418" y="-169.6" font-family="Archivo Narrow" font-size="18.00">Account</text>
</g>
-<!-- Comments -->
-<g id="node2" class="node"><title>Comments</title>
+<!-- Implications -->
+<g id="node2" class="node"><title>Implications</title>
<ellipse fill="#eeeeee" stroke="#46a5e5" cx="52" cy="-40" rx="52" ry="39.5"/>
-<text text-anchor="middle" x="52" y="-35.6" font-family="Archivo Narrow" font-size="18.00">Comments</text>
+<text text-anchor="middle" x="52" y="-35.6" font-family="Archivo Narrow" font-size="18.00">Implications</text>
</g>
-<!-- Account&#45;&gt;Comments -->
-<g id="edge1" class="edge"><title>Account&#45;&gt;Comments</title>
+<!-- Account&#45;&gt;Implications -->
+<g id="edge1" class="edge"><title>Account&#45;&gt;Implications</title>
<path fill="none" stroke="#a1c436" d="M368.152,-162.233C306.475,-147.92 199.076,-119.727 113,-80 108.271,-77.8173 103.474,-75.3194 98.7564,-72.6655"/>
<polygon fill="#a1c436" stroke="#a1c436" points="89.8184,-67.4116 100.72,-68.5998 94.1288,-69.9454 98.4393,-72.4792 98.4393,-72.4792 98.4393,-72.4792 94.1288,-69.9454 96.1589,-76.3586 89.8184,-67.4116 89.8184,-67.4116"/>
xml/tex/graphs/reputation.dot
Copyright [label="Music"];
- Account [label="Account\n#904763"];
+ Account [label="Account\n#208323"];
Account -> Environment -> 1;
xml/tex/graphs/reputation.svg
<ellipse fill="#eeeeee" stroke="#46a5e5" cx="52" cy="-136" rx="52" ry="39.5"/>
<text text-anchor="middle" x="52" y="-141.6" font-family="Archivo Narrow" font-size="18.00">Account</text>
-<text text-anchor="middle" x="52" y="-121.6" font-family="Archivo Narrow" font-size="18.00">#904763</text>
+<text text-anchor="middle" x="52" y="-121.6" font-family="Archivo Narrow" font-size="18.00">#208323</text>
</g>
<!-- Account&#45;&gt;Environment -->
xml/tex/manual.pdf
Binary files differ
xml/tex/screens/account.svg
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="626.25"
- height="211.09552"
- viewBox="0 0 501 168.87642"
- version="1.1"
- id="svg2"
- inkscape:version="0.48.4 r9939"
- sodipodi:docname="account.svg">
- <metadata
- id="metadata1556">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <sodipodi:namedview
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1"
- objecttolerance="10"
- gridtolerance="10"
- guidetolerance="10"
- inkscape:pageopacity="0"
- inkscape:pageshadow="2"
- inkscape:window-width="640"
- inkscape:window-height="480"
- id="namedview1554"
- showgrid="false"
- fit-margin-top="0"
- fit-margin-left="0"
- fit-margin-right="0"
- fit-margin-bottom="0"
- inkscape:zoom="0.23838384"
- inkscape:cx="313.13476"
- inkscape:cy="-206.22559"
- inkscape:window-x="0"
- inkscape:window-y="0"
- inkscape:window-maximized="0"
- inkscape:current-layer="svg2" />
- <defs
- id="defs4">
- <g
- id="g6">
- <symbol
- overflow="visible"
- id="glyph0-0"
- style="overflow:visible">
- <path
- style="stroke:none"
- d=""
- id="path9"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph0-1"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="M 3.921875,-3.1875 2.515625,0 0,0 l 6.15625,-13.984375 2.53125,0 L 14.84375,0 12.3125,0 10.921875,-3.1875 z M 9.953125,-5.359375 7.421875,-11.125 4.875,-5.359375 z m 0,0"
- id="path12"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph0-2"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 6.34375,0.15625 c -1.480469,0 -2.757812,-0.5 -3.828125,-1.5 -1.0625,-1.007812 -1.59375,-2.328125 -1.59375,-3.953125 0,-1.625 0.554687,-2.945313 1.671875,-3.96875 1.113281,-1.019531 2.46875,-1.53125 4.0625,-1.53125 1.601562,0 2.957031,0.554687 4.0625,1.65625 l -1.3125,1.625 C 8.476562,-8.316406 7.546875,-8.71875 6.609375,-8.71875 c -0.929687,0 -1.734375,0.3125 -2.421875,0.9375 -0.6875,0.617188 -1.03125,1.414062 -1.03125,2.390625 0,0.980469 0.335938,1.8125 1.015625,2.5 0.6875,0.679687 1.523437,1.015625 2.515625,1.015625 1,0 1.9375,-0.453125 2.8125,-1.359375 l 1.3125,1.4375 C 9.519531,-0.492188 8.03125,0.15625 6.34375,0.15625 z m 0,0"
- id="path15"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph0-3"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 4.109375,-2.8125 c 0.632813,0.648438 1.4375,0.96875 2.40625,0.96875 0.976563,0 1.78125,-0.320312 2.40625,-0.96875 0.632813,-0.644531 0.953125,-1.476562 0.953125,-2.5 0,-1.03125 -0.320312,-1.867188 -0.953125,-2.515625 -0.625,-0.644531 -1.429687,-0.96875 -2.40625,-0.96875 -0.96875,0 -1.773437,0.324219 -2.40625,0.96875 C 3.472656,-7.179688 3.15625,-6.34375 3.15625,-5.3125 c 0,1.023438 0.316406,1.855469 0.953125,2.5 z m 6.40625,1.390625 c -1.0625,1.054687 -2.398437,1.578125 -4,1.578125 -1.59375,0 -2.929687,-0.523438 -4,-1.578125 -1.0625,-1.0625 -1.59375,-2.359375 -1.59375,-3.890625 0,-1.539062 0.53125,-2.835938 1.59375,-3.890625 1.070313,-1.0625 2.40625,-1.59375 4,-1.59375 1.601563,0 2.9375,0.53125 4,1.59375 1.070313,1.054687 1.609375,2.351563 1.609375,3.890625 0,1.53125 -0.539062,2.828125 -1.609375,3.890625 z m 0,0"
- id="path18"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph0-4"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 9.0625,-4.875 0,-5.765625 2.234375,0 0,10.640625 -2.234375,0 0,-1.9375 c -0.367188,0.65625 -0.867188,1.171875 -1.5,1.546875 C 6.9375,-0.0234375 6.253906,0.15625 5.515625,0.15625 4.316406,0.15625 3.347656,-0.207031 2.609375,-0.9375 1.867188,-1.675781 1.5,-2.738281 1.5,-4.125 l 0,-6.515625 2.234375,0 0,5.84375 c 0,1.960937 0.816406,2.9375 2.453125,2.9375 0.769531,0 1.441406,-0.253906 2.015625,-0.765625 C 8.773438,-3.144531 9.0625,-3.894531 9.0625,-4.875 z m 0,0"
- id="path21"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph0-5"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="M 3.859375,-5.765625 3.859375,0 1.625,0 l 0,-10.640625 2.234375,0 0,1.9375 c 0.363281,-0.65625 0.859375,-1.164063 1.484375,-1.53125 0.632812,-0.375 1.320312,-0.5625 2.0625,-0.5625 1.195312,0 2.164062,0.371094 2.90625,1.109375 0.738281,0.730469 1.109375,1.789062 1.109375,3.171875 l 0,6.515625 -2.234375,0 0,-5.84375 c 0,-1.957031 -0.820312,-2.9375 -2.453125,-2.9375 -0.773437,0 -1.445313,0.261719 -2.015625,0.78125 -0.574219,0.511719 -0.859375,1.257812 -0.859375,2.234375 z m 0,0"
- id="path24"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph0-6"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 4.375,-8.84375 0,5.40625 c 0,0.5 0.132812,0.902344 0.40625,1.203125 0.269531,0.304687 0.644531,0.453125 1.125,0.453125 0.476562,0 0.9375,-0.234375 1.375,-0.703125 l 0.921875,1.578125 c -0.792969,0.710938 -1.667969,1.0625 -2.625,1.0625 -0.949219,0 -1.761719,-0.328125 -2.4375,-0.984375 -0.667969,-0.65625 -1,-1.546875 -1,-2.671875 l 0,-5.34375 -1.34375,0 0,-1.796875 1.34375,0 0,-3.34375 2.234375,0 0,3.34375 2.8125,0 0,1.796875 z m 0,0"
- id="path27"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-0"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 0.9375,-7.140625 4.109375,0 L 5.046875,0 0.9375,0 z m 0.515625,6.625 3.09375,0 0,-6.109375 -3.09375,0 z m 0,0"
- id="path30"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-1"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 3.484375,0 -0.78125,0 0,-5.09375 c 0,-0.414062 0.00781,-0.816406 0.03125,-1.203125 -0.0625,0.074219 -0.136719,0.148437 -0.21875,0.21875 C 2.429688,-6.003906 2.039062,-5.6875 1.34375,-5.125 l -0.421875,-0.546875 1.890625,-1.46875 0.671875,0 z m 0,0"
- id="path33"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-2"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 1.703125,-1.15625 0.078125,0.109375 c -0.085938,0.324219 -0.210938,0.699219 -0.375,1.125 -0.15625,0.4375 -0.320312,0.84375 -0.484375,1.21875 l -0.609375,0 C 0.394531,0.953125 0.488281,0.53125 0.59375,0.03125 c 0.101562,-0.5 0.179688,-0.894531 0.234375,-1.1875 z m 0,0"
- id="path36"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-3"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 4.90625,-5.453125 c 0,0.449219 -0.132812,0.820313 -0.390625,1.109375 -0.25,0.292969 -0.609375,0.484375 -1.078125,0.578125 l 0,0.046875 c 0.570312,0.074219 0.992188,0.257812 1.265625,0.546875 0.28125,0.292969 0.421875,0.679687 0.421875,1.15625 0,0.679687 -0.234375,1.199219 -0.703125,1.5625 C 3.953125,-0.0859375 3.28125,0.09375 2.40625,0.09375 2.03125,0.09375 1.6875,0.0625 1.375,0 1.0625,-0.0507812 0.753906,-0.144531 0.453125,-0.28125 l 0,-0.78125 c 0.3125,0.15625 0.640625,0.277344 0.984375,0.359375 0.351562,0.074219 0.6875,0.109375 1,0.109375 1.238281,0 1.859375,-0.484375 1.859375,-1.453125 0,-0.863281 -0.683594,-1.296875 -2.046875,-1.296875 l -0.703125,0 0,-0.6875 0.71875,0 c 0.550781,0 0.988281,-0.125 1.3125,-0.375 0.332031,-0.25 0.5,-0.59375 0.5,-1.03125 0,-0.34375 -0.121094,-0.613281 -0.359375,-0.8125 -0.242188,-0.195312 -0.570312,-0.296875 -0.984375,-0.296875 -0.3125,0 -0.609375,0.042969 -0.890625,0.125 -0.273438,0.085937 -0.585938,0.242187 -0.9375,0.46875 L 0.5,-6.5 c 0.289062,-0.226562 0.625,-0.40625 1,-0.53125 0.382812,-0.132812 0.789062,-0.203125 1.21875,-0.203125 0.695312,0 1.234375,0.15625 1.609375,0.46875 0.382813,0.3125 0.578125,0.75 0.578125,1.3125 z m 0,0"
- id="path39"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-4"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 5.1875,-4.09375 c 0,2.792969 -1.085938,4.1875 -3.25,4.1875 C 1.5625,0.09375 1.265625,0.0625 1.046875,0 l 0,-0.703125 c 0.257813,0.085937 0.550781,0.125 0.875,0.125 0.78125,0 1.367187,-0.238281 1.765625,-0.71875 0.40625,-0.476563 0.625,-1.21875 0.65625,-2.21875 l -0.046875,0 c -0.179687,0.273437 -0.417969,0.480469 -0.71875,0.625 -0.292969,0.136719 -0.625,0.203125 -1,0.203125 C 1.941406,-2.6875 1.4375,-2.875 1.0625,-3.25 0.695312,-3.632812 0.515625,-4.164062 0.515625,-4.84375 c 0,-0.738281 0.207031,-1.320312 0.625,-1.75 0.414063,-0.425781 0.960937,-0.640625 1.640625,-0.640625 0.476562,0 0.898438,0.125 1.265625,0.375 0.363281,0.242187 0.644531,0.601563 0.84375,1.078125 0.195313,0.480469 0.296875,1.042969 0.296875,1.6875 z M 2.78125,-6.546875 c -0.46875,0 -0.835938,0.152344 -1.09375,0.453125 -0.25,0.292969 -0.375,0.710938 -0.375,1.25 0,0.46875 0.113281,0.839844 0.34375,1.109375 0.238281,0.261719 0.597656,0.390625 1.078125,0.390625 0.300781,0 0.578125,-0.054688 0.828125,-0.171875 0.25,-0.125 0.441406,-0.289063 0.578125,-0.5 0.144531,-0.207031 0.21875,-0.425781 0.21875,-0.65625 0,-0.34375 -0.070313,-0.65625 -0.203125,-0.9375 -0.136719,-0.289063 -0.324219,-0.519531 -0.5625,-0.6875 -0.230469,-0.164063 -0.5,-0.25 -0.8125,-0.25 z m 0,0"
- id="path42"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-5"
- style="overflow:visible">
- <path
- style="stroke:none"
- d=""
- id="path45"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-6"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 3.296875,-5.453125 c 0.238281,0 0.453125,0.023437 0.640625,0.0625 l -0.109375,0.75 C 3.609375,-4.691406 3.414062,-4.71875 3.25,-4.71875 c -0.4375,0 -0.8125,0.179688 -1.125,0.53125 -0.304688,0.355469 -0.453125,0.792969 -0.453125,1.3125 l 0,2.875 -0.8125,0 0,-5.359375 0.671875,0 0.09375,1 0.03125,0 c 0.195312,-0.351563 0.4375,-0.625 0.71875,-0.8125 0.28125,-0.1875 0.585938,-0.28125 0.921875,-0.28125 z m 0,0"
- id="path48"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-7"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 3.125,0.09375 c -0.792969,0 -1.417969,-0.238281 -1.875,-0.71875 -0.460938,-0.476562 -0.6875,-1.144531 -0.6875,-2 0,-0.863281 0.210938,-1.550781 0.640625,-2.0625 0.425781,-0.507812 0.992187,-0.765625 1.703125,-0.765625 0.675781,0 1.207031,0.226563 1.59375,0.671875 0.394531,0.4375 0.59375,1.015625 0.59375,1.734375 l 0,0.515625 -3.6875,0 c 0.00781,0.625 0.164062,1.105469 0.46875,1.4375 0.300781,0.324219 0.726562,0.484375 1.28125,0.484375 0.570312,0 1.140625,-0.117187 1.703125,-0.359375 l 0,0.71875 C 4.566406,-0.125 4.289062,-0.0351562 4.03125,0.015625 3.78125,0.0664062 3.476562,0.09375 3.125,0.09375 z M 2.90625,-4.765625 c -0.4375,0 -0.789062,0.140625 -1.046875,0.421875 -0.25,0.273438 -0.398437,0.65625 -0.4375,1.15625 l 2.796875,0 c 0,-0.507812 -0.117188,-0.898438 -0.34375,-1.171875 -0.230469,-0.269531 -0.554688,-0.40625 -0.96875,-0.40625 z m 0,0"
- id="path51"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-8"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="M 3.34375,0.09375 C 3,0.09375 2.679688,0.03125 2.390625,-0.09375 2.109375,-0.21875 1.867188,-0.414062 1.671875,-0.6875 l -0.0625,0 c 0.039063,0.3125 0.0625,0.609375 0.0625,0.890625 l 0,2.203125 -0.8125,0 0,-7.765625 0.65625,0 L 1.625,-4.625 l 0.046875,0 c 0.207031,-0.289062 0.445313,-0.5 0.71875,-0.625 0.28125,-0.132812 0.597656,-0.203125 0.953125,-0.203125 0.71875,0 1.269531,0.246094 1.65625,0.734375 0.382812,0.480469 0.578125,1.15625 0.578125,2.03125 0,0.886719 -0.199219,1.574219 -0.59375,2.0625 C 4.585938,-0.144531 4.039062,0.09375 3.34375,0.09375 z M 3.234375,-4.765625 c -0.554687,0 -0.949219,0.152344 -1.1875,0.453125 -0.242187,0.304688 -0.367187,0.789062 -0.375,1.453125 l 0,0.171875 c 0,0.761719 0.125,1.304688 0.375,1.625 0.25,0.324219 0.648437,0.484375 1.203125,0.484375 0.46875,0 0.832031,-0.1875 1.09375,-0.5625 0.257812,-0.375 0.390625,-0.890625 0.390625,-1.546875 0,-0.664062 -0.132813,-1.175781 -0.390625,-1.53125 C 4.082031,-4.582031 3.710938,-4.765625 3.234375,-4.765625 z m 0,0"
- id="path54"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-9"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 1.625,-5.359375 0,3.484375 c 0,0.4375 0.097656,0.765625 0.296875,0.984375 0.195313,0.210937 0.507813,0.3125 0.9375,0.3125 0.550781,0 0.957031,-0.148437 1.21875,-0.453125 0.257813,-0.3125 0.390625,-0.816406 0.390625,-1.515625 l 0,-2.8125 0.8125,0 L 5.28125,0 4.609375,0 4.5,-0.71875 l -0.046875,0 C 4.285156,-0.457031 4.050781,-0.253906 3.75,-0.109375 3.457031,0.0234375 3.125,0.09375 2.75,0.09375 2.09375,0.09375 1.601562,-0.0546875 1.28125,-0.359375 0.957031,-0.671875 0.796875,-1.164062 0.796875,-1.84375 l 0,-3.515625 z m 0,0"
- id="path57"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-10"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 2.59375,-0.578125 c 0.132812,0 0.269531,-0.007813 0.40625,-0.03125 0.132812,-0.019531 0.242188,-0.039063 0.328125,-0.0625 l 0,0.625 C 3.234375,-0.00390625 3.097656,0.0234375 2.921875,0.046875 2.753906,0.078125 2.601562,0.09375 2.46875,0.09375 c -1.03125,0 -1.546875,-0.539062 -1.546875,-1.625 l 0,-3.1875 -0.765625,0 0,-0.390625 0.765625,-0.34375 0.34375,-1.140625 0.46875,0 0,1.234375 1.546875,0 0,0.640625 -1.546875,0 0,3.140625 c 0,0.324219 0.070313,0.574219 0.21875,0.75 0.15625,0.167969 0.367187,0.25 0.640625,0.25 z m 0,0"
- id="path60"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-11"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 4.15625,0 -0.171875,-0.765625 -0.03125,0 c -0.273437,0.335937 -0.542969,0.5625 -0.8125,0.6875 C 2.878906,0.0351562 2.550781,0.09375 2.15625,0.09375 c -0.53125,0 -0.949219,-0.1328125 -1.25,-0.40625 -0.304688,-0.269531 -0.453125,-0.660156 -0.453125,-1.171875 0,-1.070313 0.863281,-1.632813 2.59375,-1.6875 l 0.90625,-0.03125 0,-0.34375 c 0,-0.414063 -0.089844,-0.722656 -0.265625,-0.921875 -0.179688,-0.195312 -0.464844,-0.296875 -0.859375,-0.296875 -0.449219,0 -0.953125,0.136719 -1.515625,0.40625 l -0.25,-0.625 c 0.257812,-0.144531 0.546875,-0.253906 0.859375,-0.328125 0.3125,-0.082031 0.628906,-0.125 0.953125,-0.125 0.632812,0 1.101562,0.140625 1.40625,0.421875 C 4.59375,-4.734375 4.75,-4.28125 4.75,-3.65625 L 4.75,0 z M 2.3125,-0.578125 c 0.507812,0 0.90625,-0.132813 1.1875,-0.40625 0.289062,-0.28125 0.4375,-0.671875 0.4375,-1.171875 l 0,-0.46875 -0.8125,0.03125 C 2.476562,-2.570312 2.015625,-2.472656 1.734375,-2.296875 1.453125,-2.117188 1.3125,-1.84375 1.3125,-1.46875 c 0,0.292969 0.085938,0.515625 0.265625,0.671875 C 1.753906,-0.648438 2,-0.578125 2.3125,-0.578125 z m 0,0"
- id="path63"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-12"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 1.671875,0 -0.8125,0 0,-5.359375 0.8125,0 z m -0.875,-6.796875 c 0,-0.1875 0.039063,-0.320313 0.125,-0.40625 0.09375,-0.09375 0.207031,-0.140625 0.34375,-0.140625 0.132813,0 0.25,0.046875 0.34375,0.140625 0.09375,0.085937 0.140625,0.21875 0.140625,0.40625 0,0.179687 -0.046875,0.3125 -0.140625,0.40625 -0.09375,0.085937 -0.210937,0.125 -0.34375,0.125 -0.136719,0 -0.25,-0.039063 -0.34375,-0.125 -0.085937,-0.09375 -0.125,-0.226563 -0.125,-0.40625 z m 0,0"
- id="path66"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-13"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 5.484375,-2.6875 c 0,0.875 -0.226563,1.558594 -0.671875,2.046875 C 4.375,-0.148438 3.769531,0.09375 3,0.09375 2.519531,0.09375 2.09375,-0.015625 1.71875,-0.234375 1.351562,-0.460938 1.066406,-0.785156 0.859375,-1.203125 0.660156,-1.628906 0.5625,-2.125 0.5625,-2.6875 c 0,-0.863281 0.21875,-1.539062 0.65625,-2.03125 0.4375,-0.488281 1.039062,-0.734375 1.8125,-0.734375 0.75,0 1.34375,0.25 1.78125,0.75 0.445312,0.5 0.671875,1.171875 0.671875,2.015625 z m -4.078125,0 c 0,0.6875 0.132812,1.214844 0.40625,1.578125 0.269531,0.355469 0.671875,0.53125 1.203125,0.53125 0.53125,0 0.929687,-0.175781 1.203125,-0.53125 C 4.5,-1.472656 4.640625,-2 4.640625,-2.6875 4.640625,-3.363281 4.5,-3.878906 4.21875,-4.234375 3.945312,-4.585938 3.546875,-4.765625 3.015625,-4.765625 c -0.53125,0 -0.933594,0.179687 -1.203125,0.53125 C 1.539062,-3.890625 1.40625,-3.375 1.40625,-2.6875 z m 0,0"
- id="path69"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-14"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 4.515625,0 0,-3.46875 c 0,-0.425781 -0.101563,-0.75 -0.296875,-0.96875 -0.199219,-0.21875 -0.507812,-0.328125 -0.921875,-0.328125 -0.5625,0 -0.976563,0.152344 -1.234375,0.453125 -0.261719,0.304688 -0.390625,0.804688 -0.390625,1.5 l 0,2.8125 -0.8125,0 0,-5.359375 0.65625,0 0.140625,0.734375 0.03125,0 c 0.164062,-0.257812 0.398438,-0.460938 0.703125,-0.609375 0.300781,-0.144531 0.632813,-0.21875 1,-0.21875 0.644531,0 1.128906,0.15625 1.453125,0.46875 0.320312,0.3125 0.484375,0.8125 0.484375,1.5 l 0,3.484375 z m 0,0"
- id="path72"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-15"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 5.015625,-1.90625 c 0,0.636719 -0.230469,1.132812 -0.6875,1.484375 C 3.867188,-0.078125 3.25,0.09375 2.46875,0.09375 1.625,0.09375 0.972656,-0.015625 0.515625,-0.234375 l 0,-0.796875 C 0.804688,-0.90625 1.125,-0.804688 1.46875,-0.734375 1.820312,-0.660156 2.164062,-0.625 2.5,-0.625 c 0.550781,0 0.96875,-0.101562 1.25,-0.3125 0.28125,-0.21875 0.421875,-0.515625 0.421875,-0.890625 0,-0.238281 -0.054687,-0.4375 -0.15625,-0.59375 -0.09375,-0.164063 -0.261719,-0.3125 -0.5,-0.4375 C 3.285156,-2.992188 2.9375,-3.148438 2.46875,-3.328125 1.800781,-3.554688 1.320312,-3.832031 1.03125,-4.15625 0.75,-4.488281 0.609375,-4.914062 0.609375,-5.4375 0.609375,-5.988281 0.8125,-6.425781 1.21875,-6.75 1.632812,-7.070312 2.1875,-7.234375 2.875,-7.234375 c 0.707031,0 1.359375,0.132813 1.953125,0.390625 l -0.25,0.71875 C 3.984375,-6.375 3.410156,-6.5 2.859375,-6.5 2.410156,-6.5 2.0625,-6.40625 1.8125,-6.21875 c -0.242188,0.1875 -0.359375,0.449219 -0.359375,0.78125 0,0.25 0.039063,0.460938 0.125,0.625 0.09375,0.15625 0.25,0.304688 0.46875,0.4375 0.21875,0.125 0.550781,0.265625 1,0.421875 0.75,0.273437 1.265625,0.5625 1.546875,0.875 0.28125,0.304687 0.421875,0.695313 0.421875,1.171875 z m 0,0"
- id="path75"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-16"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="M 2.03125,0 0,-5.359375 l 0.875,0 1.140625,3.1875 c 0.257813,0.742187 0.414063,1.21875 0.46875,1.4375 l 0.03125,0 c 0.039063,-0.164063 0.15625,-0.519531 0.34375,-1.0625 0.1875,-0.550781 0.613281,-1.738281 1.28125,-3.5625 l 0.875,0 L 2.984375,0 z m 0,0"
- id="path78"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-17"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 1.671875,0 -0.8125,0 0,-7.59375 0.8125,0 z m 0,0"
- id="path81"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-18"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 3,0.09375 c -0.773438,0 -1.371094,-0.234375 -1.796875,-0.703125 C 0.773438,-1.085938 0.5625,-1.765625 0.5625,-2.640625 c 0,-0.894531 0.210938,-1.585937 0.640625,-2.078125 0.4375,-0.488281 1.050781,-0.734375 1.84375,-0.734375 0.257813,0 0.515625,0.03125 0.765625,0.09375 0.257812,0.054687 0.460938,0.117187 0.609375,0.1875 L 4.1875,-4.484375 C 4,-4.554688 3.800781,-4.613281 3.59375,-4.65625 3.382812,-4.707031 3.195312,-4.734375 3.03125,-4.734375 c -1.085938,0 -1.625,0.695313 -1.625,2.078125 0,0.65625 0.128906,1.164062 0.390625,1.515625 0.269531,0.355469 0.664063,0.53125 1.1875,0.53125 0.4375,0 0.890625,-0.097656 1.359375,-0.296875 l 0,0.71875 C 3.988281,0 3.539062,0.09375 3,0.09375 z m 0,0"
- id="path84"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-19"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 4.5,-0.71875 -0.046875,0 c -0.375,0.542969 -0.933594,0.8125 -1.671875,0.8125 -0.699219,0 -1.246094,-0.238281 -1.640625,-0.71875 C 0.753906,-1.101562 0.5625,-1.78125 0.5625,-2.65625 c 0,-0.882812 0.191406,-1.570312 0.578125,-2.0625 0.394531,-0.488281 0.941406,-0.734375 1.640625,-0.734375 0.726562,0 1.285156,0.265625 1.671875,0.796875 l 0.0625,0 -0.03125,-0.390625 -0.03125,-0.375 0,-2.171875 0.8125,0 0,7.59375 -0.65625,0 z m -1.625,0.140625 c 0.5625,0 0.960938,-0.148437 1.203125,-0.453125 0.25,-0.300781 0.375,-0.785156 0.375,-1.453125 l 0,-0.171875 c 0,-0.757812 -0.125,-1.300781 -0.375,-1.625 -0.25,-0.320312 -0.652344,-0.484375 -1.203125,-0.484375 -0.480469,0 -0.84375,0.1875 -1.09375,0.5625 -0.25,0.367187 -0.375,0.882813 -0.375,1.546875 0,0.6875 0.125,1.210938 0.375,1.5625 0.25,0.34375 0.613281,0.515625 1.09375,0.515625 z m 0,0"
- id="path87"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-20"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 4.3125,-1.453125 c 0,0.492187 -0.1875,0.871094 -0.5625,1.140625 -0.367188,0.2734375 -0.886719,0.40625 -1.5625,0.40625 -0.710938,0 -1.261719,-0.109375 -1.65625,-0.328125 l 0,-0.75 c 0.257812,0.125 0.535156,0.226563 0.828125,0.296875 0.289063,0.074219 0.578125,0.109375 0.859375,0.109375 0.414062,0 0.738281,-0.066406 0.96875,-0.203125 0.226562,-0.132812 0.34375,-0.335938 0.34375,-0.609375 0,-0.207031 -0.09375,-0.382813 -0.28125,-0.53125 -0.179688,-0.15625 -0.527344,-0.332031 -1.046875,-0.53125 -0.5,-0.1875 -0.855469,-0.347656 -1.0625,-0.484375 -0.210937,-0.132812 -0.367187,-0.289062 -0.46875,-0.46875 -0.105469,-0.175781 -0.15625,-0.382812 -0.15625,-0.625 0,-0.4375 0.175781,-0.78125 0.53125,-1.03125 0.351563,-0.257812 0.84375,-0.390625 1.46875,-0.390625 0.570313,0 1.132813,0.121094 1.6875,0.359375 L 3.90625,-4.4375 C 3.375,-4.65625 2.890625,-4.765625 2.453125,-4.765625 c -0.386719,0 -0.679687,0.0625 -0.875,0.1875 -0.1875,0.117187 -0.28125,0.277344 -0.28125,0.484375 0,0.148438 0.035156,0.273438 0.109375,0.375 0.070312,0.09375 0.1875,0.1875 0.34375,0.28125 0.164062,0.09375 0.476562,0.226562 0.9375,0.390625 0.632812,0.230469 1.0625,0.464844 1.28125,0.703125 0.226562,0.230469 0.34375,0.527344 0.34375,0.890625 z m 0,0"
- id="path90"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-21"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 3.34375,-5.4375 c 0.707031,0 1.253906,0.242188 1.640625,0.71875 0.394531,0.480469 0.59375,1.15625 0.59375,2.03125 0,0.886719 -0.199219,1.574219 -0.59375,2.0625 C 4.585938,-0.144531 4.039062,0.09375 3.34375,0.09375 3,0.09375 2.679688,0.03125 2.390625,-0.09375 2.109375,-0.21875 1.867188,-0.414062 1.671875,-0.6875 l -0.0625,0 L 1.4375,0 0.859375,0 l 0,-7.59375 0.8125,0 0,1.84375 c 0,0.417969 -0.015625,0.789062 -0.046875,1.109375 l 0.046875,0 C 2.046875,-5.171875 2.601562,-5.4375 3.34375,-5.4375 z m -0.109375,0.671875 c -0.554687,0 -0.953125,0.164063 -1.203125,0.484375 -0.242188,0.3125 -0.359375,0.84375 -0.359375,1.59375 0,0.761719 0.125,1.304688 0.375,1.625 0.25,0.324219 0.648437,0.484375 1.203125,0.484375 0.5,0 0.867188,-0.179687 1.109375,-0.546875 0.25,-0.363281 0.375,-0.882812 0.375,-1.5625 0,-0.695312 -0.125,-1.21875 -0.375,-1.5625 -0.242187,-0.34375 -0.617187,-0.515625 -1.125,-0.515625 z m 0,0"
- id="path93"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-22"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 4.515625,0 0,-3.46875 c 0,-0.425781 -0.101563,-0.75 -0.296875,-0.96875 -0.199219,-0.21875 -0.507812,-0.328125 -0.921875,-0.328125 -0.5625,0 -0.976563,0.15625 -1.234375,0.46875 -0.261719,0.304687 -0.390625,0.804687 -0.390625,1.5 l 0,2.796875 -0.8125,0 0,-7.59375 0.8125,0 0,2.296875 c 0,0.273437 -0.015625,0.5 -0.046875,0.6875 l 0.0625,0 C 1.84375,-4.867188 2.066406,-5.070312 2.359375,-5.21875 2.648438,-5.363281 2.988281,-5.4375 3.375,-5.4375 c 0.644531,0 1.128906,0.15625 1.453125,0.46875 0.332031,0.3125 0.5,0.808594 0.5,1.484375 l 0,3.484375 z m 0,0"
- id="path96"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-23"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 3.265625,-4.71875 -1.359375,0 0,4.71875 -0.8125,0 0,-4.71875 -0.953125,0 0,-0.375 0.953125,-0.28125 0,-0.296875 c 0,-1.320313 0.578125,-1.984375 1.734375,-1.984375 0.28125,0 0.609375,0.058594 0.984375,0.171875 l -0.203125,0.65625 c -0.3125,-0.101563 -0.578125,-0.15625 -0.796875,-0.15625 -0.3125,0 -0.542969,0.105469 -0.6875,0.3125 -0.148438,0.199219 -0.21875,0.523437 -0.21875,0.96875 l 0,0.34375 1.359375,0 z m 0,0"
- id="path99"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-24"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 0.75,-0.515625 c 0,-0.21875 0.046875,-0.382813 0.140625,-0.5 C 0.992188,-1.128906 1.132812,-1.1875 1.3125,-1.1875 c 0.195312,0 0.347656,0.058594 0.453125,0.171875 0.101563,0.117187 0.15625,0.28125 0.15625,0.5 0,0.210937 -0.058594,0.371094 -0.171875,0.484375 C 1.644531,0.0820312 1.5,0.140625 1.3125,0.140625 1.144531,0.140625 1.007812,0.0859375 0.90625,-0.015625 0.800781,-0.117188 0.75,-0.285156 0.75,-0.515625 z m 0,0"
- id="path102"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-25"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="M 6.6875,-3.640625 C 6.6875,-2.460938 6.363281,-1.5625 5.71875,-0.9375 5.082031,-0.3125 4.160156,0 2.953125,0 l -1.96875,0 0,-7.140625 2.1875,0 c 1.101563,0 1.960937,0.308594 2.578125,0.921875 0.625,0.617188 0.9375,1.476562 0.9375,2.578125 z m -0.890625,0.03125 c 0,-0.925781 -0.234375,-1.625 -0.703125,-2.09375 -0.460938,-0.476563 -1.152344,-0.71875 -2.078125,-0.71875 l -1.203125,0 0,5.703125 1.015625,0 c 0.988281,0 1.726563,-0.238281 2.21875,-0.71875 0.5,-0.488281 0.75,-1.210938 0.75,-2.171875 z m 0,0"
- id="path105"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-26"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 5.234375,-5.359375 0,0.515625 -0.984375,0.125 c 0.09375,0.117188 0.171875,0.265625 0.234375,0.453125 0.070313,0.179687 0.109375,0.382813 0.109375,0.609375 0,0.53125 -0.179688,0.953125 -0.53125,1.265625 -0.355469,0.3125 -0.84375,0.46875 -1.46875,0.46875 -0.167969,0 -0.320312,-0.015625 -0.453125,-0.046875 -0.34375,0.1875 -0.515625,0.417969 -0.515625,0.6875 0,0.148438 0.054688,0.257812 0.171875,0.328125 0.125,0.074219 0.332031,0.109375 0.625,0.109375 l 0.953125,0 c 0.570312,0 1.015625,0.121094 1.328125,0.359375 0.3125,0.242187 0.46875,0.59375 0.46875,1.0625 0,0.59375 -0.242187,1.046875 -0.71875,1.359375 C 3.984375,2.25 3.289062,2.40625 2.375,2.40625 1.675781,2.40625 1.132812,2.273438 0.75,2.015625 0.375,1.753906 0.1875,1.382812 0.1875,0.90625 0.1875,0.582031 0.289062,0.300781 0.5,0.0625 0.707031,-0.175781 1,-0.335938 1.375,-0.421875 c -0.136719,-0.0625 -0.25,-0.15625 -0.34375,-0.28125 -0.085938,-0.132813 -0.125,-0.285156 -0.125,-0.453125 0,-0.195312 0.050781,-0.367188 0.15625,-0.515625 C 1.164062,-1.816406 1.328125,-1.957031 1.546875,-2.09375 1.273438,-2.207031 1.050781,-2.398438 0.875,-2.671875 0.695312,-2.953125 0.609375,-3.269531 0.609375,-3.625 c 0,-0.582031 0.175781,-1.03125 0.53125,-1.34375 0.351563,-0.320312 0.847656,-0.484375 1.484375,-0.484375 0.28125,0 0.535156,0.03125 0.765625,0.09375 z M 0.96875,0.90625 c 0,0.28125 0.117188,0.492188 0.359375,0.640625 0.25,0.15625 0.601563,0.234375 1.0625,0.234375 0.675781,0 1.175781,-0.105469 1.5,-0.3125 0.332031,-0.199219 0.5,-0.46875 0.5,-0.8125 C 4.390625,0.363281 4.300781,0.160156 4.125,0.046875 3.945312,-0.0664062 3.609375,-0.125 3.109375,-0.125 l -0.96875,0 c -0.367187,0 -0.652344,0.0898438 -0.859375,0.265625 -0.210938,0.175781 -0.3125,0.429687 -0.3125,0.765625 z m 0.4375,-4.546875 c 0,0.375 0.101562,0.664063 0.3125,0.859375 C 1.9375,-2.59375 2.234375,-2.5 2.609375,-2.5 c 0.789063,0 1.1875,-0.382812 1.1875,-1.15625 0,-0.800781 -0.402344,-1.203125 -1.203125,-1.203125 -0.375,0 -0.667969,0.105469 -0.875,0.3125 -0.210938,0.199219 -0.3125,0.5 -0.3125,0.90625 z m 0,0"
- id="path108"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-27"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 1.8125,0 -0.828125,0 0,-7.140625 3.984375,0 0,0.734375 -3.15625,0 0,2.609375 2.953125,0 0,0.75 -2.953125,0 z m 0,0"
- id="path111"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-28"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 7.6875,0 0,-3.484375 C 7.6875,-3.910156 7.59375,-4.226562 7.40625,-4.4375 7.226562,-4.65625 6.945312,-4.765625 6.5625,-4.765625 c -0.511719,0 -0.886719,0.148437 -1.125,0.4375 -0.242188,0.292969 -0.359375,0.742187 -0.359375,1.34375 l 0,2.984375 -0.8125,0 0,-3.484375 c 0,-0.425781 -0.09375,-0.742187 -0.28125,-0.953125 -0.179687,-0.21875 -0.460937,-0.328125 -0.84375,-0.328125 -0.511719,0 -0.886719,0.15625 -1.125,0.46875 C 1.785156,-3.992188 1.671875,-3.5 1.671875,-2.8125 l 0,2.8125 -0.8125,0 0,-5.359375 0.65625,0 0.140625,0.734375 0.03125,0 c 0.15625,-0.257812 0.367188,-0.460938 0.640625,-0.609375 0.28125,-0.144531 0.59375,-0.21875 0.9375,-0.21875 0.84375,0 1.390625,0.304687 1.640625,0.90625 l 0.046875,0 c 0.15625,-0.28125 0.382813,-0.5 0.6875,-0.65625 0.300781,-0.164063 0.648437,-0.25 1.046875,-0.25 0.601562,0 1.050781,0.15625 1.34375,0.46875 0.300781,0.3125 0.453125,0.8125 0.453125,1.5 l 0,3.484375 z m 0,0"
- id="path114"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-29"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 5.46875,0 -0.890625,-2.265625 -2.859375,0 L 0.84375,0 0,0 l 2.828125,-7.171875 0.6875,0 L 6.328125,0 z m -1.140625,-3.015625 -0.84375,-2.21875 c -0.105469,-0.28125 -0.214844,-0.625 -0.328125,-1.03125 -0.074219,0.3125 -0.171875,0.65625 -0.296875,1.03125 l -0.84375,2.21875 z m 0,0"
- id="path117"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-30"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m -0.0625,1.875 c -0.300781,0 -0.539062,-0.042969 -0.71875,-0.125 l 0,-0.703125 c 0.230469,0.0625 0.46875,0.09375 0.71875,0.09375 0.320312,0 0.566406,-0.101563 0.734375,-0.296875 0.164063,-0.199219 0.25,-0.480469 0.25,-0.84375 l 0,-7.140625 0.84375,0 0,7.078125 c 0,0.613281 -0.15625,1.085938 -0.46875,1.421875 C 0.984375,1.703125 0.53125,1.875 -0.0625,1.875 z m 0,0"
- id="path120"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-31"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 2.71875,-4.359375 c 0.75,0 1.335938,0.1875 1.765625,0.5625 0.4375,0.367187 0.65625,0.875 0.65625,1.53125 0,0.742187 -0.234375,1.320313 -0.703125,1.734375 -0.46875,0.417969 -1.121094,0.625 -1.953125,0.625 -0.804687,0 -1.414063,-0.125 -1.828125,-0.375 l 0,-0.78125 c 0.21875,0.148438 0.492188,0.261719 0.828125,0.34375 0.34375,0.085938 0.679687,0.125 1.015625,0.125 0.570312,0 1.015625,-0.132812 1.328125,-0.40625 0.320313,-0.269531 0.484375,-0.660156 0.484375,-1.171875 0,-1 -0.609375,-1.5 -1.828125,-1.5 -0.3125,0 -0.730469,0.046875 -1.25,0.140625 l -0.40625,-0.265625 0.265625,-3.34375 3.546875,0 0,0.75 -2.859375,0 L 1.609375,-4.25 C 1.972656,-4.320312 2.34375,-4.359375 2.71875,-4.359375 z m 0,0"
- id="path123"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-32"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 5.1875,0 -4.703125,0 0,-0.703125 L 2.375,-2.59375 c 0.570312,-0.570312 0.945312,-0.984375 1.125,-1.234375 0.1875,-0.25 0.320312,-0.488281 0.40625,-0.71875 C 4,-4.785156 4.046875,-5.039062 4.046875,-5.3125 c 0,-0.375 -0.117187,-0.671875 -0.34375,-0.890625 -0.230469,-0.226563 -0.554687,-0.34375 -0.96875,-0.34375 -0.292969,0 -0.574219,0.054687 -0.84375,0.15625 -0.261719,0.09375 -0.554687,0.265625 -0.875,0.515625 l -0.4375,-0.546875 c 0.65625,-0.539063 1.375,-0.8125 2.15625,-0.8125 0.664063,0 1.1875,0.171875 1.5625,0.515625 0.382813,0.335938 0.578125,0.792969 0.578125,1.375 0,0.460938 -0.132812,0.914062 -0.390625,1.359375 -0.25,0.4375 -0.71875,0.996094 -1.40625,1.671875 l -1.5625,1.515625 0,0.046875 3.671875,0 z m 0,0"
- id="path126"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-33"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 5.21875,-3.578125 c 0,1.230469 -0.199219,2.152344 -0.59375,2.765625 C 4.238281,-0.207031 3.648438,0.09375 2.859375,0.09375 2.085938,0.09375 1.5,-0.210938 1.09375,-0.828125 0.695312,-1.453125 0.5,-2.367188 0.5,-3.578125 0.5,-4.816406 0.691406,-5.738281 1.078125,-6.34375 1.460938,-6.945312 2.054688,-7.25 2.859375,-7.25 c 0.769531,0 1.351563,0.320312 1.75,0.953125 0.40625,0.625 0.609375,1.53125 0.609375,2.71875 z m -3.90625,0 c 0,1.042969 0.117188,1.804687 0.359375,2.28125 0.25,0.46875 0.644531,0.703125 1.1875,0.703125 0.53125,0 0.914063,-0.238281 1.15625,-0.71875 0.25,-0.488281 0.375,-1.242188 0.375,-2.265625 0,-1.03125 -0.125,-1.78125 -0.375,-2.25 -0.242187,-0.476563 -0.625,-0.71875 -1.15625,-0.71875 -0.542969,0 -0.9375,0.234375 -1.1875,0.703125 C 1.429688,-5.375 1.3125,-4.617188 1.3125,-3.578125 z m 0,0"
- id="path129"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-34"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 5.515625,-1.640625 -1.0625,0 0,1.640625 -0.765625,0 0,-1.640625 -3.484375,0 0,-0.703125 3.390625,-4.828125 0.859375,0 0,4.796875 1.0625,0 z M 3.6875,-2.375 l 0,-2.375 c 0,-0.46875 0.015625,-0.992188 0.046875,-1.578125 l -0.046875,0 c -0.15625,0.3125 -0.304688,0.574219 -0.4375,0.78125 L 1.015625,-2.375 z m 0,0"
- id="path132"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-35"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 0.75,-0.515625 c 0,-0.21875 0.046875,-0.382813 0.140625,-0.5 C 0.992188,-1.128906 1.132812,-1.1875 1.3125,-1.1875 c 0.195312,0 0.347656,0.058594 0.453125,0.171875 0.101563,0.117187 0.15625,0.28125 0.15625,0.5 0,0.210937 -0.058594,0.371094 -0.171875,0.484375 C 1.644531,0.0820312 1.5,0.140625 1.3125,0.140625 1.144531,0.140625 1.007812,0.0859375 0.90625,-0.015625 0.800781,-0.117188 0.75,-0.285156 0.75,-0.515625 z m 0,-4.3125 c 0,-0.4375 0.1875,-0.65625 0.5625,-0.65625 0.40625,0 0.609375,0.21875 0.609375,0.65625 0,0.210937 -0.058594,0.371094 -0.171875,0.484375 -0.105469,0.117188 -0.25,0.171875 -0.4375,0.171875 -0.167969,0 -0.304688,-0.050781 -0.40625,-0.15625 C 0.800781,-4.429688 0.75,-4.597656 0.75,-4.828125 z m 0,0"
- id="path135"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-36"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 0.578125,-3.046875 c 0,-1.40625 0.269531,-2.453125 0.8125,-3.140625 0.539063,-0.695312 1.347656,-1.046875 2.421875,-1.046875 0.363281,0 0.648438,0.027344 0.859375,0.078125 l 0,0.703125 c -0.25,-0.082031 -0.539063,-0.125 -0.859375,-0.125 -0.761719,0 -1.34375,0.242187 -1.75,0.71875 -0.40625,0.480469 -0.625,1.230469 -0.65625,2.25 l 0.046875,0 c 0.363281,-0.5625 0.929687,-0.84375 1.703125,-0.84375 0.644531,0 1.148438,0.199219 1.515625,0.59375 0.375,0.386719 0.5625,0.90625 0.5625,1.5625 0,0.75 -0.203125,1.339844 -0.609375,1.765625 -0.40625,0.417969 -0.953125,0.625 -1.640625,0.625 -0.742187,0 -1.328125,-0.273438 -1.765625,-0.828125 -0.429688,-0.550781 -0.640625,-1.320313 -0.640625,-2.3125 z M 2.96875,-0.59375 c 0.457031,0 0.8125,-0.144531 1.0625,-0.4375 0.257812,-0.289062 0.390625,-0.710938 0.390625,-1.265625 0,-0.46875 -0.121094,-0.835937 -0.359375,-1.109375 C 3.832031,-3.675781 3.484375,-3.8125 3.015625,-3.8125 c -0.304687,0 -0.574219,0.0625 -0.8125,0.1875 -0.242187,0.117188 -0.433594,0.28125 -0.578125,0.5 -0.148438,0.210938 -0.21875,0.429688 -0.21875,0.65625 0,0.335938 0.0625,0.648438 0.1875,0.9375 0.132812,0.292969 0.320312,0.523438 0.5625,0.6875 0.238281,0.167969 0.507812,0.25 0.8125,0.25 z m 0,0"
- id="path138"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-37"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 4.96875,0 -3.984375,0 0,-7.140625 3.984375,0 0,0.734375 -3.15625,0 0,2.296875 2.953125,0 0,0.734375 -2.953125,0 0,2.625 3.15625,0 z m 0,0"
- id="path141"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-38"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 0.015625,-5.359375 0.859375,0 1.171875,3.0625 c 0.257813,0.699219 0.421875,1.199219 0.484375,1.5 l 0.03125,0 c 0.039062,-0.164063 0.128906,-0.445313 0.265625,-0.84375 0.132813,-0.40625 0.578125,-1.644531 1.328125,-3.71875 l 0.875,0 L 2.734375,0.75 c -0.230469,0.59375 -0.5,1.015625 -0.8125,1.265625 C 1.617188,2.273438 1.25,2.40625 0.8125,2.40625 0.5625,2.40625 0.316406,2.375 0.078125,2.3125 l 0,-0.640625 c 0.175781,0.039063 0.375,0.0625 0.59375,0.0625 0.5625,0 0.960937,-0.3125 1.203125,-0.9375 L 2.171875,0.03125 z m 0,0"
- id="path144"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-39"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="M 5.234375,0 4.25,-3.140625 c -0.0625,-0.1875 -0.179688,-0.625 -0.34375,-1.3125 l -0.046875,0 C 3.734375,-3.878906 3.617188,-3.4375 3.515625,-3.125 l -1,3.125 -0.9375,0 -1.46875,-5.359375 0.859375,0 c 0.34375,1.355469 0.601562,2.386719 0.78125,3.09375 0.175781,0.699219 0.28125,1.167969 0.3125,1.40625 l 0.03125,0 c 0.039062,-0.1875 0.097656,-0.425781 0.171875,-0.71875 0.082031,-0.289063 0.15625,-0.523437 0.21875,-0.703125 l 0.984375,-3.078125 0.875,0 0.953125,3.078125 c 0.1875,0.5625 0.3125,1.03125 0.375,1.40625 l 0.03125,0 c 0.019531,-0.113281 0.054687,-0.289062 0.109375,-0.53125 0.0625,-0.25 0.398438,-1.566406 1.015625,-3.953125 l 0.84375,0 L 6.1875,0 z m 0,0"
- id="path147"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-40"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 1.65625,-2.734375 c 0.144531,-0.195313 0.359375,-0.457031 0.640625,-0.78125 l 1.734375,-1.84375 0.953125,0 -2.15625,2.28125 L 5.140625,0 4.15625,0 2.265625,-2.53125 1.65625,-2 l 0,2 -0.796875,0 0,-7.59375 0.796875,0 0,4.03125 c 0,0.179688 -0.011719,0.453125 -0.03125,0.828125 z m 0,0"
- id="path150"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-41"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 0.40625,-2.3125 0,-0.734375 2.40625,0 0,0.734375 z m 0,0"
- id="path153"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-42"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 2.859375,-7.234375 c 0.644531,0 1.15625,0.152344 1.53125,0.453125 0.382813,0.304688 0.578125,0.71875 0.578125,1.25 0,0.355469 -0.109375,0.679688 -0.328125,0.96875 -0.21875,0.28125 -0.570313,0.542969 -1.046875,0.78125 0.582031,0.28125 0.992188,0.574219 1.234375,0.875 0.25,0.304688 0.375,0.65625 0.375,1.0625 0,0.585938 -0.210937,1.054688 -0.625,1.40625 C 4.160156,-0.0820312 3.59375,0.09375 2.875,0.09375 c -0.761719,0 -1.34375,-0.1640625 -1.75,-0.5 -0.40625,-0.332031 -0.609375,-0.804688 -0.609375,-1.421875 0,-0.8125 0.492187,-1.445313 1.484375,-1.90625 -0.449219,-0.25 -0.773438,-0.519531 -0.96875,-0.8125 -0.1875,-0.300781 -0.28125,-0.632813 -0.28125,-1 0,-0.507813 0.1875,-0.914063 0.5625,-1.21875 0.382812,-0.3125 0.898438,-0.46875 1.546875,-0.46875 z m -1.546875,5.4375 c 0,0.386719 0.132812,0.6875 0.40625,0.90625 0.269531,0.21875 0.648438,0.328125 1.140625,0.328125 0.488281,0 0.867187,-0.113281 1.140625,-0.34375 0.269531,-0.226562 0.40625,-0.539062 0.40625,-0.9375 0,-0.3125 -0.132812,-0.585938 -0.390625,-0.828125 -0.25,-0.25 -0.695313,-0.492187 -1.328125,-0.734375 -0.480469,0.210938 -0.828125,0.445312 -1.046875,0.703125 -0.21875,0.25 -0.328125,0.554687 -0.328125,0.90625 z m 1.53125,-4.78125 c -0.40625,0 -0.730469,0.101563 -0.96875,0.296875 -0.230469,0.1875 -0.34375,0.445312 -0.34375,0.765625 0,0.304687 0.09375,0.5625 0.28125,0.78125 C 2.007812,-4.523438 2.367188,-4.3125 2.890625,-4.09375 3.359375,-4.289062 3.6875,-4.5 3.875,-4.71875 4.070312,-4.945312 4.171875,-5.210938 4.171875,-5.515625 4.171875,-5.835938 4.050781,-6.09375 3.8125,-6.28125 3.582031,-6.476562 3.257812,-6.578125 2.84375,-6.578125 z m 0,0"
- id="path156"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-43"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 5.515625,-5.0625 c 0,0.730469 -0.25,1.289062 -0.75,1.671875 C 4.273438,-3.003906 3.570312,-2.8125 2.65625,-2.8125 l -0.84375,0 0,2.8125 -0.828125,0 0,-7.140625 1.84375,0 c 1.789063,0 2.6875,0.695313 2.6875,2.078125 z m -3.703125,1.546875 0.75,0 c 0.726562,0 1.257812,-0.117187 1.59375,-0.359375 0.332031,-0.238281 0.5,-0.617188 0.5,-1.140625 0,-0.476563 -0.15625,-0.832031 -0.46875,-1.0625 -0.3125,-0.226563 -0.796875,-0.34375 -1.453125,-0.34375 l -0.921875,0 z m 0,0"
- id="path159"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-44"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 0.984375,0 0,-7.140625 0.828125,0 0,7.140625 z m 0,0"
- id="path162"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-45"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 4.28125,0 -3.875,0 0,-0.546875 2.921875,-4.171875 -2.75,0 0,-0.640625 3.625,0 0,0.640625 -2.875,4.09375 2.953125,0 z m 0,0"
- id="path165"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-46"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="M 4.03125,-6.5 C 3.25,-6.5 2.628906,-6.238281 2.171875,-5.71875 1.722656,-5.195312 1.5,-4.476562 1.5,-3.5625 c 0,0.929688 0.21875,1.648438 0.65625,2.15625 0.4375,0.511719 1.0625,0.765625 1.875,0.765625 0.5,0 1.066406,-0.085937 1.703125,-0.265625 l 0,0.71875 C 5.234375,0 4.625,0.09375 3.90625,0.09375 c -1.054688,0 -1.867188,-0.316406 -2.4375,-0.953125 -0.574219,-0.632813 -0.859375,-1.539063 -0.859375,-2.71875 0,-0.738281 0.132813,-1.382813 0.40625,-1.9375 0.28125,-0.550781 0.679687,-0.972656 1.203125,-1.265625 0.519531,-0.300781 1.128906,-0.453125 1.828125,-0.453125 0.75,0 1.40625,0.136719 1.96875,0.40625 L 5.65625,-6.125 C 5.113281,-6.375 4.570312,-6.5 4.03125,-6.5 z m 0,0"
- id="path168"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-47"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 0.203125,2.40625 c -0.3007812,0 -0.550781,-0.042969 -0.75,-0.125 l 0,-0.65625 c 0.230469,0.0625 0.453125,0.09375 0.671875,0.09375 0.25,0 0.429688,-0.074219 0.546875,-0.21875 0.125,-0.136719 0.1875,-0.34375 0.1875,-0.625 l 0,-6.234375 0.8125,0 0,6.1875 c 0,1.050781 -0.492187,1.578125 -1.46875,1.578125 z m 0.59375,-9.203125 c 0,-0.1875 0.039063,-0.320313 0.125,-0.40625 0.09375,-0.09375 0.207031,-0.140625 0.34375,-0.140625 0.132813,0 0.25,0.046875 0.34375,0.140625 0.09375,0.085937 0.140625,0.21875 0.140625,0.40625 0,0.179687 -0.046875,0.3125 -0.140625,0.40625 -0.09375,0.085937 -0.210937,0.125 -0.34375,0.125 -0.136719,0 -0.25,-0.039063 -0.34375,-0.125 -0.085937,-0.09375 -0.125,-0.226563 -0.125,-0.40625 z m 0,0"
- id="path171"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-48"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 2.40625,-7.59375 0.6875,0 0,10.015625 -0.6875,0 z m 0,0"
- id="path174"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph1-49"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 3.265625,-4.71875 -1.359375,0 0,4.71875 -0.8125,0 0,-4.71875 -0.953125,0 0,-0.375 0.953125,-0.28125 0,-0.296875 c 0,-1.320313 0.578125,-1.984375 1.734375,-1.984375 0.28125,0 0.609375,0.058594 0.984375,0.171875 l -0.203125,0.65625 c -0.3125,-0.101563 -0.578125,-0.15625 -0.796875,-0.15625 -0.3125,0 -0.542969,0.105469 -0.6875,0.3125 -0.148438,0.199219 -0.21875,0.523437 -0.21875,0.96875 l 0,0.34375 1.359375,0 z M 4.671875,0 l -0.8125,0 0,-7.59375 0.8125,0 z m 0,0"
- id="path177"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph2-0"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 0.9375,-7.140625 4.109375,0 L 5.046875,0 0.9375,0 z m 0.515625,6.625 3.09375,0 0,-6.109375 -3.09375,0 z m 0,0"
- id="path180"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph2-1"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="M 4.03125,-6.5 C 3.25,-6.5 2.628906,-6.238281 2.171875,-5.71875 1.722656,-5.195312 1.5,-4.476562 1.5,-3.5625 c 0,0.929688 0.21875,1.648438 0.65625,2.15625 0.4375,0.511719 1.0625,0.765625 1.875,0.765625 0.5,0 1.066406,-0.085937 1.703125,-0.265625 l 0,0.71875 C 5.234375,0 4.625,0.09375 3.90625,0.09375 c -1.054688,0 -1.867188,-0.316406 -2.4375,-0.953125 -0.574219,-0.632813 -0.859375,-1.539063 -0.859375,-2.71875 0,-0.738281 0.132813,-1.382813 0.40625,-1.9375 0.28125,-0.550781 0.679687,-0.972656 1.203125,-1.265625 0.519531,-0.300781 1.128906,-0.453125 1.828125,-0.453125 0.75,0 1.40625,0.136719 1.96875,0.40625 L 5.65625,-6.125 C 5.113281,-6.375 4.570312,-6.5 4.03125,-6.5 z m 0,0"
- id="path183"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph2-2"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 5.484375,-2.6875 c 0,0.875 -0.226563,1.558594 -0.671875,2.046875 C 4.375,-0.148438 3.769531,0.09375 3,0.09375 2.519531,0.09375 2.09375,-0.015625 1.71875,-0.234375 1.351562,-0.460938 1.066406,-0.785156 0.859375,-1.203125 0.660156,-1.628906 0.5625,-2.125 0.5625,-2.6875 c 0,-0.863281 0.21875,-1.539062 0.65625,-2.03125 0.4375,-0.488281 1.039062,-0.734375 1.8125,-0.734375 0.75,0 1.34375,0.25 1.78125,0.75 0.445312,0.5 0.671875,1.171875 0.671875,2.015625 z m -4.078125,0 c 0,0.6875 0.132812,1.214844 0.40625,1.578125 0.269531,0.355469 0.671875,0.53125 1.203125,0.53125 0.53125,0 0.929687,-0.175781 1.203125,-0.53125 C 4.5,-1.472656 4.640625,-2 4.640625,-2.6875 4.640625,-3.363281 4.5,-3.878906 4.21875,-4.234375 3.945312,-4.585938 3.546875,-4.765625 3.015625,-4.765625 c -0.53125,0 -0.933594,0.179687 -1.203125,0.53125 C 1.539062,-3.890625 1.40625,-3.375 1.40625,-2.6875 z m 0,0"
- id="path186"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph2-3"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 7.6875,0 0,-3.484375 C 7.6875,-3.910156 7.59375,-4.226562 7.40625,-4.4375 7.226562,-4.65625 6.945312,-4.765625 6.5625,-4.765625 c -0.511719,0 -0.886719,0.148437 -1.125,0.4375 -0.242188,0.292969 -0.359375,0.742187 -0.359375,1.34375 l 0,2.984375 -0.8125,0 0,-3.484375 c 0,-0.425781 -0.09375,-0.742187 -0.28125,-0.953125 -0.179687,-0.21875 -0.460937,-0.328125 -0.84375,-0.328125 -0.511719,0 -0.886719,0.15625 -1.125,0.46875 C 1.785156,-3.992188 1.671875,-3.5 1.671875,-2.8125 l 0,2.8125 -0.8125,0 0,-5.359375 0.65625,0 0.140625,0.734375 0.03125,0 c 0.15625,-0.257812 0.367188,-0.460938 0.640625,-0.609375 0.28125,-0.144531 0.59375,-0.21875 0.9375,-0.21875 0.84375,0 1.390625,0.304687 1.640625,0.90625 l 0.046875,0 c 0.15625,-0.28125 0.382813,-0.5 0.6875,-0.65625 0.300781,-0.164063 0.648437,-0.25 1.046875,-0.25 0.601562,0 1.050781,0.15625 1.34375,0.46875 0.300781,0.3125 0.453125,0.8125 0.453125,1.5 l 0,3.484375 z m 0,0"
- id="path189"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph2-4"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 3.125,0.09375 c -0.792969,0 -1.417969,-0.238281 -1.875,-0.71875 -0.460938,-0.476562 -0.6875,-1.144531 -0.6875,-2 0,-0.863281 0.210938,-1.550781 0.640625,-2.0625 0.425781,-0.507812 0.992187,-0.765625 1.703125,-0.765625 0.675781,0 1.207031,0.226563 1.59375,0.671875 0.394531,0.4375 0.59375,1.015625 0.59375,1.734375 l 0,0.515625 -3.6875,0 c 0.00781,0.625 0.164062,1.105469 0.46875,1.4375 0.300781,0.324219 0.726562,0.484375 1.28125,0.484375 0.570312,0 1.140625,-0.117187 1.703125,-0.359375 l 0,0.71875 C 4.566406,-0.125 4.289062,-0.0351562 4.03125,0.015625 3.78125,0.0664062 3.476562,0.09375 3.125,0.09375 z M 2.90625,-4.765625 c -0.4375,0 -0.789062,0.140625 -1.046875,0.421875 -0.25,0.273438 -0.398437,0.65625 -0.4375,1.15625 l 2.796875,0 c 0,-0.507812 -0.117188,-0.898438 -0.34375,-1.171875 -0.230469,-0.269531 -0.554688,-0.40625 -0.96875,-0.40625 z m 0,0"
- id="path192"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph2-5"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 4.515625,0 0,-3.46875 c 0,-0.425781 -0.101563,-0.75 -0.296875,-0.96875 -0.199219,-0.21875 -0.507812,-0.328125 -0.921875,-0.328125 -0.5625,0 -0.976563,0.152344 -1.234375,0.453125 -0.261719,0.304688 -0.390625,0.804688 -0.390625,1.5 l 0,2.8125 -0.8125,0 0,-5.359375 0.65625,0 0.140625,0.734375 0.03125,0 c 0.164062,-0.257812 0.398438,-0.460938 0.703125,-0.609375 0.300781,-0.144531 0.632813,-0.21875 1,-0.21875 0.644531,0 1.128906,0.15625 1.453125,0.46875 0.320312,0.3125 0.484375,0.8125 0.484375,1.5 l 0,3.484375 z m 0,0"
- id="path195"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph2-6"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 2.59375,-0.578125 c 0.132812,0 0.269531,-0.007813 0.40625,-0.03125 0.132812,-0.019531 0.242188,-0.039063 0.328125,-0.0625 l 0,0.625 C 3.234375,-0.00390625 3.097656,0.0234375 2.921875,0.046875 2.753906,0.078125 2.601562,0.09375 2.46875,0.09375 c -1.03125,0 -1.546875,-0.539062 -1.546875,-1.625 l 0,-3.1875 -0.765625,0 0,-0.390625 0.765625,-0.34375 0.34375,-1.140625 0.46875,0 0,1.234375 1.546875,0 0,0.640625 -1.546875,0 0,3.140625 c 0,0.324219 0.070313,0.574219 0.21875,0.75 0.15625,0.167969 0.367187,0.25 0.640625,0.25 z m 0,0"
- id="path198"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph2-7"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 5.515625,-5.0625 c 0,0.730469 -0.25,1.289062 -0.75,1.671875 C 4.273438,-3.003906 3.570312,-2.8125 2.65625,-2.8125 l -0.84375,0 0,2.8125 -0.828125,0 0,-7.140625 1.84375,0 c 1.789063,0 2.6875,0.695313 2.6875,2.078125 z m -3.703125,1.546875 0.75,0 c 0.726562,0 1.257812,-0.117187 1.59375,-0.359375 0.332031,-0.238281 0.5,-0.617188 0.5,-1.140625 0,-0.476563 -0.15625,-0.832031 -0.46875,-1.0625 -0.3125,-0.226563 -0.796875,-0.34375 -1.453125,-0.34375 l -0.921875,0 z m 0,0"
- id="path201"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph2-8"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 1.671875,0 -0.8125,0 0,-7.59375 0.8125,0 z m 0,0"
- id="path204"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph2-9"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 1.671875,0 -0.8125,0 0,-5.359375 0.8125,0 z m -0.875,-6.796875 c 0,-0.1875 0.039063,-0.320313 0.125,-0.40625 0.09375,-0.09375 0.207031,-0.140625 0.34375,-0.140625 0.132813,0 0.25,0.046875 0.34375,0.140625 0.09375,0.085937 0.140625,0.21875 0.140625,0.40625 0,0.179687 -0.046875,0.3125 -0.140625,0.40625 -0.09375,0.085937 -0.210937,0.125 -0.34375,0.125 -0.136719,0 -0.25,-0.039063 -0.34375,-0.125 -0.085937,-0.09375 -0.125,-0.226563 -0.125,-0.40625 z m 0,0"
- id="path207"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph2-10"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 3,0.09375 c -0.773438,0 -1.371094,-0.234375 -1.796875,-0.703125 C 0.773438,-1.085938 0.5625,-1.765625 0.5625,-2.640625 c 0,-0.894531 0.210938,-1.585937 0.640625,-2.078125 0.4375,-0.488281 1.050781,-0.734375 1.84375,-0.734375 0.257813,0 0.515625,0.03125 0.765625,0.09375 0.257812,0.054687 0.460938,0.117187 0.609375,0.1875 L 4.1875,-4.484375 C 4,-4.554688 3.800781,-4.613281 3.59375,-4.65625 3.382812,-4.707031 3.195312,-4.734375 3.03125,-4.734375 c -1.085938,0 -1.625,0.695313 -1.625,2.078125 0,0.65625 0.128906,1.164062 0.390625,1.515625 0.269531,0.355469 0.664063,0.53125 1.1875,0.53125 0.4375,0 0.890625,-0.097656 1.359375,-0.296875 l 0,0.71875 C 3.988281,0 3.539062,0.09375 3,0.09375 z m 0,0"
- id="path210"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph2-11"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 0.015625,-5.359375 0.859375,0 1.171875,3.0625 c 0.257813,0.699219 0.421875,1.199219 0.484375,1.5 l 0.03125,0 c 0.039062,-0.164063 0.128906,-0.445313 0.265625,-0.84375 0.132813,-0.40625 0.578125,-1.644531 1.328125,-3.71875 l 0.875,0 L 2.734375,0.75 c -0.230469,0.59375 -0.5,1.015625 -0.8125,1.265625 C 1.617188,2.273438 1.25,2.40625 0.8125,2.40625 0.5625,2.40625 0.316406,2.375 0.078125,2.3125 l 0,-0.640625 c 0.175781,0.039063 0.375,0.0625 0.59375,0.0625 0.5625,0 0.960937,-0.3125 1.203125,-0.9375 L 2.171875,0.03125 z m 0,0"
- id="path213"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph2-12"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="M 6.6875,-3.640625 C 6.6875,-2.460938 6.363281,-1.5625 5.71875,-0.9375 5.082031,-0.3125 4.160156,0 2.953125,0 l -1.96875,0 0,-7.140625 2.1875,0 c 1.101563,0 1.960937,0.308594 2.578125,0.921875 0.625,0.617188 0.9375,1.476562 0.9375,2.578125 z m -0.890625,0.03125 c 0,-0.925781 -0.234375,-1.625 -0.703125,-2.09375 -0.460938,-0.476563 -1.152344,-0.71875 -2.078125,-0.71875 l -1.203125,0 0,5.703125 1.015625,0 c 0.988281,0 1.726563,-0.238281 2.21875,-0.71875 0.5,-0.488281 0.75,-1.210938 0.75,-2.171875 z m 0,0"
- id="path216"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph2-13"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 4.15625,0 -0.171875,-0.765625 -0.03125,0 c -0.273437,0.335937 -0.542969,0.5625 -0.8125,0.6875 C 2.878906,0.0351562 2.550781,0.09375 2.15625,0.09375 c -0.53125,0 -0.949219,-0.1328125 -1.25,-0.40625 -0.304688,-0.269531 -0.453125,-0.660156 -0.453125,-1.171875 0,-1.070313 0.863281,-1.632813 2.59375,-1.6875 l 0.90625,-0.03125 0,-0.34375 c 0,-0.414063 -0.089844,-0.722656 -0.265625,-0.921875 -0.179688,-0.195312 -0.464844,-0.296875 -0.859375,-0.296875 -0.449219,0 -0.953125,0.136719 -1.515625,0.40625 l -0.25,-0.625 c 0.257812,-0.144531 0.546875,-0.253906 0.859375,-0.328125 0.3125,-0.082031 0.628906,-0.125 0.953125,-0.125 0.632812,0 1.101562,0.140625 1.40625,0.421875 C 4.59375,-4.734375 4.75,-4.28125 4.75,-3.65625 L 4.75,0 z M 2.3125,-0.578125 c 0.507812,0 0.90625,-0.132813 1.1875,-0.40625 0.289062,-0.28125 0.4375,-0.671875 0.4375,-1.171875 l 0,-0.46875 -0.8125,0.03125 C 2.476562,-2.570312 2.015625,-2.472656 1.734375,-2.296875 1.453125,-2.117188 1.3125,-1.84375 1.3125,-1.46875 c 0,0.292969 0.085938,0.515625 0.265625,0.671875 C 1.753906,-0.648438 2,-0.578125 2.3125,-0.578125 z m 0,0"
- id="path219"
- inkscape:connector-curvature="0" />
- </symbol>
- <symbol
- overflow="visible"
- id="glyph2-14"
- style="overflow:visible">
- <path
- style="stroke:none"
- d="m 5.015625,-1.90625 c 0,0.636719 -0.230469,1.132812 -0.6875,1.484375 C 3.867188,-0.078125 3.25,0.09375 2.46875,0.09375 1.625,0.09375 0.972656,-0.015625 0.515625,-0.234375 l 0,-0.796875 C 0.804688,-0.90625 1.125,-0.804688 1.46875,-0.734375 1.820312,-0.660156 2.164062,-0.625 2.5,-0.625 c 0.550781,0 0.96875,-0.101562 1.25,-0.3125 0.28125,-0.21875 0.421875,-0.515625 0.421875,-0.890625 0,-0.238281 -0.054687,-0.4375 -0.15625,-0.59375 -0.09375,-0.164063 -0.261719,-0.3125 -0.5,-0.4375 C 3.285156,-2.992188 2.9375,-3.148438 2.46875,-3.328125 1.800781,-3.554688 1.320312,-3.832031 1.03125,-4.15625 0.75,-4.488281 0.609375,-4.914062 0.609375,-5.4375 0.609375,-5.988281 0.8125,-6.425781 1.21875,-6.75 1.632812,-7.070312 2.1875,-7.234375 2.875,-7.234375 c 0.707031,0 1.359375,0.132813 1.953125,0.390625 l -0.25,0.71875 C 3.984375,-6.375 3.410156,-6.5 2.859375,-6.5 2.410156,-6.5 2.0625,-6.40625 1.8125,-6.21875 c -0.242188,0.1875 -0.359375,0.449219 -0.359375,0.78125 0,0.25 0.039063,0.460938 0.125,0.625 0.09375,0.15625 0.25,0.304688 0.46875,0.4375 0.21875,0.125 0.550781,0.265625 1,0.421875 0.75,0.273437 1.265625,0.5625 1.546875,0.875 0.28125,0.304687 0.421875,0.695313 0.421875,1.171875 z m 0,0"
- id="path222"
- inkscape:connector-curvature="0" />
- </symbol>
- </g>
- <clipPath
- id="clip1">
- <path
- d="m 54,54 503.99609,0 0,661.70703 -503.99609,0 z m 0,0"
- id="path225"
- inkscape:connector-curvature="0" />
- </clipPath>
- <clipPath
- id="clip2">
- <path
- d="m 55.492188,230.18359 501.000002,0 0,0.83594 -501.000002,0 z m 0,0"
- id="path228"
- inkscape:connector-curvature="0" />
- </clipPath>
- <clipPath
- id="clip3">
- <path
- d="m 55.492188,84.058594 501.000002,0 0,0.835937 -501.000002,0 z m 0,0"
- id="path231"
- inkscape:connector-curvature="0" />
- </clipPath>
- </defs>
- <g
- id="g5193"
- transform="translate(-55.492188,-62.14312)">
- <g
- clip-path="url(#clip2)"
- clip-rule="nonzero"
- id="g238">
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 55.492188,230.18359 501.000002,0 0,0.83594 -501.000002,0 z m 0,0"
- id="path240"
- inkscape:connector-curvature="0" />
- </g>
- <g
- clip-path="url(#clip3)"
- clip-rule="nonzero"
- id="g242">
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 55.492188,84.058594 501.000002,0 0,0.835937 -501.000002,0 z m 0,0"
- id="path244"
- inkscape:connector-curvature="0" />
- </g>
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 55.492188,104.93359 242.003902,0 0,15.03125 -242.003902,0 z m 0,0"
- id="path246"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 297.49609,104.93359 96.40235,0 0,15.03125 -96.40235,0 z m 0,0"
- id="path248"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 393.89844,104.93359 106.72265,0 0,15.03125 -106.72265,0 z m 0,0"
- id="path250"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 500.62109,104.93359 55.8711,0 0,15.03125 -55.8711,0 z m 0,0"
- id="path252"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 55.492188,134.99609 242.003902,0 0,25.05078 -242.003902,0 z m 0,0"
- id="path254"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 297.49609,134.99609 96.40235,0 0,25.05078 -96.40235,0 z m 0,0"
- id="path256"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 393.89844,134.99609 106.72265,0 0,25.05078 -106.72265,0 z m 0,0"
- id="path258"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 500.62109,134.99609 55.8711,0 0,25.05078 -55.8711,0 z m 0,0"
- id="path260"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 55.492188,195.11328 242.003902,0 0,15.03125 -242.003902,0 z m 0,0"
- id="path262"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 297.49609,195.11328 96.40235,0 0,15.03125 -96.40235,0 z m 0,0"
- id="path264"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 393.89844,195.11328 106.72265,0 0,15.03125 -106.72265,0 z m 0,0"
- id="path266"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none"
- d="m 500.62109,195.11328 55.8711,0 0,15.03125 -55.8711,0 z m 0,0"
- id="path268"
- inkscape:connector-curvature="0" />
- <g
- style="fill:#000000;fill-opacity:1"
- id="g270">
- <use
- xlink:href="#glyph0-1"
- x="55.492558"
- y="76.127495"
- id="use272"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph0-2"
- x="70.362236"
- y="76.127495"
- id="use274"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph0-2"
- x="81.905273"
- y="76.127495"
- id="use276"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g278">
- <use
- xlink:href="#glyph0-3"
- x="93.227875"
- y="76.127495"
- id="use280"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g282">
- <use
- xlink:href="#glyph0-4"
- x="106.314"
- y="76.127495"
- id="use284"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g286">
- <use
- xlink:href="#glyph0-5"
- x="119.23979"
- y="76.127495"
- id="use288"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g290">
- <use
- xlink:href="#glyph0-6"
- x="132.06538"
- y="76.127495"
- id="use292"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g294">
- <use
- xlink:href="#glyph1-1"
- x="55.492558"
- y="98.672493"
- id="use296"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-1"
- x="61.213978"
- y="98.672493"
- id="use298"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-2"
- x="66.935394"
- y="98.672493"
- id="use300"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-3"
- x="69.390297"
- y="98.672493"
- id="use302"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-1"
- x="75.111717"
- y="98.672493"
- id="use304"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-4"
- x="80.833138"
- y="98.672493"
- id="use306"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="86.554558"
- y="98.672493"
- id="use308"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-6"
- x="89.149734"
- y="98.672493"
- id="use310"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="93.237892"
- y="98.672493"
- id="use312"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-8"
- x="98.859116"
- y="98.672493"
- id="use314"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-9"
- x="104.99135"
- y="98.672493"
- id="use316"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="111.13361"
- y="98.672493"
- id="use318"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-11"
- x="114.67067"
- y="98.672493"
- id="use320"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="120.24179"
- y="98.672493"
- id="use322"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-12"
- x="123.77885"
- y="98.672493"
- id="use324"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-13"
- x="126.30389"
- y="98.672493"
- id="use326"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-14"
- x="132.35597"
- y="98.672493"
- id="use328"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#ffffff;fill-opacity:1"
- id="g330">
- <use
- xlink:href="#glyph2-1"
- x="57.997555"
- y="116.20749"
- id="use332"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph2-2"
- x="64.310158"
- y="116.20749"
- id="use334"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#ffffff;fill-opacity:1"
- id="g336">
- <use
- xlink:href="#glyph2-3"
- x="70.372253"
- y="116.20749"
- id="use338"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph2-3"
- x="79.690857"
- y="116.20749"
- id="use340"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph2-4"
- x="89.009453"
- y="116.20749"
- id="use342"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph2-5"
- x="94.630669"
- y="116.20749"
- id="use344"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph2-6"
- x="100.77293"
- y="116.20749"
- id="use346"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#ffffff;fill-opacity:1"
- id="g348">
- <use
- xlink:href="#glyph2-7"
- x="300.0014"
- y="116.20749"
- id="use350"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph2-2"
- x="306.03345"
- y="116.20749"
- id="use352"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph2-8"
- x="312.08551"
- y="116.20749"
- id="use354"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph2-9"
- x="314.61057"
- y="116.20749"
- id="use356"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#ffffff;fill-opacity:1"
- id="g358">
- <use
- xlink:href="#glyph2-10"
- x="317.1456"
- y="116.20749"
- id="use360"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph2-11"
- x="321.91513"
- y="116.20749"
- id="use362"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#ffffff;fill-opacity:1"
- id="g364">
- <use
- xlink:href="#glyph2-12"
- x="396.37375"
- y="116.20749"
- id="use366"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph2-13"
- x="403.67831"
- y="116.20749"
- id="use368"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph2-6"
- x="409.24945"
- y="116.20749"
- id="use370"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph2-4"
- x="412.7865"
- y="116.20749"
- id="use372"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#ffffff;fill-opacity:1"
- id="g374">
- <use
- xlink:href="#glyph2-14"
- x="503.12558"
- y="116.20749"
- id="use376"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph2-6"
- x="508.61652"
- y="116.20749"
- id="use378"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph2-13"
- x="512.15356"
- y="116.20749"
- id="use380"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph2-6"
- x="517.72473"
- y="116.20749"
- id="use382"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph2-4"
- x="521.26178"
- y="116.20749"
- id="use384"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g386">
- <use
- xlink:href="#glyph1-15"
- x="57.997555"
- y="131.23749"
- id="use388"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-9"
- x="63.488514"
- y="131.23749"
- id="use390"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-6"
- x="69.630775"
- y="131.23749"
- id="use392"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-16"
- x="73.718933"
- y="131.23749"
- id="use394"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="78.728935"
- y="131.23749"
- id="use396"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g398">
- <use
- xlink:href="#glyph1-12"
- x="84.360176"
- y="131.23749"
- id="use400"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-17"
- x="86.885216"
- y="131.23749"
- id="use402"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-17"
- x="89.410255"
- y="131.23749"
- id="use404"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-11"
- x="91.935295"
- y="131.23749"
- id="use406"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-14"
- x="97.506409"
- y="131.23749"
- id="use408"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-18"
- x="103.64867"
- y="131.23749"
- id="use410"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="108.41819"
- y="131.23749"
- id="use412"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="114.03941"
- y="131.23749"
- id="use414"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-19"
- x="116.63459"
- y="131.23749"
- id="use416"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-11"
- x="122.76683"
- y="131.23749"
- id="use418"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="128.33795"
- y="131.23749"
- id="use420"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-11"
- x="131.87502"
- y="131.23749"
- id="use422"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="137.44612"
- y="131.23749"
- id="use424"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-12"
- x="140.04131"
- y="131.23749"
- id="use426"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-20"
- x="142.56635"
- y="131.23749"
- id="use428"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="147.34589"
- y="131.23749"
- id="use430"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g432">
- <use
- xlink:href="#glyph1-20"
- x="149.93105"
- y="131.23749"
- id="use434"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-9"
- x="154.71059"
- y="131.23749"
- id="use436"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-20"
- x="160.85284"
- y="131.23749"
- id="use438"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-18"
- x="165.63239"
- y="131.23749"
- id="use440"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="170.4019"
- y="131.23749"
- id="use442"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g444">
- <use
- xlink:href="#glyph1-8"
- x="176.03314"
- y="131.23749"
- id="use446"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g448">
- <use
- xlink:href="#glyph1-10"
- x="182.15536"
- y="131.23749"
- id="use450"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-12"
- x="185.69243"
- y="131.23749"
- id="use452"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g454">
- <use
- xlink:href="#glyph1-21"
- x="188.22748"
- y="131.23749"
- id="use456"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g458">
- <use
- xlink:href="#glyph1-17"
- x="194.3497"
- y="131.23749"
- id="use460"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g462">
- <use
- xlink:href="#glyph1-7"
- x="196.88477"
- y="131.23749"
- id="use464"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="202.50598"
- y="131.23749"
- id="use466"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="205.10117"
- y="131.23749"
- id="use468"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-13"
- x="208.63821"
- y="131.23749"
- id="use470"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="214.69031"
- y="131.23749"
- id="use472"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#45a3e3;fill-opacity:1"
- id="g474">
- <use
- xlink:href="#glyph1-10"
- x="217.45123"
- y="131.23749"
- id="use476"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-22"
- x="220.9883"
- y="131.23749"
- id="use478"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="227.13055"
- y="131.23749"
- id="use480"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-23"
- x="232.75177"
- y="131.23749"
- id="use482"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="236.13853"
- y="131.23749"
- id="use484"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g486">
- <use
- xlink:href="#glyph1-24"
- x="239.69354"
- y="131.23749"
- id="use488"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#45a3e3;fill-opacity:1"
- id="g490">
- <use
- xlink:href="#glyph1-25"
- x="300.0014"
- y="131.23749"
- id="use492"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-12"
- x="307.30597"
- y="131.23749"
- id="use494"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-26"
- x="309.83102"
- y="131.23749"
- id="use496"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-12"
- x="315.31195"
- y="131.23749"
- id="use498"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#45a3e3;fill-opacity:1"
- id="g500">
- <use
- xlink:href="#glyph1-10"
- x="317.84702"
- y="131.23749"
- id="use502"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-11"
- x="321.38406"
- y="131.23749"
- id="use504"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-17"
- x="326.9552"
- y="131.23749"
- id="use506"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="329.48022"
- y="131.23749"
- id="use508"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-27"
- x="332.07541"
- y="131.23749"
- id="use510"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#45a3e3;fill-opacity:1"
- id="g512">
- <use
- xlink:href="#glyph1-6"
- x="337.23572"
- y="131.23749"
- id="use514"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="341.32388"
- y="131.23749"
- id="use516"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#45a3e3;fill-opacity:1"
- id="g518">
- <use
- xlink:href="#glyph1-7"
- x="346.95511"
- y="131.23749"
- id="use520"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-19"
- x="352.57632"
- y="131.23749"
- id="use522"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-13"
- x="358.70859"
- y="131.23749"
- id="use524"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-28"
- x="364.76065"
- y="131.23749"
- id="use526"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="374.07925"
- y="131.23749"
- id="use528"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-29"
- x="376.67444"
- y="131.23749"
- id="use530"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-18"
- x="383.00708"
- y="131.23749"
- id="use532"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="387.77658"
- y="131.23749"
- id="use534"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g536">
- <use
- xlink:href="#glyph1-30"
- x="396.40216"
- y="131.23749"
- id="use538"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-9"
- x="399.07748"
- y="131.23749"
- id="use540"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g542">
- <use
- xlink:href="#glyph1-14"
- x="405.20972"
- y="131.23749"
- id="use544"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="411.35199"
- y="131.23749"
- id="use546"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-1"
- x="413.94717"
- y="131.23749"
- id="use548"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-31"
- x="419.66858"
- y="131.23749"
- id="use550"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-2"
- x="425.39001"
- y="131.23749"
- id="use552"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="427.84491"
- y="131.23749"
- id="use554"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g556">
- <use
- xlink:href="#glyph1-32"
- x="430.43005"
- y="131.23749"
- id="use558"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-33"
- x="436.15149"
- y="131.23749"
- id="use560"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-1"
- x="441.87289"
- y="131.23749"
- id="use562"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g564">
- <use
- xlink:href="#glyph1-34"
- x="447.60434"
- y="131.23749"
- id="use566"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g568">
- <use
- xlink:href="#glyph1-1"
- x="455.83075"
- y="131.23749"
- id="use570"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-34"
- x="461.55219"
- y="131.23749"
- id="use572"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-35"
- x="467.27359"
- y="131.23749"
- id="use574"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g576">
- <use
- xlink:href="#glyph1-3"
- x="469.92889"
- y="131.23749"
- id="use578"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-32"
- x="475.65033"
- y="131.23749"
- id="use580"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g582">
- <use
- xlink:href="#glyph1-35"
- x="481.38177"
- y="131.23749"
- id="use584"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g586">
- <use
- xlink:href="#glyph1-33"
- x="484.03705"
- y="131.23749"
- id="use588"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-31"
- x="489.75848"
- y="131.23749"
- id="use590"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g592">
- <use
- xlink:href="#glyph1-29"
- x="502.9949"
- y="131.23749"
- id="use594"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g596">
- <use
- xlink:href="#glyph1-18"
- x="509.33755"
- y="131.23749"
- id="use598"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-18"
- x="514.10706"
- y="131.23749"
- id="use600"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="518.87659"
- y="131.23749"
- id="use602"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-8"
- x="524.4978"
- y="131.23749"
- id="use604"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="530.63007"
- y="131.23749"
- id="use606"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="534.16711"
- y="131.23749"
- id="use608"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-19"
- x="539.78833"
- y="131.23749"
- id="use610"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g612">
- <use
- xlink:href="#glyph1-25"
- x="57.997555"
- y="146.26749"
- id="use614"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-11"
- x="65.302132"
- y="146.26749"
- id="use616"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="70.873253"
- y="146.26749"
- id="use618"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-11"
- x="74.410316"
- y="146.26749"
- id="use620"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="79.98143"
- y="146.26749"
- id="use622"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-6"
- x="82.576614"
- y="146.26749"
- id="use624"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="86.664772"
- y="146.26749"
- id="use626"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g628">
- <use
- xlink:href="#glyph1-10"
- x="92.296013"
- y="146.26749"
- id="use630"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="95.833069"
- y="146.26749"
- id="use632"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-14"
- x="101.45429"
- y="146.26749"
- id="use634"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="107.59655"
- y="146.26749"
- id="use636"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-12"
- x="111.13361"
- y="146.26749"
- id="use638"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-13"
- x="113.65865"
- y="146.26749"
- id="use640"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-14"
- x="119.71073"
- y="146.26749"
- id="use642"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="125.85299"
- y="146.26749"
- id="use644"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-18"
- x="128.44817"
- y="146.26749"
- id="use646"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-11"
- x="133.21768"
- y="146.26749"
- id="use648"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-14"
- x="138.7888"
- y="146.26749"
- id="use650"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="144.93106"
- y="146.26749"
- id="use652"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#45a3e3;fill-opacity:1"
- id="g654">
- <use
- xlink:href="#glyph1-13"
- x="147.58261"
- y="146.26749"
- id="use656"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-16"
- x="153.63469"
- y="146.26749"
- id="use658"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="158.64468"
- y="146.26749"
- id="use660"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-6"
- x="164.2659"
- y="146.26749"
- id="use662"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="168.35406"
- y="146.26749"
- id="use664"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-9"
- x="171.89113"
- y="146.26749"
- id="use666"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-6"
- x="178.03339"
- y="146.26749"
- id="use668"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-14"
- x="182.12155"
- y="146.26749"
- id="use670"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g672">
- <use
- xlink:href="#glyph1-5"
- x="188.29929"
- y="146.26749"
- id="use674"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="190.89447"
- y="146.26749"
- id="use676"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-22"
- x="194.43153"
- y="146.26749"
- id="use678"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="200.57379"
- y="146.26749"
- id="use680"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="206.19501"
- y="146.26749"
- id="use682"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-8"
- x="208.79019"
- y="146.26749"
- id="use684"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-6"
- x="214.92242"
- y="146.26749"
- id="use686"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="219.01059"
- y="146.26749"
- id="use688"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-20"
- x="224.63181"
- y="146.26749"
- id="use690"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-9"
- x="229.41135"
- y="146.26749"
- id="use692"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-28"
- x="235.5536"
- y="146.26749"
- id="use694"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-8"
- x="244.87221"
- y="146.26749"
- id="use696"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="251.00444"
- y="146.26749"
- id="use698"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-12"
- x="254.5415"
- y="146.26749"
- id="use700"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-13"
- x="257.06653"
- y="146.26749"
- id="use702"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-14"
- x="263.11862"
- y="146.26749"
- id="use704"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="269.26089"
- y="146.26749"
- id="use706"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-13"
- x="271.85605"
- y="146.26749"
- id="use708"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-23"
- x="277.90814"
- y="146.26749"
- id="use710"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g712">
- <use
- xlink:href="#glyph1-12"
- x="57.997559"
- y="156.28749"
- id="use714"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-14"
- x="60.522598"
- y="156.28749"
- id="use716"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-14"
- x="66.664856"
- y="156.28749"
- id="use718"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-13"
- x="72.807121"
- y="156.28749"
- id="use720"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-18"
- x="78.8592"
- y="156.28749"
- id="use722"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="83.628716"
- y="156.28749"
- id="use724"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-14"
- x="89.249939"
- y="156.28749"
- id="use726"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-18"
- x="95.392197"
- y="156.28749"
- id="use728"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="100.16171"
- y="156.28749"
- id="use730"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-24"
- x="105.78294"
- y="156.28749"
- id="use732"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#45a3e3;fill-opacity:1"
- id="g734">
- <use
- xlink:href="#glyph1-25"
- x="300.0014"
- y="146.26749"
- id="use736"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-12"
- x="307.30597"
- y="146.26749"
- id="use738"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-26"
- x="309.83102"
- y="146.26749"
- id="use740"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-12"
- x="315.31195"
- y="146.26749"
- id="use742"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#45a3e3;fill-opacity:1"
- id="g744">
- <use
- xlink:href="#glyph1-10"
- x="317.84702"
- y="146.26749"
- id="use746"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-11"
- x="321.38406"
- y="146.26749"
- id="use748"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-17"
- x="326.9552"
- y="146.26749"
- id="use750"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="329.48022"
- y="146.26749"
- id="use752"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-27"
- x="332.07541"
- y="146.26749"
- id="use754"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#45a3e3;fill-opacity:1"
- id="g756">
- <use
- xlink:href="#glyph1-6"
- x="337.23572"
- y="146.26749"
- id="use758"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="341.32388"
- y="146.26749"
- id="use760"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#45a3e3;fill-opacity:1"
- id="g762">
- <use
- xlink:href="#glyph1-7"
- x="346.95511"
- y="146.26749"
- id="use764"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-19"
- x="352.57632"
- y="146.26749"
- id="use766"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-13"
- x="358.70859"
- y="146.26749"
- id="use768"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-28"
- x="364.76065"
- y="146.26749"
- id="use770"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="374.07925"
- y="146.26749"
- id="use772"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-29"
- x="376.67444"
- y="146.26749"
- id="use774"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-18"
- x="383.00708"
- y="146.26749"
- id="use776"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="387.77658"
- y="146.26749"
- id="use778"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g780">
- <use
- xlink:href="#glyph1-30"
- x="396.40216"
- y="146.26749"
- id="use782"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-9"
- x="399.07748"
- y="146.26749"
- id="use784"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g786">
- <use
- xlink:href="#glyph1-14"
- x="405.20972"
- y="146.26749"
- id="use788"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="411.35199"
- y="146.26749"
- id="use790"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-1"
- x="413.94717"
- y="146.26749"
- id="use792"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-31"
- x="419.66858"
- y="146.26749"
- id="use794"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-2"
- x="425.39001"
- y="146.26749"
- id="use796"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="427.84491"
- y="146.26749"
- id="use798"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g800">
- <use
- xlink:href="#glyph1-32"
- x="430.43005"
- y="146.26749"
- id="use802"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-33"
- x="436.15149"
- y="146.26749"
- id="use804"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-1"
- x="441.87289"
- y="146.26749"
- id="use806"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g808">
- <use
- xlink:href="#glyph1-34"
- x="447.60434"
- y="146.26749"
- id="use810"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g812">
- <use
- xlink:href="#glyph1-1"
- x="455.83075"
- y="146.26749"
- id="use814"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-36"
- x="461.55219"
- y="146.26749"
- id="use816"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-35"
- x="467.27359"
- y="146.26749"
- id="use818"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g820">
- <use
- xlink:href="#glyph1-1"
- x="469.92889"
- y="146.26749"
- id="use822"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-32"
- x="475.65033"
- y="146.26749"
- id="use824"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g826">
- <use
- xlink:href="#glyph1-35"
- x="481.38177"
- y="146.26749"
- id="use828"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g830">
- <use
- xlink:href="#glyph1-31"
- x="484.03705"
- y="146.26749"
- id="use832"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-33"
- x="489.75848"
- y="146.26749"
- id="use834"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g836">
- <use
- xlink:href="#glyph1-29"
- x="502.9949"
- y="146.26749"
- id="use838"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g840">
- <use
- xlink:href="#glyph1-18"
- x="509.33755"
- y="146.26749"
- id="use842"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-18"
- x="514.10706"
- y="146.26749"
- id="use844"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="518.87659"
- y="146.26749"
- id="use846"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-8"
- x="524.4978"
- y="146.26749"
- id="use848"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="530.63007"
- y="146.26749"
- id="use850"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="534.16711"
- y="146.26749"
- id="use852"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-19"
- x="539.78833"
- y="146.26749"
- id="use854"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g856">
- <use
- xlink:href="#glyph1-37"
- x="57.997555"
- y="171.31749"
- id="use858"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-14"
- x="63.568676"
- y="171.31749"
- id="use860"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-20"
- x="69.710938"
- y="171.31749"
- id="use862"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-9"
- x="74.490471"
- y="171.31749"
- id="use864"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-6"
- x="80.632736"
- y="171.31749"
- id="use866"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="84.720894"
- y="171.31749"
- id="use868"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="90.34211"
- y="171.31749"
- id="use870"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-11"
- x="92.937294"
- y="171.31749"
- id="use872"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-14"
- x="98.508408"
- y="171.31749"
- id="use874"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-13"
- x="104.65067"
- y="171.31749"
- id="use876"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-14"
- x="110.70275"
- y="171.31749"
- id="use878"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-38"
- x="116.84501"
- y="171.31749"
- id="use880"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-28"
- x="121.88507"
- y="171.31749"
- id="use882"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-12"
- x="131.20367"
- y="171.31749"
- id="use884"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="133.72871"
- y="171.31749"
- id="use886"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-38"
- x="137.26576"
- y="171.31749"
- id="use888"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="142.30583"
- y="171.31749"
- id="use890"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-39"
- x="144.901"
- y="171.31749"
- id="use892"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-22"
- x="152.68654"
- y="171.31749"
- id="use894"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="158.82881"
- y="171.31749"
- id="use896"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g898">
- <use
- xlink:href="#glyph1-14"
- x="164.46005"
- y="171.31749"
- id="use900"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g902">
- <use
- xlink:href="#glyph1-5"
- x="170.59229"
- y="171.31749"
- id="use904"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-20"
- x="173.18747"
- y="171.31749"
- id="use906"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="177.96701"
- y="171.31749"
- id="use908"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="183.58823"
- y="171.31749"
- id="use910"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g912">
- <use
- xlink:href="#glyph1-40"
- x="189.21947"
- y="171.31749"
- id="use914"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-12"
- x="194.46994"
- y="171.31749"
- id="use916"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-14"
- x="196.99498"
- y="171.31749"
- id="use918"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-26"
- x="203.13724"
- y="171.31749"
- id="use920"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="208.61818"
- y="171.31749"
- id="use922"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-13"
- x="211.21336"
- y="171.31749"
- id="use924"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-6"
- x="217.26544"
- y="171.31749"
- id="use926"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g928">
- <use
- xlink:href="#glyph1-18"
- x="57.997555"
- y="181.33748"
- id="use930"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-13"
- x="62.767075"
- y="181.33748"
- id="use932"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-28"
- x="68.819153"
- y="181.33748"
- id="use934"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-28"
- x="78.137756"
- y="181.33748"
- id="use936"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-9"
- x="87.456352"
- y="181.33748"
- id="use938"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-14"
- x="93.59861"
- y="181.33748"
- id="use940"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-12"
- x="99.740868"
- y="181.33748"
- id="use942"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-18"
- x="102.26591"
- y="181.33748"
- id="use944"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-11"
- x="107.03543"
- y="181.33748"
- id="use946"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="112.60655"
- y="181.33748"
- id="use948"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-12"
- x="116.14361"
- y="181.33748"
- id="use950"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-14"
- x="118.66865"
- y="181.33748"
- id="use952"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-26"
- x="124.81091"
- y="181.33748"
- id="use954"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="130.29185"
- y="181.33748"
- id="use956"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-20"
- x="132.88702"
- y="181.33748"
- id="use958"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="137.66656"
- y="181.33748"
- id="use960"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-14"
- x="143.28778"
- y="181.33748"
- id="use962"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-20"
- x="149.43004"
- y="181.33748"
- id="use964"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-12"
- x="154.20958"
- y="181.33748"
- id="use966"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="156.73462"
- y="181.33748"
- id="use968"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-12"
- x="160.27168"
- y="181.33748"
- id="use970"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-16"
- x="162.79672"
- y="181.33748"
- id="use972"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g974">
- <use
- xlink:href="#glyph1-7"
- x="167.81674"
- y="181.33748"
- id="use976"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="173.43796"
- y="181.33748"
- id="use978"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-22"
- x="176.03314"
- y="181.33748"
- id="use980"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g982">
- <use
- xlink:href="#glyph1-7"
- x="182.16539"
- y="181.33748"
- id="use984"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g986">
- <use
- xlink:href="#glyph1-11"
- x="187.79662"
- y="181.33748"
- id="use988"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-17"
- x="193.36774"
- y="181.33748"
- id="use990"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="195.89278"
- y="181.33748"
- id="use992"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-22"
- x="199.42984"
- y="181.33748"
- id="use994"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-41"
- x="205.5721"
- y="181.33748"
- id="use996"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-6"
- x="208.78851"
- y="181.33748"
- id="use998"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="212.87668"
- y="181.33748"
- id="use1000"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1002">
- <use
- xlink:href="#glyph1-17"
- x="218.50792"
- y="181.33748"
- id="use1004"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-11"
- x="221.03296"
- y="181.33748"
- id="use1006"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="226.60408"
- y="181.33748"
- id="use1008"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="230.14114"
- y="181.33748"
- id="use1010"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-19"
- x="235.76236"
- y="181.33748"
- id="use1012"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1014">
- <use
- xlink:href="#glyph1-12"
- x="57.997555"
- y="191.35748"
- id="use1016"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-14"
- x="60.522594"
- y="191.35748"
- id="use1018"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-23"
- x="66.664856"
- y="191.35748"
- id="use1020"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-13"
- x="70.051613"
- y="191.35748"
- id="use1022"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-6"
- x="76.103691"
- y="191.35748"
- id="use1024"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-28"
- x="80.191856"
- y="191.35748"
- id="use1026"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-11"
- x="89.510452"
- y="191.35748"
- id="use1028"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="95.081573"
- y="191.35748"
- id="use1030"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-12"
- x="98.618629"
- y="191.35748"
- id="use1032"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-13"
- x="101.14367"
- y="191.35748"
- id="use1034"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-14"
- x="107.19575"
- y="191.35748"
- id="use1036"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-24"
- x="113.33801"
- y="191.35748"
- id="use1038"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#45a3e3;fill-opacity:1"
- id="g1040">
- <use
- xlink:href="#glyph1-25"
- x="300.0014"
- y="171.31749"
- id="use1042"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-12"
- x="307.30597"
- y="171.31749"
- id="use1044"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-26"
- x="309.83102"
- y="171.31749"
- id="use1046"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-12"
- x="315.31195"
- y="171.31749"
- id="use1048"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#45a3e3;fill-opacity:1"
- id="g1050">
- <use
- xlink:href="#glyph1-10"
- x="317.84702"
- y="171.31749"
- id="use1052"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-11"
- x="321.38406"
- y="171.31749"
- id="use1054"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-17"
- x="326.9552"
- y="171.31749"
- id="use1056"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="329.48022"
- y="171.31749"
- id="use1058"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-27"
- x="332.07541"
- y="171.31749"
- id="use1060"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#45a3e3;fill-opacity:1"
- id="g1062">
- <use
- xlink:href="#glyph1-6"
- x="337.23572"
- y="171.31749"
- id="use1064"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="341.32388"
- y="171.31749"
- id="use1066"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#45a3e3;fill-opacity:1"
- id="g1068">
- <use
- xlink:href="#glyph1-7"
- x="346.95511"
- y="171.31749"
- id="use1070"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-19"
- x="352.57632"
- y="171.31749"
- id="use1072"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-13"
- x="358.70859"
- y="171.31749"
- id="use1074"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-28"
- x="364.76065"
- y="171.31749"
- id="use1076"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="374.07925"
- y="171.31749"
- id="use1078"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-29"
- x="376.67444"
- y="171.31749"
- id="use1080"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-18"
- x="383.00708"
- y="171.31749"
- id="use1082"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="387.77658"
- y="171.31749"
- id="use1084"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1086">
- <use
- xlink:href="#glyph1-30"
- x="396.40216"
- y="171.31749"
- id="use1088"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-9"
- x="399.07748"
- y="171.31749"
- id="use1090"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1092">
- <use
- xlink:href="#glyph1-14"
- x="405.20972"
- y="171.31749"
- id="use1094"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="411.35199"
- y="171.31749"
- id="use1096"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-1"
- x="413.94717"
- y="171.31749"
- id="use1098"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-31"
- x="419.66858"
- y="171.31749"
- id="use1100"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-2"
- x="425.39001"
- y="171.31749"
- id="use1102"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="427.84491"
- y="171.31749"
- id="use1104"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1106">
- <use
- xlink:href="#glyph1-32"
- x="430.43005"
- y="171.31749"
- id="use1108"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-33"
- x="436.15149"
- y="171.31749"
- id="use1110"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-1"
- x="441.87289"
- y="171.31749"
- id="use1112"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1114">
- <use
- xlink:href="#glyph1-34"
- x="447.60434"
- y="171.31749"
- id="use1116"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1118">
- <use
- xlink:href="#glyph1-1"
- x="455.83075"
- y="171.31749"
- id="use1120"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-42"
- x="461.55219"
- y="171.31749"
- id="use1122"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-35"
- x="467.27359"
- y="171.31749"
- id="use1124"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1126">
- <use
- xlink:href="#glyph1-32"
- x="469.92889"
- y="171.31749"
- id="use1128"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-1"
- x="475.65033"
- y="171.31749"
- id="use1130"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1132">
- <use
- xlink:href="#glyph1-35"
- x="481.38177"
- y="171.31749"
- id="use1134"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1136">
- <use
- xlink:href="#glyph1-32"
- x="484.03705"
- y="171.31749"
- id="use1138"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-32"
- x="489.75848"
- y="171.31749"
- id="use1140"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1142">
- <use
- xlink:href="#glyph1-43"
- x="502.9949"
- y="171.31749"
- id="use1144"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="509.02695"
- y="171.31749"
- id="use1146"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1148">
- <use
- xlink:href="#glyph1-14"
- x="514.6582"
- y="171.31749"
- id="use1150"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1152">
- <use
- xlink:href="#glyph1-19"
- x="520.79041"
- y="171.31749"
- id="use1154"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-12"
- x="526.92267"
- y="171.31749"
- id="use1156"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-14"
- x="529.44769"
- y="171.31749"
- id="use1158"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-26"
- x="535.58997"
- y="171.31749"
- id="use1160"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1162">
- <use
- xlink:href="#glyph1-44"
- x="57.997555"
- y="206.38748"
- id="use1164"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-28"
- x="60.783115"
- y="206.38748"
- id="use1166"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-8"
- x="70.101715"
- y="206.38748"
- id="use1168"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-6"
- x="76.233955"
- y="206.38748"
- id="use1170"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-13"
- x="80.322113"
- y="206.38748"
- id="use1172"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-16"
- x="86.374191"
- y="206.38748"
- id="use1174"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="91.384193"
- y="206.38748"
- id="use1176"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1178">
- <use
- xlink:href="#glyph1-5"
- x="97.015434"
- y="206.38748"
- id="use1180"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1182">
- <use
- xlink:href="#glyph1-10"
- x="99.600594"
- y="206.38748"
- id="use1184"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1186">
- <use
- xlink:href="#glyph1-22"
- x="103.14767"
- y="206.38748"
- id="use1188"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1190">
- <use
- xlink:href="#glyph1-7"
- x="109.27991"
- y="206.38748"
- id="use1192"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1194">
- <use
- xlink:href="#glyph1-5"
- x="114.91115"
- y="206.38748"
- id="use1196"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1198">
- <use
- xlink:href="#glyph1-28"
- x="117.49631"
- y="206.38748"
- id="use1200"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="126.81491"
- y="206.38748"
- id="use1202"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1204">
- <use
- xlink:href="#glyph1-14"
- x="132.44615"
- y="206.38748"
- id="use1206"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="138.58841"
- y="206.38748"
- id="use1208"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-11"
- x="142.12547"
- y="206.38748"
- id="use1210"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-17"
- x="147.69658"
- y="206.38748"
- id="use1212"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="150.22162"
- y="206.38748"
- id="use1214"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-11"
- x="152.8168"
- y="206.38748"
- id="use1216"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-14"
- x="158.38792"
- y="206.38748"
- id="use1218"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1220">
- <use
- xlink:href="#glyph1-19"
- x="164.52017"
- y="206.38748"
- id="use1222"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="170.6524"
- y="206.38748"
- id="use1224"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-8"
- x="173.24759"
- y="206.38748"
- id="use1226"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-22"
- x="179.37982"
- y="206.38748"
- id="use1228"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1230">
- <use
- xlink:href="#glyph1-38"
- x="185.51207"
- y="206.38748"
- id="use1232"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1234">
- <use
- xlink:href="#glyph1-20"
- x="190.56215"
- y="206.38748"
- id="use1236"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-12"
- x="195.34167"
- y="206.38748"
- id="use1238"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-18"
- x="197.86671"
- y="206.38748"
- id="use1240"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-11"
- x="202.63625"
- y="206.38748"
- id="use1242"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-17"
- x="208.20737"
- y="206.38748"
- id="use1244"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="210.73241"
- y="206.38748"
- id="use1246"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-22"
- x="213.32758"
- y="206.38748"
- id="use1248"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1250">
- <use
- xlink:href="#glyph1-7"
- x="219.45982"
- y="206.38748"
- id="use1252"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1254">
- <use
- xlink:href="#glyph1-11"
- x="225.09106"
- y="206.38748"
- id="use1256"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-17"
- x="230.66217"
- y="206.38748"
- id="use1258"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="233.18723"
- y="206.38748"
- id="use1260"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-22"
- x="236.72427"
- y="206.38748"
- id="use1262"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="242.86653"
- y="206.38748"
- id="use1264"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-13"
- x="245.46172"
- y="206.38748"
- id="use1266"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-23"
- x="251.51379"
- y="206.38748"
- id="use1268"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1270">
- <use
- xlink:href="#glyph1-5"
- x="254.89053"
- y="206.38748"
- id="use1272"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-18"
- x="257.48572"
- y="206.38748"
- id="use1274"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-12"
- x="262.25525"
- y="206.38748"
- id="use1276"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="264.78027"
- y="206.38748"
- id="use1278"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-12"
- x="268.31732"
- y="206.38748"
- id="use1280"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1282">
- <use
- xlink:href="#glyph1-45"
- x="270.85239"
- y="206.38748"
- id="use1284"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1286">
- <use
- xlink:href="#glyph1-7"
- x="275.52173"
- y="206.38748"
- id="use1288"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1290">
- <use
- xlink:href="#glyph1-14"
- x="281.15295"
- y="206.38748"
- id="use1292"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-20"
- x="287.29523"
- y="206.38748"
- id="use1294"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-24"
- x="292.07474"
- y="206.38748"
- id="use1296"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#45a3e3;fill-opacity:1"
- id="g1298">
- <use
- xlink:href="#glyph1-25"
- x="300.0014"
- y="206.38748"
- id="use1300"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-12"
- x="307.30597"
- y="206.38748"
- id="use1302"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-26"
- x="309.83102"
- y="206.38748"
- id="use1304"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-12"
- x="315.31195"
- y="206.38748"
- id="use1306"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#45a3e3;fill-opacity:1"
- id="g1308">
- <use
- xlink:href="#glyph1-10"
- x="317.84702"
- y="206.38748"
- id="use1310"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-11"
- x="321.38406"
- y="206.38748"
- id="use1312"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-17"
- x="326.9552"
- y="206.38748"
- id="use1314"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="329.48022"
- y="206.38748"
- id="use1316"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-27"
- x="332.07541"
- y="206.38748"
- id="use1318"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#45a3e3;fill-opacity:1"
- id="g1320">
- <use
- xlink:href="#glyph1-6"
- x="337.23572"
- y="206.38748"
- id="use1322"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="341.32388"
- y="206.38748"
- id="use1324"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#45a3e3;fill-opacity:1"
- id="g1326">
- <use
- xlink:href="#glyph1-7"
- x="346.95511"
- y="206.38748"
- id="use1328"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-19"
- x="352.57632"
- y="206.38748"
- id="use1330"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-13"
- x="358.70859"
- y="206.38748"
- id="use1332"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-28"
- x="364.76065"
- y="206.38748"
- id="use1334"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="374.07925"
- y="206.38748"
- id="use1336"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-29"
- x="376.67444"
- y="206.38748"
- id="use1338"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-18"
- x="383.00708"
- y="206.38748"
- id="use1340"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="387.77658"
- y="206.38748"
- id="use1342"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1344">
- <use
- xlink:href="#glyph1-30"
- x="396.40216"
- y="206.38748"
- id="use1346"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-9"
- x="399.07748"
- y="206.38748"
- id="use1348"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1350">
- <use
- xlink:href="#glyph1-14"
- x="405.20972"
- y="206.38748"
- id="use1352"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="411.35199"
- y="206.38748"
- id="use1354"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-1"
- x="413.94717"
- y="206.38748"
- id="use1356"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-36"
- x="419.66858"
- y="206.38748"
- id="use1358"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-2"
- x="425.39001"
- y="206.38748"
- id="use1360"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-5"
- x="427.84491"
- y="206.38748"
- id="use1362"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1364">
- <use
- xlink:href="#glyph1-32"
- x="430.43005"
- y="206.38748"
- id="use1366"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-33"
- x="436.15149"
- y="206.38748"
- id="use1368"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-1"
- x="441.87289"
- y="206.38748"
- id="use1370"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1372">
- <use
- xlink:href="#glyph1-34"
- x="447.60434"
- y="206.38748"
- id="use1374"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1376">
- <use
- xlink:href="#glyph1-33"
- x="455.83075"
- y="206.38748"
- id="use1378"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-4"
- x="461.55219"
- y="206.38748"
- id="use1380"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-35"
- x="467.27359"
- y="206.38748"
- id="use1382"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1384">
- <use
- xlink:href="#glyph1-1"
- x="469.92889"
- y="206.38748"
- id="use1386"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-31"
- x="475.65033"
- y="206.38748"
- id="use1388"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1390">
- <use
- xlink:href="#glyph1-35"
- x="481.38177"
- y="206.38748"
- id="use1392"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1394">
- <use
- xlink:href="#glyph1-3"
- x="484.03705"
- y="206.38748"
- id="use1396"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-42"
- x="489.75848"
- y="206.38748"
- id="use1398"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1400">
- <use
- xlink:href="#glyph1-46"
- x="502.9949"
- y="206.38748"
- id="use1402"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#000000;fill-opacity:1"
- id="g1404">
- <use
- xlink:href="#glyph1-13"
- x="509.3175"
- y="206.38748"
- id="use1406"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-14"
- x="515.36957"
- y="206.38748"
- id="use1408"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-47"
- x="521.51184"
- y="206.38748"
- id="use1410"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="524.03693"
- y="206.38748"
- id="use1412"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-18"
- x="529.65814"
- y="206.38748"
- id="use1414"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="534.42761"
- y="206.38748"
- id="use1416"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-9"
- x="537.96472"
- y="206.38748"
- id="use1418"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-6"
- x="544.10693"
- y="206.38748"
- id="use1420"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="548.19513"
- y="206.38748"
- id="use1422"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#45a3e3;fill-opacity:1"
- id="g1424">
- <use
- xlink:href="#glyph1-18"
- x="258.6376"
- y="223.92249"
- id="use1426"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-13"
- x="263.40714"
- y="223.92249"
- id="use1428"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-28"
- x="269.4592"
- y="223.92249"
- id="use1430"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-28"
- x="278.7778"
- y="223.92249"
- id="use1432"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="288.09641"
- y="223.92249"
- id="use1434"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-14"
- x="293.71762"
- y="223.92249"
- id="use1436"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="299.85989"
- y="223.92249"
- id="use1438"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-20"
- x="303.39694"
- y="223.92249"
- id="use1440"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#303030;fill-opacity:1"
- id="g1442">
- <use
- xlink:href="#glyph1-48"
- x="311.32608"
- y="223.92249"
- id="use1444"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#45a3e3;fill-opacity:1"
- id="g1446">
- <use
- xlink:href="#glyph1-12"
- x="318.72629"
- y="223.92249"
- id="use1448"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-14"
- x="321.25131"
- y="223.92249"
- id="use1450"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="327.39359"
- y="223.92249"
- id="use1452"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="330.93063"
- y="223.92249"
- id="use1454"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-6"
- x="336.55188"
- y="223.92249"
- id="use1456"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#45a3e3;fill-opacity:1"
- id="g1458">
- <use
- xlink:href="#glyph1-7"
- x="340.65005"
- y="223.92249"
- id="use1460"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-20"
- x="346.27127"
- y="223.92249"
- id="use1462"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="351.05081"
- y="223.92249"
- id="use1464"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-20"
- x="354.58786"
- y="223.92249"
- id="use1466"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#303030;fill-opacity:1"
- id="g1468">
- <use
- xlink:href="#glyph1-48"
- x="362.522"
- y="223.92249"
- id="use1470"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#45a3e3;fill-opacity:1"
- id="g1472">
- <use
- xlink:href="#glyph1-7"
- x="369.92221"
- y="223.92249"
- id="use1474"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-19"
- x="375.54343"
- y="223.92249"
- id="use1476"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-12"
- x="381.67569"
- y="223.92249"
- id="use1478"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="384.20071"
- y="223.92249"
- id="use1480"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-20"
- x="387.73779"
- y="223.92249"
- id="use1482"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#303030;fill-opacity:1"
- id="g1484">
- <use
- xlink:href="#glyph1-48"
- x="395.67154"
- y="223.92249"
- id="use1486"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#45a3e3;fill-opacity:1"
- id="g1488">
- <use
- xlink:href="#glyph1-8"
- x="403.07169"
- y="223.92249"
- id="use1490"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-6"
- x="409.20395"
- y="223.92249"
- id="use1492"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-13"
- x="413.29211"
- y="223.92249"
- id="use1494"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-8"
- x="419.34418"
- y="223.92249"
- id="use1496"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-13"
- x="425.47641"
- y="223.92249"
- id="use1498"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-20"
- x="431.5285"
- y="223.92249"
- id="use1500"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-11"
- x="436.30804"
- y="223.92249"
- id="use1502"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-17"
- x="441.87915"
- y="223.92249"
- id="use1504"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-20"
- x="444.40421"
- y="223.92249"
- id="use1506"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#303030;fill-opacity:1"
- id="g1508">
- <use
- xlink:href="#glyph1-48"
- x="452.34714"
- y="223.92249"
- id="use1510"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#45a3e3;fill-opacity:1"
- id="g1512">
- <use
- xlink:href="#glyph1-16"
- x="459.74731"
- y="223.92249"
- id="use1514"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-13"
- x="464.75732"
- y="223.92249"
- id="use1516"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-10"
- x="470.80939"
- y="223.92249"
- id="use1518"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="474.34647"
- y="223.92249"
- id="use1520"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-20"
- x="479.96768"
- y="223.92249"
- id="use1522"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#303030;fill-opacity:1"
- id="g1524">
- <use
- xlink:href="#glyph1-48"
- x="487.89728"
- y="223.92249"
- id="use1526"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#45a3e3;fill-opacity:1"
- id="g1528">
- <use
- xlink:href="#glyph1-16"
- x="495.29745"
- y="223.92249"
- id="use1530"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-12"
- x="500.30746"
- y="223.92249"
- id="use1532"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-7"
- x="502.83249"
- y="223.92249"
- id="use1534"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-39"
- x="508.4537"
- y="223.92249"
- id="use1536"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-20"
- x="516.23926"
- y="223.92249"
- id="use1538"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#303030;fill-opacity:1"
- id="g1540">
- <use
- xlink:href="#glyph1-48"
- x="524.18842"
- y="223.92249"
- id="use1542"
- width="612"
- height="792" />
- </g>
- <g
- style="fill:#45a3e3;fill-opacity:1"
- id="g1544">
- <use
- xlink:href="#glyph1-49"
- x="531.58868"
- y="223.92249"
- id="use1546"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-11"
- x="537.5105"
- y="223.92249"
- id="use1548"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-26"
- x="543.0816"
- y="223.92249"
- id="use1550"
- width="612"
- height="792" />
- <use
- xlink:href="#glyph1-20"
- x="548.56256"
- y="223.92249"
- id="use1552"
+ height="186.04669"
+ viewBox="0 0 501 148.83735"
+ version="1.1"
+ id="svg2"
+ inkscape:version="0.48.4 r9939"
+ sodipodi:docname="account.svg">
+ <metadata
+ id="metadata1566">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="640"
+ inkscape:window-height="480"
+ id="namedview1564"
+ showgrid="false"
+ fit-margin-top="0"
+ fit-margin-left="0"
+ fit-margin-right="0"
+ fit-margin-bottom="0"
+ inkscape:zoom="0.23838384"
+ inkscape:cx="313.13476"
+ inkscape:cy="-231.27441"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ inkscape:window-maximized="0"
+ inkscape:current-layer="svg2" />
+ <defs
+ id="defs4">
+ <g
+ id="g6">
+ <symbol
+ overflow="visible"
+ id="glyph0-0"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d=""
+ id="path9"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph0-1"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="M 3.921875,-3.1875 2.515625,0 0,0 l 6.15625,-13.984375 2.53125,0 L 14.84375,0 12.3125,0 10.921875,-3.1875 z M 9.953125,-5.359375 7.421875,-11.125 4.875,-5.359375 z m 0,0"
+ id="path12"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph0-2"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 6.34375,0.15625 c -1.480469,0 -2.757812,-0.5 -3.828125,-1.5 -1.0625,-1.007812 -1.59375,-2.328125 -1.59375,-3.953125 0,-1.625 0.554687,-2.945313 1.671875,-3.96875 1.113281,-1.019531 2.46875,-1.53125 4.0625,-1.53125 1.601562,0 2.957031,0.554687 4.0625,1.65625 l -1.3125,1.625 C 8.476562,-8.316406 7.546875,-8.71875 6.609375,-8.71875 c -0.929687,0 -1.734375,0.3125 -2.421875,0.9375 -0.6875,0.617188 -1.03125,1.414062 -1.03125,2.390625 0,0.980469 0.335938,1.8125 1.015625,2.5 0.6875,0.679687 1.523437,1.015625 2.515625,1.015625 1,0 1.9375,-0.453125 2.8125,-1.359375 l 1.3125,1.4375 C 9.519531,-0.492188 8.03125,0.15625 6.34375,0.15625 z m 0,0"
+ id="path15"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph0-3"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 4.109375,-2.8125 c 0.632813,0.648438 1.4375,0.96875 2.40625,0.96875 0.976563,0 1.78125,-0.320312 2.40625,-0.96875 0.632813,-0.644531 0.953125,-1.476562 0.953125,-2.5 0,-1.03125 -0.320312,-1.867188 -0.953125,-2.515625 -0.625,-0.644531 -1.429687,-0.96875 -2.40625,-0.96875 -0.96875,0 -1.773437,0.324219 -2.40625,0.96875 C 3.472656,-7.179688 3.15625,-6.34375 3.15625,-5.3125 c 0,1.023438 0.316406,1.855469 0.953125,2.5 z m 6.40625,1.390625 c -1.0625,1.054687 -2.398437,1.578125 -4,1.578125 -1.59375,0 -2.929687,-0.523438 -4,-1.578125 -1.0625,-1.0625 -1.59375,-2.359375 -1.59375,-3.890625 0,-1.539062 0.53125,-2.835938 1.59375,-3.890625 1.070313,-1.0625 2.40625,-1.59375 4,-1.59375 1.601563,0 2.9375,0.53125 4,1.59375 1.070313,1.054687 1.609375,2.351563 1.609375,3.890625 0,1.53125 -0.539062,2.828125 -1.609375,3.890625 z m 0,0"
+ id="path18"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph0-4"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 9.0625,-4.875 0,-5.765625 2.234375,0 0,10.640625 -2.234375,0 0,-1.9375 c -0.367188,0.65625 -0.867188,1.171875 -1.5,1.546875 C 6.9375,-0.0234375 6.253906,0.15625 5.515625,0.15625 4.316406,0.15625 3.347656,-0.207031 2.609375,-0.9375 1.867188,-1.675781 1.5,-2.738281 1.5,-4.125 l 0,-6.515625 2.234375,0 0,5.84375 c 0,1.960937 0.816406,2.9375 2.453125,2.9375 0.769531,0 1.441406,-0.253906 2.015625,-0.765625 C 8.773438,-3.144531 9.0625,-3.894531 9.0625,-4.875 z m 0,0"
+ id="path21"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph0-5"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="M 3.859375,-5.765625 3.859375,0 1.625,0 l 0,-10.640625 2.234375,0 0,1.9375 c 0.363281,-0.65625 0.859375,-1.164063 1.484375,-1.53125 0.632812,-0.375 1.320312,-0.5625 2.0625,-0.5625 1.195312,0 2.164062,0.371094 2.90625,1.109375 0.738281,0.730469 1.109375,1.789062 1.109375,3.171875 l 0,6.515625 -2.234375,0 0,-5.84375 c 0,-1.957031 -0.820312,-2.9375 -2.453125,-2.9375 -0.773437,0 -1.445313,0.261719 -2.015625,0.78125 -0.574219,0.511719 -0.859375,1.257812 -0.859375,2.234375 z m 0,0"
+ id="path24"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph0-6"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 4.375,-8.84375 0,5.40625 c 0,0.5 0.132812,0.902344 0.40625,1.203125 0.269531,0.304687 0.644531,0.453125 1.125,0.453125 0.476562,0 0.9375,-0.234375 1.375,-0.703125 l 0.921875,1.578125 c -0.792969,0.710938 -1.667969,1.0625 -2.625,1.0625 -0.949219,0 -1.761719,-0.328125 -2.4375,-0.984375 -0.667969,-0.65625 -1,-1.546875 -1,-2.671875 l 0,-5.34375 -1.34375,0 0,-1.796875 1.34375,0 0,-3.34375 2.234375,0 0,3.34375 2.8125,0 0,1.796875 z m 0,0"
+ id="path27"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph1-0"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 0.9375,-7.140625 4.109375,0 L 5.046875,0 0.9375,0 z m 0.515625,6.625 3.09375,0 0,-6.109375 -3.09375,0 z m 0,0"
+ id="path30"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph1-1"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 0.984375,0 0,-7.140625 0.828125,0 0,7.140625 z m 0,0"
+ id="path33"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph1-2"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 7.6875,0 0,-3.484375 C 7.6875,-3.910156 7.59375,-4.226562 7.40625,-4.4375 7.226562,-4.65625 6.945312,-4.765625 6.5625,-4.765625 c -0.511719,0 -0.886719,0.148437 -1.125,0.4375 -0.242188,0.292969 -0.359375,0.742187 -0.359375,1.34375 l 0,2.984375 -0.8125,0 0,-3.484375 c 0,-0.425781 -0.09375,-0.742187 -0.28125,-0.953125 -0.179687,-0.21875 -0.460937,-0.328125 -0.84375,-0.328125 -0.511719,0 -0.886719,0.15625 -1.125,0.46875 C 1.785156,-3.992188 1.671875,-3.5 1.671875,-2.8125 l 0,2.8125 -0.8125,0 0,-5.359375 0.65625,0 0.140625,0.734375 0.03125,0 c 0.15625,-0.257812 0.367188,-0.460938 0.640625,-0.609375 0.28125,-0.144531 0.59375,-0.21875 0.9375,-0.21875 0.84375,0 1.390625,0.304687 1.640625,0.90625 l 0.046875,0 c 0.15625,-0.28125 0.382813,-0.5 0.6875,-0.65625 0.300781,-0.164063 0.648437,-0.25 1.046875,-0.25 0.601562,0 1.050781,0.15625 1.34375,0.46875 0.300781,0.3125 0.453125,0.8125 0.453125,1.5 l 0,3.484375 z m 0,0"
+ id="path36"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph1-3"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="M 3.34375,0.09375 C 3,0.09375 2.679688,0.03125 2.390625,-0.09375 2.109375,-0.21875 1.867188,-0.414062 1.671875,-0.6875 l -0.0625,0 c 0.039063,0.3125 0.0625,0.609375 0.0625,0.890625 l 0,2.203125 -0.8125,0 0,-7.765625 0.65625,0 L 1.625,-4.625 l 0.046875,0 c 0.207031,-0.289062 0.445313,-0.5 0.71875,-0.625 0.28125,-0.132812 0.597656,-0.203125 0.953125,-0.203125 0.71875,0 1.269531,0.246094 1.65625,0.734375 0.382812,0.480469 0.578125,1.15625 0.578125,2.03125 0,0.886719 -0.199219,1.574219 -0.59375,2.0625 C 4.585938,-0.144531 4.039062,0.09375 3.34375,0.09375 z M 3.234375,-4.765625 c -0.554687,0 -0.949219,0.152344 -1.1875,0.453125 -0.242187,0.304688 -0.367187,0.789062 -0.375,1.453125 l 0,0.171875 c 0,0.761719 0.125,1.304688 0.375,1.625 0.25,0.324219 0.648437,0.484375 1.203125,0.484375 0.46875,0 0.832031,-0.1875 1.09375,-0.5625 0.257812,-0.375 0.390625,-0.890625 0.390625,-1.546875 0,-0.664062 -0.132813,-1.175781 -0.390625,-1.53125 C 4.082031,-4.582031 3.710938,-4.765625 3.234375,-4.765625 z m 0,0"
+ id="path39"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph1-4"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 1.671875,0 -0.8125,0 0,-7.59375 0.8125,0 z m 0,0"
+ id="path42"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph1-5"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 1.671875,0 -0.8125,0 0,-5.359375 0.8125,0 z m -0.875,-6.796875 c 0,-0.1875 0.039063,-0.320313 0.125,-0.40625 0.09375,-0.09375 0.207031,-0.140625 0.34375,-0.140625 0.132813,0 0.25,0.046875 0.34375,0.140625 0.09375,0.085937 0.140625,0.21875 0.140625,0.40625 0,0.179687 -0.046875,0.3125 -0.140625,0.40625 -0.09375,0.085937 -0.210937,0.125 -0.34375,0.125 -0.136719,0 -0.25,-0.039063 -0.34375,-0.125 -0.085937,-0.09375 -0.125,-0.226563 -0.125,-0.40625 z m 0,0"
+ id="path45"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph1-6"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 3,0.09375 c -0.773438,0 -1.371094,-0.234375 -1.796875,-0.703125 C 0.773438,-1.085938 0.5625,-1.765625 0.5625,-2.640625 c 0,-0.894531 0.210938,-1.585937 0.640625,-2.078125 0.4375,-0.488281 1.050781,-0.734375 1.84375,-0.734375 0.257813,0 0.515625,0.03125 0.765625,0.09375 0.257812,0.054687 0.460938,0.117187 0.609375,0.1875 L 4.1875,-4.484375 C 4,-4.554688 3.800781,-4.613281 3.59375,-4.65625 3.382812,-4.707031 3.195312,-4.734375 3.03125,-4.734375 c -1.085938,0 -1.625,0.695313 -1.625,2.078125 0,0.65625 0.128906,1.164062 0.390625,1.515625 0.269531,0.355469 0.664063,0.53125 1.1875,0.53125 0.4375,0 0.890625,-0.097656 1.359375,-0.296875 l 0,0.71875 C 3.988281,0 3.539062,0.09375 3,0.09375 z m 0,0"
+ id="path48"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph1-7"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 4.15625,0 -0.171875,-0.765625 -0.03125,0 c -0.273437,0.335937 -0.542969,0.5625 -0.8125,0.6875 C 2.878906,0.0351562 2.550781,0.09375 2.15625,0.09375 c -0.53125,0 -0.949219,-0.1328125 -1.25,-0.40625 -0.304688,-0.269531 -0.453125,-0.660156 -0.453125,-1.171875 0,-1.070313 0.863281,-1.632813 2.59375,-1.6875 l 0.90625,-0.03125 0,-0.34375 c 0,-0.414063 -0.089844,-0.722656 -0.265625,-0.921875 -0.179688,-0.195312 -0.464844,-0.296875 -0.859375,-0.296875 -0.449219,0 -0.953125,0.136719 -1.515625,0.40625 l -0.25,-0.625 c 0.257812,-0.144531 0.546875,-0.253906 0.859375,-0.328125 0.3125,-0.082031 0.628906,-0.125 0.953125,-0.125 0.632812,0 1.101562,0.140625 1.40625,0.421875 C 4.59375,-4.734375 4.75,-4.28125 4.75,-3.65625 L 4.75,0 z M 2.3125,-0.578125 c 0.507812,0 0.90625,-0.132813 1.1875,-0.40625 0.289062,-0.28125 0.4375,-0.671875 0.4375,-1.171875 l 0,-0.46875 -0.8125,0.03125 C 2.476562,-2.570312 2.015625,-2.472656 1.734375,-2.296875 1.453125,-2.117188 1.3125,-1.84375 1.3125,-1.46875 c 0,0.292969 0.085938,0.515625 0.265625,0.671875 C 1.753906,-0.648438 2,-0.578125 2.3125,-0.578125 z m 0,0"
+ id="path51"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph1-8"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 2.59375,-0.578125 c 0.132812,0 0.269531,-0.007813 0.40625,-0.03125 0.132812,-0.019531 0.242188,-0.039063 0.328125,-0.0625 l 0,0.625 C 3.234375,-0.00390625 3.097656,0.0234375 2.921875,0.046875 2.753906,0.078125 2.601562,0.09375 2.46875,0.09375 c -1.03125,0 -1.546875,-0.539062 -1.546875,-1.625 l 0,-3.1875 -0.765625,0 0,-0.390625 0.765625,-0.34375 0.34375,-1.140625 0.46875,0 0,1.234375 1.546875,0 0,0.640625 -1.546875,0 0,3.140625 c 0,0.324219 0.070313,0.574219 0.21875,0.75 0.15625,0.167969 0.367187,0.25 0.640625,0.25 z m 0,0"
+ id="path54"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph1-9"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 5.484375,-2.6875 c 0,0.875 -0.226563,1.558594 -0.671875,2.046875 C 4.375,-0.148438 3.769531,0.09375 3,0.09375 2.519531,0.09375 2.09375,-0.015625 1.71875,-0.234375 1.351562,-0.460938 1.066406,-0.785156 0.859375,-1.203125 0.660156,-1.628906 0.5625,-2.125 0.5625,-2.6875 c 0,-0.863281 0.21875,-1.539062 0.65625,-2.03125 0.4375,-0.488281 1.039062,-0.734375 1.8125,-0.734375 0.75,0 1.34375,0.25 1.78125,0.75 0.445312,0.5 0.671875,1.171875 0.671875,2.015625 z m -4.078125,0 c 0,0.6875 0.132812,1.214844 0.40625,1.578125 0.269531,0.355469 0.671875,0.53125 1.203125,0.53125 0.53125,0 0.929687,-0.175781 1.203125,-0.53125 C 4.5,-1.472656 4.640625,-2 4.640625,-2.6875 4.640625,-3.363281 4.5,-3.878906 4.21875,-4.234375 3.945312,-4.585938 3.546875,-4.765625 3.015625,-4.765625 c -0.53125,0 -0.933594,0.179687 -1.203125,0.53125 C 1.539062,-3.890625 1.40625,-3.375 1.40625,-2.6875 z m 0,0"
+ id="path57"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph1-10"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 4.515625,0 0,-3.46875 c 0,-0.425781 -0.101563,-0.75 -0.296875,-0.96875 -0.199219,-0.21875 -0.507812,-0.328125 -0.921875,-0.328125 -0.5625,0 -0.976563,0.152344 -1.234375,0.453125 -0.261719,0.304688 -0.390625,0.804688 -0.390625,1.5 l 0,2.8125 -0.8125,0 0,-5.359375 0.65625,0 0.140625,0.734375 0.03125,0 c 0.164062,-0.257812 0.398438,-0.460938 0.703125,-0.609375 0.300781,-0.144531 0.632813,-0.21875 1,-0.21875 0.644531,0 1.128906,0.15625 1.453125,0.46875 0.320312,0.3125 0.484375,0.8125 0.484375,1.5 l 0,3.484375 z m 0,0"
+ id="path60"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph1-11"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 5.515625,-5.0625 c 0,0.730469 -0.25,1.289062 -0.75,1.671875 C 4.273438,-3.003906 3.570312,-2.8125 2.65625,-2.8125 l -0.84375,0 0,2.8125 -0.828125,0 0,-7.140625 1.84375,0 c 1.789063,0 2.6875,0.695313 2.6875,2.078125 z m -3.703125,1.546875 0.75,0 c 0.726562,0 1.257812,-0.117187 1.59375,-0.359375 0.332031,-0.238281 0.5,-0.617188 0.5,-1.140625 0,-0.476563 -0.15625,-0.832031 -0.46875,-1.0625 -0.3125,-0.226563 -0.796875,-0.34375 -1.453125,-0.34375 l -0.921875,0 z m 0,0"
+ id="path63"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph1-12"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 3.296875,-5.453125 c 0.238281,0 0.453125,0.023437 0.640625,0.0625 l -0.109375,0.75 C 3.609375,-4.691406 3.414062,-4.71875 3.25,-4.71875 c -0.4375,0 -0.8125,0.179688 -1.125,0.53125 -0.304688,0.355469 -0.453125,0.792969 -0.453125,1.3125 l 0,2.875 -0.8125,0 0,-5.359375 0.671875,0 0.09375,1 0.03125,0 c 0.195312,-0.351563 0.4375,-0.625 0.71875,-0.8125 0.28125,-0.1875 0.585938,-0.28125 0.921875,-0.28125 z m 0,0"
+ id="path66"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph1-13"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 4.3125,-1.453125 c 0,0.492187 -0.1875,0.871094 -0.5625,1.140625 -0.367188,0.2734375 -0.886719,0.40625 -1.5625,0.40625 -0.710938,0 -1.261719,-0.109375 -1.65625,-0.328125 l 0,-0.75 c 0.257812,0.125 0.535156,0.226563 0.828125,0.296875 0.289063,0.074219 0.578125,0.109375 0.859375,0.109375 0.414062,0 0.738281,-0.066406 0.96875,-0.203125 0.226562,-0.132812 0.34375,-0.335938 0.34375,-0.609375 0,-0.207031 -0.09375,-0.382813 -0.28125,-0.53125 -0.179688,-0.15625 -0.527344,-0.332031 -1.046875,-0.53125 -0.5,-0.1875 -0.855469,-0.347656 -1.0625,-0.484375 -0.210937,-0.132812 -0.367187,-0.289062 -0.46875,-0.46875 -0.105469,-0.175781 -0.15625,-0.382812 -0.15625,-0.625 0,-0.4375 0.175781,-0.78125 0.53125,-1.03125 0.351563,-0.257812 0.84375,-0.390625 1.46875,-0.390625 0.570313,0 1.132813,0.121094 1.6875,0.359375 L 3.90625,-4.4375 C 3.375,-4.65625 2.890625,-4.765625 2.453125,-4.765625 c -0.386719,0 -0.679687,0.0625 -0.875,0.1875 -0.1875,0.117187 -0.28125,0.277344 -0.28125,0.484375 0,0.148438 0.035156,0.273438 0.109375,0.375 0.070312,0.09375 0.1875,0.1875 0.34375,0.28125 0.164062,0.09375 0.476562,0.226562 0.9375,0.390625 0.632812,0.230469 1.0625,0.464844 1.28125,0.703125 0.226562,0.230469 0.34375,0.527344 0.34375,0.890625 z m 0,0"
+ id="path69"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph1-14"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="M 6.6875,-3.640625 C 6.6875,-2.460938 6.363281,-1.5625 5.71875,-0.9375 5.082031,-0.3125 4.160156,0 2.953125,0 l -1.96875,0 0,-7.140625 2.1875,0 c 1.101563,0 1.960937,0.308594 2.578125,0.921875 0.625,0.617188 0.9375,1.476562 0.9375,2.578125 z m -0.890625,0.03125 c 0,-0.925781 -0.234375,-1.625 -0.703125,-2.09375 -0.460938,-0.476563 -1.152344,-0.71875 -2.078125,-0.71875 l -1.203125,0 0,5.703125 1.015625,0 c 0.988281,0 1.726563,-0.238281 2.21875,-0.71875 0.5,-0.488281 0.75,-1.210938 0.75,-2.171875 z m 0,0"
+ id="path72"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph1-15"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 3.125,0.09375 c -0.792969,0 -1.417969,-0.238281 -1.875,-0.71875 -0.460938,-0.476562 -0.6875,-1.144531 -0.6875,-2 0,-0.863281 0.210938,-1.550781 0.640625,-2.0625 0.425781,-0.507812 0.992187,-0.765625 1.703125,-0.765625 0.675781,0 1.207031,0.226563 1.59375,0.671875 0.394531,0.4375 0.59375,1.015625 0.59375,1.734375 l 0,0.515625 -3.6875,0 c 0.00781,0.625 0.164062,1.105469 0.46875,1.4375 0.300781,0.324219 0.726562,0.484375 1.28125,0.484375 0.570312,0 1.140625,-0.117187 1.703125,-0.359375 l 0,0.71875 C 4.566406,-0.125 4.289062,-0.0351562 4.03125,0.015625 3.78125,0.0664062 3.476562,0.09375 3.125,0.09375 z M 2.90625,-4.765625 c -0.4375,0 -0.789062,0.140625 -1.046875,0.421875 -0.25,0.273438 -0.398437,0.65625 -0.4375,1.15625 l 2.796875,0 c 0,-0.507812 -0.117188,-0.898438 -0.34375,-1.171875 -0.230469,-0.269531 -0.554688,-0.40625 -0.96875,-0.40625 z m 0,0"
+ id="path75"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph1-16"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 5.015625,-1.90625 c 0,0.636719 -0.230469,1.132812 -0.6875,1.484375 C 3.867188,-0.078125 3.25,0.09375 2.46875,0.09375 1.625,0.09375 0.972656,-0.015625 0.515625,-0.234375 l 0,-0.796875 C 0.804688,-0.90625 1.125,-0.804688 1.46875,-0.734375 1.820312,-0.660156 2.164062,-0.625 2.5,-0.625 c 0.550781,0 0.96875,-0.101562 1.25,-0.3125 0.28125,-0.21875 0.421875,-0.515625 0.421875,-0.890625 0,-0.238281 -0.054687,-0.4375 -0.15625,-0.59375 -0.09375,-0.164063 -0.261719,-0.3125 -0.5,-0.4375 C 3.285156,-2.992188 2.9375,-3.148438 2.46875,-3.328125 1.800781,-3.554688 1.320312,-3.832031 1.03125,-4.15625 0.75,-4.488281 0.609375,-4.914062 0.609375,-5.4375 0.609375,-5.988281 0.8125,-6.425781 1.21875,-6.75 1.632812,-7.070312 2.1875,-7.234375 2.875,-7.234375 c 0.707031,0 1.359375,0.132813 1.953125,0.390625 l -0.25,0.71875 C 3.984375,-6.375 3.410156,-6.5 2.859375,-6.5 2.410156,-6.5 2.0625,-6.40625 1.8125,-6.21875 c -0.242188,0.1875 -0.359375,0.449219 -0.359375,0.78125 0,0.25 0.039063,0.460938 0.125,0.625 0.09375,0.15625 0.25,0.304688 0.46875,0.4375 0.21875,0.125 0.550781,0.265625 1,0.421875 0.75,0.273437 1.265625,0.5625 1.546875,0.875 0.28125,0.304687 0.421875,0.695313 0.421875,1.171875 z m 0,0"
+ id="path78"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-0"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 0.9375,-7.140625 4.109375,0 L 5.046875,0 0.9375,0 z m 0.515625,6.625 3.09375,0 0,-6.109375 -3.09375,0 z m 0,0"
+ id="path81"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-1"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 5.015625,-1.90625 c 0,0.636719 -0.230469,1.132812 -0.6875,1.484375 C 3.867188,-0.078125 3.25,0.09375 2.46875,0.09375 1.625,0.09375 0.972656,-0.015625 0.515625,-0.234375 l 0,-0.796875 C 0.804688,-0.90625 1.125,-0.804688 1.46875,-0.734375 1.820312,-0.660156 2.164062,-0.625 2.5,-0.625 c 0.550781,0 0.96875,-0.101562 1.25,-0.3125 0.28125,-0.21875 0.421875,-0.515625 0.421875,-0.890625 0,-0.238281 -0.054687,-0.4375 -0.15625,-0.59375 -0.09375,-0.164063 -0.261719,-0.3125 -0.5,-0.4375 C 3.285156,-2.992188 2.9375,-3.148438 2.46875,-3.328125 1.800781,-3.554688 1.320312,-3.832031 1.03125,-4.15625 0.75,-4.488281 0.609375,-4.914062 0.609375,-5.4375 0.609375,-5.988281 0.8125,-6.425781 1.21875,-6.75 1.632812,-7.070312 2.1875,-7.234375 2.875,-7.234375 c 0.707031,0 1.359375,0.132813 1.953125,0.390625 l -0.25,0.71875 C 3.984375,-6.375 3.410156,-6.5 2.859375,-6.5 2.410156,-6.5 2.0625,-6.40625 1.8125,-6.21875 c -0.242188,0.1875 -0.359375,0.449219 -0.359375,0.78125 0,0.25 0.039063,0.460938 0.125,0.625 0.09375,0.15625 0.25,0.304688 0.46875,0.4375 0.21875,0.125 0.550781,0.265625 1,0.421875 0.75,0.273437 1.265625,0.5625 1.546875,0.875 0.28125,0.304687 0.421875,0.695313 0.421875,1.171875 z m 0,0"
+ id="path84"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-2"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 1.625,-5.359375 0,3.484375 c 0,0.4375 0.097656,0.765625 0.296875,0.984375 0.195313,0.210937 0.507813,0.3125 0.9375,0.3125 0.550781,0 0.957031,-0.148437 1.21875,-0.453125 0.257813,-0.3125 0.390625,-0.816406 0.390625,-1.515625 l 0,-2.8125 0.8125,0 L 5.28125,0 4.609375,0 4.5,-0.71875 l -0.046875,0 C 4.285156,-0.457031 4.050781,-0.253906 3.75,-0.109375 3.457031,0.0234375 3.125,0.09375 2.75,0.09375 2.09375,0.09375 1.601562,-0.0546875 1.28125,-0.359375 0.957031,-0.671875 0.796875,-1.164062 0.796875,-1.84375 l 0,-3.515625 z m 0,0"
+ id="path87"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-3"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 3.296875,-5.453125 c 0.238281,0 0.453125,0.023437 0.640625,0.0625 l -0.109375,0.75 C 3.609375,-4.691406 3.414062,-4.71875 3.25,-4.71875 c -0.4375,0 -0.8125,0.179688 -1.125,0.53125 -0.304688,0.355469 -0.453125,0.792969 -0.453125,1.3125 l 0,2.875 -0.8125,0 0,-5.359375 0.671875,0 0.09375,1 0.03125,0 c 0.195312,-0.351563 0.4375,-0.625 0.71875,-0.8125 0.28125,-0.1875 0.585938,-0.28125 0.921875,-0.28125 z m 0,0"
+ id="path90"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-4"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="M 2.03125,0 0,-5.359375 l 0.875,0 1.140625,3.1875 c 0.257813,0.742187 0.414063,1.21875 0.46875,1.4375 l 0.03125,0 c 0.039063,-0.164063 0.15625,-0.519531 0.34375,-1.0625 0.1875,-0.550781 0.613281,-1.738281 1.28125,-3.5625 l 0.875,0 L 2.984375,0 z m 0,0"
+ id="path93"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-5"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 3.125,0.09375 c -0.792969,0 -1.417969,-0.238281 -1.875,-0.71875 -0.460938,-0.476562 -0.6875,-1.144531 -0.6875,-2 0,-0.863281 0.210938,-1.550781 0.640625,-2.0625 0.425781,-0.507812 0.992187,-0.765625 1.703125,-0.765625 0.675781,0 1.207031,0.226563 1.59375,0.671875 0.394531,0.4375 0.59375,1.015625 0.59375,1.734375 l 0,0.515625 -3.6875,0 c 0.00781,0.625 0.164062,1.105469 0.46875,1.4375 0.300781,0.324219 0.726562,0.484375 1.28125,0.484375 0.570312,0 1.140625,-0.117187 1.703125,-0.359375 l 0,0.71875 C 4.566406,-0.125 4.289062,-0.0351562 4.03125,0.015625 3.78125,0.0664062 3.476562,0.09375 3.125,0.09375 z M 2.90625,-4.765625 c -0.4375,0 -0.789062,0.140625 -1.046875,0.421875 -0.25,0.273438 -0.398437,0.65625 -0.4375,1.15625 l 2.796875,0 c 0,-0.507812 -0.117188,-0.898438 -0.34375,-1.171875 -0.230469,-0.269531 -0.554688,-0.40625 -0.96875,-0.40625 z m 0,0"
+ id="path96"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-6"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 1.671875,0 -0.8125,0 0,-5.359375 0.8125,0 z m -0.875,-6.796875 c 0,-0.1875 0.039063,-0.320313 0.125,-0.40625 0.09375,-0.09375 0.207031,-0.140625 0.34375,-0.140625 0.132813,0 0.25,0.046875 0.34375,0.140625 0.09375,0.085937 0.140625,0.21875 0.140625,0.40625 0,0.179687 -0.046875,0.3125 -0.140625,0.40625 -0.09375,0.085937 -0.210937,0.125 -0.34375,0.125 -0.136719,0 -0.25,-0.039063 -0.34375,-0.125 -0.085937,-0.09375 -0.125,-0.226563 -0.125,-0.40625 z m 0,0"
+ id="path99"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-7"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 1.671875,0 -0.8125,0 0,-7.59375 0.8125,0 z m 0,0"
+ id="path102"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-8"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 4.15625,0 -0.171875,-0.765625 -0.03125,0 c -0.273437,0.335937 -0.542969,0.5625 -0.8125,0.6875 C 2.878906,0.0351562 2.550781,0.09375 2.15625,0.09375 c -0.53125,0 -0.949219,-0.1328125 -1.25,-0.40625 -0.304688,-0.269531 -0.453125,-0.660156 -0.453125,-1.171875 0,-1.070313 0.863281,-1.632813 2.59375,-1.6875 l 0.90625,-0.03125 0,-0.34375 c 0,-0.414063 -0.089844,-0.722656 -0.265625,-0.921875 -0.179688,-0.195312 -0.464844,-0.296875 -0.859375,-0.296875 -0.449219,0 -0.953125,0.136719 -1.515625,0.40625 l -0.25,-0.625 c 0.257812,-0.144531 0.546875,-0.253906 0.859375,-0.328125 0.3125,-0.082031 0.628906,-0.125 0.953125,-0.125 0.632812,0 1.101562,0.140625 1.40625,0.421875 C 4.59375,-4.734375 4.75,-4.28125 4.75,-3.65625 L 4.75,0 z M 2.3125,-0.578125 c 0.507812,0 0.90625,-0.132813 1.1875,-0.40625 0.289062,-0.28125 0.4375,-0.671875 0.4375,-1.171875 l 0,-0.46875 -0.8125,0.03125 C 2.476562,-2.570312 2.015625,-2.472656 1.734375,-2.296875 1.453125,-2.117188 1.3125,-1.84375 1.3125,-1.46875 c 0,0.292969 0.085938,0.515625 0.265625,0.671875 C 1.753906,-0.648438 2,-0.578125 2.3125,-0.578125 z m 0,0"
+ id="path105"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-9"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 4.515625,0 0,-3.46875 c 0,-0.425781 -0.101563,-0.75 -0.296875,-0.96875 -0.199219,-0.21875 -0.507812,-0.328125 -0.921875,-0.328125 -0.5625,0 -0.976563,0.152344 -1.234375,0.453125 -0.261719,0.304688 -0.390625,0.804688 -0.390625,1.5 l 0,2.8125 -0.8125,0 0,-5.359375 0.65625,0 0.140625,0.734375 0.03125,0 c 0.164062,-0.257812 0.398438,-0.460938 0.703125,-0.609375 0.300781,-0.144531 0.632813,-0.21875 1,-0.21875 0.644531,0 1.128906,0.15625 1.453125,0.46875 0.320312,0.3125 0.484375,0.8125 0.484375,1.5 l 0,3.484375 z m 0,0"
+ id="path108"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-10"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 3,0.09375 c -0.773438,0 -1.371094,-0.234375 -1.796875,-0.703125 C 0.773438,-1.085938 0.5625,-1.765625 0.5625,-2.640625 c 0,-0.894531 0.210938,-1.585937 0.640625,-2.078125 0.4375,-0.488281 1.050781,-0.734375 1.84375,-0.734375 0.257813,0 0.515625,0.03125 0.765625,0.09375 0.257812,0.054687 0.460938,0.117187 0.609375,0.1875 L 4.1875,-4.484375 C 4,-4.554688 3.800781,-4.613281 3.59375,-4.65625 3.382812,-4.707031 3.195312,-4.734375 3.03125,-4.734375 c -1.085938,0 -1.625,0.695313 -1.625,2.078125 0,0.65625 0.128906,1.164062 0.390625,1.515625 0.269531,0.355469 0.664063,0.53125 1.1875,0.53125 0.4375,0 0.890625,-0.097656 1.359375,-0.296875 l 0,0.71875 C 3.988281,0 3.539062,0.09375 3,0.09375 z m 0,0"
+ id="path111"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-11"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d=""
+ id="path114"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-12"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 4.5,-0.71875 -0.046875,0 c -0.375,0.542969 -0.933594,0.8125 -1.671875,0.8125 -0.699219,0 -1.246094,-0.238281 -1.640625,-0.71875 C 0.753906,-1.101562 0.5625,-1.78125 0.5625,-2.65625 c 0,-0.882812 0.191406,-1.570312 0.578125,-2.0625 0.394531,-0.488281 0.941406,-0.734375 1.640625,-0.734375 0.726562,0 1.285156,0.265625 1.671875,0.796875 l 0.0625,0 -0.03125,-0.390625 -0.03125,-0.375 0,-2.171875 0.8125,0 0,7.59375 -0.65625,0 z m -1.625,0.140625 c 0.5625,0 0.960938,-0.148437 1.203125,-0.453125 0.25,-0.300781 0.375,-0.785156 0.375,-1.453125 l 0,-0.171875 c 0,-0.757812 -0.125,-1.300781 -0.375,-1.625 -0.25,-0.320312 -0.652344,-0.484375 -1.203125,-0.484375 -0.480469,0 -0.84375,0.1875 -1.09375,0.5625 -0.25,0.367187 -0.375,0.882813 -0.375,1.546875 0,0.6875 0.125,1.210938 0.375,1.5625 0.25,0.34375 0.613281,0.515625 1.09375,0.515625 z m 0,0"
+ id="path117"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-13"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 2.59375,-0.578125 c 0.132812,0 0.269531,-0.007813 0.40625,-0.03125 0.132812,-0.019531 0.242188,-0.039063 0.328125,-0.0625 l 0,0.625 C 3.234375,-0.00390625 3.097656,0.0234375 2.921875,0.046875 2.753906,0.078125 2.601562,0.09375 2.46875,0.09375 c -1.03125,0 -1.546875,-0.539062 -1.546875,-1.625 l 0,-3.1875 -0.765625,0 0,-0.390625 0.765625,-0.34375 0.34375,-1.140625 0.46875,0 0,1.234375 1.546875,0 0,0.640625 -1.546875,0 0,3.140625 c 0,0.324219 0.070313,0.574219 0.21875,0.75 0.15625,0.167969 0.367187,0.25 0.640625,0.25 z m 0,0"
+ id="path120"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-14"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 4.3125,-1.453125 c 0,0.492187 -0.1875,0.871094 -0.5625,1.140625 -0.367188,0.2734375 -0.886719,0.40625 -1.5625,0.40625 -0.710938,0 -1.261719,-0.109375 -1.65625,-0.328125 l 0,-0.75 c 0.257812,0.125 0.535156,0.226563 0.828125,0.296875 0.289063,0.074219 0.578125,0.109375 0.859375,0.109375 0.414062,0 0.738281,-0.066406 0.96875,-0.203125 0.226562,-0.132812 0.34375,-0.335938 0.34375,-0.609375 0,-0.207031 -0.09375,-0.382813 -0.28125,-0.53125 -0.179688,-0.15625 -0.527344,-0.332031 -1.046875,-0.53125 -0.5,-0.1875 -0.855469,-0.347656 -1.0625,-0.484375 -0.210937,-0.132812 -0.367187,-0.289062 -0.46875,-0.46875 -0.105469,-0.175781 -0.15625,-0.382812 -0.15625,-0.625 0,-0.4375 0.175781,-0.78125 0.53125,-1.03125 0.351563,-0.257812 0.84375,-0.390625 1.46875,-0.390625 0.570313,0 1.132813,0.121094 1.6875,0.359375 L 3.90625,-4.4375 C 3.375,-4.65625 2.890625,-4.765625 2.453125,-4.765625 c -0.386719,0 -0.679687,0.0625 -0.875,0.1875 -0.1875,0.117187 -0.28125,0.277344 -0.28125,0.484375 0,0.148438 0.035156,0.273438 0.109375,0.375 0.070312,0.09375 0.1875,0.1875 0.34375,0.28125 0.164062,0.09375 0.476562,0.226562 0.9375,0.390625 0.632812,0.230469 1.0625,0.464844 1.28125,0.703125 0.226562,0.230469 0.34375,0.527344 0.34375,0.890625 z m 0,0"
+ id="path123"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-15"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="M 3.34375,0.09375 C 3,0.09375 2.679688,0.03125 2.390625,-0.09375 2.109375,-0.21875 1.867188,-0.414062 1.671875,-0.6875 l -0.0625,0 c 0.039063,0.3125 0.0625,0.609375 0.0625,0.890625 l 0,2.203125 -0.8125,0 0,-7.765625 0.65625,0 L 1.625,-4.625 l 0.046875,0 c 0.207031,-0.289062 0.445313,-0.5 0.71875,-0.625 0.28125,-0.132812 0.597656,-0.203125 0.953125,-0.203125 0.71875,0 1.269531,0.246094 1.65625,0.734375 0.382812,0.480469 0.578125,1.15625 0.578125,2.03125 0,0.886719 -0.199219,1.574219 -0.59375,2.0625 C 4.585938,-0.144531 4.039062,0.09375 3.34375,0.09375 z M 3.234375,-4.765625 c -0.554687,0 -0.949219,0.152344 -1.1875,0.453125 -0.242187,0.304688 -0.367187,0.789062 -0.375,1.453125 l 0,0.171875 c 0,0.761719 0.125,1.304688 0.375,1.625 0.25,0.324219 0.648437,0.484375 1.203125,0.484375 0.46875,0 0.832031,-0.1875 1.09375,-0.5625 0.257812,-0.375 0.390625,-0.890625 0.390625,-1.546875 0,-0.664062 -0.132813,-1.175781 -0.390625,-1.53125 C 4.082031,-4.582031 3.710938,-4.765625 3.234375,-4.765625 z m 0,0"
+ id="path126"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-16"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 3.34375,-5.4375 c 0.707031,0 1.253906,0.242188 1.640625,0.71875 0.394531,0.480469 0.59375,1.15625 0.59375,2.03125 0,0.886719 -0.199219,1.574219 -0.59375,2.0625 C 4.585938,-0.144531 4.039062,0.09375 3.34375,0.09375 3,0.09375 2.679688,0.03125 2.390625,-0.09375 2.109375,-0.21875 1.867188,-0.414062 1.671875,-0.6875 l -0.0625,0 L 1.4375,0 0.859375,0 l 0,-7.59375 0.8125,0 0,1.84375 c 0,0.417969 -0.015625,0.789062 -0.046875,1.109375 l 0.046875,0 C 2.046875,-5.171875 2.601562,-5.4375 3.34375,-5.4375 z m -0.109375,0.671875 c -0.554687,0 -0.953125,0.164063 -1.203125,0.484375 -0.242188,0.3125 -0.359375,0.84375 -0.359375,1.59375 0,0.761719 0.125,1.304688 0.375,1.625 0.25,0.324219 0.648437,0.484375 1.203125,0.484375 0.5,0 0.867188,-0.179687 1.109375,-0.546875 0.25,-0.363281 0.375,-0.882812 0.375,-1.5625 0,-0.695312 -0.125,-1.21875 -0.375,-1.5625 -0.242187,-0.34375 -0.617187,-0.515625 -1.125,-0.515625 z m 0,0"
+ id="path129"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-17"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 5.484375,-2.6875 c 0,0.875 -0.226563,1.558594 -0.671875,2.046875 C 4.375,-0.148438 3.769531,0.09375 3,0.09375 2.519531,0.09375 2.09375,-0.015625 1.71875,-0.234375 1.351562,-0.460938 1.066406,-0.785156 0.859375,-1.203125 0.660156,-1.628906 0.5625,-2.125 0.5625,-2.6875 c 0,-0.863281 0.21875,-1.539062 0.65625,-2.03125 0.4375,-0.488281 1.039062,-0.734375 1.8125,-0.734375 0.75,0 1.34375,0.25 1.78125,0.75 0.445312,0.5 0.671875,1.171875 0.671875,2.015625 z m -4.078125,0 c 0,0.6875 0.132812,1.214844 0.40625,1.578125 0.269531,0.355469 0.671875,0.53125 1.203125,0.53125 0.53125,0 0.929687,-0.175781 1.203125,-0.53125 C 4.5,-1.472656 4.640625,-2 4.640625,-2.6875 4.640625,-3.363281 4.5,-3.878906 4.21875,-4.234375 3.945312,-4.585938 3.546875,-4.765625 3.015625,-4.765625 c -0.53125,0 -0.933594,0.179687 -1.203125,0.53125 C 1.539062,-3.890625 1.40625,-3.375 1.40625,-2.6875 z m 0,0"
+ id="path132"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-18"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 4.515625,0 0,-3.46875 c 0,-0.425781 -0.101563,-0.75 -0.296875,-0.96875 -0.199219,-0.21875 -0.507812,-0.328125 -0.921875,-0.328125 -0.5625,0 -0.976563,0.15625 -1.234375,0.46875 -0.261719,0.304687 -0.390625,0.804687 -0.390625,1.5 l 0,2.796875 -0.8125,0 0,-7.59375 0.8125,0 0,2.296875 c 0,0.273437 -0.015625,0.5 -0.046875,0.6875 l 0.0625,0 C 1.84375,-4.867188 2.066406,-5.070312 2.359375,-5.21875 2.648438,-5.363281 2.988281,-5.4375 3.375,-5.4375 c 0.644531,0 1.128906,0.15625 1.453125,0.46875 0.332031,0.3125 0.5,0.808594 0.5,1.484375 l 0,3.484375 z m 0,0"
+ id="path135"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-19"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 3.265625,-4.71875 -1.359375,0 0,4.71875 -0.8125,0 0,-4.71875 -0.953125,0 0,-0.375 0.953125,-0.28125 0,-0.296875 c 0,-1.320313 0.578125,-1.984375 1.734375,-1.984375 0.28125,0 0.609375,0.058594 0.984375,0.171875 l -0.203125,0.65625 c -0.3125,-0.101563 -0.578125,-0.15625 -0.796875,-0.15625 -0.3125,0 -0.542969,0.105469 -0.6875,0.3125 -0.148438,0.199219 -0.21875,0.523437 -0.21875,0.96875 l 0,0.34375 1.359375,0 z m 0,0"
+ id="path138"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-20"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 0.75,-0.515625 c 0,-0.21875 0.046875,-0.382813 0.140625,-0.5 C 0.992188,-1.128906 1.132812,-1.1875 1.3125,-1.1875 c 0.195312,0 0.347656,0.058594 0.453125,0.171875 0.101563,0.117187 0.15625,0.28125 0.15625,0.5 0,0.210937 -0.058594,0.371094 -0.171875,0.484375 C 1.644531,0.0820312 1.5,0.140625 1.3125,0.140625 1.144531,0.140625 1.007812,0.0859375 0.90625,-0.015625 0.800781,-0.117188 0.75,-0.285156 0.75,-0.515625 z m 0,0"
+ id="path141"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-21"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="M 6.6875,-3.640625 C 6.6875,-2.460938 6.363281,-1.5625 5.71875,-0.9375 5.082031,-0.3125 4.160156,0 2.953125,0 l -1.96875,0 0,-7.140625 2.1875,0 c 1.101563,0 1.960937,0.308594 2.578125,0.921875 0.625,0.617188 0.9375,1.476562 0.9375,2.578125 z m -0.890625,0.03125 c 0,-0.925781 -0.234375,-1.625 -0.703125,-2.09375 -0.460938,-0.476563 -1.152344,-0.71875 -2.078125,-0.71875 l -1.203125,0 0,5.703125 1.015625,0 c 0.988281,0 1.726563,-0.238281 2.21875,-0.71875 0.5,-0.488281 0.75,-1.210938 0.75,-2.171875 z m 0,0"
+ id="path144"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-22"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 5.234375,-5.359375 0,0.515625 -0.984375,0.125 c 0.09375,0.117188 0.171875,0.265625 0.234375,0.453125 0.070313,0.179687 0.109375,0.382813 0.109375,0.609375 0,0.53125 -0.179688,0.953125 -0.53125,1.265625 -0.355469,0.3125 -0.84375,0.46875 -1.46875,0.46875 -0.167969,0 -0.320312,-0.015625 -0.453125,-0.046875 -0.34375,0.1875 -0.515625,0.417969 -0.515625,0.6875 0,0.148438 0.054688,0.257812 0.171875,0.328125 0.125,0.074219 0.332031,0.109375 0.625,0.109375 l 0.953125,0 c 0.570312,0 1.015625,0.121094 1.328125,0.359375 0.3125,0.242187 0.46875,0.59375 0.46875,1.0625 0,0.59375 -0.242187,1.046875 -0.71875,1.359375 C 3.984375,2.25 3.289062,2.40625 2.375,2.40625 1.675781,2.40625 1.132812,2.273438 0.75,2.015625 0.375,1.753906 0.1875,1.382812 0.1875,0.90625 0.1875,0.582031 0.289062,0.300781 0.5,0.0625 0.707031,-0.175781 1,-0.335938 1.375,-0.421875 c -0.136719,-0.0625 -0.25,-0.15625 -0.34375,-0.28125 -0.085938,-0.132813 -0.125,-0.285156 -0.125,-0.453125 0,-0.195312 0.050781,-0.367188 0.15625,-0.515625 C 1.164062,-1.816406 1.328125,-1.957031 1.546875,-2.09375 1.273438,-2.207031 1.050781,-2.398438 0.875,-2.671875 0.695312,-2.953125 0.609375,-3.269531 0.609375,-3.625 c 0,-0.582031 0.175781,-1.03125 0.53125,-1.34375 0.351563,-0.320312 0.847656,-0.484375 1.484375,-0.484375 0.28125,0 0.535156,0.03125 0.765625,0.09375 z M 0.96875,0.90625 c 0,0.28125 0.117188,0.492188 0.359375,0.640625 0.25,0.15625 0.601563,0.234375 1.0625,0.234375 0.675781,0 1.175781,-0.105469 1.5,-0.3125 0.332031,-0.199219 0.5,-0.46875 0.5,-0.8125 C 4.390625,0.363281 4.300781,0.160156 4.125,0.046875 3.945312,-0.0664062 3.609375,-0.125 3.109375,-0.125 l -0.96875,0 c -0.367187,0 -0.652344,0.0898438 -0.859375,0.265625 -0.210938,0.175781 -0.3125,0.429687 -0.3125,0.765625 z m 0.4375,-4.546875 c 0,0.375 0.101562,0.664063 0.3125,0.859375 C 1.9375,-2.59375 2.234375,-2.5 2.609375,-2.5 c 0.789063,0 1.1875,-0.382812 1.1875,-1.15625 0,-0.800781 -0.402344,-1.203125 -1.203125,-1.203125 -0.375,0 -0.667969,0.105469 -0.875,0.3125 -0.210938,0.199219 -0.3125,0.5 -0.3125,0.90625 z m 0,0"
+ id="path147"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-23"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 1.8125,0 -0.828125,0 0,-7.140625 3.984375,0 0,0.734375 -3.15625,0 0,2.609375 2.953125,0 0,0.75 -2.953125,0 z m 0,0"
+ id="path150"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-24"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 7.6875,0 0,-3.484375 C 7.6875,-3.910156 7.59375,-4.226562 7.40625,-4.4375 7.226562,-4.65625 6.945312,-4.765625 6.5625,-4.765625 c -0.511719,0 -0.886719,0.148437 -1.125,0.4375 -0.242188,0.292969 -0.359375,0.742187 -0.359375,1.34375 l 0,2.984375 -0.8125,0 0,-3.484375 c 0,-0.425781 -0.09375,-0.742187 -0.28125,-0.953125 -0.179687,-0.21875 -0.460937,-0.328125 -0.84375,-0.328125 -0.511719,0 -0.886719,0.15625 -1.125,0.46875 C 1.785156,-3.992188 1.671875,-3.5 1.671875,-2.8125 l 0,2.8125 -0.8125,0 0,-5.359375 0.65625,0 0.140625,0.734375 0.03125,0 c 0.15625,-0.257812 0.367188,-0.460938 0.640625,-0.609375 0.28125,-0.144531 0.59375,-0.21875 0.9375,-0.21875 0.84375,0 1.390625,0.304687 1.640625,0.90625 l 0.046875,0 c 0.15625,-0.28125 0.382813,-0.5 0.6875,-0.65625 0.300781,-0.164063 0.648437,-0.25 1.046875,-0.25 0.601562,0 1.050781,0.15625 1.34375,0.46875 0.300781,0.3125 0.453125,0.8125 0.453125,1.5 l 0,3.484375 z m 0,0"
+ id="path153"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-25"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 5.46875,0 -0.890625,-2.265625 -2.859375,0 L 0.84375,0 0,0 l 2.828125,-7.171875 0.6875,0 L 6.328125,0 z m -1.140625,-3.015625 -0.84375,-2.21875 c -0.105469,-0.28125 -0.214844,-0.625 -0.328125,-1.03125 -0.074219,0.3125 -0.171875,0.65625 -0.296875,1.03125 l -0.84375,2.21875 z m 0,0"
+ id="path156"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-26"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m -0.0625,1.875 c -0.300781,0 -0.539062,-0.042969 -0.71875,-0.125 l 0,-0.703125 c 0.230469,0.0625 0.46875,0.09375 0.71875,0.09375 0.320312,0 0.566406,-0.101563 0.734375,-0.296875 0.164063,-0.199219 0.25,-0.480469 0.25,-0.84375 l 0,-7.140625 0.84375,0 0,7.078125 c 0,0.613281 -0.15625,1.085938 -0.46875,1.421875 C 0.984375,1.703125 0.53125,1.875 -0.0625,1.875 z m 0,0"
+ id="path159"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-27"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 3.484375,0 -0.78125,0 0,-5.09375 c 0,-0.414062 0.00781,-0.816406 0.03125,-1.203125 -0.0625,0.074219 -0.136719,0.148437 -0.21875,0.21875 C 2.429688,-6.003906 2.039062,-5.6875 1.34375,-5.125 l -0.421875,-0.546875 1.890625,-1.46875 0.671875,0 z m 0,0"
+ id="path162"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-28"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 2.71875,-4.359375 c 0.75,0 1.335938,0.1875 1.765625,0.5625 0.4375,0.367187 0.65625,0.875 0.65625,1.53125 0,0.742187 -0.234375,1.320313 -0.703125,1.734375 -0.46875,0.417969 -1.121094,0.625 -1.953125,0.625 -0.804687,0 -1.414063,-0.125 -1.828125,-0.375 l 0,-0.78125 c 0.21875,0.148438 0.492188,0.261719 0.828125,0.34375 0.34375,0.085938 0.679687,0.125 1.015625,0.125 0.570312,0 1.015625,-0.132812 1.328125,-0.40625 0.320313,-0.269531 0.484375,-0.660156 0.484375,-1.171875 0,-1 -0.609375,-1.5 -1.828125,-1.5 -0.3125,0 -0.730469,0.046875 -1.25,0.140625 l -0.40625,-0.265625 0.265625,-3.34375 3.546875,0 0,0.75 -2.859375,0 L 1.609375,-4.25 C 1.972656,-4.320312 2.34375,-4.359375 2.71875,-4.359375 z m 0,0"
+ id="path165"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-29"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 1.703125,-1.15625 0.078125,0.109375 c -0.085938,0.324219 -0.210938,0.699219 -0.375,1.125 -0.15625,0.4375 -0.320312,0.84375 -0.484375,1.21875 l -0.609375,0 C 0.394531,0.953125 0.488281,0.53125 0.59375,0.03125 c 0.101562,-0.5 0.179688,-0.894531 0.234375,-1.1875 z m 0,0"
+ id="path168"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-30"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 5.1875,0 -4.703125,0 0,-0.703125 L 2.375,-2.59375 c 0.570312,-0.570312 0.945312,-0.984375 1.125,-1.234375 0.1875,-0.25 0.320312,-0.488281 0.40625,-0.71875 C 4,-4.785156 4.046875,-5.039062 4.046875,-5.3125 c 0,-0.375 -0.117187,-0.671875 -0.34375,-0.890625 -0.230469,-0.226563 -0.554687,-0.34375 -0.96875,-0.34375 -0.292969,0 -0.574219,0.054687 -0.84375,0.15625 -0.261719,0.09375 -0.554687,0.265625 -0.875,0.515625 l -0.4375,-0.546875 c 0.65625,-0.539063 1.375,-0.8125 2.15625,-0.8125 0.664063,0 1.1875,0.171875 1.5625,0.515625 0.382813,0.335938 0.578125,0.792969 0.578125,1.375 0,0.460938 -0.132812,0.914062 -0.390625,1.359375 -0.25,0.4375 -0.71875,0.996094 -1.40625,1.671875 l -1.5625,1.515625 0,0.046875 3.671875,0 z m 0,0"
+ id="path171"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-31"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 5.21875,-3.578125 c 0,1.230469 -0.199219,2.152344 -0.59375,2.765625 C 4.238281,-0.207031 3.648438,0.09375 2.859375,0.09375 2.085938,0.09375 1.5,-0.210938 1.09375,-0.828125 0.695312,-1.453125 0.5,-2.367188 0.5,-3.578125 0.5,-4.816406 0.691406,-5.738281 1.078125,-6.34375 1.460938,-6.945312 2.054688,-7.25 2.859375,-7.25 c 0.769531,0 1.351563,0.320312 1.75,0.953125 0.40625,0.625 0.609375,1.53125 0.609375,2.71875 z m -3.90625,0 c 0,1.042969 0.117188,1.804687 0.359375,2.28125 0.25,0.46875 0.644531,0.703125 1.1875,0.703125 0.53125,0 0.914063,-0.238281 1.15625,-0.71875 0.25,-0.488281 0.375,-1.242188 0.375,-2.265625 0,-1.03125 -0.125,-1.78125 -0.375,-2.25 -0.242187,-0.476563 -0.625,-0.71875 -1.15625,-0.71875 -0.542969,0 -0.9375,0.234375 -1.1875,0.703125 C 1.429688,-5.375 1.3125,-4.617188 1.3125,-3.578125 z m 0,0"
+ id="path174"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-32"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 5.515625,-1.640625 -1.0625,0 0,1.640625 -0.765625,0 0,-1.640625 -3.484375,0 0,-0.703125 3.390625,-4.828125 0.859375,0 0,4.796875 1.0625,0 z M 3.6875,-2.375 l 0,-2.375 c 0,-0.46875 0.015625,-0.992188 0.046875,-1.578125 l -0.046875,0 c -0.15625,0.3125 -0.304688,0.574219 -0.4375,0.78125 L 1.015625,-2.375 z m 0,0"
+ id="path177"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-33"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 0.75,-0.515625 c 0,-0.21875 0.046875,-0.382813 0.140625,-0.5 C 0.992188,-1.128906 1.132812,-1.1875 1.3125,-1.1875 c 0.195312,0 0.347656,0.058594 0.453125,0.171875 0.101563,0.117187 0.15625,0.28125 0.15625,0.5 0,0.210937 -0.058594,0.371094 -0.171875,0.484375 C 1.644531,0.0820312 1.5,0.140625 1.3125,0.140625 1.144531,0.140625 1.007812,0.0859375 0.90625,-0.015625 0.800781,-0.117188 0.75,-0.285156 0.75,-0.515625 z m 0,-4.3125 c 0,-0.4375 0.1875,-0.65625 0.5625,-0.65625 0.40625,0 0.609375,0.21875 0.609375,0.65625 0,0.210937 -0.058594,0.371094 -0.171875,0.484375 -0.105469,0.117188 -0.25,0.171875 -0.4375,0.171875 -0.167969,0 -0.304688,-0.050781 -0.40625,-0.15625 C 0.800781,-4.429688 0.75,-4.597656 0.75,-4.828125 z m 0,0"
+ id="path180"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-34"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 4.90625,-5.453125 c 0,0.449219 -0.132812,0.820313 -0.390625,1.109375 -0.25,0.292969 -0.609375,0.484375 -1.078125,0.578125 l 0,0.046875 c 0.570312,0.074219 0.992188,0.257812 1.265625,0.546875 0.28125,0.292969 0.421875,0.679687 0.421875,1.15625 0,0.679687 -0.234375,1.199219 -0.703125,1.5625 C 3.953125,-0.0859375 3.28125,0.09375 2.40625,0.09375 2.03125,0.09375 1.6875,0.0625 1.375,0 1.0625,-0.0507812 0.753906,-0.144531 0.453125,-0.28125 l 0,-0.78125 c 0.3125,0.15625 0.640625,0.277344 0.984375,0.359375 0.351562,0.074219 0.6875,0.109375 1,0.109375 1.238281,0 1.859375,-0.484375 1.859375,-1.453125 0,-0.863281 -0.683594,-1.296875 -2.046875,-1.296875 l -0.703125,0 0,-0.6875 0.71875,0 c 0.550781,0 0.988281,-0.125 1.3125,-0.375 0.332031,-0.25 0.5,-0.59375 0.5,-1.03125 0,-0.34375 -0.121094,-0.613281 -0.359375,-0.8125 -0.242188,-0.195312 -0.570312,-0.296875 -0.984375,-0.296875 -0.3125,0 -0.609375,0.042969 -0.890625,0.125 -0.273438,0.085937 -0.585938,0.242187 -0.9375,0.46875 L 0.5,-6.5 c 0.289062,-0.226562 0.625,-0.40625 1,-0.53125 0.382812,-0.132812 0.789062,-0.203125 1.21875,-0.203125 0.695312,0 1.234375,0.15625 1.609375,0.46875 0.382813,0.3125 0.578125,0.75 0.578125,1.3125 z m 0,0"
+ id="path183"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-35"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 0.578125,-3.046875 c 0,-1.40625 0.269531,-2.453125 0.8125,-3.140625 0.539063,-0.695312 1.347656,-1.046875 2.421875,-1.046875 0.363281,0 0.648438,0.027344 0.859375,0.078125 l 0,0.703125 c -0.25,-0.082031 -0.539063,-0.125 -0.859375,-0.125 -0.761719,0 -1.34375,0.242187 -1.75,0.71875 -0.40625,0.480469 -0.625,1.230469 -0.65625,2.25 l 0.046875,0 c 0.363281,-0.5625 0.929687,-0.84375 1.703125,-0.84375 0.644531,0 1.148438,0.199219 1.515625,0.59375 0.375,0.386719 0.5625,0.90625 0.5625,1.5625 0,0.75 -0.203125,1.339844 -0.609375,1.765625 -0.40625,0.417969 -0.953125,0.625 -1.640625,0.625 -0.742187,0 -1.328125,-0.273438 -1.765625,-0.828125 -0.429688,-0.550781 -0.640625,-1.320313 -0.640625,-2.3125 z M 2.96875,-0.59375 c 0.457031,0 0.8125,-0.144531 1.0625,-0.4375 0.257812,-0.289062 0.390625,-0.710938 0.390625,-1.265625 0,-0.46875 -0.121094,-0.835937 -0.359375,-1.109375 C 3.832031,-3.675781 3.484375,-3.8125 3.015625,-3.8125 c -0.304687,0 -0.574219,0.0625 -0.8125,0.1875 -0.242187,0.117188 -0.433594,0.28125 -0.578125,0.5 -0.148438,0.210938 -0.21875,0.429688 -0.21875,0.65625 0,0.335938 0.0625,0.648438 0.1875,0.9375 0.132812,0.292969 0.320312,0.523438 0.5625,0.6875 0.238281,0.167969 0.507812,0.25 0.8125,0.25 z m 0,0"
+ id="path186"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-36"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 4.96875,0 -3.984375,0 0,-7.140625 3.984375,0 0,0.734375 -3.15625,0 0,2.296875 2.953125,0 0,0.734375 -2.953125,0 0,2.625 3.15625,0 z m 0,0"
+ id="path189"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-37"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 0.015625,-5.359375 0.859375,0 1.171875,3.0625 c 0.257813,0.699219 0.421875,1.199219 0.484375,1.5 l 0.03125,0 c 0.039062,-0.164063 0.128906,-0.445313 0.265625,-0.84375 0.132813,-0.40625 0.578125,-1.644531 1.328125,-3.71875 l 0.875,0 L 2.734375,0.75 c -0.230469,0.59375 -0.5,1.015625 -0.8125,1.265625 C 1.617188,2.273438 1.25,2.40625 0.8125,2.40625 0.5625,2.40625 0.316406,2.375 0.078125,2.3125 l 0,-0.640625 c 0.175781,0.039063 0.375,0.0625 0.59375,0.0625 0.5625,0 0.960937,-0.3125 1.203125,-0.9375 L 2.171875,0.03125 z m 0,0"
+ id="path192"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-38"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="M 5.234375,0 4.25,-3.140625 c -0.0625,-0.1875 -0.179688,-0.625 -0.34375,-1.3125 l -0.046875,0 C 3.734375,-3.878906 3.617188,-3.4375 3.515625,-3.125 l -1,3.125 -0.9375,0 -1.46875,-5.359375 0.859375,0 c 0.34375,1.355469 0.601562,2.386719 0.78125,3.09375 0.175781,0.699219 0.28125,1.167969 0.3125,1.40625 l 0.03125,0 c 0.039062,-0.1875 0.097656,-0.425781 0.171875,-0.71875 0.082031,-0.289063 0.15625,-0.523437 0.21875,-0.703125 l 0.984375,-3.078125 0.875,0 0.953125,3.078125 c 0.1875,0.5625 0.3125,1.03125 0.375,1.40625 l 0.03125,0 c 0.019531,-0.113281 0.054687,-0.289062 0.109375,-0.53125 0.0625,-0.25 0.398438,-1.566406 1.015625,-3.953125 l 0.84375,0 L 6.1875,0 z m 0,0"
+ id="path195"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-39"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 1.65625,-2.734375 c 0.144531,-0.195313 0.359375,-0.457031 0.640625,-0.78125 l 1.734375,-1.84375 0.953125,0 -2.15625,2.28125 L 5.140625,0 4.15625,0 2.265625,-2.53125 1.65625,-2 l 0,2 -0.796875,0 0,-7.59375 0.796875,0 0,4.03125 c 0,0.179688 -0.011719,0.453125 -0.03125,0.828125 z m 0,0"
+ id="path198"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-40"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 0.40625,-2.3125 0,-0.734375 2.40625,0 0,0.734375 z m 0,0"
+ id="path201"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-41"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 2.859375,-7.234375 c 0.644531,0 1.15625,0.152344 1.53125,0.453125 0.382813,0.304688 0.578125,0.71875 0.578125,1.25 0,0.355469 -0.109375,0.679688 -0.328125,0.96875 -0.21875,0.28125 -0.570313,0.542969 -1.046875,0.78125 0.582031,0.28125 0.992188,0.574219 1.234375,0.875 0.25,0.304688 0.375,0.65625 0.375,1.0625 0,0.585938 -0.210937,1.054688 -0.625,1.40625 C 4.160156,-0.0820312 3.59375,0.09375 2.875,0.09375 c -0.761719,0 -1.34375,-0.1640625 -1.75,-0.5 -0.40625,-0.332031 -0.609375,-0.804688 -0.609375,-1.421875 0,-0.8125 0.492187,-1.445313 1.484375,-1.90625 -0.449219,-0.25 -0.773438,-0.519531 -0.96875,-0.8125 -0.1875,-0.300781 -0.28125,-0.632813 -0.28125,-1 0,-0.507813 0.1875,-0.914063 0.5625,-1.21875 0.382812,-0.3125 0.898438,-0.46875 1.546875,-0.46875 z m -1.546875,5.4375 c 0,0.386719 0.132812,0.6875 0.40625,0.90625 0.269531,0.21875 0.648438,0.328125 1.140625,0.328125 0.488281,0 0.867187,-0.113281 1.140625,-0.34375 0.269531,-0.226562 0.40625,-0.539062 0.40625,-0.9375 0,-0.3125 -0.132812,-0.585938 -0.390625,-0.828125 -0.25,-0.25 -0.695313,-0.492187 -1.328125,-0.734375 -0.480469,0.210938 -0.828125,0.445312 -1.046875,0.703125 -0.21875,0.25 -0.328125,0.554687 -0.328125,0.90625 z m 1.53125,-4.78125 c -0.40625,0 -0.730469,0.101563 -0.96875,0.296875 -0.230469,0.1875 -0.34375,0.445312 -0.34375,0.765625 0,0.304687 0.09375,0.5625 0.28125,0.78125 C 2.007812,-4.523438 2.367188,-4.3125 2.890625,-4.09375 3.359375,-4.289062 3.6875,-4.5 3.875,-4.71875 4.070312,-4.945312 4.171875,-5.210938 4.171875,-5.515625 4.171875,-5.835938 4.050781,-6.09375 3.8125,-6.28125 3.582031,-6.476562 3.257812,-6.578125 2.84375,-6.578125 z m 0,0"
+ id="path204"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-42"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 5.515625,-5.0625 c 0,0.730469 -0.25,1.289062 -0.75,1.671875 C 4.273438,-3.003906 3.570312,-2.8125 2.65625,-2.8125 l -0.84375,0 0,2.8125 -0.828125,0 0,-7.140625 1.84375,0 c 1.789063,0 2.6875,0.695313 2.6875,2.078125 z m -3.703125,1.546875 0.75,0 c 0.726562,0 1.257812,-0.117187 1.59375,-0.359375 0.332031,-0.238281 0.5,-0.617188 0.5,-1.140625 0,-0.476563 -0.15625,-0.832031 -0.46875,-1.0625 -0.3125,-0.226563 -0.796875,-0.34375 -1.453125,-0.34375 l -0.921875,0 z m 0,0"
+ id="path207"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-43"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 0.984375,0 0,-7.140625 0.828125,0 0,7.140625 z m 0,0"
+ id="path210"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-44"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 4.28125,0 -3.875,0 0,-0.546875 2.921875,-4.171875 -2.75,0 0,-0.640625 3.625,0 0,0.640625 -2.875,4.09375 2.953125,0 z m 0,0"
+ id="path213"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-45"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 5.1875,-4.09375 c 0,2.792969 -1.085938,4.1875 -3.25,4.1875 C 1.5625,0.09375 1.265625,0.0625 1.046875,0 l 0,-0.703125 c 0.257813,0.085937 0.550781,0.125 0.875,0.125 0.78125,0 1.367187,-0.238281 1.765625,-0.71875 0.40625,-0.476563 0.625,-1.21875 0.65625,-2.21875 l -0.046875,0 c -0.179687,0.273437 -0.417969,0.480469 -0.71875,0.625 -0.292969,0.136719 -0.625,0.203125 -1,0.203125 C 1.941406,-2.6875 1.4375,-2.875 1.0625,-3.25 0.695312,-3.632812 0.515625,-4.164062 0.515625,-4.84375 c 0,-0.738281 0.207031,-1.320312 0.625,-1.75 0.414063,-0.425781 0.960937,-0.640625 1.640625,-0.640625 0.476562,0 0.898438,0.125 1.265625,0.375 0.363281,0.242187 0.644531,0.601563 0.84375,1.078125 0.195313,0.480469 0.296875,1.042969 0.296875,1.6875 z M 2.78125,-6.546875 c -0.46875,0 -0.835938,0.152344 -1.09375,0.453125 -0.25,0.292969 -0.375,0.710938 -0.375,1.25 0,0.46875 0.113281,0.839844 0.34375,1.109375 0.238281,0.261719 0.597656,0.390625 1.078125,0.390625 0.300781,0 0.578125,-0.054688 0.828125,-0.171875 0.25,-0.125 0.441406,-0.289063 0.578125,-0.5 0.144531,-0.207031 0.21875,-0.425781 0.21875,-0.65625 0,-0.34375 -0.070313,-0.65625 -0.203125,-0.9375 -0.136719,-0.289063 -0.324219,-0.519531 -0.5625,-0.6875 -0.230469,-0.164063 -0.5,-0.25 -0.8125,-0.25 z m 0,0"
+ id="path216"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-46"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="M 4.03125,-6.5 C 3.25,-6.5 2.628906,-6.238281 2.171875,-5.71875 1.722656,-5.195312 1.5,-4.476562 1.5,-3.5625 c 0,0.929688 0.21875,1.648438 0.65625,2.15625 0.4375,0.511719 1.0625,0.765625 1.875,0.765625 0.5,0 1.066406,-0.085937 1.703125,-0.265625 l 0,0.71875 C 5.234375,0 4.625,0.09375 3.90625,0.09375 c -1.054688,0 -1.867188,-0.316406 -2.4375,-0.953125 -0.574219,-0.632813 -0.859375,-1.539063 -0.859375,-2.71875 0,-0.738281 0.132813,-1.382813 0.40625,-1.9375 0.28125,-0.550781 0.679687,-0.972656 1.203125,-1.265625 0.519531,-0.300781 1.128906,-0.453125 1.828125,-0.453125 0.75,0 1.40625,0.136719 1.96875,0.40625 L 5.65625,-6.125 C 5.113281,-6.375 4.570312,-6.5 4.03125,-6.5 z m 0,0"
+ id="path219"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-47"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 0.203125,2.40625 c -0.3007812,0 -0.550781,-0.042969 -0.75,-0.125 l 0,-0.65625 c 0.230469,0.0625 0.453125,0.09375 0.671875,0.09375 0.25,0 0.429688,-0.074219 0.546875,-0.21875 0.125,-0.136719 0.1875,-0.34375 0.1875,-0.625 l 0,-6.234375 0.8125,0 0,6.1875 c 0,1.050781 -0.492187,1.578125 -1.46875,1.578125 z m 0.59375,-9.203125 c 0,-0.1875 0.039063,-0.320313 0.125,-0.40625 0.09375,-0.09375 0.207031,-0.140625 0.34375,-0.140625 0.132813,0 0.25,0.046875 0.34375,0.140625 0.09375,0.085937 0.140625,0.21875 0.140625,0.40625 0,0.179687 -0.046875,0.3125 -0.140625,0.40625 -0.09375,0.085937 -0.210937,0.125 -0.34375,0.125 -0.136719,0 -0.25,-0.039063 -0.34375,-0.125 -0.085937,-0.09375 -0.125,-0.226563 -0.125,-0.40625 z m 0,0"
+ id="path222"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-48"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 2.40625,-7.59375 0.6875,0 0,10.015625 -0.6875,0 z m 0,0"
+ id="path225"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ <symbol
+ overflow="visible"
+ id="glyph2-49"
+ style="overflow:visible">
+ <path
+ style="stroke:none"
+ d="m 3.265625,-4.71875 -1.359375,0 0,4.71875 -0.8125,0 0,-4.71875 -0.953125,0 0,-0.375 0.953125,-0.28125 0,-0.296875 c 0,-1.320313 0.578125,-1.984375 1.734375,-1.984375 0.28125,0 0.609375,0.058594 0.984375,0.171875 l -0.203125,0.65625 c -0.3125,-0.101563 -0.578125,-0.15625 -0.796875,-0.15625 -0.3125,0 -0.542969,0.105469 -0.6875,0.3125 -0.148438,0.199219 -0.21875,0.523437 -0.21875,0.96875 l 0,0.34375 1.359375,0 z M 4.671875,0 l -0.8125,0 0,-7.59375 0.8125,0 z m 0,0"
+ id="path228"
+ inkscape:connector-curvature="0" />
+ </symbol>
+ </g>
+ <clipPath
+ id="clip1">
+ <path
+ d="m 54,54 503.99609,0 0,661.70703 -503.99609,0 z m 0,0"
+ id="path231"
+ inkscape:connector-curvature="0" />
+ </clipPath>
+ <clipPath
+ id="clip2">
+ <path
+ d="m 55.492188,210.14453 501.000002,0 0,0.83594 -501.000002,0 z m 0,0"
+ id="path234"
+ inkscape:connector-curvature="0" />
+ </clipPath>
+ <clipPath
+ id="clip3">
+ <path
+ d="m 55.492188,79.050781 501.000002,0 0,0.835938 -501.000002,0 z m 0,0"
+ id="path237"
+ inkscape:connector-curvature="0" />
+ </clipPath>
+ </defs>
+ <g
+ id="g5205"
+ transform="translate(-55.492188,-62.14312)">
+ <g
+ clip-path="url(#clip2)"
+ clip-rule="nonzero"
+ id="g244">
+ <path
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 55.492188,210.14453 501.000002,0 0,0.83594 -501.000002,0 z m 0,0"
+ id="path246"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 55.492188,84.894531 242.003902,0 0,15.03125 -242.003902,0 z m 0,0"
+ id="path248"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 297.49609,84.894531 96.40235,0 0,15.03125 -96.40235,0 z m 0,0"
+ id="path250"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 393.89844,84.894531 106.72265,0 0,15.03125 -106.72265,0 z m 0,0"
+ id="path252"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 500.62109,84.894531 55.8711,0 0,15.03125 -55.8711,0 z m 0,0"
+ id="path254"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 55.492188,114.95313 242.003902,0 0,25.05078 -242.003902,0 z m 0,0"
+ id="path256"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 297.49609,114.95313 96.40235,0 0,25.05078 -96.40235,0 z m 0,0"
+ id="path258"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 393.89844,114.95313 106.72265,0 0,25.05078 -106.72265,0 z m 0,0"
+ id="path260"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 500.62109,114.95313 55.8711,0 0,25.05078 -55.8711,0 z m 0,0"
+ id="path262"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 55.492188,175.07422 242.003902,0 0,15.03125 -242.003902,0 z m 0,0"
+ id="path264"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 297.49609,175.07422 96.40235,0 0,15.03125 -96.40235,0 z m 0,0"
+ id="path266"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 393.89844,175.07422 106.72265,0 0,15.03125 -106.72265,0 z m 0,0"
+ id="path268"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#eeeeee;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 500.62109,175.07422 55.8711,0 0,15.03125 -55.8711,0 z m 0,0"
+ id="path270"
+ inkscape:connector-curvature="0" />
+ <g
+ clip-path="url(#clip3)"
+ clip-rule="nonzero"
+ id="g272">
+ <path
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 55.492188,79.050781 501.000002,0 0,0.835938 -501.000002,0 z m 0,0"
+ id="path274"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g276">
+ <use
+ xlink:href="#glyph0-1"
+ x="55.492558"
+ y="76.127495"
+ id="use278"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph0-2"
+ x="70.362236"
+ y="76.127495"
+ id="use280"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph0-2"
+ x="81.905273"
+ y="76.127495"
+ id="use282"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g284">
+ <use
+ xlink:href="#glyph0-3"
+ x="93.227875"
+ y="76.127495"
+ id="use286"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g288">
+ <use
+ xlink:href="#glyph0-4"
+ x="106.314"
+ y="76.127495"
+ id="use290"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g292">
+ <use
+ xlink:href="#glyph0-5"
+ x="119.23979"
+ y="76.127495"
+ id="use294"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g296">
+ <use
+ xlink:href="#glyph0-6"
+ x="132.06538"
+ y="76.127495"
+ id="use298"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#ffffff;fill-opacity:1"
+ id="g300">
+ <use
+ xlink:href="#glyph1-1"
+ x="57.997555"
+ y="96.167488"
+ id="use302"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph1-2"
+ x="60.783115"
+ y="96.167488"
+ id="use304"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph1-3"
+ x="70.101715"
+ y="96.167488"
+ id="use306"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph1-4"
+ x="76.233955"
+ y="96.167488"
+ id="use308"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph1-5"
+ x="78.758995"
+ y="96.167488"
+ id="use310"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph1-6"
+ x="81.284035"
+ y="96.167488"
+ id="use312"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph1-7"
+ x="86.053551"
+ y="96.167488"
+ id="use314"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#ffffff;fill-opacity:1"
+ id="g316">
+ <use
+ xlink:href="#glyph1-8"
+ x="91.634689"
+ y="96.167488"
+ id="use318"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph1-5"
+ x="95.171753"
+ y="96.167488"
+ id="use320"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph1-9"
+ x="97.696793"
+ y="96.167488"
+ id="use322"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph1-10"
+ x="103.74887"
+ y="96.167488"
+ id="use324"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#ffffff;fill-opacity:1"
+ id="g326">
+ <use
+ xlink:href="#glyph1-11"
+ x="300.0014"
+ y="96.167488"
+ id="use328"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph1-12"
+ x="306.03345"
+ y="96.167488"
+ id="use330"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph1-9"
+ x="310.12158"
+ y="96.167488"
+ id="use332"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph1-3"
+ x="316.17368"
+ y="96.167488"
+ id="use334"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph1-9"
+ x="322.30591"
+ y="96.167488"
+ id="use336"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph1-13"
+ x="328.358"
+ y="96.167488"
+ id="use338"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph1-7"
+ x="333.13754"
+ y="96.167488"
+ id="use340"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph1-4"
+ x="338.70865"
+ y="96.167488"
+ id="use342"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#ffffff;fill-opacity:1"
+ id="g344">
+ <use
+ xlink:href="#glyph1-14"
+ x="396.38376"
+ y="96.167488"
+ id="use346"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph1-7"
+ x="403.68835"
+ y="96.167488"
+ id="use348"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph1-8"
+ x="409.25946"
+ y="96.167488"
+ id="use350"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph1-15"
+ x="412.79651"
+ y="96.167488"
+ id="use352"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#ffffff;fill-opacity:1"
+ id="g354">
+ <use
+ xlink:href="#glyph1-16"
+ x="503.12558"
+ y="96.167488"
+ id="use356"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph1-8"
+ x="508.61652"
+ y="96.167488"
+ id="use358"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph1-7"
+ x="512.15356"
+ y="96.167488"
+ id="use360"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph1-8"
+ x="517.72473"
+ y="96.167488"
+ id="use362"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph1-15"
+ x="521.26178"
+ y="96.167488"
+ id="use364"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g366">
+ <use
+ xlink:href="#glyph2-1"
+ x="57.997555"
+ y="111.19749"
+ id="use368"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-2"
+ x="63.488514"
+ y="111.19749"
+ id="use370"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-3"
+ x="69.630775"
+ y="111.19749"
+ id="use372"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-4"
+ x="73.718933"
+ y="111.19749"
+ id="use374"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="78.728935"
+ y="111.19749"
+ id="use376"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g378">
+ <use
+ xlink:href="#glyph2-6"
+ x="84.360176"
+ y="111.19749"
+ id="use380"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-7"
+ x="86.885216"
+ y="111.19749"
+ id="use382"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-7"
+ x="89.410255"
+ y="111.19749"
+ id="use384"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-8"
+ x="91.935295"
+ y="111.19749"
+ id="use386"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-9"
+ x="97.506409"
+ y="111.19749"
+ id="use388"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-10"
+ x="103.64867"
+ y="111.19749"
+ id="use390"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="108.41819"
+ y="111.19749"
+ id="use392"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="114.03941"
+ y="111.19749"
+ id="use394"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-12"
+ x="116.63459"
+ y="111.19749"
+ id="use396"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-8"
+ x="122.76683"
+ y="111.19749"
+ id="use398"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-13"
+ x="128.33795"
+ y="111.19749"
+ id="use400"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-8"
+ x="131.87502"
+ y="111.19749"
+ id="use402"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="137.44612"
+ y="111.19749"
+ id="use404"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-6"
+ x="140.04131"
+ y="111.19749"
+ id="use406"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-14"
+ x="142.56635"
+ y="111.19749"
+ id="use408"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="147.34589"
+ y="111.19749"
+ id="use410"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g412">
+ <use
+ xlink:href="#glyph2-14"
+ x="149.93105"
+ y="111.19749"
+ id="use414"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-2"
+ x="154.71059"
+ y="111.19749"
+ id="use416"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-14"
+ x="160.85284"
+ y="111.19749"
+ id="use418"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-10"
+ x="165.63239"
+ y="111.19749"
+ id="use420"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="170.4019"
+ y="111.19749"
+ id="use422"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g424">
+ <use
+ xlink:href="#glyph2-15"
+ x="176.03314"
+ y="111.19749"
+ id="use426"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g428">
+ <use
+ xlink:href="#glyph2-13"
+ x="182.15536"
+ y="111.19749"
+ id="use430"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-6"
+ x="185.69243"
+ y="111.19749"
+ id="use432"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g434">
+ <use
+ xlink:href="#glyph2-16"
+ x="188.22748"
+ y="111.19749"
+ id="use436"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g438">
+ <use
+ xlink:href="#glyph2-7"
+ x="194.3497"
+ y="111.19749"
+ id="use440"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g442">
+ <use
+ xlink:href="#glyph2-5"
+ x="196.88477"
+ y="111.19749"
+ id="use444"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="202.50598"
+ y="111.19749"
+ id="use446"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-13"
+ x="205.10117"
+ y="111.19749"
+ id="use448"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-17"
+ x="208.63821"
+ y="111.19749"
+ id="use450"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="214.69031"
+ y="111.19749"
+ id="use452"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g454">
+ <use
+ xlink:href="#glyph2-13"
+ x="217.27547"
+ y="111.19749"
+ id="use456"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g458">
+ <use
+ xlink:href="#glyph2-18"
+ x="220.82254"
+ y="111.19749"
+ id="use460"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g462">
+ <use
+ xlink:href="#glyph2-5"
+ x="226.95477"
+ y="111.19749"
+ id="use464"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g466">
+ <use
+ xlink:href="#glyph2-19"
+ x="232.58601"
+ y="111.19749"
+ id="use468"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g470">
+ <use
+ xlink:href="#glyph2-13"
+ x="235.96275"
+ y="111.19749"
+ id="use472"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g474">
+ <use
+ xlink:href="#glyph2-20"
+ x="239.50984"
+ y="111.19749"
+ id="use476"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#45a3e3;fill-opacity:1"
+ id="g478">
+ <use
+ xlink:href="#glyph2-21"
+ x="300.0014"
+ y="111.19749"
+ id="use480"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-6"
+ x="307.30597"
+ y="111.19749"
+ id="use482"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-22"
+ x="309.83102"
+ y="111.19749"
+ id="use484"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-6"
+ x="315.31195"
+ y="111.19749"
+ id="use486"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#45a3e3;fill-opacity:1"
+ id="g488">
+ <use
+ xlink:href="#glyph2-13"
+ x="317.84702"
+ y="111.19749"
+ id="use490"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-8"
+ x="321.38406"
+ y="111.19749"
+ id="use492"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-7"
+ x="326.9552"
+ y="111.19749"
+ id="use494"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="329.48022"
+ y="111.19749"
+ id="use496"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-23"
+ x="332.07541"
+ y="111.19749"
+ id="use498"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#45a3e3;fill-opacity:1"
+ id="g500">
+ <use
+ xlink:href="#glyph2-3"
+ x="337.23572"
+ y="111.19749"
+ id="use502"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="341.32388"
+ y="111.19749"
+ id="use504"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#45a3e3;fill-opacity:1"
+ id="g506">
+ <use
+ xlink:href="#glyph2-5"
+ x="346.95511"
+ y="111.19749"
+ id="use508"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-12"
+ x="352.57632"
+ y="111.19749"
+ id="use510"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-17"
+ x="358.70859"
+ y="111.19749"
+ id="use512"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-24"
+ x="364.76065"
+ y="111.19749"
+ id="use514"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="374.07925"
+ y="111.19749"
+ id="use516"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-25"
+ x="376.67444"
+ y="111.19749"
+ id="use518"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-10"
+ x="383.00708"
+ y="111.19749"
+ id="use520"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-13"
+ x="387.77658"
+ y="111.19749"
+ id="use522"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g524">
+ <use
+ xlink:href="#glyph2-26"
+ x="396.40216"
+ y="111.19749"
+ id="use526"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-2"
+ x="399.07748"
+ y="111.19749"
+ id="use528"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g530">
+ <use
+ xlink:href="#glyph2-9"
+ x="405.20972"
+ y="111.19749"
+ id="use532"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="411.35199"
+ y="111.19749"
+ id="use534"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-27"
+ x="413.94717"
+ y="111.19749"
+ id="use536"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-28"
+ x="419.66858"
+ y="111.19749"
+ id="use538"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-29"
+ x="425.39001"
+ y="111.19749"
+ id="use540"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="427.84491"
+ y="111.19749"
+ id="use542"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g544">
+ <use
+ xlink:href="#glyph2-30"
+ x="430.43005"
+ y="111.19749"
+ id="use546"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-31"
+ x="436.15149"
+ y="111.19749"
+ id="use548"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-27"
+ x="441.87289"
+ y="111.19749"
+ id="use550"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g552">
+ <use
+ xlink:href="#glyph2-32"
+ x="447.60434"
+ y="111.19749"
+ id="use554"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g556">
+ <use
+ xlink:href="#glyph2-27"
+ x="455.83075"
+ y="111.19749"
+ id="use558"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-32"
+ x="461.55219"
+ y="111.19749"
+ id="use560"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-33"
+ x="467.27359"
+ y="111.19749"
+ id="use562"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g564">
+ <use
+ xlink:href="#glyph2-34"
+ x="469.92889"
+ y="111.19749"
+ id="use566"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-30"
+ x="475.65033"
+ y="111.19749"
+ id="use568"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g570">
+ <use
+ xlink:href="#glyph2-33"
+ x="481.38177"
+ y="111.19749"
+ id="use572"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g574">
+ <use
+ xlink:href="#glyph2-31"
+ x="484.03705"
+ y="111.19749"
+ id="use576"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-28"
+ x="489.75848"
+ y="111.19749"
+ id="use578"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g580">
+ <use
+ xlink:href="#glyph2-25"
+ x="502.9949"
+ y="111.19749"
+ id="use582"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g584">
+ <use
+ xlink:href="#glyph2-10"
+ x="509.33755"
+ y="111.19749"
+ id="use586"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-10"
+ x="514.10706"
+ y="111.19749"
+ id="use588"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="518.87659"
+ y="111.19749"
+ id="use590"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-15"
+ x="524.4978"
+ y="111.19749"
+ id="use592"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-13"
+ x="530.63007"
+ y="111.19749"
+ id="use594"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="534.16711"
+ y="111.19749"
+ id="use596"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-12"
+ x="539.78833"
+ y="111.19749"
+ id="use598"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g600">
+ <use
+ xlink:href="#glyph2-21"
+ x="57.997555"
+ y="126.22749"
+ id="use602"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-8"
+ x="65.302132"
+ y="126.22749"
+ id="use604"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-13"
+ x="70.873253"
+ y="126.22749"
+ id="use606"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-8"
+ x="74.410316"
+ y="126.22749"
+ id="use608"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="79.98143"
+ y="126.22749"
+ id="use610"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-3"
+ x="82.576614"
+ y="126.22749"
+ id="use612"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="86.664772"
+ y="126.22749"
+ id="use614"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g616">
+ <use
+ xlink:href="#glyph2-13"
+ x="92.296013"
+ y="126.22749"
+ id="use618"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="95.833069"
+ y="126.22749"
+ id="use620"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-9"
+ x="101.45429"
+ y="126.22749"
+ id="use622"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-13"
+ x="107.59655"
+ y="126.22749"
+ id="use624"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-6"
+ x="111.13361"
+ y="126.22749"
+ id="use626"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-17"
+ x="113.65865"
+ y="126.22749"
+ id="use628"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-9"
+ x="119.71073"
+ y="126.22749"
+ id="use630"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="125.85299"
+ y="126.22749"
+ id="use632"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-10"
+ x="128.44817"
+ y="126.22749"
+ id="use634"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-8"
+ x="133.21768"
+ y="126.22749"
+ id="use636"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-9"
+ x="138.7888"
+ y="126.22749"
+ id="use638"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="144.93106"
+ y="126.22749"
+ id="use640"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g642">
+ <use
+ xlink:href="#glyph2-17"
+ x="147.51622"
+ y="126.22749"
+ id="use644"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-4"
+ x="153.56831"
+ y="126.22749"
+ id="use646"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="158.57831"
+ y="126.22749"
+ id="use648"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g650">
+ <use
+ xlink:href="#glyph2-3"
+ x="164.20955"
+ y="126.22749"
+ id="use652"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-13"
+ x="168.2977"
+ y="126.22749"
+ id="use654"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-2"
+ x="171.83476"
+ y="126.22749"
+ id="use656"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-3"
+ x="177.97702"
+ y="126.22749"
+ id="use658"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-9"
+ x="182.06519"
+ y="126.22749"
+ id="use660"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="188.20744"
+ y="126.22749"
+ id="use662"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g664">
+ <use
+ xlink:href="#glyph2-13"
+ x="190.7926"
+ y="126.22749"
+ id="use666"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-18"
+ x="194.32967"
+ y="126.22749"
+ id="use668"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="200.47192"
+ y="126.22749"
+ id="use670"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g672">
+ <use
+ xlink:href="#glyph2-11"
+ x="206.10316"
+ y="126.22749"
+ id="use674"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g676">
+ <use
+ xlink:href="#glyph2-15"
+ x="208.68832"
+ y="126.22749"
+ id="use678"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-3"
+ x="214.82056"
+ y="126.22749"
+ id="use680"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="218.90872"
+ y="126.22749"
+ id="use682"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g684">
+ <use
+ xlink:href="#glyph2-14"
+ x="224.53996"
+ y="126.22749"
+ id="use686"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-2"
+ x="229.3195"
+ y="126.22749"
+ id="use688"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g690">
+ <use
+ xlink:href="#glyph2-24"
+ x="235.45174"
+ y="126.22749"
+ id="use692"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-15"
+ x="244.77034"
+ y="126.22749"
+ id="use694"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-13"
+ x="250.90257"
+ y="126.22749"
+ id="use696"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-6"
+ x="254.43964"
+ y="126.22749"
+ id="use698"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-17"
+ x="256.96469"
+ y="126.22749"
+ id="use700"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g702">
+ <use
+ xlink:href="#glyph2-9"
+ x="263.02676"
+ y="126.22749"
+ id="use704"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g706">
+ <use
+ xlink:href="#glyph2-11"
+ x="269.15903"
+ y="126.22749"
+ id="use708"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-17"
+ x="271.75418"
+ y="126.22749"
+ id="use710"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-19"
+ x="277.80627"
+ y="126.22749"
+ id="use712"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g714">
+ <use
+ xlink:href="#glyph2-6"
+ x="57.997555"
+ y="136.24748"
+ id="use716"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-9"
+ x="60.522594"
+ y="136.24748"
+ id="use718"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-9"
+ x="66.664856"
+ y="136.24748"
+ id="use720"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-17"
+ x="72.807114"
+ y="136.24748"
+ id="use722"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-10"
+ x="78.859192"
+ y="136.24748"
+ id="use724"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="83.628716"
+ y="136.24748"
+ id="use726"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-9"
+ x="89.249931"
+ y="136.24748"
+ id="use728"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-10"
+ x="95.392189"
+ y="136.24748"
+ id="use730"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="100.16171"
+ y="136.24748"
+ id="use732"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-20"
+ x="105.78293"
+ y="136.24748"
+ id="use734"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#45a3e3;fill-opacity:1"
+ id="g736">
+ <use
+ xlink:href="#glyph2-21"
+ x="300.0014"
+ y="126.22749"
+ id="use738"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-6"
+ x="307.30597"
+ y="126.22749"
+ id="use740"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-22"
+ x="309.83102"
+ y="126.22749"
+ id="use742"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-6"
+ x="315.31195"
+ y="126.22749"
+ id="use744"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#45a3e3;fill-opacity:1"
+ id="g746">
+ <use
+ xlink:href="#glyph2-13"
+ x="317.84702"
+ y="126.22749"
+ id="use748"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-8"
+ x="321.38406"
+ y="126.22749"
+ id="use750"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-7"
+ x="326.9552"
+ y="126.22749"
+ id="use752"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="329.48022"
+ y="126.22749"
+ id="use754"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-23"
+ x="332.07541"
+ y="126.22749"
+ id="use756"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#45a3e3;fill-opacity:1"
+ id="g758">
+ <use
+ xlink:href="#glyph2-3"
+ x="337.23572"
+ y="126.22749"
+ id="use760"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="341.32388"
+ y="126.22749"
+ id="use762"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#45a3e3;fill-opacity:1"
+ id="g764">
+ <use
+ xlink:href="#glyph2-5"
+ x="346.95511"
+ y="126.22749"
+ id="use766"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-12"
+ x="352.57632"
+ y="126.22749"
+ id="use768"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-17"
+ x="358.70859"
+ y="126.22749"
+ id="use770"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-24"
+ x="364.76065"
+ y="126.22749"
+ id="use772"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="374.07925"
+ y="126.22749"
+ id="use774"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-25"
+ x="376.67444"
+ y="126.22749"
+ id="use776"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-10"
+ x="383.00708"
+ y="126.22749"
+ id="use778"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-13"
+ x="387.77658"
+ y="126.22749"
+ id="use780"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g782">
+ <use
+ xlink:href="#glyph2-26"
+ x="396.40216"
+ y="126.22749"
+ id="use784"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-2"
+ x="399.07748"
+ y="126.22749"
+ id="use786"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g788">
+ <use
+ xlink:href="#glyph2-9"
+ x="405.20972"
+ y="126.22749"
+ id="use790"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="411.35199"
+ y="126.22749"
+ id="use792"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-27"
+ x="413.94717"
+ y="126.22749"
+ id="use794"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-28"
+ x="419.66858"
+ y="126.22749"
+ id="use796"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-29"
+ x="425.39001"
+ y="126.22749"
+ id="use798"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="427.84491"
+ y="126.22749"
+ id="use800"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g802">
+ <use
+ xlink:href="#glyph2-30"
+ x="430.43005"
+ y="126.22749"
+ id="use804"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-31"
+ x="436.15149"
+ y="126.22749"
+ id="use806"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-27"
+ x="441.87289"
+ y="126.22749"
+ id="use808"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g810">
+ <use
+ xlink:href="#glyph2-32"
+ x="447.60434"
+ y="126.22749"
+ id="use812"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g814">
+ <use
+ xlink:href="#glyph2-27"
+ x="455.83075"
+ y="126.22749"
+ id="use816"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-35"
+ x="461.55219"
+ y="126.22749"
+ id="use818"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-33"
+ x="467.27359"
+ y="126.22749"
+ id="use820"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g822">
+ <use
+ xlink:href="#glyph2-27"
+ x="469.92889"
+ y="126.22749"
+ id="use824"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-30"
+ x="475.65033"
+ y="126.22749"
+ id="use826"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g828">
+ <use
+ xlink:href="#glyph2-33"
+ x="481.38177"
+ y="126.22749"
+ id="use830"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g832">
+ <use
+ xlink:href="#glyph2-28"
+ x="484.03705"
+ y="126.22749"
+ id="use834"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-31"
+ x="489.75848"
+ y="126.22749"
+ id="use836"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g838">
+ <use
+ xlink:href="#glyph2-25"
+ x="502.9949"
+ y="126.22749"
+ id="use840"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g842">
+ <use
+ xlink:href="#glyph2-10"
+ x="509.33755"
+ y="126.22749"
+ id="use844"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-10"
+ x="514.10706"
+ y="126.22749"
+ id="use846"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="518.87659"
+ y="126.22749"
+ id="use848"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-15"
+ x="524.4978"
+ y="126.22749"
+ id="use850"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-13"
+ x="530.63007"
+ y="126.22749"
+ id="use852"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="534.16711"
+ y="126.22749"
+ id="use854"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-12"
+ x="539.78833"
+ y="126.22749"
+ id="use856"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g858">
+ <use
+ xlink:href="#glyph2-36"
+ x="57.997555"
+ y="151.27748"
+ id="use860"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-9"
+ x="63.568676"
+ y="151.27748"
+ id="use862"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-14"
+ x="69.710938"
+ y="151.27748"
+ id="use864"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-2"
+ x="74.490471"
+ y="151.27748"
+ id="use866"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-3"
+ x="80.632736"
+ y="151.27748"
+ id="use868"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="84.720894"
+ y="151.27748"
+ id="use870"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="90.34211"
+ y="151.27748"
+ id="use872"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-8"
+ x="92.937294"
+ y="151.27748"
+ id="use874"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-9"
+ x="98.508408"
+ y="151.27748"
+ id="use876"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-17"
+ x="104.65067"
+ y="151.27748"
+ id="use878"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-9"
+ x="110.70275"
+ y="151.27748"
+ id="use880"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-37"
+ x="116.84501"
+ y="151.27748"
+ id="use882"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-24"
+ x="121.88507"
+ y="151.27748"
+ id="use884"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-6"
+ x="131.20367"
+ y="151.27748"
+ id="use886"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-13"
+ x="133.72871"
+ y="151.27748"
+ id="use888"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-37"
+ x="137.26576"
+ y="151.27748"
+ id="use890"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="142.30583"
+ y="151.27748"
+ id="use892"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-38"
+ x="144.901"
+ y="151.27748"
+ id="use894"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-18"
+ x="152.68654"
+ y="151.27748"
+ id="use896"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="158.82881"
+ y="151.27748"
+ id="use898"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g900">
+ <use
+ xlink:href="#glyph2-9"
+ x="164.46005"
+ y="151.27748"
+ id="use902"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g904">
+ <use
+ xlink:href="#glyph2-11"
+ x="170.59229"
+ y="151.27748"
+ id="use906"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-14"
+ x="173.18747"
+ y="151.27748"
+ id="use908"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="177.96701"
+ y="151.27748"
+ id="use910"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="183.58823"
+ y="151.27748"
+ id="use912"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g914">
+ <use
+ xlink:href="#glyph2-39"
+ x="189.21947"
+ y="151.27748"
+ id="use916"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-6"
+ x="194.46994"
+ y="151.27748"
+ id="use918"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-9"
+ x="196.99498"
+ y="151.27748"
+ id="use920"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-22"
+ x="203.13724"
+ y="151.27748"
+ id="use922"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="208.61818"
+ y="151.27748"
+ id="use924"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-17"
+ x="211.21336"
+ y="151.27748"
+ id="use926"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-3"
+ x="217.26544"
+ y="151.27748"
+ id="use928"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g930">
+ <use
+ xlink:href="#glyph2-10"
+ x="57.997555"
+ y="161.29749"
+ id="use932"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-17"
+ x="62.767075"
+ y="161.29749"
+ id="use934"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-24"
+ x="68.819153"
+ y="161.29749"
+ id="use936"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-24"
+ x="78.137756"
+ y="161.29749"
+ id="use938"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-2"
+ x="87.456352"
+ y="161.29749"
+ id="use940"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-9"
+ x="93.59861"
+ y="161.29749"
+ id="use942"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-6"
+ x="99.740868"
+ y="161.29749"
+ id="use944"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-10"
+ x="102.26591"
+ y="161.29749"
+ id="use946"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-8"
+ x="107.03543"
+ y="161.29749"
+ id="use948"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-13"
+ x="112.60655"
+ y="161.29749"
+ id="use950"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-6"
+ x="116.14361"
+ y="161.29749"
+ id="use952"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-9"
+ x="118.66865"
+ y="161.29749"
+ id="use954"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-22"
+ x="124.81091"
+ y="161.29749"
+ id="use956"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="130.29185"
+ y="161.29749"
+ id="use958"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-14"
+ x="132.88702"
+ y="161.29749"
+ id="use960"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="137.66656"
+ y="161.29749"
+ id="use962"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-9"
+ x="143.28778"
+ y="161.29749"
+ id="use964"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-14"
+ x="149.43004"
+ y="161.29749"
+ id="use966"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-6"
+ x="154.20958"
+ y="161.29749"
+ id="use968"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-13"
+ x="156.73462"
+ y="161.29749"
+ id="use970"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-6"
+ x="160.27168"
+ y="161.29749"
+ id="use972"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-4"
+ x="162.79672"
+ y="161.29749"
+ id="use974"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g976">
+ <use
+ xlink:href="#glyph2-5"
+ x="167.81674"
+ y="161.29749"
+ id="use978"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="173.43796"
+ y="161.29749"
+ id="use980"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-18"
+ x="176.03314"
+ y="161.29749"
+ id="use982"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g984">
+ <use
+ xlink:href="#glyph2-5"
+ x="182.16539"
+ y="161.29749"
+ id="use986"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g988">
+ <use
+ xlink:href="#glyph2-8"
+ x="187.79662"
+ y="161.29749"
+ id="use990"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-7"
+ x="193.36774"
+ y="161.29749"
+ id="use992"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-13"
+ x="195.89278"
+ y="161.29749"
+ id="use994"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-18"
+ x="199.42984"
+ y="161.29749"
+ id="use996"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-40"
+ x="205.5721"
+ y="161.29749"
+ id="use998"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-3"
+ x="208.78851"
+ y="161.29749"
+ id="use1000"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="212.87668"
+ y="161.29749"
+ id="use1002"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1004">
+ <use
+ xlink:href="#glyph2-7"
+ x="218.50792"
+ y="161.29749"
+ id="use1006"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-8"
+ x="221.03296"
+ y="161.29749"
+ id="use1008"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-13"
+ x="226.60408"
+ y="161.29749"
+ id="use1010"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="230.14114"
+ y="161.29749"
+ id="use1012"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-12"
+ x="235.76236"
+ y="161.29749"
+ id="use1014"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1016">
+ <use
+ xlink:href="#glyph2-6"
+ x="57.997555"
+ y="171.31749"
+ id="use1018"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-9"
+ x="60.522594"
+ y="171.31749"
+ id="use1020"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-19"
+ x="66.664856"
+ y="171.31749"
+ id="use1022"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-17"
+ x="70.051613"
+ y="171.31749"
+ id="use1024"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-3"
+ x="76.103691"
+ y="171.31749"
+ id="use1026"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-24"
+ x="80.191856"
+ y="171.31749"
+ id="use1028"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-8"
+ x="89.510452"
+ y="171.31749"
+ id="use1030"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-13"
+ x="95.081573"
+ y="171.31749"
+ id="use1032"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-6"
+ x="98.618629"
+ y="171.31749"
+ id="use1034"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-17"
+ x="101.14367"
+ y="171.31749"
+ id="use1036"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-9"
+ x="107.19575"
+ y="171.31749"
+ id="use1038"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-20"
+ x="113.33801"
+ y="171.31749"
+ id="use1040"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#45a3e3;fill-opacity:1"
+ id="g1042">
+ <use
+ xlink:href="#glyph2-21"
+ x="300.0014"
+ y="151.27748"
+ id="use1044"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-6"
+ x="307.30597"
+ y="151.27748"
+ id="use1046"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-22"
+ x="309.83102"
+ y="151.27748"
+ id="use1048"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-6"
+ x="315.31195"
+ y="151.27748"
+ id="use1050"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#45a3e3;fill-opacity:1"
+ id="g1052">
+ <use
+ xlink:href="#glyph2-13"
+ x="317.84702"
+ y="151.27748"
+ id="use1054"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-8"
+ x="321.38406"
+ y="151.27748"
+ id="use1056"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-7"
+ x="326.9552"
+ y="151.27748"
+ id="use1058"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="329.48022"
+ y="151.27748"
+ id="use1060"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-23"
+ x="332.07541"
+ y="151.27748"
+ id="use1062"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#45a3e3;fill-opacity:1"
+ id="g1064">
+ <use
+ xlink:href="#glyph2-3"
+ x="337.23572"
+ y="151.27748"
+ id="use1066"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="341.32388"
+ y="151.27748"
+ id="use1068"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#45a3e3;fill-opacity:1"
+ id="g1070">
+ <use
+ xlink:href="#glyph2-5"
+ x="346.95511"
+ y="151.27748"
+ id="use1072"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-12"
+ x="352.57632"
+ y="151.27748"
+ id="use1074"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-17"
+ x="358.70859"
+ y="151.27748"
+ id="use1076"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-24"
+ x="364.76065"
+ y="151.27748"
+ id="use1078"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="374.07925"
+ y="151.27748"
+ id="use1080"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-25"
+ x="376.67444"
+ y="151.27748"
+ id="use1082"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-10"
+ x="383.00708"
+ y="151.27748"
+ id="use1084"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-13"
+ x="387.77658"
+ y="151.27748"
+ id="use1086"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1088">
+ <use
+ xlink:href="#glyph2-26"
+ x="396.40216"
+ y="151.27748"
+ id="use1090"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-2"
+ x="399.07748"
+ y="151.27748"
+ id="use1092"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1094">
+ <use
+ xlink:href="#glyph2-9"
+ x="405.20972"
+ y="151.27748"
+ id="use1096"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="411.35199"
+ y="151.27748"
+ id="use1098"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-27"
+ x="413.94717"
+ y="151.27748"
+ id="use1100"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-28"
+ x="419.66858"
+ y="151.27748"
+ id="use1102"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-29"
+ x="425.39001"
+ y="151.27748"
+ id="use1104"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="427.84491"
+ y="151.27748"
+ id="use1106"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1108">
+ <use
+ xlink:href="#glyph2-30"
+ x="430.43005"
+ y="151.27748"
+ id="use1110"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-31"
+ x="436.15149"
+ y="151.27748"
+ id="use1112"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-27"
+ x="441.87289"
+ y="151.27748"
+ id="use1114"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1116">
+ <use
+ xlink:href="#glyph2-32"
+ x="447.60434"
+ y="151.27748"
+ id="use1118"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1120">
+ <use
+ xlink:href="#glyph2-27"
+ x="455.83075"
+ y="151.27748"
+ id="use1122"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-41"
+ x="461.55219"
+ y="151.27748"
+ id="use1124"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-33"
+ x="467.27359"
+ y="151.27748"
+ id="use1126"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1128">
+ <use
+ xlink:href="#glyph2-30"
+ x="469.92889"
+ y="151.27748"
+ id="use1130"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-27"
+ x="475.65033"
+ y="151.27748"
+ id="use1132"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1134">
+ <use
+ xlink:href="#glyph2-33"
+ x="481.38177"
+ y="151.27748"
+ id="use1136"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1138">
+ <use
+ xlink:href="#glyph2-30"
+ x="484.03705"
+ y="151.27748"
+ id="use1140"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-30"
+ x="489.75848"
+ y="151.27748"
+ id="use1142"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1144">
+ <use
+ xlink:href="#glyph2-42"
+ x="502.9949"
+ y="151.27748"
+ id="use1146"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="509.02695"
+ y="151.27748"
+ id="use1148"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1150">
+ <use
+ xlink:href="#glyph2-9"
+ x="514.6582"
+ y="151.27748"
+ id="use1152"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1154">
+ <use
+ xlink:href="#glyph2-12"
+ x="520.79041"
+ y="151.27748"
+ id="use1156"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-6"
+ x="526.92267"
+ y="151.27748"
+ id="use1158"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-9"
+ x="529.44769"
+ y="151.27748"
+ id="use1160"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-22"
+ x="535.58997"
+ y="151.27748"
+ id="use1162"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1164">
+ <use
+ xlink:href="#glyph2-43"
+ x="57.997555"
+ y="186.34749"
+ id="use1166"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-24"
+ x="60.783115"
+ y="186.34749"
+ id="use1168"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-15"
+ x="70.101715"
+ y="186.34749"
+ id="use1170"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-3"
+ x="76.233955"
+ y="186.34749"
+ id="use1172"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-17"
+ x="80.322113"
+ y="186.34749"
+ id="use1174"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-4"
+ x="86.374191"
+ y="186.34749"
+ id="use1176"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="91.384193"
+ y="186.34749"
+ id="use1178"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1180">
+ <use
+ xlink:href="#glyph2-11"
+ x="97.015434"
+ y="186.34749"
+ id="use1182"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1184">
+ <use
+ xlink:href="#glyph2-13"
+ x="99.600594"
+ y="186.34749"
+ id="use1186"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1188">
+ <use
+ xlink:href="#glyph2-18"
+ x="103.14767"
+ y="186.34749"
+ id="use1190"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1192">
+ <use
+ xlink:href="#glyph2-5"
+ x="109.27991"
+ y="186.34749"
+ id="use1194"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1196">
+ <use
+ xlink:href="#glyph2-11"
+ x="114.91115"
+ y="186.34749"
+ id="use1198"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1200">
+ <use
+ xlink:href="#glyph2-24"
+ x="117.49631"
+ y="186.34749"
+ id="use1202"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="126.81491"
+ y="186.34749"
+ id="use1204"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1206">
+ <use
+ xlink:href="#glyph2-9"
+ x="132.44615"
+ y="186.34749"
+ id="use1208"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-13"
+ x="138.58841"
+ y="186.34749"
+ id="use1210"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-8"
+ x="142.12547"
+ y="186.34749"
+ id="use1212"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-7"
+ x="147.69658"
+ y="186.34749"
+ id="use1214"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="150.22162"
+ y="186.34749"
+ id="use1216"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-8"
+ x="152.8168"
+ y="186.34749"
+ id="use1218"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-9"
+ x="158.38792"
+ y="186.34749"
+ id="use1220"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1222">
+ <use
+ xlink:href="#glyph2-12"
+ x="164.52017"
+ y="186.34749"
+ id="use1224"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="170.6524"
+ y="186.34749"
+ id="use1226"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-15"
+ x="173.24759"
+ y="186.34749"
+ id="use1228"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-18"
+ x="179.37982"
+ y="186.34749"
+ id="use1230"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1232">
+ <use
+ xlink:href="#glyph2-37"
+ x="185.51207"
+ y="186.34749"
+ id="use1234"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1236">
+ <use
+ xlink:href="#glyph2-14"
+ x="190.56215"
+ y="186.34749"
+ id="use1238"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-6"
+ x="195.34167"
+ y="186.34749"
+ id="use1240"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-10"
+ x="197.86671"
+ y="186.34749"
+ id="use1242"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-8"
+ x="202.63625"
+ y="186.34749"
+ id="use1244"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-7"
+ x="208.20737"
+ y="186.34749"
+ id="use1246"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="210.73241"
+ y="186.34749"
+ id="use1248"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-18"
+ x="213.32758"
+ y="186.34749"
+ id="use1250"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1252">
+ <use
+ xlink:href="#glyph2-5"
+ x="219.45982"
+ y="186.34749"
+ id="use1254"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1256">
+ <use
+ xlink:href="#glyph2-8"
+ x="225.09106"
+ y="186.34749"
+ id="use1258"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-7"
+ x="230.66217"
+ y="186.34749"
+ id="use1260"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-13"
+ x="233.18723"
+ y="186.34749"
+ id="use1262"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-18"
+ x="236.72427"
+ y="186.34749"
+ id="use1264"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="242.86653"
+ y="186.34749"
+ id="use1266"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-17"
+ x="245.46172"
+ y="186.34749"
+ id="use1268"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-19"
+ x="251.51379"
+ y="186.34749"
+ id="use1270"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1272">
+ <use
+ xlink:href="#glyph2-11"
+ x="254.89053"
+ y="186.34749"
+ id="use1274"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-10"
+ x="257.48572"
+ y="186.34749"
+ id="use1276"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-6"
+ x="262.25525"
+ y="186.34749"
+ id="use1278"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-13"
+ x="264.78027"
+ y="186.34749"
+ id="use1280"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-6"
+ x="268.31732"
+ y="186.34749"
+ id="use1282"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1284">
+ <use
+ xlink:href="#glyph2-44"
+ x="270.85239"
+ y="186.34749"
+ id="use1286"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1288">
+ <use
+ xlink:href="#glyph2-5"
+ x="275.52173"
+ y="186.34749"
+ id="use1290"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1292">
+ <use
+ xlink:href="#glyph2-9"
+ x="281.15295"
+ y="186.34749"
+ id="use1294"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-14"
+ x="287.29523"
+ y="186.34749"
+ id="use1296"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-20"
+ x="292.07474"
+ y="186.34749"
+ id="use1298"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#45a3e3;fill-opacity:1"
+ id="g1300">
+ <use
+ xlink:href="#glyph2-21"
+ x="300.0014"
+ y="186.34749"
+ id="use1302"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-6"
+ x="307.30597"
+ y="186.34749"
+ id="use1304"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-22"
+ x="309.83102"
+ y="186.34749"
+ id="use1306"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-6"
+ x="315.31195"
+ y="186.34749"
+ id="use1308"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#45a3e3;fill-opacity:1"
+ id="g1310">
+ <use
+ xlink:href="#glyph2-13"
+ x="317.84702"
+ y="186.34749"
+ id="use1312"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-8"
+ x="321.38406"
+ y="186.34749"
+ id="use1314"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-7"
+ x="326.9552"
+ y="186.34749"
+ id="use1316"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="329.48022"
+ y="186.34749"
+ id="use1318"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-23"
+ x="332.07541"
+ y="186.34749"
+ id="use1320"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#45a3e3;fill-opacity:1"
+ id="g1322">
+ <use
+ xlink:href="#glyph2-3"
+ x="337.23572"
+ y="186.34749"
+ id="use1324"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="341.32388"
+ y="186.34749"
+ id="use1326"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#45a3e3;fill-opacity:1"
+ id="g1328">
+ <use
+ xlink:href="#glyph2-5"
+ x="346.95511"
+ y="186.34749"
+ id="use1330"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-12"
+ x="352.57632"
+ y="186.34749"
+ id="use1332"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-17"
+ x="358.70859"
+ y="186.34749"
+ id="use1334"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-24"
+ x="364.76065"
+ y="186.34749"
+ id="use1336"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="374.07925"
+ y="186.34749"
+ id="use1338"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-25"
+ x="376.67444"
+ y="186.34749"
+ id="use1340"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-10"
+ x="383.00708"
+ y="186.34749"
+ id="use1342"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-13"
+ x="387.77658"
+ y="186.34749"
+ id="use1344"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1346">
+ <use
+ xlink:href="#glyph2-26"
+ x="396.40216"
+ y="186.34749"
+ id="use1348"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-2"
+ x="399.07748"
+ y="186.34749"
+ id="use1350"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1352">
+ <use
+ xlink:href="#glyph2-9"
+ x="405.20972"
+ y="186.34749"
+ id="use1354"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="411.35199"
+ y="186.34749"
+ id="use1356"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-27"
+ x="413.94717"
+ y="186.34749"
+ id="use1358"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-35"
+ x="419.66858"
+ y="186.34749"
+ id="use1360"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-29"
+ x="425.39001"
+ y="186.34749"
+ id="use1362"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-11"
+ x="427.84491"
+ y="186.34749"
+ id="use1364"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1366">
+ <use
+ xlink:href="#glyph2-30"
+ x="430.43005"
+ y="186.34749"
+ id="use1368"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-31"
+ x="436.15149"
+ y="186.34749"
+ id="use1370"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-27"
+ x="441.87289"
+ y="186.34749"
+ id="use1372"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1374">
+ <use
+ xlink:href="#glyph2-32"
+ x="447.60434"
+ y="186.34749"
+ id="use1376"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1378">
+ <use
+ xlink:href="#glyph2-31"
+ x="455.83075"
+ y="186.34749"
+ id="use1380"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-45"
+ x="461.55219"
+ y="186.34749"
+ id="use1382"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-33"
+ x="467.27359"
+ y="186.34749"
+ id="use1384"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1386">
+ <use
+ xlink:href="#glyph2-27"
+ x="469.92889"
+ y="186.34749"
+ id="use1388"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-28"
+ x="475.65033"
+ y="186.34749"
+ id="use1390"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1392">
+ <use
+ xlink:href="#glyph2-33"
+ x="481.38177"
+ y="186.34749"
+ id="use1394"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1396">
+ <use
+ xlink:href="#glyph2-34"
+ x="484.03705"
+ y="186.34749"
+ id="use1398"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-41"
+ x="489.75848"
+ y="186.34749"
+ id="use1400"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1402">
+ <use
+ xlink:href="#glyph2-46"
+ x="502.9949"
+ y="186.34749"
+ id="use1404"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#000000;fill-opacity:1"
+ id="g1406">
+ <use
+ xlink:href="#glyph2-17"
+ x="509.3175"
+ y="186.34749"
+ id="use1408"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-9"
+ x="515.36957"
+ y="186.34749"
+ id="use1410"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-47"
+ x="521.51184"
+ y="186.34749"
+ id="use1412"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="524.03693"
+ y="186.34749"
+ id="use1414"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-10"
+ x="529.65814"
+ y="186.34749"
+ id="use1416"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-13"
+ x="534.42761"
+ y="186.34749"
+ id="use1418"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-2"
+ x="537.96472"
+ y="186.34749"
+ id="use1420"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-3"
+ x="544.10693"
+ y="186.34749"
+ id="use1422"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="548.19513"
+ y="186.34749"
+ id="use1424"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#45a3e3;fill-opacity:1"
+ id="g1426">
+ <use
+ xlink:href="#glyph2-6"
+ x="251.72797"
+ y="203.88248"
+ id="use1428"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-24"
+ x="254.25301"
+ y="203.88248"
+ id="use1430"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-15"
+ x="263.57159"
+ y="203.88248"
+ id="use1432"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-7"
+ x="269.70386"
+ y="203.88248"
+ id="use1434"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-6"
+ x="272.22888"
+ y="203.88248"
+ id="use1436"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-10"
+ x="274.75394"
+ y="203.88248"
+ id="use1438"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-8"
+ x="279.52344"
+ y="203.88248"
+ id="use1440"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-13"
+ x="285.09457"
+ y="203.88248"
+ id="use1442"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-6"
+ x="288.63162"
+ y="203.88248"
+ id="use1444"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-17"
+ x="291.15668"
+ y="203.88248"
+ id="use1446"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-9"
+ x="297.20874"
+ y="203.88248"
+ id="use1448"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-14"
+ x="303.35101"
+ y="203.88248"
+ id="use1450"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#303030;fill-opacity:1"
+ id="g1452">
+ <use
+ xlink:href="#glyph2-48"
+ x="311.32608"
+ y="203.88248"
+ id="use1454"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#45a3e3;fill-opacity:1"
+ id="g1456">
+ <use
+ xlink:href="#glyph2-6"
+ x="318.72629"
+ y="203.88248"
+ id="use1458"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-9"
+ x="321.25131"
+ y="203.88248"
+ id="use1460"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-13"
+ x="327.39359"
+ y="203.88248"
+ id="use1462"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="330.93063"
+ y="203.88248"
+ id="use1464"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-3"
+ x="336.55188"
+ y="203.88248"
+ id="use1466"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#45a3e3;fill-opacity:1"
+ id="g1468">
+ <use
+ xlink:href="#glyph2-5"
+ x="340.65005"
+ y="203.88248"
+ id="use1470"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-14"
+ x="346.27127"
+ y="203.88248"
+ id="use1472"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-13"
+ x="351.05081"
+ y="203.88248"
+ id="use1474"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-14"
+ x="354.58786"
+ y="203.88248"
+ id="use1476"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#303030;fill-opacity:1"
+ id="g1478">
+ <use
+ xlink:href="#glyph2-48"
+ x="362.522"
+ y="203.88248"
+ id="use1480"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#45a3e3;fill-opacity:1"
+ id="g1482">
+ <use
+ xlink:href="#glyph2-5"
+ x="369.92221"
+ y="203.88248"
+ id="use1484"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-12"
+ x="375.54343"
+ y="203.88248"
+ id="use1486"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-6"
+ x="381.67569"
+ y="203.88248"
+ id="use1488"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-13"
+ x="384.20071"
+ y="203.88248"
+ id="use1490"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-14"
+ x="387.73779"
+ y="203.88248"
+ id="use1492"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#303030;fill-opacity:1"
+ id="g1494">
+ <use
+ xlink:href="#glyph2-48"
+ x="395.67154"
+ y="203.88248"
+ id="use1496"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#45a3e3;fill-opacity:1"
+ id="g1498">
+ <use
+ xlink:href="#glyph2-15"
+ x="403.07169"
+ y="203.88248"
+ id="use1500"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-3"
+ x="409.20395"
+ y="203.88248"
+ id="use1502"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-17"
+ x="413.29211"
+ y="203.88248"
+ id="use1504"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-15"
+ x="419.34418"
+ y="203.88248"
+ id="use1506"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-17"
+ x="425.47641"
+ y="203.88248"
+ id="use1508"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-14"
+ x="431.5285"
+ y="203.88248"
+ id="use1510"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-8"
+ x="436.30804"
+ y="203.88248"
+ id="use1512"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-7"
+ x="441.87915"
+ y="203.88248"
+ id="use1514"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-14"
+ x="444.40421"
+ y="203.88248"
+ id="use1516"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#303030;fill-opacity:1"
+ id="g1518">
+ <use
+ xlink:href="#glyph2-48"
+ x="452.34714"
+ y="203.88248"
+ id="use1520"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#45a3e3;fill-opacity:1"
+ id="g1522">
+ <use
+ xlink:href="#glyph2-4"
+ x="459.74731"
+ y="203.88248"
+ id="use1524"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-17"
+ x="464.75732"
+ y="203.88248"
+ id="use1526"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-13"
+ x="470.80939"
+ y="203.88248"
+ id="use1528"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="474.34647"
+ y="203.88248"
+ id="use1530"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-14"
+ x="479.96768"
+ y="203.88248"
+ id="use1532"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#303030;fill-opacity:1"
+ id="g1534">
+ <use
+ xlink:href="#glyph2-48"
+ x="487.89728"
+ y="203.88248"
+ id="use1536"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#45a3e3;fill-opacity:1"
+ id="g1538">
+ <use
+ xlink:href="#glyph2-4"
+ x="495.29745"
+ y="203.88248"
+ id="use1540"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-6"
+ x="500.30746"
+ y="203.88248"
+ id="use1542"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-5"
+ x="502.83249"
+ y="203.88248"
+ id="use1544"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-38"
+ x="508.4537"
+ y="203.88248"
+ id="use1546"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-14"
+ x="516.23926"
+ y="203.88248"
+ id="use1548"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#303030;fill-opacity:1"
+ id="g1550">
+ <use
+ xlink:href="#glyph2-48"
+ x="524.18842"
+ y="203.88248"
+ id="use1552"
+ width="612"
+ height="792" />
+ </g>
+ <g
+ style="fill:#45a3e3;fill-opacity:1"
+ id="g1554">
+ <use
+ xlink:href="#glyph2-49"
+ x="531.58868"
+ y="203.88248"
+ id="use1556"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-8"
+ x="537.5105"
+ y="203.88248"
+ id="use1558"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-22"
+ x="543.0816"
+ y="203.88248"
+ id="use1560"
+ width="612"
+ height="792" />
+ <use
+ xlink:href="#glyph2-14"
+ x="548.56256"
+ y="203.88248"
+ id="use1562"
width="612"
height="792" />
Delta 5194 lines added, 5122 lines removed, 72-line increase