Initial commit
3
.gitattributes
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
*.pdf binary
|
||||
*.svg binary
|
||||
*.mat binary
|
64
.gitignore
vendored
Normal file
@ -0,0 +1,64 @@
|
||||
sim_data/
|
||||
|
||||
auto/
|
||||
*.tex
|
||||
*.blg
|
||||
*-blx.bib
|
||||
*.bbl
|
||||
*.aux
|
||||
*.bcf
|
||||
*.fdb_latexmk
|
||||
*.log
|
||||
*.out
|
||||
*.pyg
|
||||
*.toc
|
||||
*.fls
|
||||
*.synctex.gz
|
||||
.auctex-auto/
|
||||
_minted*
|
||||
|
||||
# Emacs
|
||||
auto/
|
||||
|
||||
# Simulink Real Time
|
||||
*bio.m
|
||||
*pt.m
|
||||
*ref.m
|
||||
*ri.m
|
||||
*xcp.m
|
||||
*.mldatx
|
||||
*.slxc
|
||||
*.xml
|
||||
*_slrt_rtw/
|
||||
|
||||
# data
|
||||
data/
|
||||
|
||||
# Windows default autosave extension
|
||||
*.asv
|
||||
|
||||
# OSX / *nix default autosave extension
|
||||
*.m~
|
||||
|
||||
# Compiled MEX binaries (all platforms)
|
||||
*.mex*
|
||||
|
||||
# Packaged app and toolbox files
|
||||
*.mlappinstall
|
||||
*.mltbx
|
||||
|
||||
# Generated helpsearch folders
|
||||
helpsearch*/
|
||||
|
||||
# Simulink code generation folders
|
||||
slprj/
|
||||
sccprj/
|
||||
|
||||
# Matlab code generation folders
|
||||
codegen/
|
||||
|
||||
# Simulink autosave extension
|
||||
*.autosave
|
||||
|
||||
# Octave session info
|
||||
octave-workspace
|
111
.latexmkrc
Normal file
@ -0,0 +1,111 @@
|
||||
#!/bin/env perl
|
||||
|
||||
# Shebang is only to get syntax highlighting right across GitLab, GitHub and IDEs.
|
||||
# This file is not meant to be run, but read by `latexmk`.
|
||||
|
||||
# ======================================================================================
|
||||
# Perl `latexmk` configuration file
|
||||
# ======================================================================================
|
||||
|
||||
# ======================================================================================
|
||||
# PDF Generation/Building/Compilation
|
||||
# ======================================================================================
|
||||
|
||||
@default_files=('test-bench-nano-hexapod.tex');
|
||||
|
||||
# PDF-generating modes are:
|
||||
# 1: pdflatex, as specified by $pdflatex variable (still largely in use)
|
||||
# 2: postscript conversion, as specified by the $ps2pdf variable (useless)
|
||||
# 3: dvi conversion, as specified by the $dvipdf variable (useless)
|
||||
# 4: lualatex, as specified by the $lualatex variable (best)
|
||||
# 5: xelatex, as specified by the $xelatex variable (second best)
|
||||
$pdf_mode = 1;
|
||||
|
||||
# Treat undefined references and citations as well as multiply defined references as
|
||||
# ERRORS instead of WARNINGS.
|
||||
# This is only checked in the *last* run, since naturally, there are undefined references
|
||||
# in initial runs.
|
||||
# This setting is potentially annoying when debugging/editing, but highly desirable
|
||||
# in the CI pipeline, where such a warning should result in a failed pipeline, since the
|
||||
# final document is incomplete/corrupted.
|
||||
#
|
||||
# However, I could not eradicate all warnings, so that `latexmk` currently fails with
|
||||
# this option enabled.
|
||||
# Specifically, `microtype` fails together with `fontawesome`/`fontawesome5`, see:
|
||||
# https://tex.stackexchange.com/a/547514/120853
|
||||
# The fix in that answer did not help.
|
||||
# Setting `verbose=silent` to mute `microtype` warnings did not work.
|
||||
# Switching between `fontawesome` and `fontawesome5` did not help.
|
||||
$warnings_as_errors = 0;
|
||||
|
||||
# Show used CPU time. Looks like: https://tex.stackexchange.com/a/312224/120853
|
||||
$show_time = 1;
|
||||
|
||||
# Default is 5; we seem to need more owed to the complexity of the document.
|
||||
# Actual documents probably don't need this many since they won't use all features,
|
||||
# plus won't be compiling from cold each time.
|
||||
$max_repeat=7;
|
||||
|
||||
# --shell-escape option (execution of code outside of latex) is required for the
|
||||
#'svg' package.
|
||||
# It converts raw SVG files to the PDF+PDF_TEX combo using InkScape.
|
||||
#
|
||||
# SyncTeX allows to jump between source (code) and output (PDF) in IDEs with support
|
||||
# (many have it). A value of `1` is enabled (gzipped), `-1` is enabled but uncompressed,
|
||||
# `0` is off.
|
||||
# Testing in VSCode w/ LaTeX Workshop only worked for the compressed version.
|
||||
# Adjust this as needed. Of course, only relevant for local use, no effect on a remote
|
||||
# CI pipeline (except for slower compilation, probably).
|
||||
#
|
||||
# %O and %S will forward Options and the Source file, respectively, given to latexmk.
|
||||
#
|
||||
# `set_tex_cmds` applies to all *latex commands (latex, xelatex, lualatex, ...), so
|
||||
# no need to specify these each. This allows to simply change `$pdf_mode` to get a
|
||||
# different engine. Check if this works with `latexmk --commands`.
|
||||
set_tex_cmds("--shell-escape -interaction=nonstopmode --synctex=1 %O %S");
|
||||
|
||||
# Use default pdf viewer
|
||||
$pdf_previewer = 'zathura';
|
||||
|
||||
# option 2 is same as 1 (run biber when necessary), but also deletes the
|
||||
# regeneratable bbl-file in a clenaup (`latexmk -c`). Do not use if original
|
||||
# bib file is not available!
|
||||
$bibtex_use = 2; # default: 1
|
||||
|
||||
# Change default `biber` call, help catch errors faster/clearer. See
|
||||
# https://web.archive.org/web/20200526101657/https://www.semipol.de/2018/06/12/latex-best-practices.html#database-entries
|
||||
$biber = "biber --validate-datamodel %O %S";
|
||||
|
||||
# Glossaries
|
||||
add_cus_dep('glo', 'gls', 0, 'run_makeglossaries');
|
||||
add_cus_dep('acn', 'acr', 0, 'run_makeglossaries');
|
||||
|
||||
sub run_makeglossaries {
|
||||
if ( $silent ) {
|
||||
system "makeglossaries -q -s '$_[0].ist' '$_[0]'";
|
||||
}
|
||||
else {
|
||||
system "makeglossaries -s '$_[0].ist' '$_[0]'";
|
||||
};
|
||||
}
|
||||
|
||||
# ======================================================================================
|
||||
# Auxiliary Files
|
||||
# ======================================================================================
|
||||
|
||||
# Let latexmk know about generated files, so they can be used to detect if a
|
||||
# rerun is required, or be deleted in a cleanup.
|
||||
# loe: List of Examples (KOMAScript)
|
||||
# lol: List of Listings (`listings` and `minted` packages)
|
||||
# run.xml: biber runs
|
||||
# glg: glossaries log
|
||||
# glstex: generated from glossaries-extra
|
||||
push @generated_exts, 'loe', 'lol', 'run.xml', 'glstex', 'glo', 'gls', 'glg', 'acn', 'acr', 'alg';
|
||||
|
||||
# Also delete the *.glstex files from package glossaries-extra. Problem is,
|
||||
# that that package generates files of the form "basename-digit.glstex" if
|
||||
# multiple glossaries are present. Latexmk looks for "basename.glstex" and so
|
||||
# does not find those. For that purpose, use wildcard.
|
||||
# Also delete files generated by gnuplot/pgfplots contour plots
|
||||
# (.dat, .script, .table).
|
||||
$clean_ext = "%R-*.glstex %R_contourtmp*.*";
|
BIN
figs/IMG_20210608_152917.jpg
Normal file
After Width: | Height: | Size: 644 KiB |
BIN
figs/IMG_20210608_154722.jpg
Normal file
After Width: | Height: | Size: 534 KiB |
BIN
figs/IMG_20210625_083801.jpg
Normal file
After Width: | Height: | Size: 469 KiB |
BIN
figs/LION_metrology_interferometers.pdf
Normal file
BIN
figs/LION_metrology_interferometers.png
Normal file
After Width: | Height: | Size: 25 KiB |
590
figs/LION_metrology_interferometers.svg
Normal file
@ -0,0 +1,590 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="59.948006mm"
|
||||
height="91.008125mm"
|
||||
viewBox="0 0 59.948006 91.008125"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
inkscape:version="1.1 (c4e8f9ed74, 2021-05-24)"
|
||||
sodipodi:docname="LION_metrology_interferometers.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:document-units="mm"
|
||||
showgrid="false"
|
||||
inkscape:snap-center="true"
|
||||
inkscape:snap-midpoints="true"
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:zoom="4"
|
||||
inkscape:cx="139.5"
|
||||
inkscape:cy="228.25"
|
||||
inkscape:window-width="2536"
|
||||
inkscape:window-height="1389"
|
||||
inkscape:window-x="12"
|
||||
inkscape:window-y="39"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1" />
|
||||
<defs
|
||||
id="defs2">
|
||||
<marker
|
||||
style="overflow:visible;"
|
||||
id="marker12109"
|
||||
refX="0.0"
|
||||
refY="0.0"
|
||||
orient="auto"
|
||||
inkscape:stockid="Arrow2Mend"
|
||||
inkscape:isstock="true">
|
||||
<path
|
||||
transform="scale(0.6) rotate(180) translate(0,0)"
|
||||
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
|
||||
style="fill-rule:evenodd;fill:context-stroke;stroke-width:0.62500000;stroke-linejoin:round;"
|
||||
id="path12107" />
|
||||
</marker>
|
||||
<marker
|
||||
style="overflow:visible;"
|
||||
id="marker11850"
|
||||
refX="0.0"
|
||||
refY="0.0"
|
||||
orient="auto"
|
||||
inkscape:stockid="Arrow2Mend"
|
||||
inkscape:isstock="true">
|
||||
<path
|
||||
transform="scale(0.6) rotate(180) translate(0,0)"
|
||||
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
|
||||
style="fill-rule:evenodd;fill:context-stroke;stroke-width:0.62500000;stroke-linejoin:round;"
|
||||
id="path11848" />
|
||||
</marker>
|
||||
<marker
|
||||
style="overflow:visible"
|
||||
id="Arrow2Mstart"
|
||||
refX="0.0"
|
||||
refY="0.0"
|
||||
orient="auto"
|
||||
inkscape:stockid="Arrow2Mstart"
|
||||
inkscape:isstock="true">
|
||||
<path
|
||||
transform="scale(0.6) translate(0,0)"
|
||||
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
|
||||
style="fill-rule:evenodd;fill:context-stroke;stroke-width:0.62500000;stroke-linejoin:round"
|
||||
id="path4372" />
|
||||
</marker>
|
||||
<marker
|
||||
style="overflow:visible"
|
||||
id="Arrow2Mend"
|
||||
refX="0"
|
||||
refY="0"
|
||||
orient="auto"
|
||||
inkscape:stockid="Arrow2Mend"
|
||||
inkscape:isstock="true">
|
||||
<path
|
||||
transform="scale(-0.6)"
|
||||
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
|
||||
style="fill:context-stroke;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
|
||||
id="path4375" />
|
||||
</marker>
|
||||
<marker
|
||||
style="overflow:visible"
|
||||
id="Arrow2Mend-5"
|
||||
refX="0"
|
||||
refY="0"
|
||||
orient="auto"
|
||||
inkscape:stockid="Arrow2Mend"
|
||||
inkscape:isstock="true">
|
||||
<path
|
||||
transform="scale(-0.6)"
|
||||
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
|
||||
style="fill:context-stroke;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
|
||||
id="path4375-9" />
|
||||
</marker>
|
||||
<marker
|
||||
style="overflow:visible"
|
||||
id="Arrow2Mstart-2"
|
||||
refX="0"
|
||||
refY="0"
|
||||
orient="auto"
|
||||
inkscape:stockid="Arrow2Mstart"
|
||||
inkscape:isstock="true">
|
||||
<path
|
||||
transform="scale(0.6)"
|
||||
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
|
||||
style="fill:context-stroke;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
|
||||
id="path4372-4" />
|
||||
</marker>
|
||||
<marker
|
||||
style="overflow:visible"
|
||||
id="marker12109-0"
|
||||
refX="0"
|
||||
refY="0"
|
||||
orient="auto"
|
||||
inkscape:stockid="Arrow2Mend"
|
||||
inkscape:isstock="true">
|
||||
<path
|
||||
transform="scale(-0.6)"
|
||||
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
|
||||
style="fill:context-stroke;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
|
||||
id="path12107-6" />
|
||||
</marker>
|
||||
<marker
|
||||
style="overflow:visible"
|
||||
id="Arrow2Mstart-9"
|
||||
refX="0"
|
||||
refY="0"
|
||||
orient="auto"
|
||||
inkscape:stockid="Arrow2Mstart"
|
||||
inkscape:isstock="true">
|
||||
<path
|
||||
transform="scale(0.6)"
|
||||
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
|
||||
style="fill:context-stroke;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
|
||||
id="path4372-9" />
|
||||
</marker>
|
||||
<marker
|
||||
style="overflow:visible"
|
||||
id="marker12109-08"
|
||||
refX="0"
|
||||
refY="0"
|
||||
orient="auto"
|
||||
inkscape:stockid="Arrow2Mend"
|
||||
inkscape:isstock="true">
|
||||
<path
|
||||
transform="scale(-0.6)"
|
||||
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
|
||||
style="fill:context-stroke;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
|
||||
id="path12107-1" />
|
||||
</marker>
|
||||
<marker
|
||||
style="overflow:visible"
|
||||
id="Arrow2Mstart-0"
|
||||
refX="0"
|
||||
refY="0"
|
||||
orient="auto"
|
||||
inkscape:stockid="Arrow2Mstart"
|
||||
inkscape:isstock="true">
|
||||
<path
|
||||
transform="scale(0.6)"
|
||||
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
|
||||
style="fill:context-stroke;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
|
||||
id="path4372-3" />
|
||||
</marker>
|
||||
<marker
|
||||
style="overflow:visible"
|
||||
id="marker12109-9"
|
||||
refX="0"
|
||||
refY="0"
|
||||
orient="auto"
|
||||
inkscape:stockid="Arrow2Mend"
|
||||
inkscape:isstock="true">
|
||||
<path
|
||||
transform="scale(-0.6)"
|
||||
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
|
||||
style="fill:context-stroke;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
|
||||
id="path12107-19" />
|
||||
</marker>
|
||||
<marker
|
||||
style="overflow:visible"
|
||||
id="Arrow2Mstart-93"
|
||||
refX="0"
|
||||
refY="0"
|
||||
orient="auto"
|
||||
inkscape:stockid="Arrow2Mstart"
|
||||
inkscape:isstock="true">
|
||||
<path
|
||||
transform="scale(0.6)"
|
||||
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
|
||||
style="fill:context-stroke;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
|
||||
id="path4372-38" />
|
||||
</marker>
|
||||
<marker
|
||||
style="overflow:visible"
|
||||
id="marker12109-05"
|
||||
refX="0"
|
||||
refY="0"
|
||||
orient="auto"
|
||||
inkscape:stockid="Arrow2Mend"
|
||||
inkscape:isstock="true">
|
||||
<path
|
||||
transform="scale(-0.6)"
|
||||
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
|
||||
style="fill:context-stroke;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
|
||||
id="path12107-66" />
|
||||
</marker>
|
||||
<marker
|
||||
style="overflow:visible"
|
||||
id="Arrow2Mstart-04"
|
||||
refX="0"
|
||||
refY="0"
|
||||
orient="auto"
|
||||
inkscape:stockid="Arrow2Mstart"
|
||||
inkscape:isstock="true">
|
||||
<path
|
||||
transform="scale(0.6)"
|
||||
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
|
||||
style="fill:context-stroke;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
|
||||
id="path4372-6" />
|
||||
</marker>
|
||||
<marker
|
||||
style="overflow:visible"
|
||||
id="marker11850-2"
|
||||
refX="0"
|
||||
refY="0"
|
||||
orient="auto"
|
||||
inkscape:stockid="Arrow2Mend"
|
||||
inkscape:isstock="true">
|
||||
<path
|
||||
transform="scale(-0.6)"
|
||||
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
|
||||
style="fill:context-stroke;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
|
||||
id="path11848-6" />
|
||||
</marker>
|
||||
<marker
|
||||
style="overflow:visible"
|
||||
id="Arrow2Mstart-5"
|
||||
refX="0"
|
||||
refY="0"
|
||||
orient="auto"
|
||||
inkscape:stockid="Arrow2Mstart"
|
||||
inkscape:isstock="true">
|
||||
<path
|
||||
transform="scale(0.6)"
|
||||
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
|
||||
style="fill:context-stroke;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
|
||||
id="path4372-69" />
|
||||
</marker>
|
||||
<marker
|
||||
style="overflow:visible"
|
||||
id="marker12109-8"
|
||||
refX="0"
|
||||
refY="0"
|
||||
orient="auto"
|
||||
inkscape:stockid="Arrow2Mend"
|
||||
inkscape:isstock="true">
|
||||
<path
|
||||
transform="scale(-0.6)"
|
||||
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
|
||||
style="fill:context-stroke;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
|
||||
id="path12107-7" />
|
||||
</marker>
|
||||
</defs>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-32.159721,-11.884987)">
|
||||
<path
|
||||
id="path846"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.264583px;stop-color:#000000"
|
||||
d="m 69.275153,42.056984 c 0,1.9099 -0.816149,3.629174 -2.118703,4.828066 l -8.87306,0.0088 c -1.308104,-1.19927 -2.128237,-2.922268 -2.128237,-4.836824 0,-3.623087 2.937012,-6.560179 6.56,-6.560179 3.622988,0 6.56,2.937092 6.56,6.560179 z"
|
||||
sodipodi:nodetypes="sccsss" />
|
||||
<circle
|
||||
style="fill:none;stroke:#d95218;stroke-width:0.264583px;-inkscape-stroke:none;stop-color:#000000"
|
||||
id="path846-5"
|
||||
cx="62.715153"
|
||||
cy="42.056984"
|
||||
r="0.83341068" />
|
||||
<circle
|
||||
style="fill:none;stroke:#0072bd;stroke-width:0.264583px;-inkscape-stroke:none;stop-color:#000000"
|
||||
id="path846-5-1"
|
||||
cx="62.715153"
|
||||
cy="63.223652"
|
||||
r="0.83341068" />
|
||||
<circle
|
||||
style="fill:none;stroke:#d95218;stroke-width:0.264583px;-inkscape-stroke:none;stop-color:#000000"
|
||||
id="path846-5-0"
|
||||
cx="62.715153"
|
||||
cy="84.390312"
|
||||
r="0.83341068" />
|
||||
<path
|
||||
id="path846-7"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.999999px;-inkscape-stroke:none;stop-color:#000000"
|
||||
d="m 261.82802,318.95551 c 0,7.19328 -3.06321,13.67111 -7.95634,18.20021 l -33.57854,0.0898 c -4.94992,-4.53305 -8.05387,-11.04904 -8.05387,-18.29 0,-7.23062 3.09509,-13.73834 8.03268,-18.27057 l 33.63583,0.10384 c 4.87209,4.52751 7.92024,10.99115 7.92024,18.16673 z"
|
||||
transform="scale(0.26458333)"
|
||||
sodipodi:nodetypes="sccsccs" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 58.271641,46.860088 V 79.555315"
|
||||
id="path983"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 67.158661,46.862992 V 79.567703"
|
||||
id="path1712"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 58.271641,89.176622 v 7.875786"
|
||||
id="path983-0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 67.158661,89.167136 v 7.885272"
|
||||
id="path1712-3"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 58.271639,97.052407 H 39.854997 v 5.708413"
|
||||
id="path2470" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 67.158661,97.052408 h 18.416642 v 5.708412"
|
||||
id="path2470-0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 39.854997,102.76082 H 85.575303"
|
||||
id="path2607" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#Arrow2Mstart);marker-end:url(#marker12109);font-variation-settings:normal;opacity:1;vector-effect:none;fill-opacity:1;stroke-miterlimit:4;stroke-dasharray:0.793749,0.793749;stroke-dashoffset:0;-inkscape-stroke:none;stop-color:#000000;stop-opacity:1"
|
||||
d="M 55.712408,36.236149 H 39.632767"
|
||||
id="path3952-7"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#d95218;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;marker-start:url(#Arrow2Mstart);marker-end:url(#marker12109)"
|
||||
d="M 62.715153,18.942231 V 35.093068"
|
||||
id="path3952-2"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#Arrow2Mstart);marker-end:url(#marker12109);font-variation-settings:normal;opacity:1;vector-effect:none;fill-opacity:1;stroke-miterlimit:4;stroke-dasharray:0.793749,0.793749;stroke-dashoffset:0;-inkscape-stroke:none;stop-color:#000000;stop-opacity:1"
|
||||
d="M 68.23494,18.942231 V 35.093068"
|
||||
id="path3952-2-6"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#d95218;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#Arrow2Mstart);marker-end:url(#marker11850)"
|
||||
d="m 55.722106,84.390311 -16.097085,0"
|
||||
id="path3952-9"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<g
|
||||
id="g10585"
|
||||
transform="translate(-1.6905239,-0.56634745)">
|
||||
<g
|
||||
id="g4909"
|
||||
transform="translate(-3.5428151)">
|
||||
<circle
|
||||
style="fill:none;stroke:#000000;stroke-width:0.264583px;-inkscape-stroke:none;stop-color:#000000"
|
||||
id="path846-5-0-6"
|
||||
cx="82.535706"
|
||||
cy="86.66922"
|
||||
r="0.83341068" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;marker-end:url(#Arrow2Mend)"
|
||||
d="M 82.538244,86.67176 H 92.2408"
|
||||
id="path4346" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;marker-end:url(#Arrow2Mend-5)"
|
||||
d="M 82.538244,86.67176 V 76.969204"
|
||||
id="path4346-4" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:4.9389px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583"
|
||||
x="82.519142"
|
||||
y="90.131065"
|
||||
id="text6564"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan6562"
|
||||
style="stroke-width:0.264583"
|
||||
x="82.519142"
|
||||
y="90.131065">x</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:4.9389px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583"
|
||||
x="84.553871"
|
||||
y="78.826828"
|
||||
id="text7832"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan7830"
|
||||
style="stroke-width:0.264583"
|
||||
x="84.553871"
|
||||
y="78.826828">z</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:4.9389px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583"
|
||||
x="91.429382"
|
||||
y="89.825447"
|
||||
id="text9918"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan9916"
|
||||
style="stroke-width:0.264583"
|
||||
x="91.429382"
|
||||
y="89.825447">y</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 39.225884,91.84559 V 18.567717"
|
||||
id="path10620"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 39.225884,91.845589 H 32.292012 V 12.017278 h 59.683421 v 6.550439"
|
||||
id="path11019"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 91.975431,18.567717 H 39.225884"
|
||||
id="path11263"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.05833, 1.05833;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 39.225884,91.845587 H 91.975431"
|
||||
id="path11378"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.05833, 1.05833;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 91.975431,91.845587 V 18.567717"
|
||||
id="path11668" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:4.9389px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583;fill:#d95218"
|
||||
x="48.00272"
|
||||
y="41.131023"
|
||||
id="text17008"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan17006"
|
||||
style="stroke-width:0.264583;fill:#d95218"
|
||||
x="48.00272"
|
||||
y="41.131023">1</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:4.9389px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#d95218;stroke-width:0.264583"
|
||||
x="47.438339"
|
||||
y="83.190002"
|
||||
id="text17008-9"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan17006-3"
|
||||
style="fill:#d95218;stroke-width:0.264583"
|
||||
x="47.438339"
|
||||
y="83.190002">2</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:4.9389px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#d95218;stroke-width:0.264583"
|
||||
x="65.515945"
|
||||
y="43.590153"
|
||||
id="text17008-6"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan17006-8"
|
||||
style="fill:#d95218;stroke-width:0.264583"
|
||||
x="65.515945"
|
||||
y="43.590153">3</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:4.9389px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#d95218;stroke-width:0.264583"
|
||||
x="63.923637"
|
||||
y="88.454178"
|
||||
id="text17008-0"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan17006-2"
|
||||
style="fill:#d95218;stroke-width:0.264583"
|
||||
x="63.923637"
|
||||
y="88.454178">4</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:4.9389px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#d95218;stroke-width:0.264583"
|
||||
x="64.4459"
|
||||
y="29.563591"
|
||||
id="text17008-1"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan17006-0"
|
||||
style="fill:#d95218;stroke-width:0.264583"
|
||||
x="64.4459"
|
||||
y="29.563591">5</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:4.9389px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583"
|
||||
x="53.495171"
|
||||
y="64.452911"
|
||||
id="text23226"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan23224"
|
||||
style="fill:#0072bd;stroke-width:0.264583"
|
||||
x="53.495171"
|
||||
y="64.452911">{O}</tspan></text>
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.264584;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.05833, 0.529165, 0.264584, 0.529165;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 55.378466,42.056986 H 70.051844"
|
||||
id="path24603-1" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.264584;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.05833, 0.529165, 0.264584, 0.529165;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 55.378464,35.496805 H 70.051842"
|
||||
id="path24603-1-4" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.264584;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.05833, 0.529165, 0.264584, 0.529165;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 56.154974,49.393673 V 34.720295"
|
||||
id="path24603-1-4-0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.264584;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.05833, 0.529165, 0.264584, 0.529165;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 55.378464,84.390312 H 70.051842"
|
||||
id="path24603-1-0-8" />
|
||||
<path
|
||||
style="font-variation-settings:normal;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.793749, 0.793749;stroke-dashoffset:0;stroke-opacity:1;-inkscape-stroke:none;marker-start:url(#Arrow2Mstart-9);marker-end:url(#marker12109-08);stop-color:#000000"
|
||||
d="m 68.23494,83.955898 0,-41.622147"
|
||||
id="path25078-3"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:4.9389px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583"
|
||||
x="70.884064"
|
||||
y="64.687386"
|
||||
id="text26937-1"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan26935-0"
|
||||
style="stroke-width:0.264583"
|
||||
x="70.884064"
|
||||
y="64.687386">H</tspan></text>
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.793749, 0.793749;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Arrow2Mstart);marker-end:url(#marker12109)"
|
||||
d="M 65.812881,79.08117 59.627309,89.775666"
|
||||
id="path27304"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:4.9389px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583"
|
||||
x="65.87085"
|
||||
y="83.007042"
|
||||
id="text28151"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan28149"
|
||||
style="stroke-width:0.264583"
|
||||
x="65.87085"
|
||||
y="83.007042">r</tspan></text>
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.264584;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-variation-settings:normal;opacity:1;vector-effect:none;fill-opacity:1;stroke-miterlimit:4;stroke-dasharray:1.05833,0.529165,0.264584,0.529165;stroke-dashoffset:0;-inkscape-stroke:none;stop-color:#000000;stop-opacity:1"
|
||||
d="m 62.715153,35.496805 -2e-6,67.264015"
|
||||
id="path1192" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:4.9389px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583"
|
||||
x="70.39447"
|
||||
y="28.6257"
|
||||
id="text2123"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan2121"
|
||||
style="stroke-width:0.264583"
|
||||
x="70.39447"
|
||||
y="28.6257">L</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:4.9389px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583"
|
||||
x="47.993835"
|
||||
y="35.492683"
|
||||
id="text2123-8"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan2121-2"
|
||||
style="stroke-width:0.264583"
|
||||
x="47.993835"
|
||||
y="35.492683">L</tspan></text>
|
||||
<path
|
||||
style="fill:none;stroke:#d95218;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#Arrow2Mstart);marker-end:url(#marker11850)"
|
||||
d="M 55.712408,42.056983 H 39.632768"
|
||||
id="path3952"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 26 KiB |
BIN
figs/ModeShapeFlex1_crop.gif
Normal file
After Width: | Height: | Size: 348 KiB |
BIN
figs/ModeShapeFlex1_crop.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
figs/acc_top_plat_pos_x.jpg
Normal file
After Width: | Height: | Size: 3.6 MiB |
132
figs/acc_top_plat_pos_x.svg
Normal file
After Width: | Height: | Size: 4.9 MiB |
BIN
figs/acc_top_plat_pos_y.jpg
Normal file
After Width: | Height: | Size: 3.7 MiB |
167
figs/acc_top_plat_pos_y.svg
Normal file
After Width: | Height: | Size: 4.9 MiB |
BIN
figs/acc_top_plat_top_view.jpg
Normal file
After Width: | Height: | Size: 631 KiB |
BIN
figs/acc_top_plat_top_view.png
Normal file
After Width: | Height: | Size: 3.0 MiB |
BIN
figs/acc_top_plat_zoom.jpg
Normal file
After Width: | Height: | Size: 547 KiB |
BIN
figs/accelerometers_nano_hexapod.jpg
Normal file
After Width: | Height: | Size: 596 KiB |
BIN
figs/accelerometers_nano_hexapod.pdf
Normal file
BIN
figs/accelerometers_nano_hexapod.png
Normal file
After Width: | Height: | Size: 2.9 MiB |
65707
figs/accelerometers_nano_hexapod.svg
Normal file
After Width: | Height: | Size: 4.8 MiB |
BIN
figs/bode_Va_dL_effect_k_coef.pdf
Normal file
BIN
figs/bode_Va_dL_effect_k_coef.png
Normal file
After Width: | Height: | Size: 149 KiB |
BIN
figs/bode_Va_dL_effect_m_coef.pdf
Normal file
BIN
figs/bode_Va_dL_effect_m_coef.png
Normal file
After Width: | Height: | Size: 144 KiB |
BIN
figs/bode_Va_dL_effect_xi_damp.pdf
Normal file
BIN
figs/bode_Va_dL_effect_xi_damp.png
Normal file
After Width: | Height: | Size: 141 KiB |
5462
figs/bode_plot_hac_iff_loop_gain_diag_inverse.pdf
Normal file
BIN
figs/bode_plot_hac_iff_loop_gain_diag_inverse.png
Normal file
After Width: | Height: | Size: 179 KiB |
3383
figs/bode_plot_hac_iff_loop_gain_jacobian_cok.pdf
Normal file
BIN
figs/bode_plot_hac_iff_loop_gain_jacobian_cok.png
Normal file
After Width: | Height: | Size: 223 KiB |
6222
figs/bode_plot_hac_iff_loop_gain_svd.pdf
Normal file
BIN
figs/bode_plot_hac_iff_loop_gain_svd.png
Normal file
After Width: | Height: | Size: 192 KiB |
BIN
figs/bode_plot_hac_iff_loop_gain_svd_masses.pdf
Normal file
BIN
figs/bode_plot_hac_iff_loop_gain_svd_masses.png
Normal file
After Width: | Height: | Size: 249 KiB |
3863
figs/bode_plot_hac_iff_plant_jacobian_cok.pdf
Normal file
BIN
figs/bode_plot_hac_iff_plant_jacobian_cok.png
Normal file
After Width: | Height: | Size: 207 KiB |
BIN
figs/bode_plot_hac_iff_plant_svd.pdf
Normal file
BIN
figs/bode_plot_hac_iff_plant_svd.png
Normal file
After Width: | Height: | Size: 224 KiB |
BIN
figs/bode_plot_hac_iff_plant_svd_masses.pdf
Normal file
BIN
figs/bode_plot_hac_iff_plant_svd_masses.png
Normal file
After Width: | Height: | Size: 371 KiB |
2389
figs/comp_frf_sim_enc_struts_modes.pdf
Normal file
BIN
figs/comp_frf_sim_enc_struts_modes.png
Normal file
After Width: | Height: | Size: 252 KiB |
BIN
figs/comp_iff_gains_dvf_plant.pdf
Normal file
BIN
figs/comp_iff_gains_dvf_plant.png
Normal file
After Width: | Height: | Size: 182 KiB |
BIN
figs/comp_iff_gains_dvf_plant_zoom.pdf
Normal file
BIN
figs/comp_iff_gains_dvf_plant_zoom.png
Normal file
After Width: | Height: | Size: 155 KiB |
BIN
figs/comp_iff_plant_frf_sim.pdf
Normal file
BIN
figs/comp_iff_plant_frf_sim.png
Normal file
After Width: | Height: | Size: 216 KiB |
5094
figs/comp_masses_model_exp_dvf.pdf
Normal file
BIN
figs/comp_masses_model_exp_dvf.png
Normal file
After Width: | Height: | Size: 271 KiB |
BIN
figs/comp_masses_model_exp_dvf_zoom.pdf
Normal file
BIN
figs/comp_masses_model_exp_dvf_zoom.png
Normal file
After Width: | Height: | Size: 265 KiB |
BIN
figs/comp_masses_model_exp_iff.pdf
Normal file
BIN
figs/comp_masses_model_exp_iff.png
Normal file
After Width: | Height: | Size: 219 KiB |
1962
figs/comp_masses_model_exp_iff_zoom.pdf
Normal file
BIN
figs/comp_masses_model_exp_iff_zoom.png
Normal file
After Width: | Height: | Size: 241 KiB |
1964
figs/comp_masses_model_exp_iff_zoom_pres.pdf
Normal file
BIN
figs/comp_masses_model_exp_iff_zoom_pres.png
Normal file
After Width: | Height: | Size: 221 KiB |
BIN
figs/comp_plant_coupling_payloads_dvf.pdf
Normal file
BIN
figs/comp_plant_coupling_payloads_dvf.png
Normal file
After Width: | Height: | Size: 370 KiB |
BIN
figs/comp_plant_coupling_payloads_iff.pdf
Normal file
BIN
figs/comp_plant_coupling_payloads_iff.png
Normal file
After Width: | Height: | Size: 380 KiB |
BIN
figs/comp_plant_payloads_dvf.pdf
Normal file
BIN
figs/comp_plant_payloads_dvf.png
Normal file
After Width: | Height: | Size: 330 KiB |
BIN
figs/comp_plant_payloads_iff.pdf
Normal file
BIN
figs/comp_plant_payloads_iff.png
Normal file
After Width: | Height: | Size: 329 KiB |
BIN
figs/comp_undamped_damped_plant_meas_frf.pdf
Normal file
BIN
figs/comp_undamped_damped_plant_meas_frf.png
Normal file
After Width: | Height: | Size: 208 KiB |
BIN
figs/comp_undamped_opt_iff_gain_diagonal.pdf
Normal file
BIN
figs/comp_undamped_opt_iff_gain_diagonal.png
Normal file
After Width: | Height: | Size: 179 KiB |
BIN
figs/compliance_vertical_comp_iff.pdf
Normal file
BIN
figs/compliance_vertical_comp_iff.png
Normal file
After Width: | Height: | Size: 78 KiB |
BIN
figs/compliance_vertical_comp_model_iff.pdf
Normal file
BIN
figs/compliance_vertical_comp_model_iff.png
Normal file
After Width: | Height: | Size: 87 KiB |
BIN
figs/control_architecture_hac_iff_L.pdf
Normal file
BIN
figs/control_architecture_hac_iff_L.png
Normal file
After Width: | Height: | Size: 14 KiB |
242
figs/control_architecture_hac_iff_L.svg
Normal file
@ -0,0 +1,242 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="367.985pt" height="139.354pt" viewBox="0 0 367.985 139.354" version="1.2">
|
||||
<defs>
|
||||
<g>
|
||||
<symbol overflow="visible" id="glyph0-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<path style="stroke:none;" d="M 6.1875 -4.9375 C 6.1875 -5.90625 5.203125 -6.78125 3.84375 -6.78125 L 0.34375 -6.78125 L 0.34375 -6.46875 L 0.578125 -6.46875 C 1.34375 -6.46875 1.375 -6.359375 1.375 -6 L 1.375 -0.78125 C 1.375 -0.421875 1.34375 -0.3125 0.578125 -0.3125 L 0.34375 -0.3125 L 0.34375 0 C 0.6875 -0.03125 1.421875 -0.03125 1.8125 -0.03125 C 2.1875 -0.03125 2.921875 -0.03125 3.28125 0 L 3.28125 -0.3125 L 3.03125 -0.3125 C 2.265625 -0.3125 2.25 -0.421875 2.25 -0.78125 L 2.25 -3.140625 L 3.921875 -3.140625 C 5.125 -3.140625 6.1875 -3.9375 6.1875 -4.9375 Z M 5.171875 -4.9375 C 5.171875 -4.46875 5.171875 -3.390625 3.59375 -3.390625 L 2.21875 -3.390625 L 2.21875 -6.078125 C 2.21875 -6.40625 2.25 -6.46875 2.703125 -6.46875 L 3.59375 -6.46875 C 5.171875 -6.46875 5.171875 -5.421875 5.171875 -4.9375 Z M 5.171875 -4.9375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 2.53125 0 L 2.53125 -0.3125 C 1.859375 -0.3125 1.75 -0.3125 1.75 -0.75 L 1.75 -6.890625 L 0.328125 -6.78125 L 0.328125 -6.46875 C 1.015625 -6.46875 1.09375 -6.40625 1.09375 -5.90625 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 Z M 2.53125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 4.796875 -0.890625 L 4.796875 -1.4375 L 4.546875 -1.4375 L 4.546875 -0.890625 C 4.546875 -0.3125 4.296875 -0.25 4.1875 -0.25 C 3.859375 -0.25 3.8125 -0.6875 3.8125 -0.75 L 3.8125 -2.734375 C 3.8125 -3.140625 3.8125 -3.53125 3.46875 -3.90625 C 3.078125 -4.28125 2.578125 -4.4375 2.109375 -4.4375 C 1.296875 -4.4375 0.609375 -3.984375 0.609375 -3.328125 C 0.609375 -3.03125 0.796875 -2.859375 1.0625 -2.859375 C 1.34375 -2.859375 1.515625 -3.0625 1.515625 -3.3125 C 1.515625 -3.4375 1.46875 -3.765625 1.015625 -3.765625 C 1.28125 -4.125 1.765625 -4.234375 2.078125 -4.234375 C 2.5625 -4.234375 3.140625 -3.84375 3.140625 -2.953125 L 3.140625 -2.59375 C 2.625 -2.5625 1.9375 -2.53125 1.3125 -2.234375 C 0.5625 -1.890625 0.3125 -1.375 0.3125 -0.9375 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.5625 0.109375 3.015625 -0.28125 3.203125 -0.75 C 3.25 -0.359375 3.515625 0.0625 3.984375 0.0625 C 4.1875 0.0625 4.796875 -0.078125 4.796875 -0.890625 Z M 3.140625 -1.390625 C 3.140625 -0.453125 2.421875 -0.109375 1.96875 -0.109375 C 1.484375 -0.109375 1.078125 -0.453125 1.078125 -0.953125 C 1.078125 -1.5 1.5 -2.328125 3.140625 -2.375 Z M 3.140625 -1.390625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 5.3125 0 L 5.3125 -0.3125 C 4.796875 -0.3125 4.546875 -0.3125 4.53125 -0.609375 L 4.53125 -2.5 C 4.53125 -3.359375 4.53125 -3.65625 4.234375 -4.015625 C 4.09375 -4.1875 3.765625 -4.390625 3.1875 -4.390625 C 2.453125 -4.390625 2 -3.953125 1.71875 -3.34375 L 1.71875 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.015625 -3.96875 1.09375 -3.90625 1.09375 -3.40625 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.546875 0 L 2.546875 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.578125 C 1.78125 -3.609375 2.484375 -4.171875 3.109375 -4.171875 C 3.734375 -4.171875 3.84375 -3.625 3.84375 -3.0625 L 3.84375 -0.75 C 3.84375 -0.3125 3.734375 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.203125 -0.03125 Z M 5.3125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 3.296875 -1.234375 L 3.296875 -1.796875 L 3.046875 -1.796875 L 3.046875 -1.25 C 3.046875 -0.515625 2.75 -0.140625 2.375 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.203125 L 1.71875 -3.96875 L 3.140625 -3.96875 L 3.140625 -4.28125 L 1.71875 -4.28125 L 1.71875 -6.109375 L 1.46875 -6.109375 C 1.453125 -5.28125 1.15625 -4.234375 0.1875 -4.1875 L 0.1875 -3.96875 L 1.03125 -3.96875 L 1.03125 -1.234375 C 1.03125 -0.015625 1.953125 0.109375 2.3125 0.109375 C 3.015625 0.109375 3.296875 -0.59375 3.296875 -1.234375 Z M 3.296875 -1.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-1">
|
||||
<path style="stroke:none;" d="M 5.84375 -4.171875 C 6.515625 -4.640625 8.328125 -5.90625 8.671875 -6.09375 C 8.90625 -6.21875 9.109375 -6.3125 9.609375 -6.34375 C 9.796875 -6.34375 9.953125 -6.34375 9.953125 -6.625 C 9.953125 -6.71875 9.875 -6.8125 9.765625 -6.8125 C 9.53125 -6.8125 9.234375 -6.78125 8.984375 -6.78125 C 8.578125 -6.78125 8.140625 -6.8125 7.734375 -6.8125 C 7.65625 -6.8125 7.46875 -6.8125 7.46875 -6.515625 C 7.46875 -6.34375 7.640625 -6.34375 7.703125 -6.34375 C 7.78125 -6.34375 7.984375 -6.328125 8.15625 -6.265625 L 3.625 -3.140625 L 4.421875 -6.296875 C 4.640625 -6.34375 4.984375 -6.34375 5.09375 -6.34375 C 5.21875 -6.34375 5.421875 -6.34375 5.453125 -6.375 C 5.5625 -6.4375 5.5625 -6.625 5.5625 -6.625 C 5.5625 -6.75 5.46875 -6.8125 5.34375 -6.8125 C 5.09375 -6.8125 4.84375 -6.78125 4.59375 -6.78125 C 4.34375 -6.78125 4.09375 -6.78125 3.84375 -6.78125 C 3.59375 -6.78125 3.328125 -6.78125 3.078125 -6.78125 C 2.828125 -6.78125 2.5625 -6.8125 2.296875 -6.8125 C 2.21875 -6.8125 2.015625 -6.8125 2.015625 -6.515625 C 2.015625 -6.34375 2.140625 -6.34375 2.4375 -6.34375 C 2.640625 -6.34375 2.828125 -6.328125 3.03125 -6.3125 L 1.625 -0.671875 C 1.578125 -0.5 1.5625 -0.5 1.390625 -0.46875 C 1.21875 -0.46875 1.015625 -0.46875 0.859375 -0.46875 C 0.609375 -0.46875 0.578125 -0.46875 0.546875 -0.453125 C 0.421875 -0.375 0.421875 -0.21875 0.421875 -0.171875 C 0.421875 -0.15625 0.4375 0 0.640625 0 C 0.890625 0 1.15625 -0.015625 1.40625 -0.015625 C 1.640625 -0.015625 1.90625 -0.03125 2.15625 -0.03125 C 2.40625 -0.03125 2.671875 -0.015625 2.921875 -0.015625 C 3.171875 -0.015625 3.4375 0 3.6875 0 C 3.796875 0 3.859375 0 3.921875 -0.0625 C 3.953125 -0.125 3.984375 -0.265625 3.984375 -0.28125 C 3.984375 -0.46875 3.84375 -0.46875 3.578125 -0.46875 C 3.359375 -0.46875 3.171875 -0.46875 2.96875 -0.484375 L 3.484375 -2.546875 L 4.71875 -3.390625 L 6.1875 -0.53125 C 6 -0.46875 5.6875 -0.46875 5.65625 -0.46875 C 5.53125 -0.46875 5.46875 -0.46875 5.40625 -0.390625 C 5.375 -0.34375 5.34375 -0.203125 5.34375 -0.171875 C 5.34375 -0.171875 5.34375 0 5.5625 0 C 5.890625 0 6.703125 -0.03125 7.03125 -0.03125 C 7.234375 -0.03125 7.453125 -0.015625 7.65625 -0.015625 C 7.859375 -0.015625 8.0625 0 8.25 0 C 8.328125 0 8.515625 0 8.515625 -0.28125 C 8.515625 -0.46875 8.359375 -0.46875 8.203125 -0.46875 C 7.75 -0.46875 7.734375 -0.5 7.65625 -0.671875 Z M 5.84375 -4.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<path style="stroke:none;" d="M 3.46875 -3.453125 L 5.296875 -3.453125 C 5.5 -3.453125 5.640625 -3.453125 5.796875 -3.609375 C 6 -3.765625 6 -4 6 -4.015625 C 6 -4.40625 5.640625 -4.40625 5.46875 -4.40625 L 2.203125 -4.40625 C 2 -4.40625 1.5625 -4.40625 1.046875 -3.921875 C 0.6875 -3.609375 0.3125 -3.109375 0.3125 -3 C 0.3125 -2.875 0.421875 -2.875 0.53125 -2.875 C 0.6875 -2.875 0.6875 -2.875 0.78125 -2.984375 C 1.15625 -3.453125 1.8125 -3.453125 2 -3.453125 L 2.890625 -3.453125 L 2.546875 -2.40625 C 2.453125 -2.15625 2.234375 -1.515625 2.15625 -1.265625 C 2.046875 -0.953125 1.859375 -0.421875 1.859375 -0.3125 C 1.859375 -0.046875 2.078125 0.125 2.328125 0.125 C 2.390625 0.125 2.890625 0.125 3 -0.53125 Z M 3.46875 -3.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-3">
|
||||
<path style="stroke:none;" d="M 5.59375 -3.140625 C 5.65625 -3.421875 5.78125 -3.90625 5.78125 -3.96875 C 5.78125 -4.171875 5.609375 -4.40625 5.3125 -4.40625 C 5.15625 -4.40625 4.78125 -4.3125 4.65625 -3.875 C 4.609375 -3.734375 4.171875 -1.9375 4.09375 -1.625 C 4.03125 -1.390625 3.953125 -1.09375 3.9375 -0.921875 C 3.765625 -0.6875 3.375 -0.28125 2.875 -0.28125 C 2.28125 -0.28125 2.265625 -0.78125 2.265625 -1 C 2.265625 -1.609375 2.578125 -2.375 2.859375 -3.09375 C 2.953125 -3.359375 2.984375 -3.421875 2.984375 -3.59375 C 2.984375 -4.171875 2.40625 -4.484375 1.859375 -4.484375 C 0.8125 -4.484375 0.3125 -3.140625 0.3125 -2.9375 C 0.3125 -2.796875 0.46875 -2.796875 0.5625 -2.796875 C 0.671875 -2.796875 0.75 -2.796875 0.78125 -2.921875 C 1.109375 -4.03125 1.640625 -4.125 1.8125 -4.125 C 1.875 -4.125 1.96875 -4.125 1.96875 -3.921875 C 1.96875 -3.6875 1.859375 -3.40625 1.8125 -3.296875 C 1.40625 -2.25 1.203125 -1.703125 1.203125 -1.203125 C 1.203125 -0.078125 2.203125 0.078125 2.78125 0.078125 C 3.078125 0.078125 3.515625 0.046875 4.046875 -0.46875 C 4.359375 0.015625 4.9375 0.078125 5.171875 0.078125 C 5.546875 0.078125 5.828125 -0.125 6.046875 -0.484375 C 6.296875 -0.890625 6.421875 -1.421875 6.421875 -1.46875 C 6.421875 -1.609375 6.265625 -1.609375 6.1875 -1.609375 C 6.078125 -1.609375 6.03125 -1.609375 5.984375 -1.5625 C 5.96875 -1.53125 5.96875 -1.515625 5.90625 -1.265625 C 5.703125 -0.5 5.484375 -0.28125 5.234375 -0.28125 C 5.078125 -0.28125 5 -0.375 5 -0.640625 C 5 -0.8125 5.046875 -0.96875 5.140625 -1.375 C 5.203125 -1.640625 5.3125 -2.046875 5.359375 -2.265625 Z M 5.59375 -3.140625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-4">
|
||||
<path style="stroke:none;" d="M 3.5625 -2.109375 C 3.703125 -2.109375 3.953125 -2.109375 3.953125 -2.359375 C 3.953125 -2.578125 3.765625 -2.578125 3.578125 -2.578125 L 1.875 -2.578125 C 2.03125 -3.1875 2.40625 -3.9375 3.578125 -3.9375 L 4 -3.9375 C 4.140625 -3.9375 4.40625 -3.9375 4.40625 -4.203125 C 4.40625 -4.28125 4.359375 -4.390625 4.203125 -4.40625 L 3.796875 -4.40625 C 3.25 -4.40625 2.203125 -4.40625 1.34375 -3.625 C 0.875 -3.21875 0.5 -2.5625 0.5 -1.78125 C 0.5 -0.421875 1.640625 0.078125 2.796875 0.078125 C 2.9375 0.078125 3.265625 0.078125 3.734375 -0.09375 C 3.765625 -0.09375 4.328125 -0.3125 4.328125 -0.46875 C 4.328125 -0.578125 4.265625 -0.765625 4.140625 -0.765625 C 4.09375 -0.765625 4.078125 -0.765625 3.984375 -0.6875 C 3.390625 -0.34375 3.078125 -0.28125 2.828125 -0.28125 C 2.578125 -0.28125 1.640625 -0.328125 1.640625 -1.359375 C 1.640625 -1.625 1.703125 -1.859375 1.75 -2.109375 Z M 3.5625 -2.109375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-5">
|
||||
<path style="stroke:none;" d="M 4.40625 -3.984375 C 3.859375 -3.875 3.796875 -3.390625 3.796875 -3.296875 C 3.796875 -3.078125 3.96875 -2.84375 4.296875 -2.84375 C 4.640625 -2.84375 5.015625 -3.109375 5.015625 -3.625 C 5.015625 -4.078125 4.65625 -4.484375 4.03125 -4.484375 C 3.484375 -4.484375 3.015625 -4.203125 2.71875 -3.890625 C 2.484375 -4.34375 1.921875 -4.484375 1.5625 -4.484375 C 1.1875 -4.484375 0.90625 -4.28125 0.6875 -3.921875 C 0.453125 -3.53125 0.3125 -3 0.3125 -2.9375 C 0.3125 -2.796875 0.46875 -2.796875 0.5625 -2.796875 C 0.671875 -2.796875 0.703125 -2.796875 0.75 -2.84375 C 0.78125 -2.875 0.78125 -2.890625 0.828125 -3.140625 C 1.015625 -3.890625 1.234375 -4.125 1.515625 -4.125 C 1.65625 -4.125 1.734375 -4.03125 1.734375 -3.765625 C 1.734375 -3.59375 1.703125 -3.484375 1.59375 -3.015625 C 1.546875 -2.84375 1.390625 -2.1875 1.3125 -1.9375 C 1.28125 -1.75 1.171875 -1.3125 1.125 -1.125 C 1.0625 -0.875 0.9375 -0.421875 0.9375 -0.359375 C 0.9375 -0.15625 1.09375 0.078125 1.40625 0.078125 C 1.609375 0.078125 1.953125 -0.046875 2.0625 -0.453125 C 2.078125 -0.46875 2.75 -3.171875 2.765625 -3.234375 C 2.796875 -3.390625 2.796875 -3.40625 2.921875 -3.546875 C 3.15625 -3.84375 3.515625 -4.125 4.015625 -4.125 C 4.265625 -4.125 4.375 -4.015625 4.40625 -3.984375 Z M 4.40625 -3.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-1">
|
||||
<path style="stroke:none;" d="M 2.515625 0 L 2.515625 -0.25 L 2.328125 -0.25 C 1.765625 -0.25 1.765625 -0.328125 1.765625 -0.5625 L 1.765625 -4.171875 C 1.765625 -4.40625 1.765625 -4.484375 2.328125 -4.484375 L 2.515625 -4.484375 L 2.515625 -4.734375 L 1.4375 -4.703125 L 0.359375 -4.734375 L 0.359375 -4.484375 L 0.53125 -4.484375 C 1.109375 -4.484375 1.109375 -4.40625 1.109375 -4.171875 L 1.109375 -0.5625 C 1.109375 -0.328125 1.109375 -0.25 0.53125 -0.25 L 0.359375 -0.25 L 0.359375 0 L 1.421875 -0.03125 Z M 2.515625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<path style="stroke:none;" d="M 4.734375 -3.109375 L 4.515625 -4.703125 L 0.390625 -4.703125 L 0.390625 -4.453125 L 0.5625 -4.453125 C 1.09375 -4.453125 1.109375 -4.390625 1.109375 -4.15625 L 1.109375 -0.5625 C 1.109375 -0.328125 1.09375 -0.25 0.5625 -0.25 L 0.390625 -0.25 L 0.390625 0 L 1.4375 -0.03125 L 2.65625 0 L 2.65625 -0.25 L 2.421875 -0.25 C 1.765625 -0.25 1.765625 -0.34375 1.765625 -0.5625 L 1.765625 -2.234375 L 2.4375 -2.234375 C 3.125 -2.234375 3.21875 -2.03125 3.21875 -1.421875 L 3.46875 -1.421875 L 3.46875 -3.296875 L 3.21875 -3.296875 C 3.21875 -2.703125 3.125 -2.484375 2.4375 -2.484375 L 1.765625 -2.484375 L 1.765625 -4.1875 C 1.765625 -4.40625 1.765625 -4.453125 2.09375 -4.453125 L 3.0625 -4.453125 C 4.1875 -4.453125 4.375 -4.09375 4.5 -3.109375 Z M 4.734375 -3.109375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-1">
|
||||
<path style="stroke:none;" d="M 11.53125 -4.265625 C 11.53125 -4.578125 11.265625 -4.578125 11 -4.578125 L 6.46875 -4.578125 L 6.46875 -9.125 C 6.46875 -9.359375 6.46875 -9.65625 6.171875 -9.65625 C 5.859375 -9.65625 5.859375 -9.375 5.859375 -9.125 L 5.859375 -4.578125 L 1.3125 -4.578125 C 1.078125 -4.578125 0.78125 -4.578125 0.78125 -4.28125 C 0.78125 -3.984375 1.0625 -3.984375 1.3125 -3.984375 L 5.859375 -3.984375 L 5.859375 0.5625 C 5.859375 0.8125 5.859375 1.09375 6.15625 1.09375 C 6.46875 1.09375 6.46875 0.828125 6.46875 0.5625 L 6.46875 -3.984375 L 11 -3.984375 C 11.25 -3.984375 11.53125 -3.984375 11.53125 -4.265625 Z M 11.53125 -4.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-1">
|
||||
<path style="stroke:none;" d="M 5.125 -0.984375 C 5.125 -1.015625 5.09375 -1.046875 5.046875 -1.046875 C 4.9375 -1.046875 4.5 -0.875 4.40625 -0.609375 C 4.3125 -0.3125 4.21875 -0.3125 4.0625 -0.3125 C 3.6875 -0.3125 3.1875 -0.4375 2.828125 -0.53125 C 2.484375 -0.625 2.109375 -0.703125 1.734375 -0.703125 C 1.71875 -0.703125 1.578125 -0.703125 1.484375 -0.6875 C 1.859375 -1.234375 1.953125 -1.5625 2.0625 -2 C 2.203125 -2.53125 2.40625 -3.25 2.75 -3.828125 C 3.078125 -4.375 3.25 -4.421875 3.484375 -4.421875 C 3.8125 -4.421875 4.03125 -4.171875 4.03125 -3.828125 C 4.03125 -3.71875 4.015625 -3.640625 4.015625 -3.625 C 4.015625 -3.578125 4.03125 -3.5625 4.09375 -3.5625 C 4.125 -3.5625 4.28125 -3.578125 4.53125 -3.75 C 4.6875 -3.859375 4.75 -3.921875 4.75 -4.203125 C 4.75 -4.453125 4.609375 -4.875 4.046875 -4.875 C 3.4375 -4.875 2.78125 -4.46875 2.421875 -4.03125 C 1.953125 -3.515625 1.640625 -2.8125 1.359375 -1.671875 C 1.1875 -1.03125 0.9375 -0.5 0.609375 -0.234375 C 0.546875 -0.171875 0.359375 0 0.359375 0.09375 C 0.359375 0.140625 0.421875 0.140625 0.4375 0.140625 C 0.6875 0.140625 1 -0.15625 1.09375 -0.25 C 1.296875 -0.25 1.5625 -0.234375 2.203125 -0.078125 C 2.734375 0.0625 3.109375 0.140625 3.5 0.140625 C 4.359375 0.140625 5.125 -0.65625 5.125 -0.984375 Z M 5.125 -0.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-2">
|
||||
<path style="stroke:none;" d="M 2.078125 -3.5 C 2.078125 -3.71875 1.890625 -3.875 1.671875 -3.875 C 1.390625 -3.875 1.3125 -3.65625 1.296875 -3.5625 L 0.375 -0.5625 L 0.328125 -0.4375 C 0.328125 -0.359375 0.546875 -0.28125 0.609375 -0.28125 C 0.65625 -0.28125 0.6875 -0.3125 0.703125 -0.390625 L 2.015625 -3.28125 C 2.046875 -3.34375 2.078125 -3.40625 2.078125 -3.5 Z M 2.078125 -3.5 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-3">
|
||||
<path style="stroke:none;" d="M 5.3125 -0.6875 C 5.3125 -0.734375 5.25 -0.734375 5.21875 -0.734375 C 5.109375 -0.734375 4.828125 -0.625 4.6875 -0.421875 C 4.453125 -0.421875 4.203125 -0.421875 4.078125 -1.046875 L 3.875 -2.46875 C 3.875 -2.484375 3.875 -2.5 3.90625 -2.515625 L 4.140625 -2.65625 C 6.203125 -3.78125 6.203125 -4.09375 6.203125 -4.328125 C 6.203125 -4.53125 6.09375 -4.734375 5.8125 -4.734375 C 5.59375 -4.734375 5.25 -4.5 5.25 -4.375 C 5.25 -4.328125 5.28125 -4.328125 5.328125 -4.3125 C 5.515625 -4.296875 5.5625 -4.140625 5.5625 -4.015625 C 5.5625 -3.859375 5.5625 -3.78125 4.9375 -3.390625 C 4.796875 -3.296875 4.65625 -3.21875 3.84375 -2.765625 C 3.75 -3.28125 3.6875 -3.84375 3.640625 -4.078125 C 3.5 -4.640625 3.25 -4.734375 2.953125 -4.734375 C 2.171875 -4.734375 1.78125 -4.234375 1.78125 -4.0625 C 1.78125 -4 1.828125 -4 1.859375 -4 C 1.984375 -4 2.265625 -4.125 2.390625 -4.3125 C 2.625 -4.3125 2.859375 -4.3125 3 -3.75 L 3.1875 -2.421875 C 2.78125 -2.21875 2.0625 -1.828125 1.640625 -1.5625 C 0.546875 -0.890625 0.484375 -0.625 0.484375 -0.40625 C 0.484375 -0.203125 0.59375 0 0.875 0 C 1.09375 0 1.4375 -0.234375 1.4375 -0.375 C 1.4375 -0.421875 1.390625 -0.421875 1.359375 -0.421875 C 1.203125 -0.4375 1.125 -0.5625 1.125 -0.734375 C 1.125 -0.875 1.125 -0.984375 1.984375 -1.484375 L 3.21875 -2.15625 C 3.3125 -1.609375 3.390625 -0.921875 3.421875 -0.78125 C 3.53125 -0.3125 3.640625 0 4.140625 0 C 4.890625 0 5.3125 -0.5 5.3125 -0.6875 Z M 5.3125 -0.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-1">
|
||||
<path style="stroke:none;" d="M 6.890625 -2.484375 C 6.890625 -2.671875 6.703125 -2.671875 6.5625 -2.671875 L 1.15625 -2.671875 C 1.015625 -2.671875 0.828125 -2.671875 0.828125 -2.484375 C 0.828125 -2.28125 1.015625 -2.28125 1.15625 -2.28125 L 6.5625 -2.28125 C 6.703125 -2.28125 6.890625 -2.28125 6.890625 -2.484375 Z M 6.890625 -2.484375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-1">
|
||||
<path style="stroke:none;" d="M 6.28125 -6.65625 C 6.28125 -6.75 6.21875 -6.78125 6.140625 -6.78125 C 5.890625 -6.78125 5.28125 -6.75 5.046875 -6.75 L 3.578125 -6.78125 C 3.5 -6.78125 3.375 -6.78125 3.375 -6.578125 C 3.375 -6.46875 3.453125 -6.46875 3.703125 -6.46875 C 3.9375 -6.46875 4.03125 -6.46875 4.28125 -6.453125 C 4.53125 -6.421875 4.59375 -6.390625 4.59375 -6.25 C 4.59375 -6.1875 4.578125 -6.125 4.546875 -6.046875 L 3.40625 -1.484375 C 3.171875 -0.53125 2.5 0 1.984375 0 C 1.71875 0 1.203125 -0.09375 1.046875 -0.609375 C 1.078125 -0.609375 1.15625 -0.609375 1.15625 -0.609375 C 1.546875 -0.609375 1.8125 -0.9375 1.8125 -1.234375 C 1.8125 -1.5625 1.53125 -1.65625 1.375 -1.65625 C 1.1875 -1.65625 0.703125 -1.53125 0.703125 -0.859375 C 0.703125 -0.25 1.234375 0.21875 2.015625 0.21875 C 2.921875 0.21875 3.953125 -0.4375 4.203125 -1.421875 L 5.375 -6.046875 C 5.453125 -6.375 5.46875 -6.46875 6.015625 -6.46875 C 6.171875 -6.46875 6.28125 -6.46875 6.28125 -6.65625 Z M 6.28125 -6.65625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-2">
|
||||
<path style="stroke:none;" d="M 4.9375 -1.421875 C 4.9375 -1.515625 4.859375 -1.515625 4.828125 -1.515625 C 4.71875 -1.515625 4.71875 -1.484375 4.6875 -1.34375 C 4.515625 -0.6875 4.328125 -0.109375 3.921875 -0.109375 C 3.65625 -0.109375 3.625 -0.359375 3.625 -0.5625 C 3.625 -0.796875 3.65625 -0.875 3.6875 -1.046875 L 5.125 -6.78125 C 5.125 -6.78125 5.125 -6.890625 4.984375 -6.890625 C 4.84375 -6.890625 3.90625 -6.796875 3.734375 -6.78125 C 3.65625 -6.765625 3.59375 -6.71875 3.59375 -6.59375 C 3.59375 -6.46875 3.6875 -6.46875 3.828125 -6.46875 C 4.3125 -6.46875 4.328125 -6.40625 4.328125 -6.296875 L 4.296875 -6.109375 L 3.703125 -3.75 C 3.515625 -4.125 3.234375 -4.390625 2.78125 -4.390625 C 1.625 -4.390625 0.390625 -2.921875 0.390625 -1.484375 C 0.390625 -0.546875 0.9375 0.109375 1.71875 0.109375 C 1.921875 0.109375 2.40625 0.0625 3 -0.640625 C 3.078125 -0.21875 3.4375 0.109375 3.90625 0.109375 C 4.25 0.109375 4.484375 -0.125 4.640625 -0.4375 C 4.8125 -0.796875 4.9375 -1.421875 4.9375 -1.421875 Z M 3.546875 -3.125 L 3.0625 -1.1875 C 3 -1 3 -0.984375 2.859375 -0.8125 C 2.421875 -0.265625 2.015625 -0.109375 1.734375 -0.109375 C 1.234375 -0.109375 1.09375 -0.65625 1.09375 -1.046875 C 1.09375 -1.53125 1.421875 -2.765625 1.640625 -3.21875 C 1.953125 -3.796875 2.40625 -4.171875 2.796875 -4.171875 C 3.4375 -4.171875 3.578125 -3.359375 3.578125 -3.296875 C 3.578125 -3.234375 3.5625 -3.171875 3.546875 -3.125 Z M 3.546875 -3.125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-1">
|
||||
<path style="stroke:none;" d="M 6.6875 -0.984375 C 6.6875 -1.078125 6.609375 -1.078125 6.578125 -1.078125 C 6.484375 -1.078125 6.484375 -1.046875 6.453125 -0.96875 C 6.296875 -0.40625 6 -0.125 5.71875 -0.125 C 5.578125 -0.125 5.546875 -0.21875 5.546875 -0.375 C 5.546875 -0.53125 5.578125 -0.625 5.703125 -0.921875 C 5.78125 -1.140625 6.078125 -1.875 6.078125 -2.265625 C 6.078125 -2.375 6.078125 -2.671875 5.8125 -2.875 C 5.703125 -2.96875 5.5 -3.0625 5.171875 -3.0625 C 4.546875 -3.0625 4.15625 -2.65625 3.9375 -2.359375 C 3.890625 -2.953125 3.390625 -3.0625 3.03125 -3.0625 C 2.46875 -3.0625 2.078125 -2.703125 1.859375 -2.421875 C 1.8125 -2.90625 1.40625 -3.0625 1.125 -3.0625 C 0.828125 -3.0625 0.671875 -2.84375 0.578125 -2.6875 C 0.421875 -2.421875 0.328125 -2.03125 0.328125 -2 C 0.328125 -1.90625 0.421875 -1.90625 0.4375 -1.90625 C 0.546875 -1.90625 0.546875 -1.921875 0.59375 -2.109375 C 0.703125 -2.53125 0.828125 -2.859375 1.109375 -2.859375 C 1.28125 -2.859375 1.328125 -2.71875 1.328125 -2.53125 C 1.328125 -2.390625 1.265625 -2.140625 1.21875 -1.953125 L 1.0625 -1.328125 L 0.84375 -0.4375 C 0.8125 -0.34375 0.78125 -0.171875 0.78125 -0.15625 C 0.78125 0 0.90625 0.0625 1.015625 0.0625 C 1.140625 0.0625 1.25 -0.015625 1.28125 -0.078125 C 1.3125 -0.140625 1.375 -0.375 1.40625 -0.515625 L 1.5625 -1.140625 C 1.609375 -1.296875 1.640625 -1.4375 1.671875 -1.609375 C 1.75 -1.890625 1.765625 -1.9375 1.96875 -2.234375 C 2.171875 -2.5 2.484375 -2.859375 3.015625 -2.859375 C 3.40625 -2.859375 3.421875 -2.515625 3.421875 -2.375 C 3.421875 -2.203125 3.40625 -2.109375 3.296875 -1.734375 L 3.015625 -0.5625 C 2.96875 -0.421875 2.90625 -0.1875 2.90625 -0.15625 C 2.90625 0 3.03125 0.0625 3.15625 0.0625 C 3.28125 0.0625 3.390625 -0.015625 3.421875 -0.078125 C 3.453125 -0.140625 3.515625 -0.375 3.546875 -0.515625 L 3.703125 -1.140625 C 3.734375 -1.296875 3.78125 -1.4375 3.8125 -1.609375 C 3.890625 -1.90625 3.890625 -1.921875 4.03125 -2.125 C 4.25 -2.46875 4.59375 -2.859375 5.140625 -2.859375 C 5.53125 -2.859375 5.546875 -2.546875 5.546875 -2.375 C 5.546875 -1.96875 5.25 -1.1875 5.140625 -0.90625 C 5.0625 -0.703125 5.03125 -0.640625 5.03125 -0.53125 C 5.03125 -0.15625 5.34375 0.0625 5.703125 0.0625 C 6.390625 0.0625 6.6875 -0.890625 6.6875 -0.984375 Z M 6.6875 -0.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-2">
|
||||
<path style="stroke:none;" d="M 3.96875 -0.984375 C 3.96875 -1.078125 3.875 -1.078125 3.84375 -1.078125 C 3.75 -1.078125 3.75 -1.046875 3.703125 -0.875 C 3.609375 -0.53125 3.484375 -0.125 3.1875 -0.125 C 3.015625 -0.125 2.96875 -0.28125 2.96875 -0.46875 C 2.96875 -0.59375 2.96875 -0.65625 3 -0.75 L 3.96875 -4.609375 C 3.96875 -4.625 3.984375 -4.71875 3.984375 -4.71875 C 3.984375 -4.75 3.96875 -4.8125 3.875 -4.8125 C 3.734375 -4.8125 3.15625 -4.765625 2.984375 -4.75 C 2.9375 -4.734375 2.84375 -4.734375 2.84375 -4.578125 C 2.84375 -4.484375 2.9375 -4.484375 3.015625 -4.484375 C 3.34375 -4.484375 3.34375 -4.4375 3.34375 -4.390625 C 3.34375 -4.34375 3.34375 -4.296875 3.328125 -4.234375 L 2.921875 -2.65625 C 2.78125 -2.875 2.546875 -3.0625 2.21875 -3.0625 C 1.328125 -3.0625 0.421875 -2.078125 0.421875 -1.078125 C 0.421875 -0.40625 0.875 0.0625 1.46875 0.0625 C 1.84375 0.0625 2.171875 -0.140625 2.453125 -0.421875 C 2.59375 0 2.984375 0.0625 3.171875 0.0625 C 3.421875 0.0625 3.59375 -0.078125 3.71875 -0.296875 C 3.875 -0.5625 3.96875 -0.96875 3.96875 -0.984375 Z M 2.8125 -2.171875 L 2.484375 -0.875 C 2.4375 -0.671875 2.28125 -0.53125 2.125 -0.40625 C 2.0625 -0.34375 1.796875 -0.125 1.484375 -0.125 C 1.234375 -0.125 0.984375 -0.3125 0.984375 -0.796875 C 0.984375 -1.171875 1.1875 -1.921875 1.34375 -2.203125 C 1.671875 -2.765625 2.015625 -2.859375 2.21875 -2.859375 C 2.703125 -2.859375 2.828125 -2.34375 2.828125 -2.265625 C 2.828125 -2.234375 2.8125 -2.1875 2.8125 -2.171875 Z M 2.8125 -2.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph8-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph8-1">
|
||||
<path style="stroke:none;" d="M 7.453125 -1.53125 C 7.453125 -1.640625 7.328125 -1.65625 7.28125 -1.65625 C 6.96875 -1.65625 6.109375 -1.265625 6 -0.75 C 5.515625 -0.75 5.171875 -0.796875 4.375 -0.953125 C 4.015625 -1.015625 3.21875 -1.171875 2.65625 -1.171875 C 2.578125 -1.171875 2.46875 -1.171875 2.390625 -1.15625 C 2.71875 -1.71875 2.84375 -2.1875 3.015625 -2.84375 C 3.21875 -3.625 3.609375 -5.015625 4.359375 -5.859375 C 4.5 -6 4.53125 -6.046875 4.796875 -6.046875 C 5.25 -6.046875 5.421875 -5.6875 5.421875 -5.375 C 5.421875 -5.265625 5.390625 -5.15625 5.390625 -5.109375 C 5.390625 -5 5.515625 -4.984375 5.5625 -4.984375 C 5.703125 -4.984375 6 -5.0625 6.390625 -5.3125 C 6.78125 -5.59375 6.84375 -5.765625 6.84375 -6.046875 C 6.84375 -6.5625 6.53125 -6.96875 5.875 -6.96875 C 5.25 -6.96875 4.34375 -6.671875 3.53125 -5.953125 C 2.390625 -4.953125 1.890625 -3.3125 1.609375 -2.1875 C 1.453125 -1.59375 1.25 -0.78125 0.828125 -0.453125 C 0.71875 -0.359375 0.390625 -0.109375 0.390625 0.046875 C 0.390625 0.15625 0.5 0.171875 0.5625 0.171875 C 0.640625 0.171875 0.9375 0.15625 1.5 -0.25 C 1.859375 -0.25 2.203125 -0.234375 3.109375 -0.0625 C 3.546875 0.03125 4.28125 0.171875 4.84375 0.171875 C 6.171875 0.171875 7.453125 -1 7.453125 -1.53125 Z M 7.453125 -1.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph9-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph9-1">
|
||||
<path style="stroke:none;" d="M 5.640625 -0.71875 C 5.640625 -0.78125 5.546875 -0.78125 5.53125 -0.78125 C 5.453125 -0.78125 5.4375 -0.765625 5.40625 -0.671875 C 5.3125 -0.375 5.09375 -0.109375 4.859375 -0.109375 C 4.734375 -0.109375 4.703125 -0.1875 4.703125 -0.296875 C 4.703125 -0.40625 4.71875 -0.453125 4.765625 -0.5625 C 4.859375 -0.765625 5.078125 -1.328125 5.078125 -1.59375 C 5.078125 -1.96875 4.8125 -2.1875 4.34375 -2.1875 C 3.890625 -2.1875 3.5625 -1.90625 3.375 -1.640625 C 3.328125 -2.15625 2.828125 -2.1875 2.625 -2.1875 C 2.140625 -2.1875 1.875 -1.890625 1.6875 -1.703125 C 1.671875 -2.140625 1.21875 -2.1875 1.09375 -2.1875 C 0.59375 -2.1875 0.453125 -1.421875 0.453125 -1.421875 C 0.453125 -1.359375 0.53125 -1.359375 0.5625 -1.359375 C 0.640625 -1.359375 0.65625 -1.375 0.671875 -1.453125 C 0.75 -1.734375 0.859375 -2.015625 1.0625 -2.015625 C 1.234375 -2.015625 1.265625 -1.859375 1.265625 -1.765625 C 1.265625 -1.6875 1.21875 -1.5 1.1875 -1.375 L 1.078125 -0.921875 L 0.96875 -0.484375 C 0.9375 -0.359375 0.875 -0.140625 0.875 -0.125 C 0.875 -0.015625 0.96875 0.046875 1.0625 0.046875 C 1.140625 0.046875 1.25 0.015625 1.296875 -0.109375 L 1.390625 -0.5 L 1.484375 -0.84375 C 1.515625 -0.953125 1.546875 -1.0625 1.5625 -1.171875 C 1.578125 -1.1875 1.75 -1.546875 2 -1.765625 C 2.078125 -1.828125 2.28125 -2.015625 2.609375 -2.015625 C 2.859375 -2.015625 2.953125 -1.875 2.953125 -1.671875 C 2.953125 -1.5625 2.90625 -1.359375 2.859375 -1.203125 L 2.671875 -0.4375 C 2.640625 -0.328125 2.59375 -0.15625 2.59375 -0.125 C 2.59375 -0.015625 2.6875 0.046875 2.78125 0.046875 C 2.859375 0.046875 2.96875 0.015625 3.015625 -0.109375 L 3.109375 -0.5 C 3.28125 -1.15625 3.28125 -1.171875 3.296875 -1.1875 C 3.359375 -1.328125 3.71875 -2.015625 4.3125 -2.015625 C 4.5625 -2.015625 4.671875 -1.890625 4.671875 -1.671875 C 4.671875 -1.375 4.453125 -0.875 4.34375 -0.59375 C 4.3125 -0.53125 4.296875 -0.46875 4.296875 -0.375 C 4.296875 -0.125 4.546875 0.046875 4.828125 0.046875 C 5.359375 0.046875 5.640625 -0.59375 5.640625 -0.71875 Z M 5.640625 -0.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph9-2">
|
||||
<path style="stroke:none;" d="M 3.921875 -0.71875 C 3.921875 -0.78125 3.828125 -0.78125 3.8125 -0.78125 C 3.734375 -0.78125 3.71875 -0.765625 3.6875 -0.671875 C 3.59375 -0.375 3.375 -0.109375 3.140625 -0.109375 C 3.015625 -0.109375 2.984375 -0.1875 2.984375 -0.296875 C 2.984375 -0.40625 3 -0.453125 3.046875 -0.5625 C 3.140625 -0.765625 3.359375 -1.328125 3.359375 -1.59375 C 3.359375 -1.96875 3.09375 -2.1875 2.625 -2.1875 C 2.171875 -2.1875 1.875 -1.921875 1.6875 -1.703125 C 1.671875 -2.109375 1.265625 -2.1875 1.09375 -2.1875 C 0.59375 -2.1875 0.453125 -1.421875 0.453125 -1.421875 C 0.453125 -1.359375 0.53125 -1.359375 0.5625 -1.359375 C 0.640625 -1.359375 0.65625 -1.375 0.671875 -1.453125 C 0.75 -1.734375 0.859375 -2.015625 1.0625 -2.015625 C 1.234375 -2.015625 1.265625 -1.859375 1.265625 -1.765625 C 1.265625 -1.6875 1.21875 -1.5 1.1875 -1.375 L 1.078125 -0.921875 L 0.96875 -0.484375 C 0.9375 -0.359375 0.875 -0.140625 0.875 -0.125 C 0.875 -0.015625 0.96875 0.046875 1.0625 0.046875 C 1.140625 0.046875 1.25 0.015625 1.296875 -0.109375 L 1.390625 -0.5 C 1.5625 -1.15625 1.5625 -1.171875 1.578125 -1.1875 C 1.640625 -1.328125 2 -2.015625 2.59375 -2.015625 C 2.84375 -2.015625 2.953125 -1.890625 2.953125 -1.671875 C 2.953125 -1.375 2.734375 -0.875 2.625 -0.59375 C 2.59375 -0.53125 2.578125 -0.46875 2.578125 -0.375 C 2.578125 -0.125 2.828125 0.046875 3.109375 0.046875 C 3.640625 0.046875 3.921875 -0.59375 3.921875 -0.71875 Z M 3.921875 -0.71875 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
<clipPath id="clip1">
|
||||
<path d="M 346 42 L 367.128906 42 L 367.128906 74 L 346 74 Z M 346 42 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip2">
|
||||
<path d="M 346 93 L 367.128906 93 L 367.128906 126 L 346 126 Z M 346 93 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip3">
|
||||
<path d="M 102 97 L 356 97 L 356 138.710938 L 102 138.710938 Z M 102 97 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -42.519292 -42.519523 L 42.521548 -42.519523 L 42.521548 42.521317 L -42.519292 42.521317 Z M -42.519292 -42.519523 " transform="matrix(0.995386,0,0,-0.995386,295.10044,83.809486)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="283.324031" y="87.22565"/>
|
||||
<use xlink:href="#glyph0-2" x="290.073289" y="87.22565"/>
|
||||
<use xlink:href="#glyph0-3" x="292.828129" y="87.22565"/>
|
||||
<use xlink:href="#glyph0-4" x="297.786444" y="87.22565"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="303.018458" y="87.22565"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.00704 54.855574 L 17.009296 54.855574 L 17.009296 83.201213 L -17.00704 83.201213 Z M -17.00704 54.855574 " transform="matrix(0.995386,0,0,-0.995386,295.10044,83.809486)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="283.487274" y="17.758677"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="293.117631" y="19.246778"/>
|
||||
<use xlink:href="#glyph2-2" x="295.982438" y="19.246778"/>
|
||||
<use xlink:href="#glyph2-2" x="301.099107" y="19.246778"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -71.363324 0.000896759 C -71.363324 5.502847 -75.825319 9.960918 -81.327269 9.960918 C -86.829219 9.960918 -91.291215 5.502847 -91.291215 0.000896759 C -91.291215 -5.501053 -86.829219 -9.963048 -81.327269 -9.963048 C -75.825319 -9.963048 -71.363324 -5.501053 -71.363324 0.000896759 Z M -71.363324 0.000896759 " transform="matrix(0.995386,0,0,-0.995386,295.10044,83.809486)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="207.9803" y="87.957259"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -154.151583 -14.173885 L -120.135247 -14.173885 L -120.135247 14.171754 L -154.151583 14.171754 Z M -154.151583 -14.173885 " transform="matrix(0.995386,0,0,-0.995386,295.10044,83.809486)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="150.779465" y="86.468162"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="160.410817" y="87.955268"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -182.995615 0.000896759 C -182.995615 5.502847 -187.45761 9.960918 -192.95956 9.960918 C -198.46151 9.960918 -202.923505 5.502847 -202.923505 0.000896759 C -202.923505 -5.501053 -198.46151 -9.963048 -192.95956 -9.963048 C -187.45761 -9.963048 -182.995615 -5.501053 -182.995615 0.000896759 Z M -182.995615 0.000896759 " transform="matrix(0.995386,0,0,-0.995386,295.10044,83.809486)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="96.865393" y="87.957259"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-1" x="93.336751" y="101.494504"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -265.783874 -14.173885 L -231.767537 -14.173885 L -231.767537 14.171754 L -265.783874 14.171754 Z M -265.783874 -14.173885 " transform="matrix(0.995386,0,0,-0.995386,295.10044,83.809486)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph6-1" x="44.249304" y="87.197779"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.019942 25.8114 L 66.730913 25.8114 " transform="matrix(0.995386,0,0,-0.995386,295.10044,83.809486)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 364.722656 58.117188 L 360.300781 56.441406 L 361.773438 58.117188 L 360.300781 59.792969 Z M 364.722656 58.117188 "/>
|
||||
<g clip-path="url(#clip1)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051893 0.000120046 L 1.609519 1.68367 L 3.089002 0.000120046 L 1.609519 -1.68343 Z M 6.051893 0.000120046 " transform="matrix(0.995386,0,0,-0.995386,358.698689,58.117307)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-2" x="349.636627" y="66.326532"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph7-1" x="354.800689" y="67.813638"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.02811 25.8114 L 60.02811 69.030356 L 22.138432 69.030356 " transform="matrix(0.995386,0,0,-0.995386,295.10044,83.809486)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053877 -0.00191591 L 1.607579 1.681634 L 3.087062 -0.00191591 L 1.607579 -1.681541 Z M 6.053877 -0.00191591 " transform="matrix(-0.995386,0,0,0.995386,319.963443,15.099563)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 356.832031 58.117188 C 356.832031 57.023438 355.945312 56.132812 354.851562 56.132812 C 353.753906 56.132812 352.867188 57.023438 352.867188 58.117188 C 352.867188 59.210938 353.753906 60.101562 354.851562 60.101562 C 355.945312 60.101562 356.832031 59.210938 356.832031 58.117188 Z M 356.832031 58.117188 "/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.505433 69.030356 L -81.327269 69.030356 L -81.327269 14.595585 " transform="matrix(0.995386,0,0,-0.995386,295.10044,83.809486)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053305 0.000640657 L 1.607007 1.68419 L 3.08649 0.000640657 L 1.607007 -1.682909 Z M 6.053305 0.000640657 " transform="matrix(0,0.995386,0.995386,0,214.1478,66.455096)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -71.363324 0.000896759 L -47.652352 0.000896759 " transform="matrix(0.995386,0,0,-0.995386,295.10044,83.809486)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052117 0.000896759 L 1.609744 1.684446 L 3.089227 0.000896759 L 1.609744 -1.682653 Z M 6.052117 0.000896759 " transform="matrix(0.995386,0,0,-0.995386,244.842997,83.809486)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="241.725867" y="80.009104"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.019942 -25.809607 L 66.730913 -25.809607 " transform="matrix(0.995386,0,0,-0.995386,295.10044,83.809486)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 364.722656 109.5 L 360.300781 107.828125 L 361.773438 109.5 L 360.300781 111.175781 Z M 364.722656 109.5 "/>
|
||||
<g clip-path="url(#clip2)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051893 0.00167347 L 1.609519 1.681299 L 3.089002 0.00167347 L 1.609519 -1.681876 Z M 6.051893 0.00167347 " transform="matrix(0.995386,0,0,-0.995386,358.698689,109.501666)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph6-2" x="349.355929" y="105.701004"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph8-1" x="354.517999" y="105.701004"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip3)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.02811 -25.809607 L 60.02811 -54.15917 L -192.95956 -54.15917 L -192.95956 -14.597715 " transform="matrix(0.995386,0,0,-0.995386,295.10044,83.809486)"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.055098 0.000120127 L 1.608801 1.68367 L 3.088284 0.000120127 L 1.608801 -1.68343 Z M 6.055098 0.000120127 " transform="matrix(0,-0.995386,-0.995386,0,103.03137,101.163877)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 356.832031 109.5 C 356.832031 108.40625 355.945312 107.519531 354.851562 107.519531 C 353.753906 107.519531 352.867188 108.40625 352.867188 109.5 C 352.867188 110.597656 353.753906 111.484375 354.851562 111.484375 C 355.945312 111.484375 356.832031 110.597656 356.832031 109.5 Z M 356.832031 109.5 "/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -182.995615 0.000896759 L -159.284643 0.000896759 " transform="matrix(0.995386,0,0,-0.995386,295.10044,83.809486)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05528 0.000896759 L 1.608983 1.684446 L 3.088466 0.000896759 L 1.608983 -1.682653 Z M 6.05528 0.000896759 " transform="matrix(0.995386,0,0,-0.995386,133.726567,83.809486)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="115.867306" y="77.529598"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph7-2" x="120.660089" y="79.0177"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="124.787953" y="79.0177"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph9-1" x="130.284473" y="80.009104"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -119.636853 0.000896759 L -95.925882 0.000896759 " transform="matrix(0.995386,0,0,-0.995386,295.10044,83.809486)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054852 0.000896759 L 1.608554 1.684446 L 3.088037 0.000896759 L 1.608554 -1.682653 Z M 6.054852 0.000896759 " transform="matrix(0.995386,0,0,-0.995386,196.793399,83.809486)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="190.8955" y="80.009104"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-2" x="197.648197" y="76.409789"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -231.269144 0.000896759 L -207.554248 0.000896759 " transform="matrix(0.995386,0,0,-0.995386,295.10044,83.809486)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054091 0.000896759 L 1.607794 1.684446 L 3.087277 0.000896759 L 1.607794 -1.682653 Z M 6.054091 0.000896759 " transform="matrix(0.995386,0,0,-0.995386,85.676969,83.809486)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-5" x="73.952609" y="78.521002"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph7-2" x="79.196301" y="80.009104"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="83.324166" y="80.009104"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -270.916934 0.000896759 L -294.627906 0.000896759 " transform="matrix(0.995386,0,0,-0.995386,295.10044,83.809486)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05452 0.000896759 L 1.608222 1.684446 L 3.087705 0.000896759 L 1.608222 -1.682653 Z M 6.05452 0.000896759 " transform="matrix(0.995386,0,0,-0.995386,22.610136,83.809486)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-5" x="9.963243" y="77.529598"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-3" x="15.206935" y="79.0177"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph9-2" x="20.890588" y="80.009104"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 43 KiB |
BIN
figs/control_architecture_hac_iff_L_feedforward.pdf
Normal file
BIN
figs/control_architecture_hac_iff_L_feedforward.png
Normal file
After Width: | Height: | Size: 20 KiB |
317
figs/control_architecture_hac_iff_L_feedforward.svg
Normal file
@ -0,0 +1,317 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="389.372pt" height="139.354pt" viewBox="0 0 389.372 139.354" version="1.2">
|
||||
<defs>
|
||||
<g>
|
||||
<symbol overflow="visible" id="glyph0-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<path style="stroke:none;" d="M 6.1875 -4.9375 C 6.1875 -5.90625 5.203125 -6.78125 3.84375 -6.78125 L 0.34375 -6.78125 L 0.34375 -6.46875 L 0.578125 -6.46875 C 1.34375 -6.46875 1.375 -6.359375 1.375 -6 L 1.375 -0.78125 C 1.375 -0.421875 1.34375 -0.3125 0.578125 -0.3125 L 0.34375 -0.3125 L 0.34375 0 C 0.6875 -0.03125 1.421875 -0.03125 1.8125 -0.03125 C 2.1875 -0.03125 2.921875 -0.03125 3.28125 0 L 3.28125 -0.3125 L 3.03125 -0.3125 C 2.265625 -0.3125 2.25 -0.421875 2.25 -0.78125 L 2.25 -3.140625 L 3.921875 -3.140625 C 5.125 -3.140625 6.1875 -3.9375 6.1875 -4.9375 Z M 5.171875 -4.9375 C 5.171875 -4.46875 5.171875 -3.390625 3.59375 -3.390625 L 2.21875 -3.390625 L 2.21875 -6.078125 C 2.21875 -6.40625 2.25 -6.46875 2.703125 -6.46875 L 3.59375 -6.46875 C 5.171875 -6.46875 5.171875 -5.421875 5.171875 -4.9375 Z M 5.171875 -4.9375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 2.53125 0 L 2.53125 -0.3125 C 1.859375 -0.3125 1.75 -0.3125 1.75 -0.75 L 1.75 -6.890625 L 0.328125 -6.78125 L 0.328125 -6.46875 C 1.015625 -6.46875 1.09375 -6.40625 1.09375 -5.90625 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 Z M 2.53125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 4.796875 -0.890625 L 4.796875 -1.4375 L 4.546875 -1.4375 L 4.546875 -0.890625 C 4.546875 -0.3125 4.296875 -0.25 4.1875 -0.25 C 3.859375 -0.25 3.8125 -0.6875 3.8125 -0.75 L 3.8125 -2.734375 C 3.8125 -3.140625 3.8125 -3.53125 3.46875 -3.90625 C 3.078125 -4.28125 2.578125 -4.4375 2.109375 -4.4375 C 1.296875 -4.4375 0.609375 -3.984375 0.609375 -3.328125 C 0.609375 -3.03125 0.796875 -2.859375 1.0625 -2.859375 C 1.34375 -2.859375 1.515625 -3.0625 1.515625 -3.3125 C 1.515625 -3.4375 1.46875 -3.765625 1.015625 -3.765625 C 1.28125 -4.125 1.765625 -4.234375 2.078125 -4.234375 C 2.5625 -4.234375 3.140625 -3.84375 3.140625 -2.953125 L 3.140625 -2.59375 C 2.625 -2.5625 1.9375 -2.53125 1.3125 -2.234375 C 0.5625 -1.890625 0.3125 -1.375 0.3125 -0.9375 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.5625 0.109375 3.015625 -0.28125 3.203125 -0.75 C 3.25 -0.359375 3.515625 0.0625 3.984375 0.0625 C 4.1875 0.0625 4.796875 -0.078125 4.796875 -0.890625 Z M 3.140625 -1.390625 C 3.140625 -0.453125 2.421875 -0.109375 1.96875 -0.109375 C 1.484375 -0.109375 1.078125 -0.453125 1.078125 -0.953125 C 1.078125 -1.5 1.5 -2.328125 3.140625 -2.375 Z M 3.140625 -1.390625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 5.3125 0 L 5.3125 -0.3125 C 4.796875 -0.3125 4.546875 -0.3125 4.53125 -0.609375 L 4.53125 -2.5 C 4.53125 -3.359375 4.53125 -3.65625 4.234375 -4.015625 C 4.09375 -4.1875 3.765625 -4.390625 3.1875 -4.390625 C 2.453125 -4.390625 2 -3.953125 1.71875 -3.34375 L 1.71875 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.015625 -3.96875 1.09375 -3.90625 1.09375 -3.40625 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.546875 0 L 2.546875 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.578125 C 1.78125 -3.609375 2.484375 -4.171875 3.109375 -4.171875 C 3.734375 -4.171875 3.84375 -3.625 3.84375 -3.0625 L 3.84375 -0.75 C 3.84375 -0.3125 3.734375 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.203125 -0.03125 Z M 5.3125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 3.296875 -1.234375 L 3.296875 -1.796875 L 3.046875 -1.796875 L 3.046875 -1.25 C 3.046875 -0.515625 2.75 -0.140625 2.375 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.203125 L 1.71875 -3.96875 L 3.140625 -3.96875 L 3.140625 -4.28125 L 1.71875 -4.28125 L 1.71875 -6.109375 L 1.46875 -6.109375 C 1.453125 -5.28125 1.15625 -4.234375 0.1875 -4.1875 L 0.1875 -3.96875 L 1.03125 -3.96875 L 1.03125 -1.234375 C 1.03125 -0.015625 1.953125 0.109375 2.3125 0.109375 C 3.015625 0.109375 3.296875 -0.59375 3.296875 -1.234375 Z M 3.296875 -1.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 3.296875 0 L 3.296875 -0.3125 L 3.046875 -0.3125 C 2.265625 -0.3125 2.234375 -0.421875 2.234375 -0.78125 L 2.234375 -6 C 2.234375 -6.359375 2.265625 -6.46875 3.046875 -6.46875 L 3.296875 -6.46875 L 3.296875 -6.78125 C 2.953125 -6.75 2.171875 -6.75 1.796875 -6.75 C 1.40625 -6.75 0.625 -6.75 0.28125 -6.78125 L 0.28125 -6.46875 L 0.53125 -6.46875 C 1.3125 -6.46875 1.34375 -6.359375 1.34375 -6 L 1.34375 -0.78125 C 1.34375 -0.421875 1.3125 -0.3125 0.53125 -0.3125 L 0.28125 -0.3125 L 0.28125 0 C 0.625 -0.03125 1.40625 -0.03125 1.78125 -0.03125 C 2.171875 -0.03125 2.953125 -0.03125 3.296875 0 Z M 3.296875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 5.046875 -3.96875 L 5.046875 -4.28125 C 4.8125 -4.25 4.53125 -4.25 4.296875 -4.25 L 3.4375 -4.28125 L 3.4375 -3.96875 C 3.796875 -3.953125 3.90625 -3.734375 3.90625 -3.546875 C 3.90625 -3.453125 3.890625 -3.40625 3.84375 -3.296875 L 2.84375 -0.78125 L 1.71875 -3.546875 C 1.671875 -3.671875 1.671875 -3.703125 1.671875 -3.703125 C 1.671875 -3.96875 2.046875 -3.96875 2.234375 -3.96875 L 2.234375 -4.28125 L 1.15625 -4.25 C 0.890625 -4.25 0.484375 -4.25 0.1875 -4.28125 L 0.1875 -3.96875 C 0.8125 -3.96875 0.859375 -3.90625 0.984375 -3.609375 L 2.40625 -0.078125 C 2.46875 0.0625 2.484375 0.109375 2.625 0.109375 C 2.75 0.109375 2.78125 0.015625 2.828125 -0.078125 L 4.125 -3.296875 C 4.21875 -3.53125 4.390625 -3.953125 5.046875 -3.96875 Z M 5.046875 -3.96875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 4.125 -1.1875 C 4.125 -1.28125 4.03125 -1.296875 3.984375 -1.296875 C 3.90625 -1.296875 3.875 -1.234375 3.859375 -1.15625 C 3.515625 -0.140625 2.625 -0.140625 2.515625 -0.140625 C 2.03125 -0.140625 1.625 -0.4375 1.40625 -0.796875 C 1.09375 -1.28125 1.09375 -1.9375 1.09375 -2.296875 L 3.875 -2.296875 C 4.09375 -2.296875 4.125 -2.296875 4.125 -2.5 C 4.125 -3.484375 3.578125 -4.4375 2.34375 -4.4375 C 1.1875 -4.4375 0.28125 -3.421875 0.28125 -2.1875 C 0.28125 -0.859375 1.3125 0.109375 2.453125 0.109375 C 3.671875 0.109375 4.125 -0.984375 4.125 -1.1875 Z M 3.46875 -2.5 L 1.109375 -2.5 C 1.171875 -3.984375 2 -4.234375 2.34375 -4.234375 C 3.359375 -4.234375 3.46875 -2.890625 3.46875 -2.5 Z M 3.46875 -2.5 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-9">
|
||||
<path style="stroke:none;" d="M 3.609375 -3.78125 C 3.609375 -4.09375 3.296875 -4.390625 2.875 -4.390625 C 2.15625 -4.390625 1.796875 -3.71875 1.65625 -3.296875 L 1.65625 -4.390625 L 0.28125 -4.28125 L 0.28125 -3.96875 C 0.96875 -3.96875 1.046875 -3.90625 1.046875 -3.40625 L 1.046875 -0.75 C 1.046875 -0.3125 0.9375 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.40625 -0.03125 C 1.8125 -0.03125 2.265625 -0.03125 2.671875 0 L 2.671875 -0.3125 L 2.453125 -0.3125 C 1.71875 -0.3125 1.703125 -0.421875 1.703125 -0.78125 L 1.703125 -2.296875 C 1.703125 -3.28125 2.125 -4.171875 2.875 -4.171875 C 2.953125 -4.171875 2.96875 -4.171875 2.984375 -4.15625 C 2.953125 -4.140625 2.765625 -4.03125 2.765625 -3.765625 C 2.765625 -3.5 2.96875 -3.34375 3.1875 -3.34375 C 3.359375 -3.34375 3.609375 -3.46875 3.609375 -3.78125 Z M 3.609375 -3.78125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-10">
|
||||
<path style="stroke:none;" d="M 3.578125 -1.265625 C 3.578125 -1.796875 3.28125 -2.09375 3.15625 -2.21875 C 2.828125 -2.53125 2.4375 -2.609375 2.03125 -2.6875 C 1.46875 -2.796875 0.796875 -2.921875 0.796875 -3.5 C 0.796875 -3.84375 1.0625 -4.25 1.921875 -4.25 C 3 -4.25 3.0625 -3.359375 3.078125 -3.0625 C 3.078125 -2.96875 3.1875 -2.96875 3.1875 -2.96875 C 3.328125 -2.96875 3.328125 -3.015625 3.328125 -3.203125 L 3.328125 -4.203125 C 3.328125 -4.375 3.328125 -4.4375 3.21875 -4.4375 C 3.171875 -4.4375 3.140625 -4.4375 3.015625 -4.328125 C 2.984375 -4.28125 2.890625 -4.203125 2.84375 -4.171875 C 2.46875 -4.4375 2.0625 -4.4375 1.921875 -4.4375 C 0.703125 -4.4375 0.328125 -3.78125 0.328125 -3.21875 C 0.328125 -2.875 0.484375 -2.59375 0.75 -2.375 C 1.078125 -2.125 1.34375 -2.0625 2.0625 -1.921875 C 2.28125 -1.890625 3.09375 -1.71875 3.09375 -1.015625 C 3.09375 -0.5 2.75 -0.109375 1.96875 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.515625 C 0.5625 -1.640625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.4375 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.3125 0.09375 1.765625 0.109375 1.96875 0.109375 C 3.109375 0.109375 3.578125 -0.5625 3.578125 -1.265625 Z M 3.578125 -1.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-11">
|
||||
<path style="stroke:none;" d="M 7.296875 0 L 7.296875 -0.3125 C 6.765625 -0.3125 6.5625 -0.34375 6.265625 -0.78125 L 3.96875 -4.15625 L 5.75 -5.875 C 5.828125 -5.953125 6.359375 -6.453125 7.15625 -6.46875 L 7.15625 -6.78125 C 6.90625 -6.75 6.59375 -6.75 6.3125 -6.75 C 5.96875 -6.75 5.390625 -6.75 5.0625 -6.78125 L 5.0625 -6.46875 C 5.453125 -6.453125 5.515625 -6.234375 5.515625 -6.140625 C 5.515625 -5.984375 5.421875 -5.890625 5.34375 -5.8125 L 2.234375 -2.84375 L 2.234375 -6 C 2.234375 -6.359375 2.25 -6.46875 3.015625 -6.46875 L 3.25 -6.46875 L 3.25 -6.78125 C 2.90625 -6.75 2.171875 -6.75 1.796875 -6.75 C 1.421875 -6.75 0.671875 -6.75 0.328125 -6.78125 L 0.328125 -6.46875 L 0.5625 -6.46875 C 1.328125 -6.46875 1.34375 -6.359375 1.34375 -6 L 1.34375 -0.78125 C 1.34375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.40625 -0.03125 1.78125 -0.03125 C 2.15625 -0.03125 2.90625 -0.03125 3.25 0 L 3.25 -0.3125 L 3.015625 -0.3125 C 2.25 -0.3125 2.234375 -0.421875 2.234375 -0.78125 L 2.234375 -2.515625 L 3.390625 -3.609375 L 5.171875 -0.9375 C 5.234375 -0.859375 5.328125 -0.71875 5.328125 -0.609375 C 5.328125 -0.3125 4.9375 -0.3125 4.75 -0.3125 L 4.75 0 C 5.09375 -0.03125 5.78125 -0.03125 6.15625 -0.03125 Z M 7.296875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-12">
|
||||
<path style="stroke:none;" d="M 2.453125 0 L 2.453125 -0.3125 C 1.796875 -0.3125 1.75 -0.359375 1.75 -0.75 L 1.75 -4.390625 L 0.359375 -4.28125 L 0.359375 -3.96875 C 1.015625 -3.96875 1.09375 -3.90625 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 C 1.765625 -0.03125 2.109375 -0.015625 2.453125 0 Z M 1.90625 -6 C 1.90625 -6.265625 1.671875 -6.515625 1.375 -6.515625 C 1.046875 -6.515625 0.84375 -6.234375 0.84375 -6 C 0.84375 -5.71875 1.078125 -5.46875 1.375 -5.46875 C 1.703125 -5.46875 1.90625 -5.75 1.90625 -6 Z M 1.90625 -6 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-13">
|
||||
<path style="stroke:none;" d="M 8.0625 0 L 8.0625 -0.3125 C 7.546875 -0.3125 7.296875 -0.3125 7.296875 -0.609375 L 7.296875 -2.5 C 7.296875 -3.359375 7.296875 -3.65625 6.984375 -4.015625 C 6.84375 -4.1875 6.515625 -4.390625 5.9375 -4.390625 C 5.109375 -4.390625 4.671875 -3.796875 4.5 -3.40625 C 4.359375 -4.28125 3.625 -4.390625 3.1875 -4.390625 C 2.453125 -4.390625 2 -3.953125 1.71875 -3.34375 L 1.71875 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.015625 -3.96875 1.09375 -3.90625 1.09375 -3.40625 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.546875 0 L 2.546875 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.578125 C 1.78125 -3.609375 2.484375 -4.171875 3.109375 -4.171875 C 3.734375 -4.171875 3.84375 -3.625 3.84375 -3.0625 L 3.84375 -0.75 C 3.84375 -0.3125 3.734375 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.203125 -0.03125 L 5.3125 0 L 5.3125 -0.3125 C 4.640625 -0.3125 4.53125 -0.3125 4.53125 -0.75 L 4.53125 -2.578125 C 4.53125 -3.609375 5.234375 -4.171875 5.875 -4.171875 C 6.5 -4.171875 6.609375 -3.625 6.609375 -3.0625 L 6.609375 -0.75 C 6.609375 -0.3125 6.5 -0.3125 5.828125 -0.3125 L 5.828125 0 L 6.953125 -0.03125 Z M 8.0625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-14">
|
||||
<path style="stroke:none;" d="M 4.125 -1.1875 C 4.125 -1.28125 4.015625 -1.28125 3.984375 -1.28125 C 3.90625 -1.28125 3.875 -1.234375 3.859375 -1.1875 C 3.578125 -0.265625 2.921875 -0.140625 2.5625 -0.140625 C 2.03125 -0.140625 1.15625 -0.5625 1.15625 -2.15625 C 1.15625 -3.78125 1.96875 -4.203125 2.5 -4.203125 C 2.59375 -4.203125 3.21875 -4.1875 3.5625 -3.828125 C 3.15625 -3.796875 3.09375 -3.5 3.09375 -3.375 C 3.09375 -3.109375 3.28125 -2.921875 3.546875 -2.921875 C 3.8125 -2.921875 4.015625 -3.078125 4.015625 -3.390625 C 4.015625 -4.0625 3.25 -4.4375 2.484375 -4.4375 C 1.25 -4.4375 0.34375 -3.375 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.46875 0.109375 C 3.796875 0.109375 4.125 -1.078125 4.125 -1.1875 Z M 4.125 -1.1875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-1">
|
||||
<path style="stroke:none;" d="M 5.84375 -4.171875 C 6.515625 -4.640625 8.328125 -5.90625 8.671875 -6.09375 C 8.90625 -6.21875 9.109375 -6.3125 9.609375 -6.34375 C 9.796875 -6.34375 9.953125 -6.34375 9.953125 -6.625 C 9.953125 -6.71875 9.875 -6.8125 9.765625 -6.8125 C 9.53125 -6.8125 9.234375 -6.78125 8.984375 -6.78125 C 8.578125 -6.78125 8.140625 -6.8125 7.734375 -6.8125 C 7.65625 -6.8125 7.46875 -6.8125 7.46875 -6.515625 C 7.46875 -6.34375 7.640625 -6.34375 7.703125 -6.34375 C 7.78125 -6.34375 7.984375 -6.328125 8.15625 -6.265625 L 3.625 -3.140625 L 4.421875 -6.296875 C 4.640625 -6.34375 4.984375 -6.34375 5.09375 -6.34375 C 5.21875 -6.34375 5.421875 -6.34375 5.453125 -6.375 C 5.5625 -6.4375 5.5625 -6.625 5.5625 -6.625 C 5.5625 -6.75 5.46875 -6.8125 5.34375 -6.8125 C 5.09375 -6.8125 4.84375 -6.78125 4.59375 -6.78125 C 4.34375 -6.78125 4.09375 -6.78125 3.84375 -6.78125 C 3.59375 -6.78125 3.328125 -6.78125 3.078125 -6.78125 C 2.828125 -6.78125 2.5625 -6.8125 2.296875 -6.8125 C 2.21875 -6.8125 2.015625 -6.8125 2.015625 -6.515625 C 2.015625 -6.34375 2.140625 -6.34375 2.4375 -6.34375 C 2.640625 -6.34375 2.828125 -6.328125 3.03125 -6.3125 L 1.625 -0.671875 C 1.578125 -0.5 1.5625 -0.5 1.390625 -0.46875 C 1.21875 -0.46875 1.015625 -0.46875 0.859375 -0.46875 C 0.609375 -0.46875 0.578125 -0.46875 0.546875 -0.453125 C 0.421875 -0.375 0.421875 -0.21875 0.421875 -0.171875 C 0.421875 -0.15625 0.4375 0 0.640625 0 C 0.890625 0 1.15625 -0.015625 1.40625 -0.015625 C 1.640625 -0.015625 1.90625 -0.03125 2.15625 -0.03125 C 2.40625 -0.03125 2.671875 -0.015625 2.921875 -0.015625 C 3.171875 -0.015625 3.4375 0 3.6875 0 C 3.796875 0 3.859375 0 3.921875 -0.0625 C 3.953125 -0.125 3.984375 -0.265625 3.984375 -0.28125 C 3.984375 -0.46875 3.84375 -0.46875 3.578125 -0.46875 C 3.359375 -0.46875 3.171875 -0.46875 2.96875 -0.484375 L 3.484375 -2.546875 L 4.71875 -3.390625 L 6.1875 -0.53125 C 6 -0.46875 5.6875 -0.46875 5.65625 -0.46875 C 5.53125 -0.46875 5.46875 -0.46875 5.40625 -0.390625 C 5.375 -0.34375 5.34375 -0.203125 5.34375 -0.171875 C 5.34375 -0.171875 5.34375 0 5.5625 0 C 5.890625 0 6.703125 -0.03125 7.03125 -0.03125 C 7.234375 -0.03125 7.453125 -0.015625 7.65625 -0.015625 C 7.859375 -0.015625 8.0625 0 8.25 0 C 8.328125 0 8.515625 0 8.515625 -0.28125 C 8.515625 -0.46875 8.359375 -0.46875 8.203125 -0.46875 C 7.75 -0.46875 7.734375 -0.5 7.65625 -0.671875 Z M 5.84375 -4.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<path style="stroke:none;" d="M 3.46875 -3.453125 L 5.296875 -3.453125 C 5.5 -3.453125 5.640625 -3.453125 5.796875 -3.609375 C 6 -3.765625 6 -4 6 -4.015625 C 6 -4.40625 5.640625 -4.40625 5.46875 -4.40625 L 2.203125 -4.40625 C 2 -4.40625 1.5625 -4.40625 1.046875 -3.921875 C 0.6875 -3.609375 0.3125 -3.109375 0.3125 -3 C 0.3125 -2.875 0.421875 -2.875 0.53125 -2.875 C 0.6875 -2.875 0.6875 -2.875 0.78125 -2.984375 C 1.15625 -3.453125 1.8125 -3.453125 2 -3.453125 L 2.890625 -3.453125 L 2.546875 -2.40625 C 2.453125 -2.15625 2.234375 -1.515625 2.15625 -1.265625 C 2.046875 -0.953125 1.859375 -0.421875 1.859375 -0.3125 C 1.859375 -0.046875 2.078125 0.125 2.328125 0.125 C 2.390625 0.125 2.890625 0.125 3 -0.53125 Z M 3.46875 -3.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-3">
|
||||
<path style="stroke:none;" d="M 5.59375 -3.140625 C 5.65625 -3.421875 5.78125 -3.90625 5.78125 -3.96875 C 5.78125 -4.171875 5.609375 -4.40625 5.3125 -4.40625 C 5.15625 -4.40625 4.78125 -4.3125 4.65625 -3.875 C 4.609375 -3.734375 4.171875 -1.9375 4.09375 -1.625 C 4.03125 -1.390625 3.953125 -1.09375 3.9375 -0.921875 C 3.765625 -0.6875 3.375 -0.28125 2.875 -0.28125 C 2.28125 -0.28125 2.265625 -0.78125 2.265625 -1 C 2.265625 -1.609375 2.578125 -2.375 2.859375 -3.09375 C 2.953125 -3.359375 2.984375 -3.421875 2.984375 -3.59375 C 2.984375 -4.171875 2.40625 -4.484375 1.859375 -4.484375 C 0.8125 -4.484375 0.3125 -3.140625 0.3125 -2.9375 C 0.3125 -2.796875 0.46875 -2.796875 0.5625 -2.796875 C 0.671875 -2.796875 0.75 -2.796875 0.78125 -2.921875 C 1.109375 -4.03125 1.640625 -4.125 1.8125 -4.125 C 1.875 -4.125 1.96875 -4.125 1.96875 -3.921875 C 1.96875 -3.6875 1.859375 -3.40625 1.8125 -3.296875 C 1.40625 -2.25 1.203125 -1.703125 1.203125 -1.203125 C 1.203125 -0.078125 2.203125 0.078125 2.78125 0.078125 C 3.078125 0.078125 3.515625 0.046875 4.046875 -0.46875 C 4.359375 0.015625 4.9375 0.078125 5.171875 0.078125 C 5.546875 0.078125 5.828125 -0.125 6.046875 -0.484375 C 6.296875 -0.890625 6.421875 -1.421875 6.421875 -1.46875 C 6.421875 -1.609375 6.265625 -1.609375 6.1875 -1.609375 C 6.078125 -1.609375 6.03125 -1.609375 5.984375 -1.5625 C 5.96875 -1.53125 5.96875 -1.515625 5.90625 -1.265625 C 5.703125 -0.5 5.484375 -0.28125 5.234375 -0.28125 C 5.078125 -0.28125 5 -0.375 5 -0.640625 C 5 -0.8125 5.046875 -0.96875 5.140625 -1.375 C 5.203125 -1.640625 5.3125 -2.046875 5.359375 -2.265625 Z M 5.59375 -3.140625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-4">
|
||||
<path style="stroke:none;" d="M 3.5625 -2.109375 C 3.703125 -2.109375 3.953125 -2.109375 3.953125 -2.359375 C 3.953125 -2.578125 3.765625 -2.578125 3.578125 -2.578125 L 1.875 -2.578125 C 2.03125 -3.1875 2.40625 -3.9375 3.578125 -3.9375 L 4 -3.9375 C 4.140625 -3.9375 4.40625 -3.9375 4.40625 -4.203125 C 4.40625 -4.28125 4.359375 -4.390625 4.203125 -4.40625 L 3.796875 -4.40625 C 3.25 -4.40625 2.203125 -4.40625 1.34375 -3.625 C 0.875 -3.21875 0.5 -2.5625 0.5 -1.78125 C 0.5 -0.421875 1.640625 0.078125 2.796875 0.078125 C 2.9375 0.078125 3.265625 0.078125 3.734375 -0.09375 C 3.765625 -0.09375 4.328125 -0.3125 4.328125 -0.46875 C 4.328125 -0.578125 4.265625 -0.765625 4.140625 -0.765625 C 4.09375 -0.765625 4.078125 -0.765625 3.984375 -0.6875 C 3.390625 -0.34375 3.078125 -0.28125 2.828125 -0.28125 C 2.578125 -0.28125 1.640625 -0.328125 1.640625 -1.359375 C 1.640625 -1.625 1.703125 -1.859375 1.75 -2.109375 Z M 3.5625 -2.109375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-5">
|
||||
<path style="stroke:none;" d="M 4.40625 -3.984375 C 3.859375 -3.875 3.796875 -3.390625 3.796875 -3.296875 C 3.796875 -3.078125 3.96875 -2.84375 4.296875 -2.84375 C 4.640625 -2.84375 5.015625 -3.109375 5.015625 -3.625 C 5.015625 -4.078125 4.65625 -4.484375 4.03125 -4.484375 C 3.484375 -4.484375 3.015625 -4.203125 2.71875 -3.890625 C 2.484375 -4.34375 1.921875 -4.484375 1.5625 -4.484375 C 1.1875 -4.484375 0.90625 -4.28125 0.6875 -3.921875 C 0.453125 -3.53125 0.3125 -3 0.3125 -2.9375 C 0.3125 -2.796875 0.46875 -2.796875 0.5625 -2.796875 C 0.671875 -2.796875 0.703125 -2.796875 0.75 -2.84375 C 0.78125 -2.875 0.78125 -2.890625 0.828125 -3.140625 C 1.015625 -3.890625 1.234375 -4.125 1.515625 -4.125 C 1.65625 -4.125 1.734375 -4.03125 1.734375 -3.765625 C 1.734375 -3.59375 1.703125 -3.484375 1.59375 -3.015625 C 1.546875 -2.84375 1.390625 -2.1875 1.3125 -1.9375 C 1.28125 -1.75 1.171875 -1.3125 1.125 -1.125 C 1.0625 -0.875 0.9375 -0.421875 0.9375 -0.359375 C 0.9375 -0.15625 1.09375 0.078125 1.40625 0.078125 C 1.609375 0.078125 1.953125 -0.046875 2.0625 -0.453125 C 2.078125 -0.46875 2.75 -3.171875 2.765625 -3.234375 C 2.796875 -3.390625 2.796875 -3.40625 2.921875 -3.546875 C 3.15625 -3.84375 3.515625 -4.125 4.015625 -4.125 C 4.265625 -4.125 4.375 -4.015625 4.40625 -3.984375 Z M 4.40625 -3.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-1">
|
||||
<path style="stroke:none;" d="M 2.515625 0 L 2.515625 -0.25 L 2.328125 -0.25 C 1.765625 -0.25 1.765625 -0.328125 1.765625 -0.5625 L 1.765625 -4.171875 C 1.765625 -4.40625 1.765625 -4.484375 2.328125 -4.484375 L 2.515625 -4.484375 L 2.515625 -4.734375 L 1.4375 -4.703125 L 0.359375 -4.734375 L 0.359375 -4.484375 L 0.53125 -4.484375 C 1.109375 -4.484375 1.109375 -4.40625 1.109375 -4.171875 L 1.109375 -0.5625 C 1.109375 -0.328125 1.109375 -0.25 0.53125 -0.25 L 0.359375 -0.25 L 0.359375 0 L 1.421875 -0.03125 Z M 2.515625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<path style="stroke:none;" d="M 4.734375 -3.109375 L 4.515625 -4.703125 L 0.390625 -4.703125 L 0.390625 -4.453125 L 0.5625 -4.453125 C 1.09375 -4.453125 1.109375 -4.390625 1.109375 -4.15625 L 1.109375 -0.5625 C 1.109375 -0.328125 1.09375 -0.25 0.5625 -0.25 L 0.390625 -0.25 L 0.390625 0 L 1.4375 -0.03125 L 2.65625 0 L 2.65625 -0.25 L 2.421875 -0.25 C 1.765625 -0.25 1.765625 -0.34375 1.765625 -0.5625 L 1.765625 -2.234375 L 2.4375 -2.234375 C 3.125 -2.234375 3.21875 -2.03125 3.21875 -1.421875 L 3.46875 -1.421875 L 3.46875 -3.296875 L 3.21875 -3.296875 C 3.21875 -2.703125 3.125 -2.484375 2.4375 -2.484375 L 1.765625 -2.484375 L 1.765625 -4.1875 C 1.765625 -4.40625 1.765625 -4.453125 2.09375 -4.453125 L 3.0625 -4.453125 C 4.1875 -4.453125 4.375 -4.09375 4.5 -3.109375 Z M 4.734375 -3.109375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-3">
|
||||
<path style="stroke:none;" d="M 4.953125 -4.375 C 4.953125 -4.671875 4.65625 -4.890625 4.28125 -4.890625 C 4.03125 -4.890625 3.71875 -4.8125 3.46875 -4.59375 C 3.25 -4.84375 2.84375 -4.890625 2.5625 -4.890625 C 1.8125 -4.890625 0.859375 -4.53125 0.859375 -3.75 L 0.859375 -2.984375 L 0.265625 -2.984375 L 0.265625 -2.734375 L 0.859375 -2.734375 L 0.859375 -0.546875 C 0.859375 -0.25 0.796875 -0.25 0.34375 -0.25 L 0.34375 0 C 0.34375 0 0.84375 -0.03125 1.109375 -0.03125 C 1.375 -0.03125 1.640625 -0.015625 1.90625 0 L 1.90625 -0.25 C 1.453125 -0.25 1.375 -0.25 1.375 -0.546875 L 1.375 -2.734375 L 3.09375 -2.734375 L 3.09375 -0.546875 C 3.09375 -0.25 3.03125 -0.25 2.578125 -0.25 L 2.578125 0 C 2.609375 0 3.09375 -0.03125 3.375 -0.03125 L 4.28125 0 L 4.28125 -0.25 L 4.140625 -0.25 C 3.625 -0.25 3.625 -0.328125 3.625 -0.5625 L 3.625 -2.734375 L 4.5 -2.734375 L 4.5 -2.984375 L 3.59375 -2.984375 L 3.59375 -3.765625 C 3.59375 -4.390625 3.96875 -4.6875 4.28125 -4.6875 C 4.34375 -4.6875 4.40625 -4.671875 4.46875 -4.65625 C 4.375 -4.59375 4.328125 -4.484375 4.328125 -4.375 C 4.328125 -4.1875 4.453125 -4.0625 4.640625 -4.0625 C 4.828125 -4.0625 4.953125 -4.1875 4.953125 -4.375 Z M 3.140625 -4.578125 C 3.0625 -4.546875 2.9375 -4.453125 2.9375 -4.28125 C 2.9375 -4.1875 2.96875 -4.0625 3.109375 -4 C 3.09375 -3.921875 3.09375 -3.84375 3.09375 -3.765625 L 3.09375 -2.984375 L 1.359375 -2.984375 L 1.359375 -3.75 C 1.359375 -4.421875 2.03125 -4.6875 2.546875 -4.6875 C 2.609375 -4.6875 2.90625 -4.6875 3.140625 -4.578125 Z M 3.140625 -4.578125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-1">
|
||||
<path style="stroke:none;" d="M 11.53125 -4.265625 C 11.53125 -4.578125 11.265625 -4.578125 11 -4.578125 L 6.46875 -4.578125 L 6.46875 -9.125 C 6.46875 -9.359375 6.46875 -9.65625 6.171875 -9.65625 C 5.859375 -9.65625 5.859375 -9.375 5.859375 -9.125 L 5.859375 -4.578125 L 1.3125 -4.578125 C 1.078125 -4.578125 0.78125 -4.578125 0.78125 -4.28125 C 0.78125 -3.984375 1.0625 -3.984375 1.3125 -3.984375 L 5.859375 -3.984375 L 5.859375 0.5625 C 5.859375 0.8125 5.859375 1.09375 6.15625 1.09375 C 6.46875 1.09375 6.46875 0.828125 6.46875 0.5625 L 6.46875 -3.984375 L 11 -3.984375 C 11.25 -3.984375 11.53125 -3.984375 11.53125 -4.265625 Z M 11.53125 -4.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-1">
|
||||
<path style="stroke:none;" d="M 5.125 -0.984375 C 5.125 -1.015625 5.09375 -1.046875 5.046875 -1.046875 C 4.9375 -1.046875 4.5 -0.875 4.40625 -0.609375 C 4.3125 -0.3125 4.21875 -0.3125 4.0625 -0.3125 C 3.6875 -0.3125 3.1875 -0.4375 2.828125 -0.53125 C 2.484375 -0.625 2.109375 -0.703125 1.734375 -0.703125 C 1.71875 -0.703125 1.578125 -0.703125 1.484375 -0.6875 C 1.859375 -1.234375 1.953125 -1.5625 2.0625 -2 C 2.203125 -2.53125 2.40625 -3.25 2.75 -3.828125 C 3.078125 -4.375 3.25 -4.421875 3.484375 -4.421875 C 3.8125 -4.421875 4.03125 -4.171875 4.03125 -3.828125 C 4.03125 -3.71875 4.015625 -3.640625 4.015625 -3.625 C 4.015625 -3.578125 4.03125 -3.5625 4.09375 -3.5625 C 4.125 -3.5625 4.28125 -3.578125 4.53125 -3.75 C 4.6875 -3.859375 4.75 -3.921875 4.75 -4.203125 C 4.75 -4.453125 4.609375 -4.875 4.046875 -4.875 C 3.4375 -4.875 2.78125 -4.46875 2.421875 -4.03125 C 1.953125 -3.515625 1.640625 -2.8125 1.359375 -1.671875 C 1.1875 -1.03125 0.9375 -0.5 0.609375 -0.234375 C 0.546875 -0.171875 0.359375 0 0.359375 0.09375 C 0.359375 0.140625 0.421875 0.140625 0.4375 0.140625 C 0.6875 0.140625 1 -0.15625 1.09375 -0.25 C 1.296875 -0.25 1.5625 -0.234375 2.203125 -0.078125 C 2.734375 0.0625 3.109375 0.140625 3.5 0.140625 C 4.359375 0.140625 5.125 -0.65625 5.125 -0.984375 Z M 5.125 -0.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-2">
|
||||
<path style="stroke:none;" d="M 2.078125 -3.5 C 2.078125 -3.71875 1.890625 -3.875 1.671875 -3.875 C 1.390625 -3.875 1.3125 -3.65625 1.296875 -3.5625 L 0.375 -0.5625 L 0.328125 -0.4375 C 0.328125 -0.359375 0.546875 -0.28125 0.609375 -0.28125 C 0.65625 -0.28125 0.6875 -0.3125 0.703125 -0.390625 L 2.015625 -3.28125 C 2.046875 -3.34375 2.078125 -3.40625 2.078125 -3.5 Z M 2.078125 -3.5 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-3">
|
||||
<path style="stroke:none;" d="M 5.3125 -0.6875 C 5.3125 -0.734375 5.25 -0.734375 5.21875 -0.734375 C 5.109375 -0.734375 4.828125 -0.625 4.6875 -0.421875 C 4.453125 -0.421875 4.203125 -0.421875 4.078125 -1.046875 L 3.875 -2.46875 C 3.875 -2.484375 3.875 -2.5 3.90625 -2.515625 L 4.140625 -2.65625 C 6.203125 -3.78125 6.203125 -4.09375 6.203125 -4.328125 C 6.203125 -4.53125 6.09375 -4.734375 5.8125 -4.734375 C 5.59375 -4.734375 5.25 -4.5 5.25 -4.375 C 5.25 -4.328125 5.28125 -4.328125 5.328125 -4.3125 C 5.515625 -4.296875 5.5625 -4.140625 5.5625 -4.015625 C 5.5625 -3.859375 5.5625 -3.78125 4.9375 -3.390625 C 4.796875 -3.296875 4.65625 -3.21875 3.84375 -2.765625 C 3.75 -3.28125 3.6875 -3.84375 3.640625 -4.078125 C 3.5 -4.640625 3.25 -4.734375 2.953125 -4.734375 C 2.171875 -4.734375 1.78125 -4.234375 1.78125 -4.0625 C 1.78125 -4 1.828125 -4 1.859375 -4 C 1.984375 -4 2.265625 -4.125 2.390625 -4.3125 C 2.625 -4.3125 2.859375 -4.3125 3 -3.75 L 3.1875 -2.421875 C 2.78125 -2.21875 2.0625 -1.828125 1.640625 -1.5625 C 0.546875 -0.890625 0.484375 -0.625 0.484375 -0.40625 C 0.484375 -0.203125 0.59375 0 0.875 0 C 1.09375 0 1.4375 -0.234375 1.4375 -0.375 C 1.4375 -0.421875 1.390625 -0.421875 1.359375 -0.421875 C 1.203125 -0.4375 1.125 -0.5625 1.125 -0.734375 C 1.125 -0.875 1.125 -0.984375 1.984375 -1.484375 L 3.21875 -2.15625 C 3.3125 -1.609375 3.390625 -0.921875 3.421875 -0.78125 C 3.53125 -0.3125 3.640625 0 4.140625 0 C 4.890625 0 5.3125 -0.5 5.3125 -0.6875 Z M 5.3125 -0.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-1">
|
||||
<path style="stroke:none;" d="M 1.65625 -0.046875 C 1.65625 -0.46875 1.484375 -0.796875 1.171875 -0.796875 C 0.9375 -0.796875 0.78125 -0.625 0.78125 -0.40625 C 0.78125 -0.1875 0.9375 0 1.171875 0 C 1.34375 0 1.46875 -0.109375 1.46875 -0.109375 C 1.46875 0.265625 1.390625 0.71875 0.921875 1.15625 C 0.890625 1.1875 0.875 1.203125 0.875 1.234375 C 0.875 1.296875 0.921875 1.34375 0.96875 1.34375 C 1.0625 1.34375 1.65625 0.78125 1.65625 -0.046875 Z M 1.65625 -0.046875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-2">
|
||||
<path style="stroke:none;" d="M 6.6875 -0.984375 C 6.6875 -1.078125 6.609375 -1.078125 6.578125 -1.078125 C 6.484375 -1.078125 6.484375 -1.046875 6.453125 -0.96875 C 6.296875 -0.40625 6 -0.125 5.71875 -0.125 C 5.578125 -0.125 5.546875 -0.21875 5.546875 -0.375 C 5.546875 -0.53125 5.578125 -0.625 5.703125 -0.921875 C 5.78125 -1.140625 6.078125 -1.875 6.078125 -2.265625 C 6.078125 -2.375 6.078125 -2.671875 5.8125 -2.875 C 5.703125 -2.96875 5.5 -3.0625 5.171875 -3.0625 C 4.546875 -3.0625 4.15625 -2.65625 3.9375 -2.359375 C 3.890625 -2.953125 3.390625 -3.0625 3.03125 -3.0625 C 2.46875 -3.0625 2.078125 -2.703125 1.859375 -2.421875 C 1.8125 -2.90625 1.40625 -3.0625 1.125 -3.0625 C 0.828125 -3.0625 0.671875 -2.84375 0.578125 -2.6875 C 0.421875 -2.421875 0.328125 -2.03125 0.328125 -2 C 0.328125 -1.90625 0.421875 -1.90625 0.4375 -1.90625 C 0.546875 -1.90625 0.546875 -1.921875 0.59375 -2.109375 C 0.703125 -2.53125 0.828125 -2.859375 1.109375 -2.859375 C 1.28125 -2.859375 1.328125 -2.71875 1.328125 -2.53125 C 1.328125 -2.390625 1.265625 -2.140625 1.21875 -1.953125 L 1.0625 -1.328125 L 0.84375 -0.4375 C 0.8125 -0.34375 0.78125 -0.171875 0.78125 -0.15625 C 0.78125 0 0.90625 0.0625 1.015625 0.0625 C 1.140625 0.0625 1.25 -0.015625 1.28125 -0.078125 C 1.3125 -0.140625 1.375 -0.375 1.40625 -0.515625 L 1.5625 -1.140625 C 1.609375 -1.296875 1.640625 -1.4375 1.671875 -1.609375 C 1.75 -1.890625 1.765625 -1.9375 1.96875 -2.234375 C 2.171875 -2.5 2.484375 -2.859375 3.015625 -2.859375 C 3.40625 -2.859375 3.421875 -2.515625 3.421875 -2.375 C 3.421875 -2.203125 3.40625 -2.109375 3.296875 -1.734375 L 3.015625 -0.5625 C 2.96875 -0.421875 2.90625 -0.1875 2.90625 -0.15625 C 2.90625 0 3.03125 0.0625 3.15625 0.0625 C 3.28125 0.0625 3.390625 -0.015625 3.421875 -0.078125 C 3.453125 -0.140625 3.515625 -0.375 3.546875 -0.515625 L 3.703125 -1.140625 C 3.734375 -1.296875 3.78125 -1.4375 3.8125 -1.609375 C 3.890625 -1.90625 3.890625 -1.921875 4.03125 -2.125 C 4.25 -2.46875 4.59375 -2.859375 5.140625 -2.859375 C 5.53125 -2.859375 5.546875 -2.546875 5.546875 -2.375 C 5.546875 -1.96875 5.25 -1.1875 5.140625 -0.90625 C 5.0625 -0.703125 5.03125 -0.640625 5.03125 -0.53125 C 5.03125 -0.15625 5.34375 0.0625 5.703125 0.0625 C 6.390625 0.0625 6.6875 -0.890625 6.6875 -0.984375 Z M 6.6875 -0.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-3">
|
||||
<path style="stroke:none;" d="M 3.96875 -0.984375 C 3.96875 -1.078125 3.875 -1.078125 3.84375 -1.078125 C 3.75 -1.078125 3.75 -1.046875 3.703125 -0.875 C 3.609375 -0.53125 3.484375 -0.125 3.1875 -0.125 C 3.015625 -0.125 2.96875 -0.28125 2.96875 -0.46875 C 2.96875 -0.59375 2.96875 -0.65625 3 -0.75 L 3.96875 -4.609375 C 3.96875 -4.625 3.984375 -4.71875 3.984375 -4.71875 C 3.984375 -4.75 3.96875 -4.8125 3.875 -4.8125 C 3.734375 -4.8125 3.15625 -4.765625 2.984375 -4.75 C 2.9375 -4.734375 2.84375 -4.734375 2.84375 -4.578125 C 2.84375 -4.484375 2.9375 -4.484375 3.015625 -4.484375 C 3.34375 -4.484375 3.34375 -4.4375 3.34375 -4.390625 C 3.34375 -4.34375 3.34375 -4.296875 3.328125 -4.234375 L 2.921875 -2.65625 C 2.78125 -2.875 2.546875 -3.0625 2.21875 -3.0625 C 1.328125 -3.0625 0.421875 -2.078125 0.421875 -1.078125 C 0.421875 -0.40625 0.875 0.0625 1.46875 0.0625 C 1.84375 0.0625 2.171875 -0.140625 2.453125 -0.421875 C 2.59375 0 2.984375 0.0625 3.171875 0.0625 C 3.421875 0.0625 3.59375 -0.078125 3.71875 -0.296875 C 3.875 -0.5625 3.96875 -0.96875 3.96875 -0.984375 Z M 2.8125 -2.171875 L 2.484375 -0.875 C 2.4375 -0.671875 2.28125 -0.53125 2.125 -0.40625 C 2.0625 -0.34375 1.796875 -0.125 1.484375 -0.125 C 1.234375 -0.125 0.984375 -0.3125 0.984375 -0.796875 C 0.984375 -1.171875 1.1875 -1.921875 1.34375 -2.203125 C 1.671875 -2.765625 2.015625 -2.859375 2.21875 -2.859375 C 2.703125 -2.859375 2.828125 -2.34375 2.828125 -2.265625 C 2.828125 -2.234375 2.8125 -2.1875 2.8125 -2.171875 Z M 2.8125 -2.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-4">
|
||||
<path style="stroke:none;" d="M 4.5625 -0.984375 C 4.5625 -1.078125 4.46875 -1.078125 4.453125 -1.078125 C 4.359375 -1.078125 4.34375 -1.046875 4.328125 -0.96875 C 4.15625 -0.40625 3.859375 -0.125 3.59375 -0.125 C 3.4375 -0.125 3.40625 -0.21875 3.40625 -0.375 C 3.40625 -0.53125 3.453125 -0.625 3.578125 -0.921875 C 3.65625 -1.140625 3.9375 -1.875 3.9375 -2.265625 C 3.9375 -2.9375 3.40625 -3.0625 3.03125 -3.0625 C 2.46875 -3.0625 2.078125 -2.703125 1.859375 -2.421875 C 1.8125 -2.90625 1.40625 -3.0625 1.125 -3.0625 C 0.828125 -3.0625 0.671875 -2.84375 0.578125 -2.6875 C 0.421875 -2.421875 0.328125 -2.03125 0.328125 -2 C 0.328125 -1.90625 0.421875 -1.90625 0.4375 -1.90625 C 0.546875 -1.90625 0.546875 -1.921875 0.59375 -2.109375 C 0.703125 -2.53125 0.828125 -2.859375 1.109375 -2.859375 C 1.28125 -2.859375 1.328125 -2.71875 1.328125 -2.53125 C 1.328125 -2.390625 1.265625 -2.140625 1.21875 -1.953125 L 1.0625 -1.328125 L 0.84375 -0.4375 C 0.8125 -0.34375 0.78125 -0.171875 0.78125 -0.15625 C 0.78125 0 0.90625 0.0625 1.015625 0.0625 C 1.140625 0.0625 1.25 -0.015625 1.28125 -0.078125 C 1.3125 -0.140625 1.375 -0.375 1.40625 -0.515625 L 1.5625 -1.140625 C 1.609375 -1.296875 1.640625 -1.4375 1.671875 -1.609375 C 1.75 -1.890625 1.765625 -1.9375 1.96875 -2.234375 C 2.171875 -2.5 2.484375 -2.859375 3.015625 -2.859375 C 3.40625 -2.859375 3.421875 -2.515625 3.421875 -2.375 C 3.421875 -1.96875 3.125 -1.1875 3.015625 -0.90625 C 2.9375 -0.703125 2.90625 -0.640625 2.90625 -0.53125 C 2.90625 -0.15625 3.21875 0.0625 3.5625 0.0625 C 4.265625 0.0625 4.5625 -0.890625 4.5625 -0.984375 Z M 4.5625 -0.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-1">
|
||||
<path style="stroke:none;" d="M 4.9375 -1.421875 C 4.9375 -1.515625 4.859375 -1.515625 4.828125 -1.515625 C 4.71875 -1.515625 4.71875 -1.484375 4.6875 -1.34375 C 4.515625 -0.6875 4.328125 -0.109375 3.921875 -0.109375 C 3.65625 -0.109375 3.625 -0.359375 3.625 -0.5625 C 3.625 -0.796875 3.65625 -0.875 3.6875 -1.046875 L 5.125 -6.78125 C 5.125 -6.78125 5.125 -6.890625 4.984375 -6.890625 C 4.84375 -6.890625 3.90625 -6.796875 3.734375 -6.78125 C 3.65625 -6.765625 3.59375 -6.71875 3.59375 -6.59375 C 3.59375 -6.46875 3.6875 -6.46875 3.828125 -6.46875 C 4.3125 -6.46875 4.328125 -6.40625 4.328125 -6.296875 L 4.296875 -6.109375 L 3.703125 -3.75 C 3.515625 -4.125 3.234375 -4.390625 2.78125 -4.390625 C 1.625 -4.390625 0.390625 -2.921875 0.390625 -1.484375 C 0.390625 -0.546875 0.9375 0.109375 1.71875 0.109375 C 1.921875 0.109375 2.40625 0.0625 3 -0.640625 C 3.078125 -0.21875 3.4375 0.109375 3.90625 0.109375 C 4.25 0.109375 4.484375 -0.125 4.640625 -0.4375 C 4.8125 -0.796875 4.9375 -1.421875 4.9375 -1.421875 Z M 3.546875 -3.125 L 3.0625 -1.1875 C 3 -1 3 -0.984375 2.859375 -0.8125 C 2.421875 -0.265625 2.015625 -0.109375 1.734375 -0.109375 C 1.234375 -0.109375 1.09375 -0.65625 1.09375 -1.046875 C 1.09375 -1.53125 1.421875 -2.765625 1.640625 -3.21875 C 1.953125 -3.796875 2.40625 -4.171875 2.796875 -4.171875 C 3.4375 -4.171875 3.578125 -3.359375 3.578125 -3.296875 C 3.578125 -3.234375 3.5625 -3.171875 3.546875 -3.125 Z M 3.546875 -3.125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-1">
|
||||
<path style="stroke:none;" d="M 7.453125 -1.53125 C 7.453125 -1.640625 7.328125 -1.65625 7.28125 -1.65625 C 6.96875 -1.65625 6.109375 -1.265625 6 -0.75 C 5.515625 -0.75 5.171875 -0.796875 4.375 -0.953125 C 4.015625 -1.015625 3.21875 -1.171875 2.65625 -1.171875 C 2.578125 -1.171875 2.46875 -1.171875 2.390625 -1.15625 C 2.71875 -1.71875 2.84375 -2.1875 3.015625 -2.84375 C 3.21875 -3.625 3.609375 -5.015625 4.359375 -5.859375 C 4.5 -6 4.53125 -6.046875 4.796875 -6.046875 C 5.25 -6.046875 5.421875 -5.6875 5.421875 -5.375 C 5.421875 -5.265625 5.390625 -5.15625 5.390625 -5.109375 C 5.390625 -5 5.515625 -4.984375 5.5625 -4.984375 C 5.703125 -4.984375 6 -5.0625 6.390625 -5.3125 C 6.78125 -5.59375 6.84375 -5.765625 6.84375 -6.046875 C 6.84375 -6.5625 6.53125 -6.96875 5.875 -6.96875 C 5.25 -6.96875 4.34375 -6.671875 3.53125 -5.953125 C 2.390625 -4.953125 1.890625 -3.3125 1.609375 -2.1875 C 1.453125 -1.59375 1.25 -0.78125 0.828125 -0.453125 C 0.71875 -0.359375 0.390625 -0.109375 0.390625 0.046875 C 0.390625 0.15625 0.5 0.171875 0.5625 0.171875 C 0.640625 0.171875 0.9375 0.15625 1.5 -0.25 C 1.859375 -0.25 2.203125 -0.234375 3.109375 -0.0625 C 3.546875 0.03125 4.28125 0.171875 4.84375 0.171875 C 6.171875 0.171875 7.453125 -1 7.453125 -1.53125 Z M 7.453125 -1.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-2">
|
||||
<path style="stroke:none;" d="M 7.71875 -1.0625 C 7.71875 -1.171875 7.609375 -1.1875 7.546875 -1.1875 C 7.375 -1.1875 7.046875 -1.078125 6.765625 -0.859375 C 6.375 -0.859375 6.046875 -0.859375 5.890625 -2.09375 L 5.71875 -3.625 C 8.34375 -5.046875 9 -5.703125 9 -6.234375 C 9 -6.640625 8.625 -6.8125 8.328125 -6.8125 C 7.890625 -6.8125 7.203125 -6.3125 7.203125 -6.078125 C 7.203125 -6.015625 7.21875 -5.953125 7.375 -5.9375 C 7.6875 -5.90625 7.703125 -5.671875 7.703125 -5.609375 C 7.703125 -5.5 7.671875 -5.4375 7.4375 -5.265625 C 7.03125 -4.953125 6.3125 -4.546875 5.671875 -4.1875 C 5.53125 -5.09375 5.53125 -5.578125 5.40625 -6.015625 C 5.171875 -6.8125 4.65625 -6.8125 4.359375 -6.8125 C 3 -6.8125 2.40625 -6 2.40625 -5.75 C 2.40625 -5.640625 2.53125 -5.609375 2.59375 -5.609375 C 2.59375 -5.609375 2.921875 -5.609375 3.359375 -5.9375 C 3.6875 -5.9375 4.0625 -5.9375 4.203125 -4.96875 L 4.375 -3.484375 C 3.703125 -3.109375 2.78125 -2.625 2.046875 -2.140625 C 1.609375 -1.859375 0.5625 -1.1875 0.5625 -0.578125 C 0.5625 -0.171875 0.90625 0 1.21875 0 C 1.65625 0 2.34375 -0.484375 2.34375 -0.734375 C 2.34375 -0.84375 2.234375 -0.859375 2.15625 -0.859375 C 1.96875 -0.890625 1.84375 -1.015625 1.84375 -1.203125 C 1.84375 -1.3125 1.890625 -1.375 2.15625 -1.5625 C 2.625 -1.921875 3.375 -2.328125 4.4375 -2.921875 C 4.640625 -1.125 4.65625 -1 4.6875 -0.890625 C 4.921875 0 5.453125 0 5.78125 0 C 7.140625 0 7.71875 -0.828125 7.71875 -1.0625 Z M 7.71875 -1.0625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph8-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph8-1">
|
||||
<path style="stroke:none;" d="M 3.921875 -0.71875 C 3.921875 -0.78125 3.828125 -0.78125 3.8125 -0.78125 C 3.734375 -0.78125 3.71875 -0.765625 3.6875 -0.671875 C 3.59375 -0.375 3.375 -0.109375 3.140625 -0.109375 C 3.015625 -0.109375 2.984375 -0.1875 2.984375 -0.296875 C 2.984375 -0.40625 3 -0.453125 3.046875 -0.5625 C 3.140625 -0.765625 3.359375 -1.328125 3.359375 -1.59375 C 3.359375 -1.96875 3.09375 -2.1875 2.625 -2.1875 C 2.171875 -2.1875 1.875 -1.921875 1.6875 -1.703125 C 1.671875 -2.109375 1.265625 -2.1875 1.09375 -2.1875 C 0.59375 -2.1875 0.453125 -1.421875 0.453125 -1.421875 C 0.453125 -1.359375 0.53125 -1.359375 0.5625 -1.359375 C 0.640625 -1.359375 0.65625 -1.375 0.671875 -1.453125 C 0.75 -1.734375 0.859375 -2.015625 1.0625 -2.015625 C 1.234375 -2.015625 1.265625 -1.859375 1.265625 -1.765625 C 1.265625 -1.6875 1.21875 -1.5 1.1875 -1.375 L 1.078125 -0.921875 L 0.96875 -0.484375 C 0.9375 -0.359375 0.875 -0.140625 0.875 -0.125 C 0.875 -0.015625 0.96875 0.046875 1.0625 0.046875 C 1.140625 0.046875 1.25 0.015625 1.296875 -0.109375 L 1.390625 -0.5 C 1.5625 -1.15625 1.5625 -1.171875 1.578125 -1.1875 C 1.640625 -1.328125 2 -2.015625 2.59375 -2.015625 C 2.84375 -2.015625 2.953125 -1.890625 2.953125 -1.671875 C 2.953125 -1.375 2.734375 -0.875 2.625 -0.59375 C 2.59375 -0.53125 2.578125 -0.46875 2.578125 -0.375 C 2.578125 -0.125 2.828125 0.046875 3.109375 0.046875 C 3.640625 0.046875 3.921875 -0.59375 3.921875 -0.71875 Z M 3.921875 -0.71875 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
<clipPath id="clip1">
|
||||
<path d="M 367 42 L 388.160156 42 L 388.160156 74 L 367 74 Z M 367 42 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip2">
|
||||
<path d="M 367 93 L 388.160156 93 L 388.160156 126 L 367 126 Z M 367 93 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip3">
|
||||
<path d="M 123 97 L 377 97 L 377 138.710938 L 123 138.710938 Z M 123 97 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip4">
|
||||
<path d="M 367 68 L 388.160156 68 L 388.160156 100 L 367 100 Z M 367 68 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -42.52062 -42.519523 L 42.520221 -42.519523 L 42.520221 42.521317 L -42.52062 42.521317 Z M -42.52062 -42.519523 " transform="matrix(0.995386,0,0,-0.995386,316.133011,83.809486)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="304.356603" y="87.22565"/>
|
||||
<use xlink:href="#glyph0-2" x="311.105861" y="87.22565"/>
|
||||
<use xlink:href="#glyph0-3" x="313.860701" y="87.22565"/>
|
||||
<use xlink:href="#glyph0-4" x="318.819015" y="87.22565"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="324.051029" y="87.22565"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.008367 54.855574 L 17.007969 54.855574 L 17.007969 83.201213 L -17.008367 83.201213 Z M -17.008367 54.855574 " transform="matrix(0.995386,0,0,-0.995386,316.133011,83.809486)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="304.519846" y="17.758677"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="314.150203" y="19.246778"/>
|
||||
<use xlink:href="#glyph2-2" x="317.01501" y="19.246778"/>
|
||||
<use xlink:href="#glyph2-2" x="322.131678" y="19.246778"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -71.364652 0.000896759 C -71.364652 5.502847 -75.826647 9.960918 -81.328597 9.960918 C -86.830547 9.960918 -91.292542 5.502847 -91.292542 0.000896759 C -91.292542 -5.501053 -86.830547 -9.963048 -81.328597 -9.963048 C -75.826647 -9.963048 -71.364652 -5.501053 -71.364652 0.000896759 Z M -71.364652 0.000896759 " transform="matrix(0.995386,0,0,-0.995386,316.133011,83.809486)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="229.012872" y="87.957259"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -154.15291 -14.173885 L -120.136574 -14.173885 L -120.136574 14.171754 L -154.15291 14.171754 Z M -154.15291 -14.173885 " transform="matrix(0.995386,0,0,-0.995386,316.133011,83.809486)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="171.812036" y="86.468162"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="181.443388" y="87.955268"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -154.15291 43.518104 L -120.136574 43.518104 L -120.136574 71.863742 L -154.15291 71.863742 Z M -154.15291 43.518104 " transform="matrix(0.995386,0,0,-0.995386,316.133011,83.809486)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="168.283394" y="28.370484"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="177.913751" y="29.85759"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-1" x="183.409275" y="29.85759"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="185.764358" y="29.85759"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -182.996942 0.000896759 C -182.996942 5.502847 -187.458938 9.960918 -192.960888 9.960918 C -198.462838 9.960918 -202.920909 5.502847 -202.920909 0.000896759 C -202.920909 -5.501053 -198.462838 -9.963048 -192.960888 -9.963048 C -187.458938 -9.963048 -182.996942 -5.501053 -182.996942 0.000896759 Z M -182.996942 0.000896759 " transform="matrix(0.995386,0,0,-0.995386,316.133011,83.809486)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="117.897964" y="87.957259"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -287.169028 -14.173885 L -231.768865 -14.173885 L -231.768865 14.171754 L -287.169028 14.171754 Z M -287.169028 -14.173885 " transform="matrix(0.995386,0,0,-0.995386,316.133011,83.809486)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="42.672684" y="81.275234"/>
|
||||
<use xlink:href="#glyph0-4" x="46.253579" y="81.275234"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="51.485593" y="81.275234"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-8" x="56.441925" y="81.275234"/>
|
||||
<use xlink:href="#glyph0-9" x="60.849867" y="81.275234"/>
|
||||
<use xlink:href="#glyph0-10" x="64.734211" y="81.275234"/>
|
||||
<use xlink:href="#glyph0-8" x="68.646321" y="81.275234"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-11" x="33.595762" y="93.176066"/>
|
||||
<use xlink:href="#glyph0-12" x="41.308917" y="93.176066"/>
|
||||
<use xlink:href="#glyph0-4" x="44.063756" y="93.176066"/>
|
||||
<use xlink:href="#glyph0-8" x="49.573436" y="93.176066"/>
|
||||
<use xlink:href="#glyph0-13" x="53.981378" y="93.176066"/>
|
||||
<use xlink:href="#glyph0-3" x="62.244905" y="93.176066"/>
|
||||
<use xlink:href="#glyph0-5" x="67.20322" y="93.176066"/>
|
||||
<use xlink:href="#glyph0-12" x="71.059798" y="93.176066"/>
|
||||
<use xlink:href="#glyph0-14" x="73.814637" y="93.176066"/>
|
||||
<use xlink:href="#glyph0-10" x="78.222579" y="93.176066"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.018614 25.8114 L 66.73351 25.8114 " transform="matrix(0.995386,0,0,-0.995386,316.133011,83.809486)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 385.757812 58.117188 L 381.332031 56.441406 L 382.804688 58.117188 L 381.332031 59.792969 Z M 385.757812 58.117188 "/>
|
||||
<g clip-path="url(#clip1)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05449 0.000120046 L 1.608192 1.68367 L 3.087675 0.000120046 L 1.608192 -1.68343 Z M 6.05449 0.000120046 " transform="matrix(0.995386,0,0,-0.995386,379.73126,58.117307)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-2" x="370.669199" y="66.326532"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-2" x="375.83326" y="67.813638"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.026782 25.8114 L 60.026782 69.030356 L 22.141029 69.030356 " transform="matrix(0.995386,0,0,-0.995386,316.133011,83.809486)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.055205 -0.00191591 L 1.608907 1.681634 L 3.08839 -0.00191591 L 1.608907 -1.681541 Z M 6.055205 -0.00191591 " transform="matrix(-0.995386,0,0,0.995386,340.996014,15.099563)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 377.867188 58.117188 C 377.867188 57.023438 376.976562 56.132812 375.882812 56.132812 C 374.789062 56.132812 373.898438 57.023438 373.898438 58.117188 C 373.898438 59.210938 374.789062 60.101562 375.882812 60.101562 C 376.976562 60.101562 377.867188 59.210938 377.867188 58.117188 Z M 377.867188 58.117188 "/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.506761 69.030356 L -81.328597 69.030356 L -81.328597 14.595585 " transform="matrix(0.995386,0,0,-0.995386,316.133011,83.809486)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053305 -0.000686883 L 1.607007 1.682863 L 3.08649 -0.000686883 L 1.607007 -1.684237 Z M 6.053305 -0.000686883 " transform="matrix(0,0.995386,0.995386,0,235.180371,66.455096)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -71.364652 0.000896759 L -47.65368 0.000896759 " transform="matrix(0.995386,0,0,-0.995386,316.133011,83.809486)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054714 0.000896759 L 1.608416 1.684446 L 3.087899 0.000896759 L 1.608416 -1.682653 Z M 6.054714 0.000896759 " transform="matrix(0.995386,0,0,-0.995386,265.875568,83.809486)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="262.758438" y="80.009104"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.018614 -25.809607 L 66.73351 -25.809607 " transform="matrix(0.995386,0,0,-0.995386,316.133011,83.809486)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 385.757812 109.5 L 381.332031 107.828125 L 382.804688 109.5 L 381.332031 111.175781 Z M 385.757812 109.5 "/>
|
||||
<g clip-path="url(#clip2)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05449 0.00167347 L 1.608192 1.681299 L 3.087675 0.00167347 L 1.608192 -1.681876 Z M 6.05449 0.00167347 " transform="matrix(0.995386,0,0,-0.995386,379.73126,109.501666)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph6-1" x="370.3885" y="105.701004"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph7-1" x="375.55057" y="105.701004"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip3)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.026782 -25.809607 L 60.026782 -54.15917 L -192.960888 -54.15917 L -192.960888 -14.597715 " transform="matrix(0.995386,0,0,-0.995386,316.133011,83.809486)"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.055098 0.00144767 L 1.608801 1.684997 L 3.088284 0.00144767 L 1.608801 -1.682102 Z M 6.055098 0.00144767 " transform="matrix(0,-0.995386,-0.995386,0,124.063941,101.163877)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 377.867188 109.5 C 377.867188 108.40625 376.976562 107.519531 375.882812 107.519531 C 374.789062 107.519531 373.898438 108.40625 373.898438 109.5 C 373.898438 110.597656 374.789062 111.484375 375.882812 111.484375 C 376.976562 111.484375 377.867188 110.597656 377.867188 109.5 Z M 377.867188 109.5 "/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -182.996942 0.000896759 L -159.282046 0.000896759 " transform="matrix(0.995386,0,0,-0.995386,316.133011,83.809486)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053953 0.000896759 L 1.607655 1.684446 L 3.087138 0.000896759 L 1.607655 -1.682653 Z M 6.053953 0.000896759 " transform="matrix(0.995386,0,0,-0.995386,154.759138,83.809486)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="143.484354" y="78.521002"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-3" x="148.277136" y="80.009104"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="152.405996" y="80.009104"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -119.638181 0.000896759 L -95.923285 0.000896759 " transform="matrix(0.995386,0,0,-0.995386,316.133011,83.809486)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053525 0.000896759 L 1.607227 1.684446 L 3.08671 0.000896759 L 1.607227 -1.682653 Z M 6.053525 0.000896759 " transform="matrix(0.995386,0,0,-0.995386,217.825971,83.809486)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="211.928071" y="80.009104"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-2" x="218.680768" y="76.409789"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.018614 0.000896759 L 66.73351 0.000896759 " transform="matrix(0.995386,0,0,-0.995386,316.133011,83.809486)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 385.757812 83.808594 L 381.332031 82.132812 L 382.804688 83.808594 L 381.332031 85.484375 Z M 385.757812 83.808594 "/>
|
||||
<g clip-path="url(#clip4)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05449 0.000896759 L 1.608192 1.684446 L 3.087675 0.000896759 L 1.608192 -1.682653 Z M 6.05449 0.000896759 " transform="matrix(0.995386,0,0,-0.995386,379.73126,83.809486)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph7-2" x="368.411664" y="78.521002"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-4" x="377.968362" y="80.009104"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -231.270472 0.000896759 L -207.555575 0.000896759 " transform="matrix(0.995386,0,0,-0.995386,316.133011,83.809486)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052764 0.000896759 L 1.61039 1.684446 L 3.085949 0.000896759 L 1.61039 -1.682653 Z M 6.052764 0.000896759 " transform="matrix(0.995386,0,0,-0.995386,106.70954,83.809486)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -219.929077 0.000896759 L -219.929077 57.688961 L -159.282046 57.688961 " transform="matrix(0.995386,0,0,-0.995386,316.133011,83.809486)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053953 -0.00091903 L 1.607655 1.682631 L 3.087138 -0.00091903 L 1.607655 -1.684469 Z M 6.053953 -0.00091903 " transform="matrix(0.995386,0,0,-0.995386,154.759138,26.385804)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 99.199219 83.808594 C 99.199219 82.714844 98.3125 81.824219 97.21875 81.824219 C 96.121094 81.824219 95.234375 82.714844 95.234375 83.808594 C 95.234375 84.90625 96.121094 85.792969 97.21875 85.792969 C 98.3125 85.792969 99.199219 84.90625 99.199219 83.808594 Z M 99.199219 83.808594 "/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-5" x="89.53843" y="92.018432"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-3" x="94.781127" y="93.505539"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="98.909987" y="93.505539"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -119.638181 57.688961 L -105.463399 57.688961 L -89.852303 11.436476 " transform="matrix(0.995386,0,0,-0.995386,316.133011,83.809486)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054353 -0.00220012 L 1.607722 1.684861 L 3.089468 0.000176505 L 1.610046 -1.683386 Z M 6.054353 -0.00220012 " transform="matrix(0.318275,0.943078,0.943078,-0.318275,225.789972,69.750509)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -292.302089 0.000896759 L -316.016985 0.000896759 " transform="matrix(0.995386,0,0,-0.995386,316.133011,83.809486)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05274 0.000896759 L 1.610367 1.684446 L 3.085926 0.000896759 L 1.610367 -1.682653 Z M 6.05274 0.000896759 " transform="matrix(0.995386,0,0,-0.995386,22.354095,83.809486)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-5" x="9.7075" y="77.529598"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-3" x="14.951192" y="79.0177"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph8-1" x="20.634845" y="80.009104"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 57 KiB |
BIN
figs/control_architecture_hac_iff_struts.pdf
Normal file
BIN
figs/control_architecture_hac_iff_struts.png
Normal file
After Width: | Height: | Size: 17 KiB |
340
figs/control_architecture_hac_iff_struts.svg
Normal file
@ -0,0 +1,340 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="414.473pt" height="116.677pt" viewBox="0 0 414.473 116.677" version="1.2">
|
||||
<defs>
|
||||
<g>
|
||||
<symbol overflow="visible" id="glyph0-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<path style="stroke:none;" d="M 6.203125 -4.9375 C 6.203125 -5.90625 5.21875 -6.78125 3.859375 -6.78125 L 0.34375 -6.78125 L 0.34375 -6.484375 L 0.59375 -6.484375 C 1.34375 -6.484375 1.375 -6.375 1.375 -6.015625 L 1.375 -0.78125 C 1.375 -0.421875 1.34375 -0.3125 0.59375 -0.3125 L 0.34375 -0.3125 L 0.34375 0 C 0.703125 -0.03125 1.4375 -0.03125 1.8125 -0.03125 C 2.1875 -0.03125 2.9375 -0.03125 3.28125 0 L 3.28125 -0.3125 L 3.046875 -0.3125 C 2.28125 -0.3125 2.25 -0.421875 2.25 -0.78125 L 2.25 -3.140625 L 3.9375 -3.140625 C 5.125 -3.140625 6.203125 -3.9375 6.203125 -4.9375 Z M 5.171875 -4.9375 C 5.171875 -4.46875 5.171875 -3.40625 3.59375 -3.40625 L 2.21875 -3.40625 L 2.21875 -6.078125 C 2.21875 -6.40625 2.25 -6.484375 2.71875 -6.484375 L 3.59375 -6.484375 C 5.171875 -6.484375 5.171875 -5.421875 5.171875 -4.9375 Z M 5.171875 -4.9375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 2.53125 0 L 2.53125 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -6.890625 L 0.328125 -6.78125 L 0.328125 -6.484375 C 1.03125 -6.484375 1.109375 -6.40625 1.109375 -5.921875 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.4375 -0.03125 Z M 2.53125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 4.796875 -0.890625 L 4.796875 -1.4375 L 4.546875 -1.4375 L 4.546875 -0.890625 C 4.546875 -0.3125 4.296875 -0.25 4.1875 -0.25 C 3.859375 -0.25 3.828125 -0.703125 3.828125 -0.75 L 3.828125 -2.734375 C 3.828125 -3.15625 3.828125 -3.53125 3.46875 -3.90625 C 3.078125 -4.296875 2.578125 -4.453125 2.109375 -4.453125 C 1.296875 -4.453125 0.609375 -3.984375 0.609375 -3.328125 C 0.609375 -3.03125 0.8125 -2.859375 1.0625 -2.859375 C 1.34375 -2.859375 1.515625 -3.0625 1.515625 -3.3125 C 1.515625 -3.4375 1.46875 -3.765625 1.015625 -3.78125 C 1.28125 -4.125 1.765625 -4.234375 2.09375 -4.234375 C 2.578125 -4.234375 3.140625 -3.84375 3.140625 -2.96875 L 3.140625 -2.59375 C 2.640625 -2.5625 1.9375 -2.53125 1.3125 -2.234375 C 0.5625 -1.890625 0.3125 -1.375 0.3125 -0.9375 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.5625 0.109375 3.015625 -0.28125 3.203125 -0.75 C 3.25 -0.359375 3.515625 0.0625 3.984375 0.0625 C 4.1875 0.0625 4.796875 -0.078125 4.796875 -0.890625 Z M 3.140625 -1.390625 C 3.140625 -0.453125 2.421875 -0.109375 1.984375 -0.109375 C 1.484375 -0.109375 1.078125 -0.453125 1.078125 -0.953125 C 1.078125 -1.5 1.5 -2.328125 3.140625 -2.390625 Z M 3.140625 -1.390625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 5.3125 0 L 5.3125 -0.3125 C 4.796875 -0.3125 4.546875 -0.3125 4.546875 -0.609375 L 4.546875 -2.5 C 4.546875 -3.359375 4.546875 -3.671875 4.234375 -4.03125 C 4.09375 -4.1875 3.765625 -4.390625 3.1875 -4.390625 C 2.46875 -4.390625 2 -3.96875 1.71875 -3.34375 L 1.71875 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.015625 -3.96875 1.09375 -3.90625 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.546875 0 L 2.546875 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.578125 C 1.78125 -3.625 2.484375 -4.171875 3.125 -4.171875 C 3.75 -4.171875 3.859375 -3.640625 3.859375 -3.078125 L 3.859375 -0.75 C 3.859375 -0.3125 3.75 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.203125 -0.03125 Z M 5.3125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 3.296875 -1.234375 L 3.296875 -1.796875 L 3.046875 -1.796875 L 3.046875 -1.25 C 3.046875 -0.515625 2.75 -0.140625 2.390625 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.21875 L 1.71875 -3.96875 L 3.140625 -3.96875 L 3.140625 -4.28125 L 1.71875 -4.28125 L 1.71875 -6.109375 L 1.46875 -6.109375 C 1.453125 -5.296875 1.15625 -4.234375 0.1875 -4.1875 L 0.1875 -3.96875 L 1.03125 -3.96875 L 1.03125 -1.234375 C 1.03125 -0.015625 1.953125 0.109375 2.3125 0.109375 C 3.015625 0.109375 3.296875 -0.59375 3.296875 -1.234375 Z M 3.296875 -1.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-1">
|
||||
<path style="stroke:none;" d="M 5.859375 -4.171875 C 6.515625 -4.640625 8.34375 -5.921875 8.6875 -6.109375 C 8.90625 -6.21875 9.125 -6.328125 9.625 -6.34375 C 9.8125 -6.359375 9.96875 -6.359375 9.96875 -6.640625 C 9.96875 -6.734375 9.890625 -6.8125 9.78125 -6.8125 C 9.546875 -6.8125 9.25 -6.78125 9 -6.78125 C 8.59375 -6.78125 8.15625 -6.8125 7.75 -6.8125 C 7.671875 -6.8125 7.46875 -6.8125 7.46875 -6.53125 C 7.46875 -6.34375 7.65625 -6.34375 7.71875 -6.34375 C 7.796875 -6.34375 8 -6.34375 8.171875 -6.28125 L 3.640625 -3.15625 L 4.421875 -6.3125 C 4.640625 -6.34375 4.984375 -6.34375 5.09375 -6.34375 C 5.234375 -6.34375 5.421875 -6.34375 5.46875 -6.375 C 5.5625 -6.453125 5.578125 -6.625 5.578125 -6.640625 C 5.578125 -6.765625 5.46875 -6.8125 5.359375 -6.8125 C 5.109375 -6.8125 4.84375 -6.796875 4.59375 -6.796875 C 4.359375 -6.796875 4.109375 -6.78125 3.859375 -6.78125 C 3.59375 -6.78125 3.34375 -6.796875 3.09375 -6.796875 C 2.828125 -6.796875 2.5625 -6.8125 2.3125 -6.8125 C 2.21875 -6.8125 2.015625 -6.8125 2.015625 -6.53125 C 2.015625 -6.34375 2.140625 -6.34375 2.4375 -6.34375 C 2.640625 -6.34375 2.828125 -6.34375 3.046875 -6.328125 L 1.625 -0.671875 C 1.578125 -0.5 1.5625 -0.5 1.390625 -0.484375 C 1.21875 -0.46875 1.03125 -0.46875 0.859375 -0.46875 C 0.609375 -0.46875 0.59375 -0.46875 0.546875 -0.453125 C 0.421875 -0.375 0.421875 -0.21875 0.421875 -0.171875 C 0.421875 -0.15625 0.4375 0 0.640625 0 C 0.890625 0 1.15625 -0.015625 1.40625 -0.015625 C 1.65625 -0.015625 1.90625 -0.03125 2.15625 -0.03125 C 2.421875 -0.03125 2.671875 -0.015625 2.921875 -0.015625 C 3.1875 -0.015625 3.453125 0 3.703125 0 C 3.796875 0 3.859375 0 3.921875 -0.0625 C 3.96875 -0.125 3.984375 -0.265625 3.984375 -0.28125 C 3.984375 -0.46875 3.84375 -0.46875 3.578125 -0.46875 C 3.375 -0.46875 3.1875 -0.484375 2.96875 -0.484375 L 3.484375 -2.546875 L 4.71875 -3.40625 L 6.203125 -0.53125 C 6 -0.46875 5.703125 -0.46875 5.671875 -0.46875 C 5.53125 -0.46875 5.46875 -0.46875 5.421875 -0.390625 C 5.375 -0.34375 5.359375 -0.203125 5.359375 -0.171875 C 5.359375 -0.171875 5.359375 0 5.5625 0 C 5.890625 0 6.703125 -0.03125 7.03125 -0.03125 C 7.25 -0.03125 7.46875 -0.015625 7.671875 -0.015625 C 7.875 -0.015625 8.078125 0 8.265625 0 C 8.34375 0 8.53125 0 8.53125 -0.28125 C 8.53125 -0.46875 8.375 -0.46875 8.21875 -0.46875 C 7.765625 -0.46875 7.734375 -0.5 7.65625 -0.671875 Z M 5.859375 -4.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<path style="stroke:none;" d="M 3.46875 -3.453125 L 5.3125 -3.453125 C 5.515625 -3.453125 5.640625 -3.453125 5.796875 -3.609375 C 6 -3.78125 6 -4 6 -4.03125 C 6 -4.40625 5.640625 -4.40625 5.46875 -4.40625 L 2.203125 -4.40625 C 2 -4.40625 1.5625 -4.40625 1.046875 -3.9375 C 0.703125 -3.625 0.3125 -3.109375 0.3125 -3.015625 C 0.3125 -2.875 0.421875 -2.875 0.53125 -2.875 C 0.6875 -2.875 0.703125 -2.875 0.78125 -2.984375 C 1.15625 -3.453125 1.8125 -3.453125 2 -3.453125 L 2.90625 -3.453125 L 2.546875 -2.40625 C 2.453125 -2.15625 2.234375 -1.515625 2.15625 -1.265625 C 2.046875 -0.953125 1.859375 -0.421875 1.859375 -0.3125 C 1.859375 -0.046875 2.078125 0.125 2.328125 0.125 C 2.390625 0.125 2.90625 0.125 3 -0.53125 Z M 3.46875 -3.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-3">
|
||||
<path style="stroke:none;" d="M 5.59375 -3.15625 C 5.671875 -3.421875 5.78125 -3.90625 5.78125 -3.96875 C 5.78125 -4.1875 5.625 -4.40625 5.3125 -4.40625 C 5.15625 -4.40625 4.796875 -4.328125 4.65625 -3.890625 C 4.625 -3.75 4.171875 -1.953125 4.09375 -1.625 C 4.03125 -1.390625 3.96875 -1.109375 3.9375 -0.921875 C 3.765625 -0.6875 3.375 -0.28125 2.875 -0.28125 C 2.28125 -0.28125 2.28125 -0.78125 2.28125 -1 C 2.28125 -1.609375 2.578125 -2.390625 2.859375 -3.09375 C 2.96875 -3.359375 2.984375 -3.421875 2.984375 -3.59375 C 2.984375 -4.171875 2.421875 -4.484375 1.875 -4.484375 C 0.8125 -4.484375 0.3125 -3.140625 0.3125 -2.9375 C 0.3125 -2.796875 0.46875 -2.796875 0.5625 -2.796875 C 0.671875 -2.796875 0.75 -2.796875 0.78125 -2.9375 C 1.109375 -4.03125 1.65625 -4.140625 1.8125 -4.140625 C 1.875 -4.140625 1.984375 -4.140625 1.984375 -3.921875 C 1.984375 -3.703125 1.859375 -3.421875 1.8125 -3.296875 C 1.40625 -2.25 1.21875 -1.703125 1.21875 -1.21875 C 1.21875 -0.078125 2.203125 0.078125 2.796875 0.078125 C 3.078125 0.078125 3.515625 0.046875 4.046875 -0.46875 C 4.375 0.015625 4.953125 0.078125 5.1875 0.078125 C 5.5625 0.078125 5.84375 -0.125 6.046875 -0.484375 C 6.296875 -0.890625 6.421875 -1.421875 6.421875 -1.46875 C 6.421875 -1.609375 6.28125 -1.609375 6.1875 -1.609375 C 6.078125 -1.609375 6.046875 -1.609375 6 -1.5625 C 5.96875 -1.546875 5.96875 -1.515625 5.90625 -1.265625 C 5.71875 -0.5 5.5 -0.28125 5.234375 -0.28125 C 5.09375 -0.28125 5.015625 -0.375 5.015625 -0.640625 C 5.015625 -0.8125 5.046875 -0.96875 5.140625 -1.375 C 5.21875 -1.65625 5.3125 -2.046875 5.359375 -2.265625 Z M 5.59375 -3.15625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-4">
|
||||
<path style="stroke:none;" d="M 3.5625 -2.109375 C 3.71875 -2.109375 3.953125 -2.109375 3.953125 -2.359375 C 3.953125 -2.578125 3.765625 -2.578125 3.578125 -2.578125 L 1.875 -2.578125 C 2.03125 -3.203125 2.40625 -3.9375 3.59375 -3.9375 L 4 -3.9375 C 4.140625 -3.9375 4.40625 -3.9375 4.40625 -4.203125 C 4.40625 -4.28125 4.359375 -4.40625 4.21875 -4.40625 L 3.796875 -4.40625 C 3.265625 -4.40625 2.203125 -4.40625 1.34375 -3.640625 C 0.875 -3.21875 0.5 -2.5625 0.5 -1.78125 C 0.5 -0.421875 1.640625 0.078125 2.796875 0.078125 C 2.9375 0.078125 3.265625 0.078125 3.734375 -0.09375 C 3.78125 -0.09375 4.328125 -0.3125 4.328125 -0.46875 C 4.328125 -0.578125 4.265625 -0.765625 4.140625 -0.765625 C 4.109375 -0.765625 4.078125 -0.765625 3.984375 -0.703125 C 3.390625 -0.34375 3.078125 -0.28125 2.828125 -0.28125 C 2.578125 -0.28125 1.65625 -0.328125 1.65625 -1.359375 C 1.65625 -1.625 1.703125 -1.875 1.765625 -2.109375 Z M 3.5625 -2.109375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-5">
|
||||
<path style="stroke:none;" d="M 4.40625 -4 C 3.859375 -3.890625 3.8125 -3.40625 3.8125 -3.296875 C 3.8125 -3.078125 3.96875 -2.84375 4.296875 -2.84375 C 4.640625 -2.84375 5.015625 -3.125 5.015625 -3.625 C 5.015625 -4.078125 4.65625 -4.484375 4.046875 -4.484375 C 3.484375 -4.484375 3.015625 -4.21875 2.71875 -3.890625 C 2.484375 -4.359375 1.921875 -4.484375 1.5625 -4.484375 C 1.1875 -4.484375 0.921875 -4.28125 0.703125 -3.921875 C 0.453125 -3.53125 0.3125 -3 0.3125 -2.9375 C 0.3125 -2.796875 0.46875 -2.796875 0.5625 -2.796875 C 0.671875 -2.796875 0.703125 -2.796875 0.75 -2.859375 C 0.78125 -2.875 0.78125 -2.890625 0.828125 -3.140625 C 1.03125 -3.890625 1.25 -4.140625 1.515625 -4.140625 C 1.65625 -4.140625 1.734375 -4.03125 1.734375 -3.78125 C 1.734375 -3.59375 1.703125 -3.484375 1.59375 -3.015625 C 1.546875 -2.859375 1.390625 -2.203125 1.328125 -1.953125 C 1.28125 -1.765625 1.171875 -1.3125 1.125 -1.140625 C 1.0625 -0.875 0.9375 -0.421875 0.9375 -0.359375 C 0.9375 -0.15625 1.109375 0.078125 1.40625 0.078125 C 1.609375 0.078125 1.953125 -0.046875 2.0625 -0.453125 C 2.078125 -0.484375 2.75 -3.1875 2.765625 -3.234375 C 2.796875 -3.390625 2.796875 -3.40625 2.9375 -3.5625 C 3.15625 -3.84375 3.53125 -4.140625 4.03125 -4.140625 C 4.265625 -4.140625 4.375 -4.03125 4.40625 -4 Z M 4.40625 -4 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-1">
|
||||
<path style="stroke:none;" d="M 2.515625 0 L 2.515625 -0.25 L 2.34375 -0.25 C 1.765625 -0.25 1.765625 -0.328125 1.765625 -0.5625 L 1.765625 -4.171875 C 1.765625 -4.421875 1.765625 -4.5 2.34375 -4.5 L 2.515625 -4.5 L 2.515625 -4.75 L 1.4375 -4.71875 L 0.359375 -4.75 L 0.359375 -4.5 L 0.53125 -4.5 C 1.109375 -4.5 1.109375 -4.421875 1.109375 -4.171875 L 1.109375 -0.5625 C 1.109375 -0.328125 1.109375 -0.25 0.53125 -0.25 L 0.359375 -0.25 L 0.359375 0 L 1.4375 -0.03125 Z M 2.515625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<path style="stroke:none;" d="M 4.734375 -3.125 L 4.53125 -4.71875 L 0.390625 -4.71875 L 0.390625 -4.46875 L 0.5625 -4.46875 C 1.09375 -4.46875 1.109375 -4.40625 1.109375 -4.15625 L 1.109375 -0.5625 C 1.109375 -0.328125 1.09375 -0.25 0.5625 -0.25 L 0.390625 -0.25 L 0.390625 0 L 1.453125 -0.03125 L 2.65625 0 L 2.65625 -0.25 L 2.421875 -0.25 C 1.765625 -0.25 1.765625 -0.34375 1.765625 -0.5625 L 1.765625 -2.234375 L 2.4375 -2.234375 C 3.140625 -2.234375 3.234375 -2.03125 3.234375 -1.421875 L 3.46875 -1.421875 L 3.46875 -3.296875 L 3.234375 -3.296875 C 3.234375 -2.703125 3.140625 -2.484375 2.4375 -2.484375 L 1.765625 -2.484375 L 1.765625 -4.203125 C 1.765625 -4.421875 1.765625 -4.46875 2.09375 -4.46875 L 3.078125 -4.46875 C 4.1875 -4.46875 4.375 -4.09375 4.5 -3.125 Z M 4.734375 -3.125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-1">
|
||||
<path style="stroke:none;" d="M 3.984375 -2.4375 C 3.984375 -2.96875 3.328125 -3.390625 2.53125 -3.390625 L 0.421875 -3.390625 L 0.421875 -3.171875 L 0.578125 -3.171875 C 0.96875 -3.171875 0.96875 -3.125 0.96875 -2.96875 L 0.96875 -0.421875 C 0.96875 -0.265625 0.96875 -0.21875 0.578125 -0.21875 L 0.421875 -0.21875 L 0.421875 0 L 1.234375 -0.015625 L 2.046875 0 L 2.046875 -0.21875 L 1.90625 -0.21875 C 1.5 -0.21875 1.5 -0.265625 1.5 -0.421875 L 1.5 -1.515625 L 2.59375 -1.515625 C 3.25 -1.515625 3.984375 -1.890625 3.984375 -2.4375 Z M 3.40625 -2.4375 C 3.40625 -2.03125 3.203125 -1.703125 2.421875 -1.703125 L 1.484375 -1.703125 L 1.484375 -2.984375 C 1.484375 -3.140625 1.484375 -3.171875 1.71875 -3.171875 L 2.421875 -3.171875 C 3.234375 -3.171875 3.40625 -2.828125 3.40625 -2.4375 Z M 3.40625 -2.4375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-2">
|
||||
<path style="stroke:none;" d="M 4.5 -1.671875 C 4.5 -2.59375 3.671875 -3.390625 2.609375 -3.390625 L 0.421875 -3.390625 L 0.421875 -3.171875 C 0.546875 -3.171875 0.6875 -3.171875 0.796875 -3.171875 C 0.96875 -3.15625 0.96875 -3.078125 0.96875 -2.96875 L 0.96875 -0.4375 C 0.96875 -0.3125 0.96875 -0.25 0.796875 -0.234375 C 0.6875 -0.21875 0.53125 -0.21875 0.421875 -0.21875 L 0.421875 0 L 2.609375 0 C 3.65625 0 4.5 -0.75 4.5 -1.671875 Z M 3.9375 -1.671875 C 3.9375 -1.234375 3.84375 -0.859375 3.5625 -0.59375 C 3.390625 -0.4375 3.046875 -0.21875 2.46875 -0.21875 L 1.734375 -0.21875 C 1.484375 -0.21875 1.484375 -0.25 1.484375 -0.421875 L 1.484375 -2.96875 C 1.484375 -3.140625 1.484375 -3.171875 1.734375 -3.171875 L 2.46875 -3.171875 C 3.0625 -3.171875 3.40625 -2.921875 3.546875 -2.796875 C 3.71875 -2.609375 3.9375 -2.328125 3.9375 -1.671875 Z M 3.9375 -1.671875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-3">
|
||||
<path style="stroke:none;" d="M 2.921875 -0.953125 L 2.71875 -0.953125 C 2.703125 -0.859375 2.65625 -0.5625 2.578125 -0.5 C 2.53125 -0.484375 2.109375 -0.484375 2.046875 -0.484375 L 1.0625 -0.484375 C 1.390625 -0.71875 1.765625 -1 2.0625 -1.203125 C 2.515625 -1.5 2.921875 -1.796875 2.921875 -2.328125 C 2.921875 -2.953125 2.328125 -3.3125 1.609375 -3.3125 C 0.9375 -3.3125 0.453125 -2.921875 0.453125 -2.4375 C 0.453125 -2.171875 0.671875 -2.125 0.734375 -2.125 C 0.875 -2.125 1.03125 -2.21875 1.03125 -2.421875 C 1.03125 -2.609375 0.90625 -2.703125 0.75 -2.71875 C 0.890625 -2.9375 1.171875 -3.09375 1.515625 -3.09375 C 2 -3.09375 2.390625 -2.796875 2.390625 -2.3125 C 2.390625 -1.890625 2.109375 -1.578125 1.71875 -1.25 L 0.515625 -0.234375 C 0.46875 -0.1875 0.453125 -0.1875 0.453125 -0.15625 L 0.453125 0 L 2.765625 0 Z M 2.921875 -0.953125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-4">
|
||||
<path style="stroke:none;" d="M 2.984375 -1.59375 C 2.984375 -1.953125 2.984375 -3.3125 1.6875 -3.3125 C 0.390625 -3.3125 0.390625 -1.953125 0.390625 -1.59375 C 0.390625 -1.234375 0.390625 0.109375 1.6875 0.109375 C 2.984375 0.109375 2.984375 -1.234375 2.984375 -1.59375 Z M 2.484375 -1.65625 C 2.484375 -1.3125 2.484375 -0.90625 2.421875 -0.609375 C 2.28125 -0.125 1.890625 -0.046875 1.6875 -0.046875 C 1.5 -0.046875 1.09375 -0.125 0.96875 -0.625 C 0.890625 -0.890625 0.890625 -1.234375 0.890625 -1.65625 C 0.890625 -2.015625 0.890625 -2.359375 0.96875 -2.640625 C 1.09375 -3.0625 1.46875 -3.140625 1.6875 -3.140625 C 2.0625 -3.140625 2.328125 -2.953125 2.421875 -2.609375 C 2.484375 -2.359375 2.484375 -1.9375 2.484375 -1.65625 Z M 2.484375 -1.65625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-5">
|
||||
<path style="stroke:none;" d="M 2.078125 0 L 2.078125 -0.21875 L 1.90625 -0.21875 C 1.484375 -0.21875 1.484375 -0.265625 1.484375 -0.421875 L 1.484375 -2.96875 C 1.484375 -3.125 1.484375 -3.171875 1.90625 -3.171875 L 2.078125 -3.171875 L 2.078125 -3.390625 L 1.234375 -3.375 L 0.375 -3.390625 L 0.375 -3.171875 L 0.546875 -3.171875 C 0.96875 -3.171875 0.96875 -3.125 0.96875 -2.96875 L 0.96875 -0.421875 C 0.96875 -0.265625 0.96875 -0.21875 0.546875 -0.21875 L 0.375 -0.21875 L 0.375 0 L 1.234375 -0.015625 Z M 2.078125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-6">
|
||||
<path style="stroke:none;" d="M 3.390625 0 L 3.390625 -0.21875 L 3.296875 -0.21875 C 2.984375 -0.21875 2.984375 -0.265625 2.984375 -0.421875 L 2.984375 -1.5 C 2.984375 -2.046875 2.609375 -2.203125 2.140625 -2.203125 C 1.609375 -2.203125 1.34375 -1.90625 1.21875 -1.703125 L 1.21875 -2.203125 L 0.40625 -2.140625 L 0.40625 -1.921875 C 0.78125 -1.921875 0.8125 -1.890625 0.8125 -1.640625 L 0.8125 -0.421875 C 0.8125 -0.265625 0.8125 -0.21875 0.5 -0.21875 L 0.40625 -0.21875 L 0.40625 0 C 0.625 -0.015625 0.828125 -0.015625 1.046875 -0.015625 C 1.25 -0.015625 1.46875 -0.015625 1.671875 0 L 1.671875 -0.21875 L 1.578125 -0.21875 C 1.265625 -0.21875 1.265625 -0.265625 1.265625 -0.421875 L 1.265625 -1.28125 C 1.265625 -1.84375 1.78125 -2.03125 2.09375 -2.03125 C 2.453125 -2.03125 2.53125 -1.828125 2.53125 -1.5 L 2.53125 -0.421875 C 2.53125 -0.265625 2.53125 -0.21875 2.21875 -0.21875 L 2.125 -0.21875 L 2.125 0 C 2.34375 -0.015625 2.546875 -0.015625 2.765625 -0.015625 C 2.96875 -0.015625 3.1875 -0.015625 3.390625 0 Z M 3.390625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-7">
|
||||
<path style="stroke:none;" d="M 3.265625 -1.921875 L 3.265625 -2.140625 C 3.140625 -2.125 3.015625 -2.125 2.84375 -2.125 C 2.84375 -2.125 2.515625 -2.125 2.328125 -2.140625 L 2.328125 -1.921875 C 2.46875 -1.921875 2.546875 -1.859375 2.546875 -1.75 C 2.546875 -1.6875 2.53125 -1.640625 2.53125 -1.640625 L 1.890625 -0.40625 L 1.21875 -1.734375 C 1.203125 -1.765625 1.1875 -1.78125 1.1875 -1.8125 C 1.1875 -1.921875 1.359375 -1.921875 1.453125 -1.921875 L 1.453125 -2.140625 C 1.234375 -2.125 0.875 -2.125 0.828125 -2.125 C 0.640625 -2.125 0.484375 -2.125 0.28125 -2.140625 L 0.28125 -1.921875 C 0.578125 -1.921875 0.640625 -1.921875 0.71875 -1.78125 L 1.59375 -0.0625 C 1.640625 0.015625 1.65625 0.046875 1.78125 0.046875 C 1.890625 0.046875 1.90625 0 1.953125 -0.0625 L 2.75 -1.625 C 2.828125 -1.78125 2.96875 -1.921875 3.265625 -1.921875 Z M 3.265625 -1.921875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-8">
|
||||
<path style="stroke:none;" d="M 2.71875 -0.59375 C 2.71875 -0.671875 2.640625 -0.671875 2.609375 -0.671875 C 2.53125 -0.671875 2.53125 -0.65625 2.5 -0.59375 C 2.359375 -0.25 2 -0.125 1.71875 -0.125 C 1.3125 -0.125 1.09375 -0.34375 1.015625 -0.4375 C 0.8125 -0.671875 0.8125 -0.984375 0.8125 -1.125 L 2.5625 -1.125 C 2.671875 -1.125 2.71875 -1.125 2.71875 -1.234375 C 2.71875 -1.5625 2.53125 -2.21875 1.609375 -2.21875 C 0.859375 -2.21875 0.328125 -1.6875 0.328125 -1.09375 C 0.328125 -0.46875 0.921875 0.046875 1.6875 0.046875 C 2.46875 0.046875 2.71875 -0.5 2.71875 -0.59375 Z M 2.328125 -1.265625 L 0.828125 -1.265625 C 0.890625 -1.921875 1.375 -2.0625 1.609375 -2.0625 C 2.296875 -2.0625 2.328125 -1.421875 2.328125 -1.265625 Z M 2.328125 -1.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-9">
|
||||
<path style="stroke:none;" d="M 2.375 -1.859375 C 2.375 -2.046875 2.203125 -2.203125 1.9375 -2.203125 C 1.6875 -2.203125 1.375 -2.0625 1.171875 -1.65625 L 1.171875 -2.203125 L 0.375 -2.140625 L 0.375 -1.921875 C 0.75 -1.921875 0.796875 -1.890625 0.796875 -1.640625 L 0.796875 -0.421875 C 0.796875 -0.265625 0.796875 -0.21875 0.46875 -0.21875 L 0.375 -0.21875 L 0.375 0 C 0.59375 -0.015625 0.8125 -0.015625 1.015625 -0.015625 L 1.734375 0 L 1.734375 -0.21875 L 1.59375 -0.21875 C 1.21875 -0.21875 1.21875 -0.265625 1.21875 -0.421875 L 1.21875 -1.109375 C 1.21875 -1.578125 1.46875 -2.015625 1.953125 -2.03125 C 1.953125 -2.03125 1.875 -1.96875 1.875 -1.859375 C 1.875 -1.671875 2.015625 -1.59375 2.125 -1.59375 C 2.25 -1.59375 2.375 -1.6875 2.375 -1.859375 Z M 2.375 -1.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-10">
|
||||
<path style="stroke:none;" d="M 2.375 -0.625 C 2.375 -0.84375 2.25 -1.015625 2.0625 -1.140625 C 1.859375 -1.25 1.71875 -1.28125 1.296875 -1.34375 C 0.984375 -1.390625 0.59375 -1.453125 0.59375 -1.71875 C 0.59375 -1.890625 0.796875 -2.078125 1.328125 -2.078125 C 1.75 -2.078125 1.984375 -1.90625 2.015625 -1.5625 C 2.015625 -1.5 2.015625 -1.46875 2.109375 -1.46875 C 2.21875 -1.46875 2.21875 -1.5 2.21875 -1.609375 L 2.21875 -2.09375 C 2.21875 -2.171875 2.21875 -2.21875 2.140625 -2.21875 C 2.109375 -2.21875 2.09375 -2.21875 2.0625 -2.1875 C 2.03125 -2.171875 1.953125 -2.09375 1.921875 -2.09375 C 1.921875 -2.09375 1.90625 -2.09375 1.890625 -2.109375 C 1.765625 -2.171875 1.578125 -2.21875 1.34375 -2.21875 C 0.515625 -2.21875 0.34375 -1.84375 0.34375 -1.625 C 0.34375 -1.15625 0.921875 -1.0625 1.375 -1 C 1.671875 -0.953125 2.125 -0.875 2.125 -0.546875 C 2.125 -0.375 1.984375 -0.109375 1.375 -0.109375 C 1.046875 -0.109375 0.71875 -0.234375 0.5625 -0.765625 C 0.546875 -0.84375 0.53125 -0.859375 0.453125 -0.859375 C 0.34375 -0.859375 0.34375 -0.828125 0.34375 -0.71875 L 0.34375 -0.078125 C 0.34375 0 0.34375 0.046875 0.421875 0.046875 C 0.46875 0.046875 0.46875 0.046875 0.5625 -0.046875 L 0.703125 -0.171875 C 0.9375 0.046875 1.25 0.046875 1.375 0.046875 C 2.21875 0.046875 2.375 -0.375 2.375 -0.625 Z M 2.375 -0.625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-11">
|
||||
<path style="stroke:none;" d="M 4.640625 0 L 4.640625 -0.21875 C 4.265625 -0.21875 4.1875 -0.25 4.015625 -0.453125 L 2.625 -2.0625 L 3.75 -2.90625 C 3.90625 -3.03125 4.171875 -3.171875 4.5625 -3.171875 L 4.5625 -3.390625 C 4.359375 -3.375 4.265625 -3.375 4.046875 -3.375 L 3.328125 -3.390625 L 3.328125 -3.171875 C 3.359375 -3.171875 3.484375 -3.171875 3.484375 -3.0625 C 3.484375 -3 3.453125 -2.953125 3.375 -2.890625 L 1.484375 -1.453125 L 1.484375 -2.96875 C 1.484375 -3.125 1.484375 -3.171875 1.890625 -3.171875 L 2.046875 -3.171875 L 2.046875 -3.390625 L 1.234375 -3.375 L 0.40625 -3.390625 L 0.40625 -3.171875 L 0.5625 -3.171875 C 0.96875 -3.171875 0.96875 -3.125 0.96875 -2.96875 L 0.96875 -0.421875 C 0.96875 -0.265625 0.96875 -0.21875 0.5625 -0.21875 L 0.40625 -0.21875 L 0.40625 0 L 1.234375 -0.015625 L 2.046875 0 L 2.046875 -0.21875 L 1.890625 -0.21875 C 1.484375 -0.21875 1.484375 -0.265625 1.484375 -0.421875 L 1.484375 -1.203125 L 2.25 -1.78125 L 3.359375 -0.484375 C 3.390625 -0.46875 3.4375 -0.390625 3.4375 -0.34375 C 3.4375 -0.21875 3.28125 -0.21875 3.1875 -0.21875 L 3.1875 0 L 3.984375 -0.015625 C 4.21875 -0.015625 4.390625 -0.015625 4.640625 0 Z M 4.640625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-12">
|
||||
<path style="stroke:none;" d="M 1.625 0 L 1.625 -0.21875 C 1.28125 -0.21875 1.25 -0.21875 1.25 -0.421875 L 1.25 -2.203125 L 0.4375 -2.140625 L 0.4375 -1.921875 C 0.78125 -1.921875 0.828125 -1.890625 0.828125 -1.640625 L 0.828125 -0.421875 C 0.828125 -0.265625 0.828125 -0.21875 0.5 -0.21875 L 0.40625 -0.21875 L 0.40625 0 C 0.609375 -0.015625 0.828125 -0.015625 1.03125 -0.015625 C 1.21875 -0.015625 1.4375 -0.015625 1.625 0 Z M 1.296875 -2.984375 C 1.296875 -3.15625 1.171875 -3.28125 1 -3.28125 C 0.828125 -3.28125 0.703125 -3.15625 0.703125 -2.984375 C 0.703125 -2.8125 0.828125 -2.671875 1 -2.671875 C 1.15625 -2.671875 1.296875 -2.8125 1.296875 -2.984375 Z M 1.296875 -2.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-13">
|
||||
<path style="stroke:none;" d="M 5.125 0 L 5.125 -0.21875 L 5.03125 -0.21875 C 4.703125 -0.21875 4.703125 -0.265625 4.703125 -0.421875 L 4.703125 -1.5 C 4.703125 -2.109375 4.25 -2.203125 3.875 -2.203125 C 3.390625 -2.203125 3.09375 -1.953125 2.96875 -1.734375 C 2.84375 -2.1875 2.328125 -2.203125 2.140625 -2.203125 C 1.640625 -2.203125 1.34375 -1.921875 1.21875 -1.703125 L 1.21875 -2.203125 L 0.40625 -2.140625 L 0.40625 -1.921875 C 0.78125 -1.921875 0.8125 -1.890625 0.8125 -1.640625 L 0.8125 -0.421875 C 0.8125 -0.265625 0.8125 -0.21875 0.5 -0.21875 L 0.40625 -0.21875 L 0.40625 0 C 0.625 -0.015625 0.828125 -0.015625 1.046875 -0.015625 C 1.25 -0.015625 1.46875 -0.015625 1.671875 0 L 1.671875 -0.21875 L 1.578125 -0.21875 C 1.265625 -0.21875 1.265625 -0.265625 1.265625 -0.421875 L 1.265625 -1.28125 C 1.265625 -1.828125 1.765625 -2.03125 2.09375 -2.03125 C 2.453125 -2.03125 2.546875 -1.828125 2.546875 -1.5 L 2.546875 -0.421875 C 2.546875 -0.265625 2.546875 -0.21875 2.21875 -0.21875 L 2.125 -0.21875 L 2.125 0 C 2.34375 -0.015625 2.546875 -0.015625 2.765625 -0.015625 C 2.96875 -0.015625 3.1875 -0.015625 3.40625 0 L 3.40625 -0.21875 L 3.3125 -0.21875 C 2.984375 -0.21875 2.984375 -0.265625 2.984375 -0.421875 L 2.984375 -1.28125 C 2.984375 -1.828125 3.5 -2.03125 3.8125 -2.03125 C 4.171875 -2.03125 4.265625 -1.828125 4.265625 -1.5 L 4.265625 -0.421875 C 4.265625 -0.265625 4.265625 -0.21875 3.9375 -0.21875 L 3.859375 -0.21875 L 3.859375 0 C 4.0625 -0.015625 4.28125 -0.015625 4.484375 -0.015625 C 4.703125 -0.015625 4.90625 -0.015625 5.125 0 Z M 5.125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-14">
|
||||
<path style="stroke:none;" d="M 3.15625 -0.453125 L 3.15625 -0.71875 L 2.953125 -0.71875 L 2.953125 -0.453125 C 2.953125 -0.40625 2.953125 -0.1875 2.75 -0.1875 C 2.546875 -0.1875 2.546875 -0.40625 2.546875 -0.453125 L 2.546875 -1.46875 C 2.546875 -1.953125 2.046875 -2.21875 1.4375 -2.21875 C 1.125 -2.21875 0.546875 -2.21875 0.546875 -1.78125 C 0.546875 -1.609375 0.6875 -1.515625 0.8125 -1.515625 C 0.953125 -1.515625 1.078125 -1.609375 1.078125 -1.78125 C 1.078125 -1.90625 1.015625 -1.984375 0.96875 -2 C 1.125 -2.0625 1.359375 -2.0625 1.421875 -2.0625 C 1.84375 -2.0625 2.109375 -1.828125 2.109375 -1.46875 L 2.109375 -1.34375 C 1.625 -1.3125 1.359375 -1.296875 0.96875 -1.171875 C 0.640625 -1.046875 0.359375 -0.84375 0.359375 -0.515625 C 0.359375 -0.046875 0.9375 0.046875 1.328125 0.046875 C 1.71875 0.046875 2.015625 -0.09375 2.171875 -0.359375 C 2.1875 -0.171875 2.296875 0.03125 2.546875 0.03125 C 2.59375 0.03125 3.15625 0.03125 3.15625 -0.453125 Z M 2.109375 -0.703125 C 2.109375 -0.15625 1.515625 -0.109375 1.390625 -0.109375 C 1.09375 -0.109375 0.8125 -0.265625 0.8125 -0.515625 C 0.8125 -0.6875 0.921875 -1.140625 2.109375 -1.1875 Z M 2.109375 -0.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-15">
|
||||
<path style="stroke:none;" d="M 2.203125 -0.625 L 2.203125 -0.90625 L 2 -0.90625 L 2 -0.640625 C 2 -0.265625 1.78125 -0.125 1.609375 -0.125 C 1.21875 -0.125 1.21875 -0.515625 1.21875 -0.625 L 1.21875 -1.921875 L 2.109375 -1.921875 L 2.109375 -2.140625 L 1.21875 -2.140625 L 1.21875 -3.0625 L 1.015625 -3.0625 C 1.015625 -2.59375 0.765625 -2.109375 0.25 -2.09375 L 0.25 -1.921875 L 0.78125 -1.921875 L 0.78125 -0.625 C 0.78125 -0.0625 1.25 0.046875 1.5625 0.046875 C 1.921875 0.046875 2.203125 -0.21875 2.203125 -0.625 Z M 2.203125 -0.625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-16">
|
||||
<path style="stroke:none;" d="M 2.71875 -0.59375 C 2.71875 -0.671875 2.640625 -0.671875 2.609375 -0.671875 C 2.53125 -0.671875 2.53125 -0.65625 2.5 -0.59375 C 2.328125 -0.171875 1.96875 -0.125 1.75 -0.125 C 1.328125 -0.125 0.859375 -0.40625 0.859375 -1.078125 C 0.859375 -1.296875 0.90625 -1.5625 1.078125 -1.78125 C 1.328125 -2.046875 1.609375 -2.046875 1.765625 -2.046875 C 1.921875 -2.046875 2.0625 -2.046875 2.234375 -2 C 2.15625 -1.953125 2.125 -1.875 2.125 -1.78125 C 2.125 -1.625 2.25 -1.515625 2.390625 -1.515625 C 2.5 -1.515625 2.640625 -1.59375 2.640625 -1.78125 C 2.640625 -2.21875 2.09375 -2.21875 1.75 -2.21875 C 0.78125 -2.21875 0.359375 -1.5625 0.359375 -1.078125 C 0.359375 -0.453125 0.9375 0.046875 1.6875 0.046875 C 2.546875 0.046875 2.71875 -0.546875 2.71875 -0.59375 Z M 2.71875 -0.59375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-1">
|
||||
<path style="stroke:none;" d="M 11.5625 -4.28125 C 11.5625 -4.578125 11.28125 -4.578125 11.03125 -4.578125 L 6.46875 -4.578125 L 6.46875 -9.140625 C 6.46875 -9.375 6.46875 -9.671875 6.1875 -9.671875 C 5.875 -9.671875 5.875 -9.390625 5.875 -9.140625 L 5.875 -4.578125 L 1.328125 -4.578125 C 1.078125 -4.578125 0.796875 -4.578125 0.796875 -4.296875 C 0.796875 -3.984375 1.0625 -3.984375 1.328125 -3.984375 L 5.875 -3.984375 L 5.875 0.5625 C 5.875 0.8125 5.875 1.09375 6.171875 1.09375 C 6.46875 1.09375 6.46875 0.828125 6.46875 0.5625 L 6.46875 -3.984375 L 11.03125 -3.984375 C 11.265625 -3.984375 11.5625 -3.984375 11.5625 -4.28125 Z M 11.5625 -4.28125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-1">
|
||||
<path style="stroke:none;" d="M 5.125 -0.984375 C 5.125 -1.015625 5.109375 -1.046875 5.0625 -1.046875 C 4.953125 -1.046875 4.5 -0.890625 4.421875 -0.609375 C 4.3125 -0.3125 4.234375 -0.3125 4.0625 -0.3125 C 3.6875 -0.3125 3.1875 -0.4375 2.84375 -0.53125 C 2.484375 -0.625 2.109375 -0.703125 1.75 -0.703125 C 1.71875 -0.703125 1.578125 -0.703125 1.484375 -0.6875 C 1.859375 -1.234375 1.953125 -1.578125 2.0625 -2.015625 C 2.203125 -2.53125 2.40625 -3.25 2.75 -3.828125 C 3.09375 -4.390625 3.265625 -4.421875 3.5 -4.421875 C 3.828125 -4.421875 4.046875 -4.1875 4.046875 -3.84375 C 4.046875 -3.734375 4.03125 -3.65625 4.03125 -3.625 C 4.03125 -3.59375 4.046875 -3.5625 4.109375 -3.5625 C 4.125 -3.5625 4.296875 -3.59375 4.546875 -3.765625 C 4.6875 -3.859375 4.765625 -3.9375 4.765625 -4.203125 C 4.765625 -4.46875 4.609375 -4.890625 4.0625 -4.890625 C 3.453125 -4.890625 2.78125 -4.484375 2.421875 -4.046875 C 1.953125 -3.515625 1.640625 -2.8125 1.359375 -1.671875 C 1.1875 -1.03125 0.9375 -0.5 0.609375 -0.234375 C 0.546875 -0.171875 0.359375 0 0.359375 0.09375 C 0.359375 0.140625 0.421875 0.140625 0.4375 0.140625 C 0.6875 0.140625 1 -0.15625 1.09375 -0.25 C 1.296875 -0.25 1.578125 -0.234375 2.203125 -0.078125 C 2.734375 0.0625 3.109375 0.140625 3.5 0.140625 C 4.375 0.140625 5.125 -0.65625 5.125 -0.984375 Z M 5.125 -0.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-2">
|
||||
<path style="stroke:none;" d="M 2.078125 -3.5 C 2.078125 -3.71875 1.890625 -3.890625 1.671875 -3.890625 C 1.390625 -3.890625 1.328125 -3.65625 1.296875 -3.5625 L 0.375 -0.5625 L 0.328125 -0.4375 C 0.328125 -0.359375 0.546875 -0.28125 0.609375 -0.28125 C 0.65625 -0.28125 0.6875 -0.3125 0.703125 -0.390625 L 2.015625 -3.28125 C 2.046875 -3.359375 2.078125 -3.40625 2.078125 -3.5 Z M 2.078125 -3.5 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-3">
|
||||
<path style="stroke:none;" d="M 5.3125 -0.6875 C 5.3125 -0.734375 5.265625 -0.734375 5.234375 -0.734375 C 5.125 -0.734375 4.84375 -0.625 4.703125 -0.421875 C 4.46875 -0.421875 4.203125 -0.421875 4.078125 -1.0625 L 3.875 -2.46875 C 3.875 -2.5 3.890625 -2.515625 3.90625 -2.53125 L 4.15625 -2.65625 C 6.21875 -3.78125 6.21875 -4.09375 6.21875 -4.34375 C 6.21875 -4.546875 6.109375 -4.75 5.828125 -4.75 C 5.609375 -4.75 5.265625 -4.5 5.265625 -4.390625 C 5.265625 -4.328125 5.296875 -4.328125 5.34375 -4.328125 C 5.515625 -4.296875 5.578125 -4.15625 5.578125 -4.015625 C 5.578125 -3.875 5.578125 -3.796875 4.9375 -3.40625 C 4.8125 -3.3125 4.671875 -3.21875 3.84375 -2.78125 C 3.75 -3.28125 3.703125 -3.84375 3.640625 -4.09375 C 3.515625 -4.65625 3.265625 -4.75 2.953125 -4.75 C 2.1875 -4.75 1.78125 -4.234375 1.78125 -4.078125 C 1.78125 -4.015625 1.828125 -4.015625 1.859375 -4.015625 C 1.984375 -4.015625 2.265625 -4.125 2.40625 -4.328125 C 2.625 -4.328125 2.875 -4.328125 3 -3.75 L 3.1875 -2.421875 C 2.796875 -2.21875 2.0625 -1.828125 1.640625 -1.578125 C 0.546875 -0.890625 0.484375 -0.625 0.484375 -0.40625 C 0.484375 -0.203125 0.59375 0 0.890625 0 C 1.09375 0 1.453125 -0.234375 1.453125 -0.375 C 1.453125 -0.421875 1.390625 -0.421875 1.359375 -0.421875 C 1.203125 -0.4375 1.140625 -0.5625 1.140625 -0.734375 C 1.140625 -0.890625 1.140625 -0.984375 1.984375 -1.484375 L 3.21875 -2.15625 C 3.328125 -1.625 3.40625 -0.921875 3.421875 -0.78125 C 3.53125 -0.3125 3.640625 0 4.140625 0 C 4.90625 0 5.3125 -0.5 5.3125 -0.6875 Z M 5.3125 -0.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-1">
|
||||
<path style="stroke:none;" d="M 6.890625 -2.484375 C 6.890625 -2.6875 6.703125 -2.6875 6.5625 -2.6875 L 1.15625 -2.6875 C 1.015625 -2.6875 0.828125 -2.6875 0.828125 -2.484375 C 0.828125 -2.28125 1.015625 -2.28125 1.15625 -2.28125 L 6.5625 -2.28125 C 6.703125 -2.28125 6.890625 -2.28125 6.890625 -2.484375 Z M 6.890625 -2.484375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-1">
|
||||
<path style="stroke:none;" d="M 6.703125 -1 C 6.703125 -1.078125 6.625 -1.078125 6.59375 -1.078125 C 6.5 -1.078125 6.5 -1.046875 6.46875 -0.96875 C 6.3125 -0.40625 6 -0.125 5.734375 -0.125 C 5.578125 -0.125 5.5625 -0.21875 5.5625 -0.375 C 5.5625 -0.53125 5.59375 -0.625 5.71875 -0.9375 C 5.796875 -1.140625 6.078125 -1.890625 6.078125 -2.28125 C 6.078125 -2.390625 6.078125 -2.671875 5.828125 -2.875 C 5.703125 -2.96875 5.5 -3.0625 5.1875 -3.0625 C 4.546875 -3.0625 4.171875 -2.65625 3.953125 -2.359375 C 3.890625 -2.953125 3.40625 -3.0625 3.046875 -3.0625 C 2.46875 -3.0625 2.078125 -2.71875 1.875 -2.4375 C 1.828125 -2.90625 1.40625 -3.0625 1.125 -3.0625 C 0.828125 -3.0625 0.671875 -2.84375 0.578125 -2.6875 C 0.421875 -2.4375 0.328125 -2.03125 0.328125 -2 C 0.328125 -1.90625 0.421875 -1.90625 0.4375 -1.90625 C 0.546875 -1.90625 0.546875 -1.9375 0.59375 -2.125 C 0.703125 -2.53125 0.828125 -2.875 1.109375 -2.875 C 1.28125 -2.875 1.328125 -2.71875 1.328125 -2.53125 C 1.328125 -2.40625 1.265625 -2.140625 1.21875 -1.953125 L 1.078125 -1.328125 L 0.84375 -0.4375 C 0.828125 -0.34375 0.78125 -0.171875 0.78125 -0.15625 C 0.78125 0 0.90625 0.0625 1.015625 0.0625 C 1.140625 0.0625 1.25 -0.015625 1.28125 -0.078125 C 1.328125 -0.140625 1.375 -0.375 1.40625 -0.515625 L 1.5625 -1.140625 C 1.609375 -1.296875 1.640625 -1.453125 1.6875 -1.609375 C 1.765625 -1.890625 1.765625 -1.953125 1.96875 -2.234375 C 2.171875 -2.515625 2.5 -2.875 3.015625 -2.875 C 3.421875 -2.875 3.421875 -2.515625 3.421875 -2.390625 C 3.421875 -2.21875 3.40625 -2.125 3.3125 -1.734375 L 3.015625 -0.5625 C 2.984375 -0.421875 2.921875 -0.1875 2.921875 -0.15625 C 2.921875 0 3.046875 0.0625 3.15625 0.0625 C 3.28125 0.0625 3.390625 -0.015625 3.421875 -0.078125 C 3.46875 -0.140625 3.515625 -0.375 3.546875 -0.515625 L 3.703125 -1.140625 C 3.75 -1.296875 3.796875 -1.453125 3.828125 -1.609375 C 3.90625 -1.90625 3.90625 -1.921875 4.046875 -2.140625 C 4.265625 -2.46875 4.609375 -2.875 5.15625 -2.875 C 5.546875 -2.875 5.5625 -2.546875 5.5625 -2.390625 C 5.5625 -1.96875 5.265625 -1.203125 5.15625 -0.90625 C 5.078125 -0.703125 5.046875 -0.640625 5.046875 -0.53125 C 5.046875 -0.15625 5.359375 0.0625 5.703125 0.0625 C 6.40625 0.0625 6.703125 -0.890625 6.703125 -1 Z M 6.703125 -1 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-2">
|
||||
<path style="stroke:none;" d="M 3.96875 -1 C 3.96875 -1.078125 3.875 -1.078125 3.859375 -1.078125 C 3.765625 -1.078125 3.75 -1.0625 3.703125 -0.875 C 3.625 -0.53125 3.484375 -0.125 3.203125 -0.125 C 3.015625 -0.125 2.96875 -0.28125 2.96875 -0.46875 C 2.96875 -0.578125 3.03125 -0.828125 3.078125 -1.015625 L 3.21875 -1.640625 C 3.296875 -1.890625 3.296875 -1.9375 3.359375 -2.171875 C 3.40625 -2.34375 3.484375 -2.671875 3.484375 -2.71875 C 3.484375 -2.859375 3.359375 -2.9375 3.25 -2.9375 C 3.140625 -2.9375 2.96875 -2.84375 2.9375 -2.65625 C 2.78125 -2.890625 2.546875 -3.0625 2.21875 -3.0625 C 1.328125 -3.0625 0.421875 -2.09375 0.421875 -1.078125 C 0.421875 -0.40625 0.875 0.0625 1.46875 0.0625 C 1.84375 0.0625 2.1875 -0.140625 2.46875 -0.421875 C 2.59375 0 3 0.0625 3.171875 0.0625 C 3.421875 0.0625 3.609375 -0.078125 3.734375 -0.296875 C 3.875 -0.5625 3.96875 -0.96875 3.96875 -1 Z M 2.8125 -2.171875 L 2.484375 -0.875 C 2.4375 -0.671875 2.28125 -0.53125 2.140625 -0.40625 C 2.078125 -0.34375 1.796875 -0.125 1.5 -0.125 C 1.234375 -0.125 0.984375 -0.3125 0.984375 -0.796875 C 0.984375 -1.171875 1.1875 -1.9375 1.34375 -2.21875 C 1.671875 -2.765625 2.015625 -2.875 2.21875 -2.875 C 2.703125 -2.875 2.84375 -2.34375 2.84375 -2.265625 C 2.84375 -2.234375 2.828125 -2.1875 2.8125 -2.171875 Z M 2.8125 -2.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-3">
|
||||
<path style="stroke:none;" d="M 3.96875 -1 C 3.96875 -1.078125 3.875 -1.078125 3.859375 -1.078125 C 3.765625 -1.078125 3.75 -1.0625 3.703125 -0.875 C 3.625 -0.53125 3.484375 -0.125 3.203125 -0.125 C 3.015625 -0.125 2.96875 -0.28125 2.96875 -0.46875 C 2.96875 -0.59375 2.984375 -0.65625 3 -0.75 L 3.96875 -4.609375 C 3.984375 -4.625 4 -4.734375 4 -4.734375 C 4 -4.765625 3.96875 -4.828125 3.890625 -4.828125 C 3.75 -4.828125 3.171875 -4.765625 3 -4.75 C 2.9375 -4.75 2.84375 -4.734375 2.84375 -4.59375 C 2.84375 -4.5 2.9375 -4.5 3.03125 -4.5 C 3.359375 -4.5 3.359375 -4.453125 3.359375 -4.390625 C 3.359375 -4.34375 3.34375 -4.296875 3.328125 -4.234375 L 2.9375 -2.65625 C 2.78125 -2.890625 2.546875 -3.0625 2.21875 -3.0625 C 1.328125 -3.0625 0.421875 -2.09375 0.421875 -1.078125 C 0.421875 -0.40625 0.875 0.0625 1.46875 0.0625 C 1.84375 0.0625 2.1875 -0.140625 2.46875 -0.421875 C 2.59375 0 3 0.0625 3.171875 0.0625 C 3.421875 0.0625 3.609375 -0.078125 3.734375 -0.296875 C 3.875 -0.5625 3.96875 -0.96875 3.96875 -1 Z M 2.8125 -2.171875 L 2.484375 -0.875 C 2.4375 -0.671875 2.28125 -0.53125 2.140625 -0.40625 C 2.078125 -0.34375 1.796875 -0.125 1.5 -0.125 C 1.234375 -0.125 0.984375 -0.3125 0.984375 -0.796875 C 0.984375 -1.171875 1.1875 -1.9375 1.34375 -2.21875 C 1.671875 -2.765625 2.015625 -2.875 2.21875 -2.875 C 2.703125 -2.875 2.84375 -2.34375 2.84375 -2.265625 C 2.84375 -2.234375 2.828125 -2.1875 2.8125 -2.171875 Z M 2.8125 -2.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph8-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph8-1">
|
||||
<path style="stroke:none;" d="M 4.953125 -1.421875 C 4.953125 -1.515625 4.859375 -1.515625 4.828125 -1.515625 C 4.734375 -1.515625 4.71875 -1.484375 4.6875 -1.34375 C 4.515625 -0.703125 4.34375 -0.109375 3.9375 -0.109375 C 3.671875 -0.109375 3.640625 -0.375 3.640625 -0.5625 C 3.640625 -0.8125 3.65625 -0.875 3.703125 -1.046875 L 5.125 -6.78125 C 5.125 -6.78125 5.125 -6.890625 5 -6.890625 C 4.84375 -6.890625 3.90625 -6.8125 3.734375 -6.78125 C 3.65625 -6.78125 3.59375 -6.734375 3.59375 -6.59375 C 3.59375 -6.484375 3.6875 -6.484375 3.828125 -6.484375 C 4.3125 -6.484375 4.328125 -6.40625 4.328125 -6.3125 L 4.296875 -6.109375 L 3.703125 -3.75 C 3.53125 -4.125 3.234375 -4.390625 2.796875 -4.390625 C 1.625 -4.390625 0.390625 -2.9375 0.390625 -1.484375 C 0.390625 -0.546875 0.9375 0.109375 1.71875 0.109375 C 1.921875 0.109375 2.421875 0.0625 3.015625 -0.640625 C 3.09375 -0.21875 3.4375 0.109375 3.921875 0.109375 C 4.265625 0.109375 4.484375 -0.125 4.65625 -0.4375 C 4.8125 -0.796875 4.953125 -1.421875 4.953125 -1.421875 Z M 3.5625 -3.125 L 3.0625 -1.1875 C 3.015625 -1 3.015625 -0.984375 2.859375 -0.8125 C 2.421875 -0.265625 2.015625 -0.109375 1.734375 -0.109375 C 1.25 -0.109375 1.109375 -0.65625 1.109375 -1.046875 C 1.109375 -1.546875 1.421875 -2.765625 1.65625 -3.21875 C 1.953125 -3.8125 2.40625 -4.171875 2.796875 -4.171875 C 3.453125 -4.171875 3.59375 -3.359375 3.59375 -3.296875 C 3.59375 -3.234375 3.5625 -3.1875 3.5625 -3.125 Z M 3.5625 -3.125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph9-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph9-1">
|
||||
<path style="stroke:none;" d="M 7.46875 -1.546875 C 7.46875 -1.65625 7.328125 -1.65625 7.296875 -1.65625 C 6.984375 -1.65625 6.125 -1.265625 6.015625 -0.75 C 5.53125 -0.75 5.171875 -0.8125 4.375 -0.953125 C 4.015625 -1.03125 3.234375 -1.171875 2.65625 -1.171875 C 2.578125 -1.171875 2.46875 -1.171875 2.390625 -1.15625 C 2.71875 -1.71875 2.859375 -2.1875 3.015625 -2.84375 C 3.21875 -3.625 3.625 -5.03125 4.375 -5.875 C 4.5 -6.015625 4.546875 -6.0625 4.796875 -6.0625 C 5.25 -6.0625 5.4375 -5.703125 5.4375 -5.375 C 5.4375 -5.265625 5.40625 -5.15625 5.40625 -5.125 C 5.40625 -5.015625 5.53125 -4.984375 5.578125 -4.984375 C 5.71875 -4.984375 6.015625 -5.0625 6.40625 -5.328125 C 6.796875 -5.59375 6.84375 -5.78125 6.84375 -6.0625 C 6.84375 -6.5625 6.546875 -6.984375 5.890625 -6.984375 C 5.25 -6.984375 4.359375 -6.671875 3.53125 -5.96875 C 2.390625 -4.953125 1.890625 -3.3125 1.609375 -2.1875 C 1.453125 -1.59375 1.25 -0.78125 0.828125 -0.453125 C 0.71875 -0.375 0.390625 -0.109375 0.390625 0.046875 C 0.390625 0.15625 0.5 0.171875 0.5625 0.171875 C 0.640625 0.171875 0.9375 0.15625 1.5 -0.25 C 1.875 -0.25 2.203125 -0.234375 3.109375 -0.0625 C 3.5625 0.03125 4.28125 0.171875 4.84375 0.171875 C 6.1875 0.171875 7.46875 -1 7.46875 -1.546875 Z M 7.46875 -1.546875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph10-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph10-1">
|
||||
<path style="stroke:none;" d="M 3.46875 -0.765625 C 3.421875 -0.609375 3.359375 -0.34375 3.359375 -0.296875 C 3.359375 -0.046875 3.546875 0.0625 3.734375 0.0625 C 4.125 0.0625 4.21875 -0.296875 4.265625 -0.5 C 4.359375 -0.90625 4.359375 -0.921875 4.46875 -1.3125 C 4.5625 -1.703125 4.5625 -1.71875 4.59375 -1.796875 C 4.640625 -2 4.9375 -2.34375 5.125 -2.5 C 5.25 -2.625 5.546875 -2.828125 5.90625 -2.828125 C 6.25 -2.828125 6.3125 -2.640625 6.3125 -2.40625 C 6.3125 -2.015625 6 -1.25 5.875 -0.96875 C 5.796875 -0.75 5.765625 -0.6875 5.765625 -0.578125 C 5.765625 -0.171875 6.21875 0.0625 6.671875 0.0625 C 7.453125 0.0625 7.875 -0.828125 7.875 -1.03125 C 7.875 -1.15625 7.765625 -1.15625 7.65625 -1.15625 C 7.484375 -1.15625 7.46875 -1.140625 7.421875 -1 C 7.3125 -0.609375 7.015625 -0.265625 6.703125 -0.265625 C 6.671875 -0.265625 6.59375 -0.265625 6.59375 -0.4375 C 6.59375 -0.5625 6.625 -0.640625 6.75 -0.953125 C 6.8125 -1.109375 7.140625 -1.921875 7.140625 -2.296875 C 7.140625 -3.140625 6.1875 -3.140625 5.96875 -3.140625 C 5.46875 -3.140625 5 -2.90625 4.65625 -2.53125 C 4.484375 -3.140625 3.703125 -3.140625 3.5 -3.140625 C 2.9375 -3.140625 2.578125 -2.890625 2.25 -2.59375 C 2.09375 -3.140625 1.34375 -3.140625 1.28125 -3.140625 C 0.546875 -3.140625 0.3125 -2.109375 0.3125 -2.0625 C 0.3125 -1.9375 0.421875 -1.9375 0.53125 -1.9375 C 0.703125 -1.9375 0.71875 -1.9375 0.75 -2.09375 C 0.828125 -2.390625 0.96875 -2.828125 1.234375 -2.828125 C 1.40625 -2.828125 1.421875 -2.640625 1.421875 -2.546875 C 1.421875 -2.453125 1.40625 -2.375 1.34375 -2.15625 C 1.28125 -1.890625 1.28125 -1.875 1.21875 -1.609375 L 1.03125 -0.90625 C 0.984375 -0.703125 0.890625 -0.34375 0.890625 -0.296875 C 0.890625 -0.046875 1.078125 0.0625 1.265625 0.0625 C 1.65625 0.0625 1.75 -0.296875 1.796875 -0.5 C 1.890625 -0.90625 1.890625 -0.921875 2 -1.3125 C 2.09375 -1.71875 2.09375 -1.734375 2.125 -1.796875 C 2.171875 -1.984375 2.46875 -2.359375 2.65625 -2.515625 C 2.875 -2.6875 3.125 -2.828125 3.4375 -2.828125 C 3.78125 -2.828125 3.84375 -2.640625 3.84375 -2.40625 C 3.84375 -2.265625 3.8125 -2.15625 3.734375 -1.84375 Z M 3.46875 -0.765625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph11-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph11-1">
|
||||
<path style="stroke:none;" d="M 3.9375 -0.71875 C 3.9375 -0.78125 3.84375 -0.78125 3.828125 -0.78125 C 3.734375 -0.78125 3.734375 -0.765625 3.703125 -0.671875 C 3.609375 -0.375 3.390625 -0.109375 3.140625 -0.109375 C 3.03125 -0.109375 3 -0.1875 3 -0.296875 C 3 -0.40625 3.015625 -0.453125 3.0625 -0.5625 C 3.140625 -0.765625 3.375 -1.328125 3.375 -1.609375 C 3.375 -1.96875 3.109375 -2.203125 2.640625 -2.203125 C 2.1875 -2.203125 1.875 -1.921875 1.703125 -1.703125 C 1.671875 -2.109375 1.28125 -2.203125 1.09375 -2.203125 C 0.59375 -2.203125 0.453125 -1.421875 0.453125 -1.421875 C 0.453125 -1.359375 0.53125 -1.359375 0.5625 -1.359375 C 0.640625 -1.359375 0.65625 -1.390625 0.671875 -1.453125 C 0.75 -1.734375 0.859375 -2.03125 1.0625 -2.03125 C 1.234375 -2.03125 1.265625 -1.875 1.265625 -1.765625 C 1.265625 -1.6875 1.21875 -1.5 1.1875 -1.375 L 1.078125 -0.921875 L 0.96875 -0.484375 C 0.9375 -0.359375 0.890625 -0.140625 0.890625 -0.125 C 0.890625 -0.015625 0.96875 0.046875 1.0625 0.046875 C 1.140625 0.046875 1.25 0.015625 1.3125 -0.109375 L 1.40625 -0.5 C 1.5625 -1.171875 1.5625 -1.171875 1.578125 -1.203125 C 1.640625 -1.328125 2 -2.03125 2.609375 -2.03125 C 2.859375 -2.03125 2.953125 -1.890625 2.953125 -1.671875 C 2.953125 -1.390625 2.75 -0.875 2.640625 -0.59375 C 2.609375 -0.53125 2.578125 -0.46875 2.578125 -0.375 C 2.578125 -0.125 2.828125 0.046875 3.125 0.046875 C 3.65625 0.046875 3.9375 -0.59375 3.9375 -0.71875 Z M 3.9375 -0.71875 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
<clipPath id="clip1">
|
||||
<path d="M 392 48 L 413.636719 48 L 413.636719 80 L 392 80 Z M 392 48 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip2">
|
||||
<path d="M 346 85 L 379 85 L 379 116.355469 L 346 116.355469 Z M 346 85 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip3">
|
||||
<path d="M 392 13 L 413.636719 13 L 413.636719 45 L 392 45 Z M 392 13 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip4">
|
||||
<path d="M 0.308594 46 L 26 46 L 26 48 L 0.308594 48 Z M 0.308594 46 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<path style="fill-rule:nonzero;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -42.519044 -28.345103 L 42.52041 -28.345103 L 42.52041 28.346561 L -42.519044 28.346561 Z M -42.519044 -28.345103 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="329.677543" y="49.944737"/>
|
||||
<use xlink:href="#glyph0-2" x="336.43937" y="49.944737"/>
|
||||
<use xlink:href="#glyph0-3" x="339.19934" y="49.944737"/>
|
||||
<use xlink:href="#glyph0-4" x="344.166888" y="49.944737"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="349.408645" y="49.944737"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(89.318848%,93.479919%,83.758545%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.007208 -69.027727 L 17.008574 -69.027727 L 17.008574 -40.679937 L -17.007208 -40.679937 Z M -17.007208 -69.027727 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="329.84109" y="103.888403"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="339.490378" y="105.379276"/>
|
||||
<use xlink:href="#glyph2-2" x="342.36052" y="105.379276"/>
|
||||
<use xlink:href="#glyph2-2" x="347.486717" y="105.379276"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(79.998779%,88.938904%,94.819641%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -100.20956 -14.173166 L -66.193778 -14.173166 L -66.193778 14.174624 L -100.20956 14.174624 Z M -100.20956 -14.173166 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="248.703705" y="48.233474"/>
|
||||
<use xlink:href="#glyph3-2" x="253.174499" y="48.233474"/>
|
||||
<use xlink:href="#glyph3-3" x="258.162911" y="48.233474"/>
|
||||
<use xlink:href="#glyph3-4" x="261.543824" y="48.233474"/>
|
||||
<use xlink:href="#glyph3-4" x="264.924737" y="48.233474"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(89.318848%,93.479919%,83.758545%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -123.386826 -0.00122955 C -123.386826 5.502245 -127.844445 9.963781 -133.347919 9.963781 C -138.851394 9.963781 -143.31293 5.502245 -143.31293 -0.00122955 C -143.31293 -5.500787 -138.851394 -9.962323 -133.347919 -9.962323 C -127.844445 -9.962323 -123.386826 -5.500787 -123.386826 -0.00122955 Z M -123.386826 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="202.318116" y="50.67671"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(89.318848%,93.479919%,83.758545%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -200.502061 -14.173166 L -166.486279 -14.173166 L -166.486279 14.174624 L -200.502061 14.174624 Z M -200.502061 -14.173166 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="150.664111" y="49.185838"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-1" x="160.312401" y="50.675713"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(89.318848%,93.479919%,83.758545%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -223.679327 -0.00122955 C -223.679327 5.502245 -228.140863 9.963781 -233.64042 9.963781 C -239.143895 9.963781 -243.60543 5.502245 -243.60543 -0.00122955 C -243.60543 -5.500787 -239.143895 -9.962323 -233.64042 -9.962323 C -228.140863 -9.962323 -223.679327 -5.500787 -223.679327 -0.00122955 Z M -223.679327 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="102.30299" y="50.67671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph6-1" x="110.469383" y="33.772507"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(89.318848%,93.479919%,83.758545%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -312.271558 -14.173166 L -272.450688 -14.173166 L -272.450688 14.174624 L -312.271558 14.174624 Z M -312.271558 -14.173166 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-5" x="39.486886" y="42.272975"/>
|
||||
<use xlink:href="#glyph3-6" x="41.942841" y="42.272975"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-7" x="45.494638" y="42.272975"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-8" x="48.879029" y="42.272975"/>
|
||||
<use xlink:href="#glyph3-9" x="51.914698" y="42.272975"/>
|
||||
<use xlink:href="#glyph3-10" x="54.605619" y="42.272975"/>
|
||||
<use xlink:href="#glyph3-8" x="57.330816" y="42.272975"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-11" x="33.380789" y="54.194971"/>
|
||||
<use xlink:href="#glyph3-12" x="38.424341" y="54.194971"/>
|
||||
<use xlink:href="#glyph3-6" x="40.425269" y="54.194971"/>
|
||||
<use xlink:href="#glyph3-8" x="44.150931" y="54.194971"/>
|
||||
<use xlink:href="#glyph3-13" x="47.186599" y="54.194971"/>
|
||||
<use xlink:href="#glyph3-14" x="52.636993" y="54.194971"/>
|
||||
<use xlink:href="#glyph3-15" x="56.017906" y="54.194971"/>
|
||||
<use xlink:href="#glyph3-12" x="58.708827" y="54.194971"/>
|
||||
<use xlink:href="#glyph3-16" x="60.709756" y="54.194971"/>
|
||||
<use xlink:href="#glyph3-10" x="63.745424" y="54.194971"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.017877 -17.306817 L 66.731781 -17.306817 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 411.230469 63.78125 L 406.796875 62.101562 L 408.273438 63.78125 L 406.796875 65.460938 Z M 411.230469 63.78125 "/>
|
||||
<g clip-path="url(#clip1)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054621 0.000322692 L 1.608753 1.68466 L 3.089403 0.000322692 L 1.608753 -1.684015 Z M 6.054621 0.000322692 " transform="matrix(0.997239,0,0,-0.997239,405.192563,63.781572)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-2" x="396.113626" y="58.4831"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph7-1" x="401.288301" y="59.973972"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.025768 -17.306817 L 60.025768 -54.855791 L 22.139927 -54.855791 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 360.347656 101.226562 L 364.78125 102.902344 L 363.304688 101.226562 L 364.78125 99.546875 Z M 360.347656 101.226562 "/>
|
||||
<g clip-path="url(#clip2)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054242 0.000760649 L 1.608375 1.681181 L 3.089025 0.000760649 L 1.608375 -1.683577 Z M 6.054242 0.000760649 " transform="matrix(-0.997239,0,0,0.997239,366.385185,101.225804)"/>
|
||||
</g>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 403.324219 63.78125 C 403.324219 62.683594 402.433594 61.792969 401.335938 61.792969 C 400.238281 61.792969 399.351562 62.683594 399.351562 63.78125 C 399.351562 64.878906 400.238281 65.769531 401.335938 65.769531 C 402.433594 65.769531 403.324219 64.878906 403.324219 63.78125 Z M 403.324219 63.78125 "/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.504675 -54.855791 L -133.347919 -54.855791 L -133.347919 -14.596209 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05454 -0.000610716 L 1.608673 1.683727 L 3.089323 -0.000610716 L 1.608673 -1.684948 Z M 6.05454 -0.000610716 " transform="matrix(0,-0.997239,-0.997239,0,208.495485,63.908919)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -123.386826 -0.00122955 L -105.340913 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.055306 -0.00122955 L 1.609439 1.683108 L 3.086172 -0.00122955 L 1.609439 -1.68165 Z M 6.055306 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,233.594223,46.522211)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="230.473173" y="42.714752"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -65.696311 -0.00122955 L -47.650398 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052014 -0.00122955 L 1.610064 1.683108 L 3.086797 -0.00122955 L 1.610064 -1.68165 Z M 6.052014 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,291.12485,46.522211)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="283.196219" y="41.223879"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph7-2" x="289.962487" y="42.714752"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.017877 17.308275 L 66.731781 17.308275 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 411.230469 29.261719 L 406.796875 27.585938 L 408.273438 29.261719 L 406.796875 30.941406 Z M 411.230469 29.261719 "/>
|
||||
<g clip-path="url(#clip3)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054621 0.00113527 L 1.608753 1.681556 L 3.089403 0.00113527 L 1.608753 -1.683202 Z M 6.054621 0.00113527 " transform="matrix(0.997239,0,0,-0.997239,405.192563,29.262851)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph8-1" x="387.143459" y="39.971346"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph9-1" x="392.314145" y="39.971346"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-1" x="400.145465" y="41.461222"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.025768 17.308275 L 60.025768 45.652149 L -233.64042 45.652149 L -233.64042 14.597667 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053082 0.00105984 L 1.607215 1.68148 L 3.087865 0.00105984 L 1.607215 -1.683278 Z M 6.053082 0.00105984 " transform="matrix(0,0.997239,0.997239,0,108.479412,29.135503)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 403.324219 29.261719 C 403.324219 28.164062 402.433594 27.277344 401.335938 27.277344 C 400.238281 27.277344 399.351562 28.164062 399.351562 29.261719 C 399.351562 30.359375 400.238281 31.25 401.335938 31.25 C 402.433594 31.25 403.324219 30.359375 403.324219 29.261719 Z M 403.324219 29.261719 "/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -223.679327 -0.00122955 L -205.633414 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051848 -0.00122955 L 1.609898 1.683108 L 3.086631 -0.00122955 L 1.609898 -1.68165 Z M 6.051848 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,133.57814,46.522211)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="122.283677" y="41.223879"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph7-3" x="127.085384" y="42.714752"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-1" x="131.220936" y="42.714752"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -165.988812 -0.00122955 L -147.946816 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052463 -0.00122955 L 1.610513 1.683108 L 3.087246 -0.00122955 L 1.610513 -1.68165 Z M 6.052463 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,191.108777,46.522211)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="185.200503" y="42.714752"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-2" x="191.966772" y="39.108734"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -271.949304 -0.00122955 L -248.239317 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052913 -0.00122955 L 1.607045 1.683108 L 3.087695 -0.00122955 L 1.607045 -1.68165 Z M 6.052913 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,91.092704,46.522211)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-5" x="79.347538" y="41.223879"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph7-3" x="84.599998" y="42.714752"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-1" x="88.736547" y="42.714752"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip4)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -317.402912 -0.00122955 L -341.116816 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05162 -0.00122955 L 1.60967 1.683108 L 3.086403 -0.00122955 L 1.60967 -1.68165 Z M 6.05162 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,22.11743,46.522211)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-5" x="9.448043" y="40.230628"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-3" x="14.7015" y="41.720504"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph11-1" x="20.395736" y="42.714752"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 62 KiB |
BIN
figs/control_architecture_hac_iff_struts_L.pdf
Normal file
BIN
figs/control_architecture_hac_iff_struts_L.png
Normal file
After Width: | Height: | Size: 15 KiB |
285
figs/control_architecture_hac_iff_struts_L.svg
Normal file
@ -0,0 +1,285 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="408.666pt" height="116.677pt" viewBox="0 0 408.666 116.677" version="1.2">
|
||||
<defs>
|
||||
<g>
|
||||
<symbol overflow="visible" id="glyph0-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<path style="stroke:none;" d="M 6.203125 -4.9375 C 6.203125 -5.90625 5.21875 -6.78125 3.859375 -6.78125 L 0.34375 -6.78125 L 0.34375 -6.484375 L 0.59375 -6.484375 C 1.34375 -6.484375 1.375 -6.375 1.375 -6.015625 L 1.375 -0.78125 C 1.375 -0.421875 1.34375 -0.3125 0.59375 -0.3125 L 0.34375 -0.3125 L 0.34375 0 C 0.703125 -0.03125 1.4375 -0.03125 1.8125 -0.03125 C 2.1875 -0.03125 2.9375 -0.03125 3.28125 0 L 3.28125 -0.3125 L 3.046875 -0.3125 C 2.28125 -0.3125 2.25 -0.421875 2.25 -0.78125 L 2.25 -3.140625 L 3.9375 -3.140625 C 5.125 -3.140625 6.203125 -3.9375 6.203125 -4.9375 Z M 5.171875 -4.9375 C 5.171875 -4.46875 5.171875 -3.40625 3.59375 -3.40625 L 2.21875 -3.40625 L 2.21875 -6.078125 C 2.21875 -6.40625 2.25 -6.484375 2.71875 -6.484375 L 3.59375 -6.484375 C 5.171875 -6.484375 5.171875 -5.421875 5.171875 -4.9375 Z M 5.171875 -4.9375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 2.53125 0 L 2.53125 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -6.890625 L 0.328125 -6.78125 L 0.328125 -6.484375 C 1.03125 -6.484375 1.109375 -6.40625 1.109375 -5.921875 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.4375 -0.03125 Z M 2.53125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 4.796875 -0.890625 L 4.796875 -1.4375 L 4.546875 -1.4375 L 4.546875 -0.890625 C 4.546875 -0.3125 4.296875 -0.25 4.1875 -0.25 C 3.859375 -0.25 3.828125 -0.703125 3.828125 -0.75 L 3.828125 -2.734375 C 3.828125 -3.15625 3.828125 -3.53125 3.46875 -3.90625 C 3.078125 -4.296875 2.578125 -4.453125 2.109375 -4.453125 C 1.296875 -4.453125 0.609375 -3.984375 0.609375 -3.328125 C 0.609375 -3.03125 0.8125 -2.859375 1.0625 -2.859375 C 1.34375 -2.859375 1.515625 -3.0625 1.515625 -3.3125 C 1.515625 -3.4375 1.46875 -3.765625 1.015625 -3.78125 C 1.28125 -4.125 1.765625 -4.234375 2.09375 -4.234375 C 2.578125 -4.234375 3.140625 -3.84375 3.140625 -2.96875 L 3.140625 -2.59375 C 2.640625 -2.5625 1.9375 -2.53125 1.3125 -2.234375 C 0.5625 -1.890625 0.3125 -1.375 0.3125 -0.9375 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.5625 0.109375 3.015625 -0.28125 3.203125 -0.75 C 3.25 -0.359375 3.515625 0.0625 3.984375 0.0625 C 4.1875 0.0625 4.796875 -0.078125 4.796875 -0.890625 Z M 3.140625 -1.390625 C 3.140625 -0.453125 2.421875 -0.109375 1.984375 -0.109375 C 1.484375 -0.109375 1.078125 -0.453125 1.078125 -0.953125 C 1.078125 -1.5 1.5 -2.328125 3.140625 -2.390625 Z M 3.140625 -1.390625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 5.3125 0 L 5.3125 -0.3125 C 4.796875 -0.3125 4.546875 -0.3125 4.546875 -0.609375 L 4.546875 -2.5 C 4.546875 -3.359375 4.546875 -3.671875 4.234375 -4.03125 C 4.09375 -4.1875 3.765625 -4.390625 3.1875 -4.390625 C 2.46875 -4.390625 2 -3.96875 1.71875 -3.34375 L 1.71875 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.015625 -3.96875 1.09375 -3.90625 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.546875 0 L 2.546875 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.578125 C 1.78125 -3.625 2.484375 -4.171875 3.125 -4.171875 C 3.75 -4.171875 3.859375 -3.640625 3.859375 -3.078125 L 3.859375 -0.75 C 3.859375 -0.3125 3.75 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.203125 -0.03125 Z M 5.3125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 3.296875 -1.234375 L 3.296875 -1.796875 L 3.046875 -1.796875 L 3.046875 -1.25 C 3.046875 -0.515625 2.75 -0.140625 2.390625 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.21875 L 1.71875 -3.96875 L 3.140625 -3.96875 L 3.140625 -4.28125 L 1.71875 -4.28125 L 1.71875 -6.109375 L 1.46875 -6.109375 C 1.453125 -5.296875 1.15625 -4.234375 0.1875 -4.1875 L 0.1875 -3.96875 L 1.03125 -3.96875 L 1.03125 -1.234375 C 1.03125 -0.015625 1.953125 0.109375 2.3125 0.109375 C 3.015625 0.109375 3.296875 -0.59375 3.296875 -1.234375 Z M 3.296875 -1.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-1">
|
||||
<path style="stroke:none;" d="M 5.859375 -4.171875 C 6.515625 -4.640625 8.34375 -5.921875 8.6875 -6.109375 C 8.90625 -6.21875 9.125 -6.328125 9.625 -6.34375 C 9.8125 -6.359375 9.96875 -6.359375 9.96875 -6.640625 C 9.96875 -6.734375 9.890625 -6.8125 9.78125 -6.8125 C 9.546875 -6.8125 9.25 -6.78125 9 -6.78125 C 8.59375 -6.78125 8.15625 -6.8125 7.75 -6.8125 C 7.671875 -6.8125 7.46875 -6.8125 7.46875 -6.53125 C 7.46875 -6.34375 7.65625 -6.34375 7.71875 -6.34375 C 7.796875 -6.34375 8 -6.34375 8.171875 -6.28125 L 3.640625 -3.15625 L 4.421875 -6.3125 C 4.640625 -6.34375 4.984375 -6.34375 5.09375 -6.34375 C 5.234375 -6.34375 5.421875 -6.34375 5.46875 -6.375 C 5.5625 -6.453125 5.578125 -6.625 5.578125 -6.640625 C 5.578125 -6.765625 5.46875 -6.8125 5.359375 -6.8125 C 5.109375 -6.8125 4.84375 -6.796875 4.59375 -6.796875 C 4.359375 -6.796875 4.109375 -6.78125 3.859375 -6.78125 C 3.59375 -6.78125 3.34375 -6.796875 3.09375 -6.796875 C 2.828125 -6.796875 2.5625 -6.8125 2.3125 -6.8125 C 2.21875 -6.8125 2.015625 -6.8125 2.015625 -6.53125 C 2.015625 -6.34375 2.140625 -6.34375 2.4375 -6.34375 C 2.640625 -6.34375 2.828125 -6.34375 3.046875 -6.328125 L 1.625 -0.671875 C 1.578125 -0.5 1.5625 -0.5 1.390625 -0.484375 C 1.21875 -0.46875 1.03125 -0.46875 0.859375 -0.46875 C 0.609375 -0.46875 0.59375 -0.46875 0.546875 -0.453125 C 0.421875 -0.375 0.421875 -0.21875 0.421875 -0.171875 C 0.421875 -0.15625 0.4375 0 0.640625 0 C 0.890625 0 1.15625 -0.015625 1.40625 -0.015625 C 1.65625 -0.015625 1.90625 -0.03125 2.15625 -0.03125 C 2.421875 -0.03125 2.671875 -0.015625 2.921875 -0.015625 C 3.1875 -0.015625 3.453125 0 3.703125 0 C 3.796875 0 3.859375 0 3.921875 -0.0625 C 3.96875 -0.125 3.984375 -0.265625 3.984375 -0.28125 C 3.984375 -0.46875 3.84375 -0.46875 3.578125 -0.46875 C 3.375 -0.46875 3.1875 -0.484375 2.96875 -0.484375 L 3.484375 -2.546875 L 4.71875 -3.40625 L 6.203125 -0.53125 C 6 -0.46875 5.703125 -0.46875 5.671875 -0.46875 C 5.53125 -0.46875 5.46875 -0.46875 5.421875 -0.390625 C 5.375 -0.34375 5.359375 -0.203125 5.359375 -0.171875 C 5.359375 -0.171875 5.359375 0 5.5625 0 C 5.890625 0 6.703125 -0.03125 7.03125 -0.03125 C 7.25 -0.03125 7.46875 -0.015625 7.671875 -0.015625 C 7.875 -0.015625 8.078125 0 8.265625 0 C 8.34375 0 8.53125 0 8.53125 -0.28125 C 8.53125 -0.46875 8.375 -0.46875 8.21875 -0.46875 C 7.765625 -0.46875 7.734375 -0.5 7.65625 -0.671875 Z M 5.859375 -4.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<path style="stroke:none;" d="M 5.984375 -6.15625 C 6.015625 -6.3125 6.03125 -6.3125 6.109375 -6.328125 C 6.21875 -6.34375 6.359375 -6.34375 6.484375 -6.34375 C 6.734375 -6.34375 6.890625 -6.34375 6.890625 -6.640625 C 6.890625 -6.65625 6.890625 -6.8125 6.6875 -6.8125 C 6.484375 -6.8125 6.265625 -6.796875 6.0625 -6.796875 C 5.84375 -6.796875 5.609375 -6.78125 5.375 -6.78125 C 4.984375 -6.78125 4.03125 -6.8125 3.640625 -6.8125 C 3.53125 -6.8125 3.34375 -6.8125 3.34375 -6.53125 C 3.34375 -6.34375 3.515625 -6.34375 3.6875 -6.34375 L 4.03125 -6.34375 C 4.421875 -6.34375 4.4375 -6.34375 4.6875 -6.3125 L 3.484375 -1.5 C 3.234375 -0.484375 2.609375 -0.1875 2.140625 -0.1875 C 2.0625 -0.1875 1.625 -0.203125 1.328125 -0.421875 C 1.875 -0.5625 2.046875 -1.03125 2.046875 -1.296875 C 2.046875 -1.625 1.78125 -1.859375 1.4375 -1.859375 C 1.046875 -1.859375 0.5625 -1.546875 0.5625 -0.921875 C 0.5625 -0.234375 1.25 0.171875 2.203125 0.171875 C 3.3125 0.171875 4.515625 -0.28125 4.796875 -1.453125 Z M 5.984375 -6.15625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-3">
|
||||
<path style="stroke:none;" d="M 3.46875 -3.453125 L 5.3125 -3.453125 C 5.515625 -3.453125 5.640625 -3.453125 5.796875 -3.609375 C 6 -3.78125 6 -4 6 -4.03125 C 6 -4.40625 5.640625 -4.40625 5.46875 -4.40625 L 2.203125 -4.40625 C 2 -4.40625 1.5625 -4.40625 1.046875 -3.9375 C 0.703125 -3.625 0.3125 -3.109375 0.3125 -3.015625 C 0.3125 -2.875 0.421875 -2.875 0.53125 -2.875 C 0.6875 -2.875 0.703125 -2.875 0.78125 -2.984375 C 1.15625 -3.453125 1.8125 -3.453125 2 -3.453125 L 2.90625 -3.453125 L 2.546875 -2.40625 C 2.453125 -2.15625 2.234375 -1.515625 2.15625 -1.265625 C 2.046875 -0.953125 1.859375 -0.421875 1.859375 -0.3125 C 1.859375 -0.046875 2.078125 0.125 2.328125 0.125 C 2.390625 0.125 2.90625 0.125 3 -0.53125 Z M 3.46875 -3.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-4">
|
||||
<path style="stroke:none;" d="M 5.59375 -3.15625 C 5.671875 -3.421875 5.78125 -3.90625 5.78125 -3.96875 C 5.78125 -4.1875 5.625 -4.40625 5.3125 -4.40625 C 5.15625 -4.40625 4.796875 -4.328125 4.65625 -3.890625 C 4.625 -3.75 4.171875 -1.953125 4.09375 -1.625 C 4.03125 -1.390625 3.96875 -1.109375 3.9375 -0.921875 C 3.765625 -0.6875 3.375 -0.28125 2.875 -0.28125 C 2.28125 -0.28125 2.28125 -0.78125 2.28125 -1 C 2.28125 -1.609375 2.578125 -2.390625 2.859375 -3.09375 C 2.96875 -3.359375 2.984375 -3.421875 2.984375 -3.59375 C 2.984375 -4.171875 2.421875 -4.484375 1.875 -4.484375 C 0.8125 -4.484375 0.3125 -3.140625 0.3125 -2.9375 C 0.3125 -2.796875 0.46875 -2.796875 0.5625 -2.796875 C 0.671875 -2.796875 0.75 -2.796875 0.78125 -2.9375 C 1.109375 -4.03125 1.65625 -4.140625 1.8125 -4.140625 C 1.875 -4.140625 1.984375 -4.140625 1.984375 -3.921875 C 1.984375 -3.703125 1.859375 -3.421875 1.8125 -3.296875 C 1.40625 -2.25 1.21875 -1.703125 1.21875 -1.21875 C 1.21875 -0.078125 2.203125 0.078125 2.796875 0.078125 C 3.078125 0.078125 3.515625 0.046875 4.046875 -0.46875 C 4.375 0.015625 4.953125 0.078125 5.1875 0.078125 C 5.5625 0.078125 5.84375 -0.125 6.046875 -0.484375 C 6.296875 -0.890625 6.421875 -1.421875 6.421875 -1.46875 C 6.421875 -1.609375 6.28125 -1.609375 6.1875 -1.609375 C 6.078125 -1.609375 6.046875 -1.609375 6 -1.5625 C 5.96875 -1.546875 5.96875 -1.515625 5.90625 -1.265625 C 5.71875 -0.5 5.5 -0.28125 5.234375 -0.28125 C 5.09375 -0.28125 5.015625 -0.375 5.015625 -0.640625 C 5.015625 -0.8125 5.046875 -0.96875 5.140625 -1.375 C 5.21875 -1.65625 5.3125 -2.046875 5.359375 -2.265625 Z M 5.59375 -3.15625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-5">
|
||||
<path style="stroke:none;" d="M 3.5625 -2.109375 C 3.71875 -2.109375 3.953125 -2.109375 3.953125 -2.359375 C 3.953125 -2.578125 3.765625 -2.578125 3.578125 -2.578125 L 1.875 -2.578125 C 2.03125 -3.203125 2.40625 -3.9375 3.59375 -3.9375 L 4 -3.9375 C 4.140625 -3.9375 4.40625 -3.9375 4.40625 -4.203125 C 4.40625 -4.28125 4.359375 -4.40625 4.21875 -4.40625 L 3.796875 -4.40625 C 3.265625 -4.40625 2.203125 -4.40625 1.34375 -3.640625 C 0.875 -3.21875 0.5 -2.5625 0.5 -1.78125 C 0.5 -0.421875 1.640625 0.078125 2.796875 0.078125 C 2.9375 0.078125 3.265625 0.078125 3.734375 -0.09375 C 3.78125 -0.09375 4.328125 -0.3125 4.328125 -0.46875 C 4.328125 -0.578125 4.265625 -0.765625 4.140625 -0.765625 C 4.109375 -0.765625 4.078125 -0.765625 3.984375 -0.703125 C 3.390625 -0.34375 3.078125 -0.28125 2.828125 -0.28125 C 2.578125 -0.28125 1.65625 -0.328125 1.65625 -1.359375 C 1.65625 -1.625 1.703125 -1.875 1.765625 -2.109375 Z M 3.5625 -2.109375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-6">
|
||||
<path style="stroke:none;" d="M 4.40625 -4 C 3.859375 -3.890625 3.8125 -3.40625 3.8125 -3.296875 C 3.8125 -3.078125 3.96875 -2.84375 4.296875 -2.84375 C 4.640625 -2.84375 5.015625 -3.125 5.015625 -3.625 C 5.015625 -4.078125 4.65625 -4.484375 4.046875 -4.484375 C 3.484375 -4.484375 3.015625 -4.21875 2.71875 -3.890625 C 2.484375 -4.359375 1.921875 -4.484375 1.5625 -4.484375 C 1.1875 -4.484375 0.921875 -4.28125 0.703125 -3.921875 C 0.453125 -3.53125 0.3125 -3 0.3125 -2.9375 C 0.3125 -2.796875 0.46875 -2.796875 0.5625 -2.796875 C 0.671875 -2.796875 0.703125 -2.796875 0.75 -2.859375 C 0.78125 -2.875 0.78125 -2.890625 0.828125 -3.140625 C 1.03125 -3.890625 1.25 -4.140625 1.515625 -4.140625 C 1.65625 -4.140625 1.734375 -4.03125 1.734375 -3.78125 C 1.734375 -3.59375 1.703125 -3.484375 1.59375 -3.015625 C 1.546875 -2.859375 1.390625 -2.203125 1.328125 -1.953125 C 1.28125 -1.765625 1.171875 -1.3125 1.125 -1.140625 C 1.0625 -0.875 0.9375 -0.421875 0.9375 -0.359375 C 0.9375 -0.15625 1.109375 0.078125 1.40625 0.078125 C 1.609375 0.078125 1.953125 -0.046875 2.0625 -0.453125 C 2.078125 -0.484375 2.75 -3.1875 2.765625 -3.234375 C 2.796875 -3.390625 2.796875 -3.40625 2.9375 -3.5625 C 3.15625 -3.84375 3.53125 -4.140625 4.03125 -4.140625 C 4.265625 -4.140625 4.375 -4.03125 4.40625 -4 Z M 4.40625 -4 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-1">
|
||||
<path style="stroke:none;" d="M 2.515625 0 L 2.515625 -0.25 L 2.34375 -0.25 C 1.765625 -0.25 1.765625 -0.328125 1.765625 -0.5625 L 1.765625 -4.171875 C 1.765625 -4.421875 1.765625 -4.5 2.34375 -4.5 L 2.515625 -4.5 L 2.515625 -4.75 L 1.4375 -4.71875 L 0.359375 -4.75 L 0.359375 -4.5 L 0.53125 -4.5 C 1.109375 -4.5 1.109375 -4.421875 1.109375 -4.171875 L 1.109375 -0.5625 C 1.109375 -0.328125 1.109375 -0.25 0.53125 -0.25 L 0.359375 -0.25 L 0.359375 0 L 1.4375 -0.03125 Z M 2.515625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<path style="stroke:none;" d="M 4.734375 -3.125 L 4.53125 -4.71875 L 0.390625 -4.71875 L 0.390625 -4.46875 L 0.5625 -4.46875 C 1.09375 -4.46875 1.109375 -4.40625 1.109375 -4.15625 L 1.109375 -0.5625 C 1.109375 -0.328125 1.09375 -0.25 0.5625 -0.25 L 0.390625 -0.25 L 0.390625 0 L 1.453125 -0.03125 L 2.65625 0 L 2.65625 -0.25 L 2.421875 -0.25 C 1.765625 -0.25 1.765625 -0.34375 1.765625 -0.5625 L 1.765625 -2.234375 L 2.4375 -2.234375 C 3.140625 -2.234375 3.234375 -2.03125 3.234375 -1.421875 L 3.46875 -1.421875 L 3.46875 -3.296875 L 3.234375 -3.296875 C 3.234375 -2.703125 3.140625 -2.484375 2.4375 -2.484375 L 1.765625 -2.484375 L 1.765625 -4.203125 C 1.765625 -4.421875 1.765625 -4.46875 2.09375 -4.46875 L 3.078125 -4.46875 C 4.1875 -4.46875 4.375 -4.09375 4.5 -3.125 Z M 4.734375 -3.125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-1">
|
||||
<path style="stroke:none;" d="M 3.984375 -2.4375 C 3.984375 -2.96875 3.328125 -3.390625 2.53125 -3.390625 L 0.421875 -3.390625 L 0.421875 -3.171875 L 0.578125 -3.171875 C 0.96875 -3.171875 0.96875 -3.125 0.96875 -2.96875 L 0.96875 -0.421875 C 0.96875 -0.265625 0.96875 -0.21875 0.578125 -0.21875 L 0.421875 -0.21875 L 0.421875 0 L 1.234375 -0.015625 L 2.046875 0 L 2.046875 -0.21875 L 1.90625 -0.21875 C 1.5 -0.21875 1.5 -0.265625 1.5 -0.421875 L 1.5 -1.515625 L 2.59375 -1.515625 C 3.25 -1.515625 3.984375 -1.890625 3.984375 -2.4375 Z M 3.40625 -2.4375 C 3.40625 -2.03125 3.203125 -1.703125 2.421875 -1.703125 L 1.484375 -1.703125 L 1.484375 -2.984375 C 1.484375 -3.140625 1.484375 -3.171875 1.71875 -3.171875 L 2.421875 -3.171875 C 3.234375 -3.171875 3.40625 -2.828125 3.40625 -2.4375 Z M 3.40625 -2.4375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-2">
|
||||
<path style="stroke:none;" d="M 4.5 -1.671875 C 4.5 -2.59375 3.671875 -3.390625 2.609375 -3.390625 L 0.421875 -3.390625 L 0.421875 -3.171875 C 0.546875 -3.171875 0.6875 -3.171875 0.796875 -3.171875 C 0.96875 -3.15625 0.96875 -3.078125 0.96875 -2.96875 L 0.96875 -0.4375 C 0.96875 -0.3125 0.96875 -0.25 0.796875 -0.234375 C 0.6875 -0.21875 0.53125 -0.21875 0.421875 -0.21875 L 0.421875 0 L 2.609375 0 C 3.65625 0 4.5 -0.75 4.5 -1.671875 Z M 3.9375 -1.671875 C 3.9375 -1.234375 3.84375 -0.859375 3.5625 -0.59375 C 3.390625 -0.4375 3.046875 -0.21875 2.46875 -0.21875 L 1.734375 -0.21875 C 1.484375 -0.21875 1.484375 -0.25 1.484375 -0.421875 L 1.484375 -2.96875 C 1.484375 -3.140625 1.484375 -3.171875 1.734375 -3.171875 L 2.46875 -3.171875 C 3.0625 -3.171875 3.40625 -2.921875 3.546875 -2.796875 C 3.71875 -2.609375 3.9375 -2.328125 3.9375 -1.671875 Z M 3.9375 -1.671875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-3">
|
||||
<path style="stroke:none;" d="M 2.921875 -0.953125 L 2.71875 -0.953125 C 2.703125 -0.859375 2.65625 -0.5625 2.578125 -0.5 C 2.53125 -0.484375 2.109375 -0.484375 2.046875 -0.484375 L 1.0625 -0.484375 C 1.390625 -0.71875 1.765625 -1 2.0625 -1.203125 C 2.515625 -1.5 2.921875 -1.796875 2.921875 -2.328125 C 2.921875 -2.953125 2.328125 -3.3125 1.609375 -3.3125 C 0.9375 -3.3125 0.453125 -2.921875 0.453125 -2.4375 C 0.453125 -2.171875 0.671875 -2.125 0.734375 -2.125 C 0.875 -2.125 1.03125 -2.21875 1.03125 -2.421875 C 1.03125 -2.609375 0.90625 -2.703125 0.75 -2.71875 C 0.890625 -2.9375 1.171875 -3.09375 1.515625 -3.09375 C 2 -3.09375 2.390625 -2.796875 2.390625 -2.3125 C 2.390625 -1.890625 2.109375 -1.578125 1.71875 -1.25 L 0.515625 -0.234375 C 0.46875 -0.1875 0.453125 -0.1875 0.453125 -0.15625 L 0.453125 0 L 2.765625 0 Z M 2.921875 -0.953125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-4">
|
||||
<path style="stroke:none;" d="M 2.984375 -1.59375 C 2.984375 -1.953125 2.984375 -3.3125 1.6875 -3.3125 C 0.390625 -3.3125 0.390625 -1.953125 0.390625 -1.59375 C 0.390625 -1.234375 0.390625 0.109375 1.6875 0.109375 C 2.984375 0.109375 2.984375 -1.234375 2.984375 -1.59375 Z M 2.484375 -1.65625 C 2.484375 -1.3125 2.484375 -0.90625 2.421875 -0.609375 C 2.28125 -0.125 1.890625 -0.046875 1.6875 -0.046875 C 1.5 -0.046875 1.09375 -0.125 0.96875 -0.625 C 0.890625 -0.890625 0.890625 -1.234375 0.890625 -1.65625 C 0.890625 -2.015625 0.890625 -2.359375 0.96875 -2.640625 C 1.09375 -3.0625 1.46875 -3.140625 1.6875 -3.140625 C 2.0625 -3.140625 2.328125 -2.953125 2.421875 -2.609375 C 2.484375 -2.359375 2.484375 -1.9375 2.484375 -1.65625 Z M 2.484375 -1.65625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-1">
|
||||
<path style="stroke:none;" d="M 11.5625 -4.28125 C 11.5625 -4.578125 11.28125 -4.578125 11.03125 -4.578125 L 6.46875 -4.578125 L 6.46875 -9.140625 C 6.46875 -9.375 6.46875 -9.671875 6.1875 -9.671875 C 5.875 -9.671875 5.875 -9.390625 5.875 -9.140625 L 5.875 -4.578125 L 1.328125 -4.578125 C 1.078125 -4.578125 0.796875 -4.578125 0.796875 -4.296875 C 0.796875 -3.984375 1.0625 -3.984375 1.328125 -3.984375 L 5.875 -3.984375 L 5.875 0.5625 C 5.875 0.8125 5.875 1.09375 6.171875 1.09375 C 6.46875 1.09375 6.46875 0.828125 6.46875 0.5625 L 6.46875 -3.984375 L 11.03125 -3.984375 C 11.265625 -3.984375 11.5625 -3.984375 11.5625 -4.28125 Z M 11.5625 -4.28125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-1">
|
||||
<path style="stroke:none;" d="M 5.125 -0.984375 C 5.125 -1.015625 5.109375 -1.046875 5.0625 -1.046875 C 4.953125 -1.046875 4.5 -0.890625 4.421875 -0.609375 C 4.3125 -0.3125 4.234375 -0.3125 4.0625 -0.3125 C 3.6875 -0.3125 3.1875 -0.4375 2.84375 -0.53125 C 2.484375 -0.625 2.109375 -0.703125 1.75 -0.703125 C 1.71875 -0.703125 1.578125 -0.703125 1.484375 -0.6875 C 1.859375 -1.234375 1.953125 -1.578125 2.0625 -2.015625 C 2.203125 -2.53125 2.40625 -3.25 2.75 -3.828125 C 3.09375 -4.390625 3.265625 -4.421875 3.5 -4.421875 C 3.828125 -4.421875 4.046875 -4.1875 4.046875 -3.84375 C 4.046875 -3.734375 4.03125 -3.65625 4.03125 -3.625 C 4.03125 -3.59375 4.046875 -3.5625 4.109375 -3.5625 C 4.125 -3.5625 4.296875 -3.59375 4.546875 -3.765625 C 4.6875 -3.859375 4.765625 -3.9375 4.765625 -4.203125 C 4.765625 -4.46875 4.609375 -4.890625 4.0625 -4.890625 C 3.453125 -4.890625 2.78125 -4.484375 2.421875 -4.046875 C 1.953125 -3.515625 1.640625 -2.8125 1.359375 -1.671875 C 1.1875 -1.03125 0.9375 -0.5 0.609375 -0.234375 C 0.546875 -0.171875 0.359375 0 0.359375 0.09375 C 0.359375 0.140625 0.421875 0.140625 0.4375 0.140625 C 0.6875 0.140625 1 -0.15625 1.09375 -0.25 C 1.296875 -0.25 1.578125 -0.234375 2.203125 -0.078125 C 2.734375 0.0625 3.109375 0.140625 3.5 0.140625 C 4.375 0.140625 5.125 -0.65625 5.125 -0.984375 Z M 5.125 -0.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-2">
|
||||
<path style="stroke:none;" d="M 2.078125 -3.5 C 2.078125 -3.71875 1.890625 -3.890625 1.671875 -3.890625 C 1.390625 -3.890625 1.328125 -3.65625 1.296875 -3.5625 L 0.375 -0.5625 L 0.328125 -0.4375 C 0.328125 -0.359375 0.546875 -0.28125 0.609375 -0.28125 C 0.65625 -0.28125 0.6875 -0.3125 0.703125 -0.390625 L 2.015625 -3.28125 C 2.046875 -3.359375 2.078125 -3.40625 2.078125 -3.5 Z M 2.078125 -3.5 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-3">
|
||||
<path style="stroke:none;" d="M 5.3125 -0.6875 C 5.3125 -0.734375 5.265625 -0.734375 5.234375 -0.734375 C 5.125 -0.734375 4.84375 -0.625 4.703125 -0.421875 C 4.46875 -0.421875 4.203125 -0.421875 4.078125 -1.0625 L 3.875 -2.46875 C 3.875 -2.5 3.890625 -2.515625 3.90625 -2.53125 L 4.15625 -2.65625 C 6.21875 -3.78125 6.21875 -4.09375 6.21875 -4.34375 C 6.21875 -4.546875 6.109375 -4.75 5.828125 -4.75 C 5.609375 -4.75 5.265625 -4.5 5.265625 -4.390625 C 5.265625 -4.328125 5.296875 -4.328125 5.34375 -4.328125 C 5.515625 -4.296875 5.578125 -4.15625 5.578125 -4.015625 C 5.578125 -3.875 5.578125 -3.796875 4.9375 -3.40625 C 4.8125 -3.3125 4.671875 -3.21875 3.84375 -2.78125 C 3.75 -3.28125 3.703125 -3.84375 3.640625 -4.09375 C 3.515625 -4.65625 3.265625 -4.75 2.953125 -4.75 C 2.1875 -4.75 1.78125 -4.234375 1.78125 -4.078125 C 1.78125 -4.015625 1.828125 -4.015625 1.859375 -4.015625 C 1.984375 -4.015625 2.265625 -4.125 2.40625 -4.328125 C 2.625 -4.328125 2.875 -4.328125 3 -3.75 L 3.1875 -2.421875 C 2.796875 -2.21875 2.0625 -1.828125 1.640625 -1.578125 C 0.546875 -0.890625 0.484375 -0.625 0.484375 -0.40625 C 0.484375 -0.203125 0.59375 0 0.890625 0 C 1.09375 0 1.453125 -0.234375 1.453125 -0.375 C 1.453125 -0.421875 1.390625 -0.421875 1.359375 -0.421875 C 1.203125 -0.4375 1.140625 -0.5625 1.140625 -0.734375 C 1.140625 -0.890625 1.140625 -0.984375 1.984375 -1.484375 L 3.21875 -2.15625 C 3.328125 -1.625 3.40625 -0.921875 3.421875 -0.78125 C 3.53125 -0.3125 3.640625 0 4.140625 0 C 4.90625 0 5.3125 -0.5 5.3125 -0.6875 Z M 5.3125 -0.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-1">
|
||||
<path style="stroke:none;" d="M 6.890625 -2.484375 C 6.890625 -2.6875 6.703125 -2.6875 6.5625 -2.6875 L 1.15625 -2.6875 C 1.015625 -2.6875 0.828125 -2.6875 0.828125 -2.484375 C 0.828125 -2.28125 1.015625 -2.28125 1.15625 -2.28125 L 6.5625 -2.28125 C 6.703125 -2.28125 6.890625 -2.28125 6.890625 -2.484375 Z M 6.890625 -2.484375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-1">
|
||||
<path style="stroke:none;" d="M 6.703125 -1 C 6.703125 -1.078125 6.625 -1.078125 6.59375 -1.078125 C 6.5 -1.078125 6.5 -1.046875 6.46875 -0.96875 C 6.3125 -0.40625 6 -0.125 5.734375 -0.125 C 5.578125 -0.125 5.5625 -0.21875 5.5625 -0.375 C 5.5625 -0.53125 5.59375 -0.625 5.71875 -0.9375 C 5.796875 -1.140625 6.078125 -1.890625 6.078125 -2.28125 C 6.078125 -2.390625 6.078125 -2.671875 5.828125 -2.875 C 5.703125 -2.96875 5.5 -3.0625 5.1875 -3.0625 C 4.546875 -3.0625 4.171875 -2.65625 3.953125 -2.359375 C 3.890625 -2.953125 3.40625 -3.0625 3.046875 -3.0625 C 2.46875 -3.0625 2.078125 -2.71875 1.875 -2.4375 C 1.828125 -2.90625 1.40625 -3.0625 1.125 -3.0625 C 0.828125 -3.0625 0.671875 -2.84375 0.578125 -2.6875 C 0.421875 -2.4375 0.328125 -2.03125 0.328125 -2 C 0.328125 -1.90625 0.421875 -1.90625 0.4375 -1.90625 C 0.546875 -1.90625 0.546875 -1.9375 0.59375 -2.125 C 0.703125 -2.53125 0.828125 -2.875 1.109375 -2.875 C 1.28125 -2.875 1.328125 -2.71875 1.328125 -2.53125 C 1.328125 -2.40625 1.265625 -2.140625 1.21875 -1.953125 L 1.078125 -1.328125 L 0.84375 -0.4375 C 0.828125 -0.34375 0.78125 -0.171875 0.78125 -0.15625 C 0.78125 0 0.90625 0.0625 1.015625 0.0625 C 1.140625 0.0625 1.25 -0.015625 1.28125 -0.078125 C 1.328125 -0.140625 1.375 -0.375 1.40625 -0.515625 L 1.5625 -1.140625 C 1.609375 -1.296875 1.640625 -1.453125 1.6875 -1.609375 C 1.765625 -1.890625 1.765625 -1.953125 1.96875 -2.234375 C 2.171875 -2.515625 2.5 -2.875 3.015625 -2.875 C 3.421875 -2.875 3.421875 -2.515625 3.421875 -2.390625 C 3.421875 -2.21875 3.40625 -2.125 3.3125 -1.734375 L 3.015625 -0.5625 C 2.984375 -0.421875 2.921875 -0.1875 2.921875 -0.15625 C 2.921875 0 3.046875 0.0625 3.15625 0.0625 C 3.28125 0.0625 3.390625 -0.015625 3.421875 -0.078125 C 3.46875 -0.140625 3.515625 -0.375 3.546875 -0.515625 L 3.703125 -1.140625 C 3.75 -1.296875 3.796875 -1.453125 3.828125 -1.609375 C 3.90625 -1.90625 3.90625 -1.921875 4.046875 -2.140625 C 4.265625 -2.46875 4.609375 -2.875 5.15625 -2.875 C 5.546875 -2.875 5.5625 -2.546875 5.5625 -2.390625 C 5.5625 -1.96875 5.265625 -1.203125 5.15625 -0.90625 C 5.078125 -0.703125 5.046875 -0.640625 5.046875 -0.53125 C 5.046875 -0.15625 5.359375 0.0625 5.703125 0.0625 C 6.40625 0.0625 6.703125 -0.890625 6.703125 -1 Z M 6.703125 -1 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-2">
|
||||
<path style="stroke:none;" d="M 3.96875 -1 C 3.96875 -1.078125 3.875 -1.078125 3.859375 -1.078125 C 3.765625 -1.078125 3.75 -1.0625 3.703125 -0.875 C 3.625 -0.53125 3.484375 -0.125 3.203125 -0.125 C 3.015625 -0.125 2.96875 -0.28125 2.96875 -0.46875 C 2.96875 -0.578125 3.03125 -0.828125 3.078125 -1.015625 L 3.21875 -1.640625 C 3.296875 -1.890625 3.296875 -1.9375 3.359375 -2.171875 C 3.40625 -2.34375 3.484375 -2.671875 3.484375 -2.71875 C 3.484375 -2.859375 3.359375 -2.9375 3.25 -2.9375 C 3.140625 -2.9375 2.96875 -2.84375 2.9375 -2.65625 C 2.78125 -2.890625 2.546875 -3.0625 2.21875 -3.0625 C 1.328125 -3.0625 0.421875 -2.09375 0.421875 -1.078125 C 0.421875 -0.40625 0.875 0.0625 1.46875 0.0625 C 1.84375 0.0625 2.1875 -0.140625 2.46875 -0.421875 C 2.59375 0 3 0.0625 3.171875 0.0625 C 3.421875 0.0625 3.609375 -0.078125 3.734375 -0.296875 C 3.875 -0.5625 3.96875 -0.96875 3.96875 -1 Z M 2.8125 -2.171875 L 2.484375 -0.875 C 2.4375 -0.671875 2.28125 -0.53125 2.140625 -0.40625 C 2.078125 -0.34375 1.796875 -0.125 1.5 -0.125 C 1.234375 -0.125 0.984375 -0.3125 0.984375 -0.796875 C 0.984375 -1.171875 1.1875 -1.9375 1.34375 -2.21875 C 1.671875 -2.765625 2.015625 -2.875 2.21875 -2.875 C 2.703125 -2.875 2.84375 -2.34375 2.84375 -2.265625 C 2.84375 -2.234375 2.828125 -2.1875 2.8125 -2.171875 Z M 2.8125 -2.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-3">
|
||||
<path style="stroke:none;" d="M 3.96875 -1 C 3.96875 -1.078125 3.875 -1.078125 3.859375 -1.078125 C 3.765625 -1.078125 3.75 -1.0625 3.703125 -0.875 C 3.625 -0.53125 3.484375 -0.125 3.203125 -0.125 C 3.015625 -0.125 2.96875 -0.28125 2.96875 -0.46875 C 2.96875 -0.59375 2.984375 -0.65625 3 -0.75 L 3.96875 -4.609375 C 3.984375 -4.625 4 -4.734375 4 -4.734375 C 4 -4.765625 3.96875 -4.828125 3.890625 -4.828125 C 3.75 -4.828125 3.171875 -4.765625 3 -4.75 C 2.9375 -4.75 2.84375 -4.734375 2.84375 -4.59375 C 2.84375 -4.5 2.9375 -4.5 3.03125 -4.5 C 3.359375 -4.5 3.359375 -4.453125 3.359375 -4.390625 C 3.359375 -4.34375 3.34375 -4.296875 3.328125 -4.234375 L 2.9375 -2.65625 C 2.78125 -2.890625 2.546875 -3.0625 2.21875 -3.0625 C 1.328125 -3.0625 0.421875 -2.09375 0.421875 -1.078125 C 0.421875 -0.40625 0.875 0.0625 1.46875 0.0625 C 1.84375 0.0625 2.1875 -0.140625 2.46875 -0.421875 C 2.59375 0 3 0.0625 3.171875 0.0625 C 3.421875 0.0625 3.609375 -0.078125 3.734375 -0.296875 C 3.875 -0.5625 3.96875 -0.96875 3.96875 -1 Z M 2.8125 -2.171875 L 2.484375 -0.875 C 2.4375 -0.671875 2.28125 -0.53125 2.140625 -0.40625 C 2.078125 -0.34375 1.796875 -0.125 1.5 -0.125 C 1.234375 -0.125 0.984375 -0.3125 0.984375 -0.796875 C 0.984375 -1.171875 1.1875 -1.9375 1.34375 -2.21875 C 1.671875 -2.765625 2.015625 -2.875 2.21875 -2.875 C 2.703125 -2.875 2.84375 -2.34375 2.84375 -2.265625 C 2.84375 -2.234375 2.828125 -2.1875 2.8125 -2.171875 Z M 2.8125 -2.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph8-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph8-1">
|
||||
<path style="stroke:none;" d="M 4.953125 -1.421875 C 4.953125 -1.515625 4.859375 -1.515625 4.828125 -1.515625 C 4.734375 -1.515625 4.71875 -1.484375 4.6875 -1.34375 C 4.515625 -0.703125 4.34375 -0.109375 3.9375 -0.109375 C 3.671875 -0.109375 3.640625 -0.375 3.640625 -0.5625 C 3.640625 -0.8125 3.65625 -0.875 3.703125 -1.046875 L 5.125 -6.78125 C 5.125 -6.78125 5.125 -6.890625 5 -6.890625 C 4.84375 -6.890625 3.90625 -6.8125 3.734375 -6.78125 C 3.65625 -6.78125 3.59375 -6.734375 3.59375 -6.59375 C 3.59375 -6.484375 3.6875 -6.484375 3.828125 -6.484375 C 4.3125 -6.484375 4.328125 -6.40625 4.328125 -6.3125 L 4.296875 -6.109375 L 3.703125 -3.75 C 3.53125 -4.125 3.234375 -4.390625 2.796875 -4.390625 C 1.625 -4.390625 0.390625 -2.9375 0.390625 -1.484375 C 0.390625 -0.546875 0.9375 0.109375 1.71875 0.109375 C 1.921875 0.109375 2.421875 0.0625 3.015625 -0.640625 C 3.09375 -0.21875 3.4375 0.109375 3.921875 0.109375 C 4.265625 0.109375 4.484375 -0.125 4.65625 -0.4375 C 4.8125 -0.796875 4.953125 -1.421875 4.953125 -1.421875 Z M 3.5625 -3.125 L 3.0625 -1.1875 C 3.015625 -1 3.015625 -0.984375 2.859375 -0.8125 C 2.421875 -0.265625 2.015625 -0.109375 1.734375 -0.109375 C 1.25 -0.109375 1.109375 -0.65625 1.109375 -1.046875 C 1.109375 -1.546875 1.421875 -2.765625 1.65625 -3.21875 C 1.953125 -3.8125 2.40625 -4.171875 2.796875 -4.171875 C 3.453125 -4.171875 3.59375 -3.359375 3.59375 -3.296875 C 3.59375 -3.234375 3.5625 -3.1875 3.5625 -3.125 Z M 3.5625 -3.125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph9-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph9-1">
|
||||
<path style="stroke:none;" d="M 7.46875 -1.546875 C 7.46875 -1.65625 7.328125 -1.65625 7.296875 -1.65625 C 6.984375 -1.65625 6.125 -1.265625 6.015625 -0.75 C 5.53125 -0.75 5.171875 -0.8125 4.375 -0.953125 C 4.015625 -1.03125 3.234375 -1.171875 2.65625 -1.171875 C 2.578125 -1.171875 2.46875 -1.171875 2.390625 -1.15625 C 2.71875 -1.71875 2.859375 -2.1875 3.015625 -2.84375 C 3.21875 -3.625 3.625 -5.03125 4.375 -5.875 C 4.5 -6.015625 4.546875 -6.0625 4.796875 -6.0625 C 5.25 -6.0625 5.4375 -5.703125 5.4375 -5.375 C 5.4375 -5.265625 5.40625 -5.15625 5.40625 -5.125 C 5.40625 -5.015625 5.53125 -4.984375 5.578125 -4.984375 C 5.71875 -4.984375 6.015625 -5.0625 6.40625 -5.328125 C 6.796875 -5.59375 6.84375 -5.78125 6.84375 -6.0625 C 6.84375 -6.5625 6.546875 -6.984375 5.890625 -6.984375 C 5.25 -6.984375 4.359375 -6.671875 3.53125 -5.96875 C 2.390625 -4.953125 1.890625 -3.3125 1.609375 -2.1875 C 1.453125 -1.59375 1.25 -0.78125 0.828125 -0.453125 C 0.71875 -0.375 0.390625 -0.109375 0.390625 0.046875 C 0.390625 0.15625 0.5 0.171875 0.5625 0.171875 C 0.640625 0.171875 0.9375 0.15625 1.5 -0.25 C 1.875 -0.25 2.203125 -0.234375 3.109375 -0.0625 C 3.5625 0.03125 4.28125 0.171875 4.84375 0.171875 C 6.1875 0.171875 7.46875 -1 7.46875 -1.546875 Z M 7.46875 -1.546875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph10-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph10-1">
|
||||
<path style="stroke:none;" d="M 3.46875 -0.765625 C 3.421875 -0.609375 3.359375 -0.34375 3.359375 -0.296875 C 3.359375 -0.046875 3.546875 0.0625 3.734375 0.0625 C 4.125 0.0625 4.21875 -0.296875 4.265625 -0.5 C 4.359375 -0.90625 4.359375 -0.921875 4.46875 -1.3125 C 4.5625 -1.703125 4.5625 -1.71875 4.59375 -1.796875 C 4.640625 -2 4.9375 -2.34375 5.125 -2.5 C 5.25 -2.625 5.546875 -2.828125 5.90625 -2.828125 C 6.25 -2.828125 6.3125 -2.640625 6.3125 -2.40625 C 6.3125 -2.015625 6 -1.25 5.875 -0.96875 C 5.796875 -0.75 5.765625 -0.6875 5.765625 -0.578125 C 5.765625 -0.171875 6.21875 0.0625 6.671875 0.0625 C 7.453125 0.0625 7.875 -0.828125 7.875 -1.03125 C 7.875 -1.15625 7.765625 -1.15625 7.65625 -1.15625 C 7.484375 -1.15625 7.46875 -1.140625 7.421875 -1 C 7.3125 -0.609375 7.015625 -0.265625 6.703125 -0.265625 C 6.671875 -0.265625 6.59375 -0.265625 6.59375 -0.4375 C 6.59375 -0.5625 6.625 -0.640625 6.75 -0.953125 C 6.8125 -1.109375 7.140625 -1.921875 7.140625 -2.296875 C 7.140625 -3.140625 6.1875 -3.140625 5.96875 -3.140625 C 5.46875 -3.140625 5 -2.90625 4.65625 -2.53125 C 4.484375 -3.140625 3.703125 -3.140625 3.5 -3.140625 C 2.9375 -3.140625 2.578125 -2.890625 2.25 -2.59375 C 2.09375 -3.140625 1.34375 -3.140625 1.28125 -3.140625 C 0.546875 -3.140625 0.3125 -2.109375 0.3125 -2.0625 C 0.3125 -1.9375 0.421875 -1.9375 0.53125 -1.9375 C 0.703125 -1.9375 0.71875 -1.9375 0.75 -2.09375 C 0.828125 -2.390625 0.96875 -2.828125 1.234375 -2.828125 C 1.40625 -2.828125 1.421875 -2.640625 1.421875 -2.546875 C 1.421875 -2.453125 1.40625 -2.375 1.34375 -2.15625 C 1.28125 -1.890625 1.28125 -1.875 1.21875 -1.609375 L 1.03125 -0.90625 C 0.984375 -0.703125 0.890625 -0.34375 0.890625 -0.296875 C 0.890625 -0.046875 1.078125 0.0625 1.265625 0.0625 C 1.65625 0.0625 1.75 -0.296875 1.796875 -0.5 C 1.890625 -0.90625 1.890625 -0.921875 2 -1.3125 C 2.09375 -1.71875 2.09375 -1.734375 2.125 -1.796875 C 2.171875 -1.984375 2.46875 -2.359375 2.65625 -2.515625 C 2.875 -2.6875 3.125 -2.828125 3.4375 -2.828125 C 3.78125 -2.828125 3.84375 -2.640625 3.84375 -2.40625 C 3.84375 -2.265625 3.8125 -2.15625 3.734375 -1.84375 Z M 3.46875 -0.765625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph11-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph11-1">
|
||||
<path style="stroke:none;" d="M 3.9375 -0.71875 C 3.9375 -0.78125 3.84375 -0.78125 3.828125 -0.78125 C 3.734375 -0.78125 3.734375 -0.765625 3.703125 -0.671875 C 3.609375 -0.375 3.390625 -0.109375 3.140625 -0.109375 C 3.03125 -0.109375 3 -0.1875 3 -0.296875 C 3 -0.40625 3.015625 -0.453125 3.0625 -0.5625 C 3.140625 -0.765625 3.375 -1.328125 3.375 -1.609375 C 3.375 -1.96875 3.109375 -2.203125 2.640625 -2.203125 C 2.1875 -2.203125 1.875 -1.921875 1.703125 -1.703125 C 1.671875 -2.109375 1.28125 -2.203125 1.09375 -2.203125 C 0.59375 -2.203125 0.453125 -1.421875 0.453125 -1.421875 C 0.453125 -1.359375 0.53125 -1.359375 0.5625 -1.359375 C 0.640625 -1.359375 0.65625 -1.390625 0.671875 -1.453125 C 0.75 -1.734375 0.859375 -2.03125 1.0625 -2.03125 C 1.234375 -2.03125 1.265625 -1.875 1.265625 -1.765625 C 1.265625 -1.6875 1.21875 -1.5 1.1875 -1.375 L 1.078125 -0.921875 L 0.96875 -0.484375 C 0.9375 -0.359375 0.890625 -0.140625 0.890625 -0.125 C 0.890625 -0.015625 0.96875 0.046875 1.0625 0.046875 C 1.140625 0.046875 1.25 0.015625 1.3125 -0.109375 L 1.40625 -0.5 C 1.5625 -1.171875 1.5625 -1.171875 1.578125 -1.203125 C 1.640625 -1.328125 2 -2.03125 2.609375 -2.03125 C 2.859375 -2.03125 2.953125 -1.890625 2.953125 -1.671875 C 2.953125 -1.390625 2.75 -0.875 2.640625 -0.59375 C 2.609375 -0.53125 2.578125 -0.46875 2.578125 -0.375 C 2.578125 -0.125 2.828125 0.046875 3.125 0.046875 C 3.65625 0.046875 3.9375 -0.59375 3.9375 -0.71875 Z M 3.9375 -0.71875 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
<clipPath id="clip1">
|
||||
<path d="M 387 48 L 407.933594 48 L 407.933594 80 L 387 80 Z M 387 48 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip2">
|
||||
<path d="M 340 85 L 374 85 L 374 116.355469 L 340 116.355469 Z M 340 85 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip3">
|
||||
<path d="M 387 13 L 407.933594 13 L 407.933594 45 L 387 45 Z M 387 13 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip4">
|
||||
<path d="M 0.398438 46 L 26 46 L 26 48 L 0.398438 48 Z M 0.398438 46 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<path style="fill-rule:nonzero;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -42.51942 -28.345103 L 42.520035 -28.345103 L 42.520035 28.346561 L -42.51942 28.346561 Z M -42.51942 -28.345103 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="323.974792" y="49.944737"/>
|
||||
<use xlink:href="#glyph0-2" x="330.736619" y="49.944737"/>
|
||||
<use xlink:href="#glyph0-3" x="333.496589" y="49.944737"/>
|
||||
<use xlink:href="#glyph0-4" x="338.464137" y="49.944737"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="343.705894" y="49.944737"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(89.318848%,93.479919%,83.758545%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.007583 -69.027727 L 17.008198 -69.027727 L 17.008198 -40.679937 L -17.007583 -40.679937 Z M -17.007583 -69.027727 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="324.13834" y="103.888403"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="333.787627" y="105.379276"/>
|
||||
<use xlink:href="#glyph2-2" x="336.657769" y="105.379276"/>
|
||||
<use xlink:href="#glyph2-2" x="341.783966" y="105.379276"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(79.998779%,88.938904%,94.819641%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -100.209935 -14.173166 L -66.194153 -14.173166 L -66.194153 14.174624 L -100.209935 14.174624 Z M -100.209935 -14.173166 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="243.000954" y="48.233474"/>
|
||||
<use xlink:href="#glyph3-2" x="247.471748" y="48.233474"/>
|
||||
<use xlink:href="#glyph3-3" x="252.46016" y="48.233474"/>
|
||||
<use xlink:href="#glyph3-4" x="255.841073" y="48.233474"/>
|
||||
<use xlink:href="#glyph3-4" x="259.221986" y="48.233474"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(89.318848%,93.479919%,83.758545%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -123.387201 -0.00122955 C -123.387201 5.502245 -127.84482 9.963781 -133.348295 9.963781 C -138.851769 9.963781 -143.309388 5.502245 -143.309388 -0.00122955 C -143.309388 -5.500787 -138.851769 -9.962323 -133.348295 -9.962323 C -127.84482 -9.962323 -123.387201 -5.500787 -123.387201 -0.00122955 Z M -123.387201 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="196.615365" y="50.67671"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(89.318848%,93.479919%,83.758545%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -200.502436 -14.173166 L -166.486654 -14.173166 L -166.486654 14.174624 L -200.502436 14.174624 Z M -200.502436 -14.173166 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="144.96136" y="49.185838"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-1" x="154.60965" y="50.675713"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(89.318848%,93.479919%,83.758545%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -223.679702 -0.00122955 C -223.679702 5.502245 -228.137321 9.963781 -233.640795 9.963781 C -239.14427 9.963781 -243.605806 5.502245 -243.605806 -0.00122955 C -243.605806 -5.500787 -239.14427 -9.962323 -233.640795 -9.962323 C -228.137321 -9.962323 -223.679702 -5.500787 -223.679702 -0.00122955 Z M -223.679702 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="96.600239" y="50.67671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph6-1" x="104.766632" y="33.772507"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(89.318848%,93.479919%,83.758545%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -306.466845 -14.173166 L -272.451063 -14.173166 L -272.451063 14.174624 L -306.466845 14.174624 Z M -306.466845 -14.173166 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-2" x="43.482287" y="49.930775"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.017502 -17.306817 L 66.731406 -17.306817 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 405.527344 63.78125 L 401.09375 62.101562 L 402.570312 63.78125 L 401.09375 65.460938 Z M 405.527344 63.78125 "/>
|
||||
<g clip-path="url(#clip1)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054245 0.000322692 L 1.608378 1.68466 L 3.089028 0.000322692 L 1.608378 -1.684015 Z M 6.054245 0.000322692 " transform="matrix(0.997239,0,0,-0.997239,399.489812,63.781572)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="390.410876" y="58.4831"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph7-1" x="395.585551" y="59.973972"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.025393 -17.306817 L 60.025393 -54.855791 L 22.139552 -54.855791 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 354.644531 101.226562 L 359.078125 102.902344 L 357.601562 101.226562 L 359.078125 99.546875 Z M 354.644531 101.226562 "/>
|
||||
<g clip-path="url(#clip2)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054617 0.000760649 L 1.60875 1.681181 L 3.0894 0.000760649 L 1.60875 -1.683577 Z M 6.054617 0.000760649 " transform="matrix(-0.997239,0,0,0.997239,360.682434,101.225804)"/>
|
||||
</g>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 397.621094 63.78125 C 397.621094 62.683594 396.730469 61.792969 395.632812 61.792969 C 394.535156 61.792969 393.648438 62.683594 393.648438 63.78125 C 393.648438 64.878906 394.535156 65.769531 395.632812 65.769531 C 396.730469 65.769531 397.621094 64.878906 397.621094 63.78125 Z M 397.621094 63.78125 "/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.50505 -54.855791 L -133.348295 -54.855791 L -133.348295 -14.596209 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05454 -0.000235441 L 1.608673 1.684102 L 3.089323 -0.000235441 L 1.608673 -1.684573 Z M 6.05454 -0.000235441 " transform="matrix(0,-0.997239,-0.997239,0,202.792734,63.908919)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -123.387201 -0.00122955 L -105.341289 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054931 -0.00122955 L 1.609063 1.683108 L 3.085796 -0.00122955 L 1.609063 -1.68165 Z M 6.054931 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,227.891472,46.522211)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="224.770423" y="42.714752"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -65.696686 -0.00122955 L -47.650773 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051639 -0.00122955 L 1.609689 1.683108 L 3.086422 -0.00122955 L 1.609689 -1.68165 Z M 6.051639 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,285.422099,46.522211)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="277.493468" y="41.223879"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph7-2" x="284.259737" y="42.714752"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.017502 17.308275 L 66.731406 17.308275 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 405.527344 29.261719 L 401.09375 27.585938 L 402.570312 29.261719 L 401.09375 30.941406 Z M 405.527344 29.261719 "/>
|
||||
<g clip-path="url(#clip3)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054245 0.00113527 L 1.608378 1.681556 L 3.089028 0.00113527 L 1.608378 -1.683202 Z M 6.054245 0.00113527 " transform="matrix(0.997239,0,0,-0.997239,399.489812,29.262851)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph8-1" x="381.440708" y="39.970349"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph9-1" x="386.611394" y="39.970349"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-1" x="394.442714" y="41.461222"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.025393 17.308275 L 60.025393 45.652149 L -233.640795 45.652149 L -233.640795 14.597667 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053082 0.000684563 L 1.607215 1.681105 L 3.087865 0.000684563 L 1.607215 -1.683653 Z M 6.053082 0.000684563 " transform="matrix(0,0.997239,0.997239,0,102.776661,29.135503)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 397.621094 29.261719 C 397.621094 28.164062 396.730469 27.277344 395.632812 27.277344 C 394.535156 27.277344 393.648438 28.164062 393.648438 29.261719 C 393.648438 30.359375 394.535156 31.25 395.632812 31.25 C 396.730469 31.25 397.621094 30.359375 397.621094 29.261719 Z M 397.621094 29.261719 "/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -223.679702 -0.00122955 L -205.633789 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051473 -0.00122955 L 1.609523 1.683108 L 3.086256 -0.00122955 L 1.609523 -1.68165 Z M 6.051473 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,127.87539,46.522211)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-5" x="116.580926" y="41.223879"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph7-3" x="121.382634" y="42.714752"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-1" x="125.518185" y="42.714752"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -165.989187 -0.00122955 L -147.943274 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052088 -0.00122955 L 1.610138 1.683108 L 3.086871 -0.00122955 L 1.610138 -1.68165 Z M 6.052088 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,185.406026,46.522211)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="179.497752" y="42.714752"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-2" x="186.264021" y="39.108734"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -271.949679 -0.00122955 L -248.239692 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052537 -0.00122955 L 1.610587 1.683108 L 3.08732 -0.00122955 L 1.610587 -1.68165 Z M 6.052537 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,85.389953,46.522211)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="73.644788" y="41.223879"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph7-3" x="78.897247" y="42.714752"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-1" x="83.033796" y="42.714752"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip4)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -311.598199 -0.00122955 L -335.312103 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053231 -0.00122955 L 1.607363 1.683108 L 3.088013 -0.00122955 L 1.607363 -1.68165 Z M 6.053231 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,22.205668,46.522211)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="9.536261" y="40.230628"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-3" x="14.78872" y="41.720504"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph11-1" x="20.483954" y="42.714752"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 50 KiB |
BIN
figs/control_architecture_iff.pdf
Normal file
BIN
figs/control_architecture_iff.png
Normal file
After Width: | Height: | Size: 7.7 KiB |
156
figs/control_architecture_iff.svg
Normal file
@ -0,0 +1,156 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="192.996pt" height="99.37pt" viewBox="0 0 192.996 99.37" version="1.2">
|
||||
<defs>
|
||||
<g>
|
||||
<symbol overflow="visible" id="glyph0-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<path style="stroke:none;" d="M 6.1875 -4.921875 C 6.1875 -5.890625 5.203125 -6.765625 3.84375 -6.765625 L 0.34375 -6.765625 L 0.34375 -6.453125 L 0.578125 -6.453125 C 1.34375 -6.453125 1.359375 -6.34375 1.359375 -6 L 1.359375 -0.765625 C 1.359375 -0.421875 1.34375 -0.3125 0.578125 -0.3125 L 0.34375 -0.3125 L 0.34375 0 C 0.6875 -0.03125 1.421875 -0.03125 1.796875 -0.03125 C 2.171875 -0.03125 2.921875 -0.03125 3.265625 0 L 3.265625 -0.3125 L 3.03125 -0.3125 C 2.265625 -0.3125 2.25 -0.421875 2.25 -0.765625 L 2.25 -3.125 L 3.921875 -3.125 C 5.109375 -3.125 6.1875 -3.9375 6.1875 -4.921875 Z M 5.15625 -4.921875 C 5.15625 -4.453125 5.15625 -3.390625 3.59375 -3.390625 L 2.21875 -3.390625 L 2.21875 -6.0625 C 2.21875 -6.390625 2.234375 -6.453125 2.703125 -6.453125 L 3.59375 -6.453125 C 5.15625 -6.453125 5.15625 -5.40625 5.15625 -4.921875 Z M 5.15625 -4.921875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 2.53125 0 L 2.53125 -0.3125 C 1.859375 -0.3125 1.75 -0.3125 1.75 -0.75 L 1.75 -6.875 L 0.328125 -6.765625 L 0.328125 -6.453125 C 1.015625 -6.453125 1.09375 -6.390625 1.09375 -5.90625 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 Z M 2.53125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 4.78125 -0.875 L 4.78125 -1.4375 L 4.53125 -1.4375 L 4.53125 -0.875 C 4.53125 -0.3125 4.296875 -0.25 4.1875 -0.25 C 3.859375 -0.25 3.8125 -0.6875 3.8125 -0.75 L 3.8125 -2.71875 C 3.8125 -3.140625 3.8125 -3.53125 3.453125 -3.890625 C 3.078125 -4.28125 2.578125 -4.4375 2.09375 -4.4375 C 1.28125 -4.4375 0.609375 -3.96875 0.609375 -3.3125 C 0.609375 -3.015625 0.796875 -2.859375 1.0625 -2.859375 C 1.34375 -2.859375 1.515625 -3.046875 1.515625 -3.3125 C 1.515625 -3.421875 1.46875 -3.75 1.015625 -3.765625 C 1.28125 -4.109375 1.765625 -4.21875 2.078125 -4.21875 C 2.5625 -4.21875 3.125 -3.828125 3.125 -2.953125 L 3.125 -2.578125 C 2.625 -2.5625 1.9375 -2.53125 1.3125 -2.234375 C 0.5625 -1.890625 0.3125 -1.375 0.3125 -0.9375 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.5625 0.109375 3.015625 -0.28125 3.203125 -0.75 C 3.234375 -0.359375 3.5 0.0625 3.96875 0.0625 C 4.1875 0.0625 4.78125 -0.078125 4.78125 -0.875 Z M 3.125 -1.390625 C 3.125 -0.453125 2.421875 -0.109375 1.96875 -0.109375 C 1.484375 -0.109375 1.078125 -0.453125 1.078125 -0.953125 C 1.078125 -1.5 1.5 -2.3125 3.125 -2.375 Z M 3.125 -1.390625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 5.296875 0 L 5.296875 -0.3125 C 4.78125 -0.3125 4.53125 -0.3125 4.53125 -0.609375 L 4.53125 -2.5 C 4.53125 -3.34375 4.53125 -3.65625 4.21875 -4.015625 C 4.078125 -4.1875 3.75 -4.375 3.1875 -4.375 C 2.453125 -4.375 1.984375 -3.953125 1.71875 -3.34375 L 1.71875 -4.375 L 0.3125 -4.265625 L 0.3125 -3.96875 C 1.015625 -3.96875 1.09375 -3.890625 1.09375 -3.40625 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.546875 0 L 2.546875 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -2.578125 C 1.765625 -3.609375 2.484375 -4.15625 3.109375 -4.15625 C 3.734375 -4.15625 3.84375 -3.625 3.84375 -3.0625 L 3.84375 -0.75 C 3.84375 -0.3125 3.734375 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.1875 -0.03125 Z M 5.296875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 3.28125 -1.234375 L 3.28125 -1.796875 L 3.046875 -1.796875 L 3.046875 -1.25 C 3.046875 -0.515625 2.75 -0.140625 2.375 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.203125 L 1.71875 -3.96875 L 3.125 -3.96875 L 3.125 -4.265625 L 1.71875 -4.265625 L 1.71875 -6.09375 L 1.46875 -6.09375 C 1.453125 -5.28125 1.15625 -4.21875 0.1875 -4.1875 L 0.1875 -3.96875 L 1.03125 -3.96875 L 1.03125 -1.234375 C 1.03125 -0.015625 1.953125 0.109375 2.3125 0.109375 C 3.015625 0.109375 3.28125 -0.59375 3.28125 -1.234375 Z M 3.28125 -1.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-1">
|
||||
<path style="stroke:none;" d="M 5.828125 -4.15625 C 6.5 -4.625 8.3125 -5.90625 8.65625 -6.078125 C 8.890625 -6.203125 9.09375 -6.3125 9.59375 -6.328125 C 9.78125 -6.34375 9.9375 -6.34375 9.9375 -6.625 C 9.9375 -6.703125 9.859375 -6.796875 9.75 -6.796875 C 9.515625 -6.796875 9.21875 -6.765625 8.96875 -6.765625 C 8.5625 -6.765625 8.140625 -6.796875 7.734375 -6.796875 C 7.640625 -6.796875 7.453125 -6.796875 7.453125 -6.515625 C 7.453125 -6.328125 7.625 -6.328125 7.6875 -6.328125 C 7.765625 -6.328125 7.96875 -6.3125 8.140625 -6.265625 L 3.625 -3.140625 L 4.40625 -6.296875 C 4.625 -6.328125 4.96875 -6.328125 5.078125 -6.328125 C 5.203125 -6.328125 5.40625 -6.328125 5.453125 -6.359375 C 5.546875 -6.421875 5.5625 -6.609375 5.5625 -6.625 C 5.5625 -6.75 5.453125 -6.796875 5.34375 -6.796875 C 5.09375 -6.796875 4.828125 -6.78125 4.59375 -6.78125 C 4.34375 -6.78125 4.09375 -6.765625 3.84375 -6.765625 C 3.59375 -6.765625 3.328125 -6.78125 3.078125 -6.78125 C 2.828125 -6.78125 2.5625 -6.796875 2.296875 -6.796875 C 2.203125 -6.796875 2.015625 -6.796875 2.015625 -6.515625 C 2.015625 -6.328125 2.140625 -6.328125 2.421875 -6.328125 C 2.640625 -6.328125 2.828125 -6.3125 3.03125 -6.3125 L 1.609375 -0.65625 C 1.578125 -0.5 1.5625 -0.5 1.390625 -0.46875 C 1.21875 -0.46875 1.015625 -0.46875 0.859375 -0.46875 C 0.609375 -0.46875 0.578125 -0.46875 0.546875 -0.453125 C 0.421875 -0.375 0.421875 -0.21875 0.421875 -0.171875 C 0.421875 -0.15625 0.4375 0 0.640625 0 C 0.890625 0 1.15625 -0.015625 1.390625 -0.015625 C 1.640625 -0.015625 1.90625 -0.03125 2.15625 -0.03125 C 2.40625 -0.03125 2.671875 -0.015625 2.90625 -0.015625 C 3.171875 -0.015625 3.4375 0 3.6875 0 C 3.78125 0 3.859375 0 3.90625 -0.0625 C 3.953125 -0.125 3.96875 -0.265625 3.96875 -0.28125 C 3.96875 -0.46875 3.828125 -0.46875 3.5625 -0.46875 C 3.359375 -0.46875 3.171875 -0.46875 2.96875 -0.484375 L 3.484375 -2.546875 L 4.703125 -3.390625 L 6.1875 -0.53125 C 5.984375 -0.46875 5.6875 -0.46875 5.640625 -0.46875 C 5.515625 -0.46875 5.453125 -0.46875 5.40625 -0.390625 C 5.359375 -0.34375 5.34375 -0.203125 5.34375 -0.171875 C 5.34375 -0.171875 5.34375 0 5.546875 0 C 5.875 0 6.6875 -0.03125 7.015625 -0.03125 C 7.21875 -0.03125 7.4375 -0.015625 7.640625 -0.015625 C 7.84375 -0.015625 8.046875 0 8.234375 0 C 8.3125 0 8.515625 0 8.515625 -0.28125 C 8.515625 -0.46875 8.34375 -0.46875 8.1875 -0.46875 C 7.734375 -0.46875 7.71875 -0.5 7.640625 -0.65625 Z M 5.828125 -4.15625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<path style="stroke:none;" d="M 3.453125 -3.453125 L 5.296875 -3.453125 C 5.5 -3.453125 5.625 -3.453125 5.78125 -3.59375 C 5.984375 -3.765625 5.984375 -4 5.984375 -4.015625 C 5.984375 -4.390625 5.625 -4.390625 5.453125 -4.390625 L 2.203125 -4.390625 C 1.984375 -4.390625 1.5625 -4.390625 1.046875 -3.921875 C 0.6875 -3.609375 0.3125 -3.09375 0.3125 -3 C 0.3125 -2.859375 0.421875 -2.859375 0.53125 -2.859375 C 0.6875 -2.859375 0.6875 -2.875 0.78125 -2.984375 C 1.15625 -3.453125 1.8125 -3.453125 2 -3.453125 L 2.890625 -3.453125 L 2.53125 -2.390625 C 2.453125 -2.15625 2.234375 -1.515625 2.15625 -1.265625 C 2.046875 -0.953125 1.859375 -0.421875 1.859375 -0.3125 C 1.859375 -0.046875 2.078125 0.125 2.3125 0.125 C 2.390625 0.125 2.890625 0.125 2.984375 -0.53125 Z M 3.453125 -3.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-3">
|
||||
<path style="stroke:none;" d="M 5.578125 -3.140625 C 5.640625 -3.421875 5.765625 -3.890625 5.765625 -3.96875 C 5.765625 -4.171875 5.609375 -4.390625 5.296875 -4.390625 C 5.140625 -4.390625 4.78125 -4.3125 4.640625 -3.875 C 4.609375 -3.734375 4.15625 -1.9375 4.078125 -1.609375 C 4.015625 -1.390625 3.953125 -1.09375 3.9375 -0.921875 C 3.75 -0.6875 3.375 -0.28125 2.859375 -0.28125 C 2.28125 -0.28125 2.265625 -0.765625 2.265625 -1 C 2.265625 -1.609375 2.578125 -2.375 2.859375 -3.09375 C 2.953125 -3.34375 2.984375 -3.421875 2.984375 -3.59375 C 2.984375 -4.15625 2.40625 -4.484375 1.859375 -4.484375 C 0.8125 -4.484375 0.3125 -3.125 0.3125 -2.9375 C 0.3125 -2.796875 0.46875 -2.796875 0.5625 -2.796875 C 0.671875 -2.796875 0.75 -2.796875 0.78125 -2.921875 C 1.109375 -4.015625 1.640625 -4.125 1.796875 -4.125 C 1.875 -4.125 1.96875 -4.125 1.96875 -3.90625 C 1.96875 -3.6875 1.859375 -3.40625 1.8125 -3.28125 C 1.390625 -2.25 1.203125 -1.6875 1.203125 -1.203125 C 1.203125 -0.078125 2.203125 0.078125 2.78125 0.078125 C 3.078125 0.078125 3.5 0.046875 4.046875 -0.46875 C 4.359375 0.015625 4.9375 0.078125 5.171875 0.078125 C 5.53125 0.078125 5.828125 -0.125 6.03125 -0.484375 C 6.28125 -0.875 6.40625 -1.421875 6.40625 -1.46875 C 6.40625 -1.609375 6.265625 -1.609375 6.171875 -1.609375 C 6.0625 -1.609375 6.015625 -1.609375 5.96875 -1.5625 C 5.953125 -1.53125 5.953125 -1.515625 5.890625 -1.265625 C 5.703125 -0.5 5.484375 -0.28125 5.21875 -0.28125 C 5.078125 -0.28125 5 -0.375 5 -0.640625 C 5 -0.8125 5.03125 -0.96875 5.125 -1.359375 C 5.203125 -1.640625 5.296875 -2.046875 5.34375 -2.265625 Z M 5.578125 -3.140625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-1">
|
||||
<path style="stroke:none;" d="M 2.515625 0 L 2.515625 -0.25 L 2.328125 -0.25 C 1.765625 -0.25 1.765625 -0.328125 1.765625 -0.5625 L 1.765625 -4.171875 C 1.765625 -4.40625 1.765625 -4.484375 2.328125 -4.484375 L 2.515625 -4.484375 L 2.515625 -4.734375 L 1.4375 -4.703125 L 0.359375 -4.734375 L 0.359375 -4.484375 L 0.53125 -4.484375 C 1.109375 -4.484375 1.109375 -4.40625 1.109375 -4.171875 L 1.109375 -0.5625 C 1.109375 -0.328125 1.109375 -0.25 0.53125 -0.25 L 0.359375 -0.25 L 0.359375 0 L 1.421875 -0.03125 Z M 2.515625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<path style="stroke:none;" d="M 4.734375 -3.109375 L 4.515625 -4.703125 L 0.390625 -4.703125 L 0.390625 -4.453125 L 0.5625 -4.453125 C 1.09375 -4.453125 1.109375 -4.390625 1.109375 -4.15625 L 1.109375 -0.5625 C 1.109375 -0.328125 1.09375 -0.25 0.5625 -0.25 L 0.390625 -0.25 L 0.390625 0 L 1.4375 -0.03125 L 2.65625 0 L 2.65625 -0.25 L 2.421875 -0.25 C 1.765625 -0.25 1.765625 -0.34375 1.765625 -0.5625 L 1.765625 -2.234375 L 2.4375 -2.234375 C 3.125 -2.234375 3.21875 -2.03125 3.21875 -1.421875 L 3.46875 -1.421875 L 3.46875 -3.296875 L 3.21875 -3.296875 C 3.21875 -2.703125 3.125 -2.484375 2.4375 -2.484375 L 1.765625 -2.484375 L 1.765625 -4.1875 C 1.765625 -4.40625 1.765625 -4.453125 2.09375 -4.453125 L 3.0625 -4.453125 C 4.1875 -4.453125 4.375 -4.09375 4.5 -3.109375 Z M 4.734375 -3.109375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-1">
|
||||
<path style="stroke:none;" d="M 11.515625 -4.265625 C 11.515625 -4.5625 11.234375 -4.5625 10.984375 -4.5625 L 6.453125 -4.5625 L 6.453125 -9.109375 C 6.453125 -9.34375 6.453125 -9.625 6.15625 -9.625 C 5.84375 -9.625 5.84375 -9.359375 5.84375 -9.109375 L 5.84375 -4.5625 L 1.3125 -4.5625 C 1.078125 -4.5625 0.78125 -4.5625 0.78125 -4.28125 C 0.78125 -3.96875 1.0625 -3.96875 1.3125 -3.96875 L 5.84375 -3.96875 L 5.84375 0.5625 C 5.84375 0.796875 5.84375 1.09375 6.140625 1.09375 C 6.453125 1.09375 6.453125 0.828125 6.453125 0.5625 L 6.453125 -3.96875 L 10.984375 -3.96875 C 11.21875 -3.96875 11.515625 -3.96875 11.515625 -4.265625 Z M 11.515625 -4.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-1">
|
||||
<path style="stroke:none;" d="M 6.6875 -0.984375 C 6.6875 -1.078125 6.609375 -1.078125 6.578125 -1.078125 C 6.484375 -1.078125 6.484375 -1.046875 6.453125 -0.96875 C 6.296875 -0.40625 6 -0.125 5.71875 -0.125 C 5.578125 -0.125 5.546875 -0.21875 5.546875 -0.375 C 5.546875 -0.53125 5.578125 -0.625 5.703125 -0.921875 C 5.78125 -1.140625 6.078125 -1.875 6.078125 -2.265625 C 6.078125 -2.375 6.078125 -2.671875 5.8125 -2.875 C 5.703125 -2.96875 5.5 -3.0625 5.171875 -3.0625 C 4.546875 -3.0625 4.15625 -2.65625 3.9375 -2.359375 C 3.890625 -2.953125 3.390625 -3.0625 3.03125 -3.0625 C 2.46875 -3.0625 2.078125 -2.703125 1.859375 -2.421875 C 1.8125 -2.90625 1.40625 -3.0625 1.125 -3.0625 C 0.828125 -3.0625 0.671875 -2.84375 0.578125 -2.6875 C 0.421875 -2.421875 0.328125 -2.03125 0.328125 -2 C 0.328125 -1.90625 0.421875 -1.90625 0.4375 -1.90625 C 0.546875 -1.90625 0.546875 -1.921875 0.59375 -2.109375 C 0.703125 -2.53125 0.828125 -2.859375 1.109375 -2.859375 C 1.28125 -2.859375 1.328125 -2.71875 1.328125 -2.53125 C 1.328125 -2.390625 1.265625 -2.140625 1.21875 -1.953125 L 1.0625 -1.328125 L 0.84375 -0.4375 C 0.8125 -0.34375 0.78125 -0.171875 0.78125 -0.15625 C 0.78125 0 0.90625 0.0625 1.015625 0.0625 C 1.140625 0.0625 1.25 -0.015625 1.28125 -0.078125 C 1.3125 -0.140625 1.375 -0.375 1.40625 -0.515625 L 1.5625 -1.140625 C 1.609375 -1.296875 1.640625 -1.4375 1.671875 -1.609375 C 1.75 -1.890625 1.765625 -1.9375 1.96875 -2.234375 C 2.171875 -2.5 2.484375 -2.859375 3.015625 -2.859375 C 3.40625 -2.859375 3.421875 -2.515625 3.421875 -2.375 C 3.421875 -2.203125 3.40625 -2.109375 3.296875 -1.734375 L 3.015625 -0.5625 C 2.96875 -0.421875 2.90625 -0.1875 2.90625 -0.15625 C 2.90625 0 3.03125 0.0625 3.15625 0.0625 C 3.28125 0.0625 3.390625 -0.015625 3.421875 -0.078125 C 3.453125 -0.140625 3.515625 -0.375 3.546875 -0.515625 L 3.703125 -1.140625 C 3.734375 -1.296875 3.78125 -1.4375 3.8125 -1.609375 C 3.890625 -1.90625 3.890625 -1.921875 4.03125 -2.125 C 4.25 -2.46875 4.59375 -2.859375 5.140625 -2.859375 C 5.53125 -2.859375 5.546875 -2.546875 5.546875 -2.375 C 5.546875 -1.96875 5.25 -1.1875 5.140625 -0.90625 C 5.0625 -0.703125 5.03125 -0.640625 5.03125 -0.53125 C 5.03125 -0.15625 5.34375 0.0625 5.703125 0.0625 C 6.390625 0.0625 6.6875 -0.890625 6.6875 -0.984375 Z M 6.6875 -0.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-1">
|
||||
<path style="stroke:none;" d="M 4.9375 -1.421875 C 4.9375 -1.515625 4.84375 -1.515625 4.8125 -1.515625 C 4.71875 -1.515625 4.703125 -1.46875 4.671875 -1.34375 C 4.5 -0.6875 4.328125 -0.109375 3.921875 -0.109375 C 3.65625 -0.109375 3.625 -0.359375 3.625 -0.5625 C 3.625 -0.796875 3.640625 -0.875 3.6875 -1.046875 L 5.109375 -6.765625 C 5.109375 -6.765625 5.109375 -6.875 4.984375 -6.875 C 4.828125 -6.875 3.890625 -6.78125 3.71875 -6.765625 C 3.640625 -6.75 3.59375 -6.703125 3.59375 -6.578125 C 3.59375 -6.453125 3.671875 -6.453125 3.828125 -6.453125 C 4.296875 -6.453125 4.3125 -6.390625 4.3125 -6.296875 L 4.296875 -6.09375 L 3.6875 -3.75 C 3.515625 -4.109375 3.234375 -4.375 2.78125 -4.375 C 1.625 -4.375 0.390625 -2.921875 0.390625 -1.46875 C 0.390625 -0.546875 0.9375 0.109375 1.71875 0.109375 C 1.90625 0.109375 2.40625 0.0625 3 -0.640625 C 3.078125 -0.21875 3.421875 0.109375 3.90625 0.109375 C 4.25 0.109375 4.484375 -0.125 4.640625 -0.4375 C 4.796875 -0.796875 4.9375 -1.421875 4.9375 -1.421875 Z M 3.546875 -3.125 L 3.046875 -1.171875 C 3 -1 3 -0.984375 2.859375 -0.8125 C 2.421875 -0.265625 2.015625 -0.109375 1.734375 -0.109375 C 1.234375 -0.109375 1.09375 -0.65625 1.09375 -1.046875 C 1.09375 -1.53125 1.421875 -2.75 1.640625 -3.203125 C 1.953125 -3.796875 2.390625 -4.15625 2.796875 -4.15625 C 3.4375 -4.15625 3.578125 -3.34375 3.578125 -3.28125 C 3.578125 -3.234375 3.5625 -3.171875 3.546875 -3.125 Z M 3.546875 -3.125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-1">
|
||||
<path style="stroke:none;" d="M 7.4375 -1.53125 C 7.4375 -1.640625 7.3125 -1.65625 7.265625 -1.65625 C 6.96875 -1.65625 6.109375 -1.265625 6 -0.75 C 5.515625 -0.75 5.15625 -0.796875 4.375 -0.953125 C 4 -1.015625 3.21875 -1.171875 2.65625 -1.171875 C 2.578125 -1.171875 2.46875 -1.171875 2.390625 -1.15625 C 2.71875 -1.71875 2.84375 -2.171875 3.015625 -2.828125 C 3.203125 -3.609375 3.609375 -5.015625 4.359375 -5.859375 C 4.484375 -6 4.53125 -6.046875 4.78125 -6.046875 C 5.234375 -6.046875 5.421875 -5.6875 5.421875 -5.359375 C 5.421875 -5.25 5.390625 -5.140625 5.390625 -5.109375 C 5.390625 -5 5.515625 -4.96875 5.5625 -4.96875 C 5.703125 -4.96875 6 -5.046875 6.375 -5.3125 C 6.78125 -5.578125 6.828125 -5.75 6.828125 -6.046875 C 6.828125 -6.546875 6.53125 -6.96875 5.859375 -6.96875 C 5.234375 -6.96875 4.34375 -6.65625 3.53125 -5.9375 C 2.390625 -4.9375 1.890625 -3.3125 1.609375 -2.171875 C 1.453125 -1.578125 1.25 -0.78125 0.828125 -0.453125 C 0.71875 -0.359375 0.390625 -0.109375 0.390625 0.046875 C 0.390625 0.15625 0.5 0.171875 0.5625 0.171875 C 0.640625 0.171875 0.9375 0.15625 1.5 -0.25 C 1.859375 -0.25 2.203125 -0.234375 3.09375 -0.0625 C 3.546875 0.03125 4.265625 0.171875 4.828125 0.171875 C 6.15625 0.171875 7.4375 -1 7.4375 -1.53125 Z M 7.4375 -1.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-1">
|
||||
<path style="stroke:none;" d="M 2.078125 -3.5 C 2.078125 -3.71875 1.890625 -3.875 1.671875 -3.875 C 1.390625 -3.875 1.3125 -3.65625 1.296875 -3.5625 L 0.375 -0.5625 L 0.328125 -0.4375 C 0.328125 -0.359375 0.546875 -0.28125 0.609375 -0.28125 C 0.65625 -0.28125 0.6875 -0.3125 0.703125 -0.390625 L 2.015625 -3.28125 C 2.046875 -3.34375 2.078125 -3.40625 2.078125 -3.5 Z M 2.078125 -3.5 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
<clipPath id="clip1">
|
||||
<path d="M 77 40 L 164 40 L 164 98.742188 L 77 98.742188 Z M 77 40 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip2">
|
||||
<path d="M 171 42 L 192.386719 42 L 192.386719 74 L 171 74 Z M 171 42 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip3">
|
||||
<path d="M 171 65 L 192.386719 65 L 192.386719 97 L 171 97 Z M 171 65 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 78.226562 97.753906 L 162.730469 97.753906 L 162.730469 41.414062 L 78.226562 41.414062 Z M 78.226562 97.753906 "/>
|
||||
<g clip-path="url(#clip1)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -42.521277 -28.34866 L 42.518379 -28.34866 L 42.518379 28.348375 L -42.521277 28.348375 Z M -42.521277 -28.34866 " transform="matrix(0.9937,0,0,-0.9937,120.479956,69.583842)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="108.723491" y="72.994221"/>
|
||||
<use xlink:href="#glyph0-2" x="115.461319" y="72.994221"/>
|
||||
<use xlink:href="#glyph0-3" x="118.211494" y="72.994221"/>
|
||||
<use xlink:href="#glyph0-4" x="123.161411" y="72.994221"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="128.384565" y="72.994221"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.008987 40.67997 L 17.01002 40.67997 L 17.01002 69.026522 L -17.008987 69.026522 Z M -17.008987 40.67997 " transform="matrix(0.9937,0,0,-0.9937,120.479956,69.583842)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="108.886458" y="17.729595"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="118.501499" y="19.214183"/>
|
||||
<use xlink:href="#glyph2-2" x="121.361454" y="19.214183"/>
|
||||
<use xlink:href="#glyph2-2" x="126.469458" y="19.214183"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -71.367068 0.00182273 C -71.367068 5.501313 -75.82484 9.963016 -81.328261 9.963016 C -86.831683 9.963016 -91.289454 5.501313 -91.289454 0.00182273 C -91.289454 -5.501599 -86.831683 -9.963301 -81.328261 -9.963301 C -75.82484 -9.963301 -71.367068 -5.501599 -71.367068 0.00182273 Z M -71.367068 0.00182273 " transform="matrix(0.9937,0,0,-0.9937,120.479956,69.583842)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="33.508351" y="73.72459"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.017618 11.539353 L 66.733434 11.539353 " transform="matrix(0.9937,0,0,-0.9937,120.479956,69.583842)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 189.984375 58.117188 L 185.570312 56.445312 L 187.039062 58.117188 L 185.570312 59.792969 Z M 189.984375 58.117188 "/>
|
||||
<g clip-path="url(#clip2)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052003 0.00154292 L 1.609956 1.684018 L 3.088018 0.00154292 L 1.609956 -1.684863 Z M 6.052003 0.00154292 " transform="matrix(0.9937,0,0,-0.9937,183.970499,58.118721)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-2" x="174.923785" y="66.313576"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="180.080094" y="67.799157"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.017618 -11.539638 L 66.733434 -11.539638 " transform="matrix(0.9937,0,0,-0.9937,120.479956,69.583842)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 189.984375 81.050781 L 185.570312 79.375 L 187.039062 81.050781 L 185.570312 82.722656 Z M 189.984375 81.050781 "/>
|
||||
<g clip-path="url(#clip3)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052003 -0.00182847 L 1.609956 1.684577 L 3.088018 -0.00182847 L 1.609956 -1.684303 Z M 6.052003 -0.00182847 " transform="matrix(0.9937,0,0,-0.9937,183.970499,81.048964)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-1" x="167.124234" y="91.71851"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph6-1" x="172.276568" y="91.71851"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="180.080094" y="93.204091"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.027121 11.539353 L 60.027121 54.855212 L 22.139995 54.855212 " transform="matrix(0.9937,0,0,-0.9937,120.479956,69.583842)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053836 -0.000181583 L 1.607857 1.682293 L 3.085919 -0.000181583 L 1.607857 -1.682656 Z M 6.053836 -0.000181583 " transform="matrix(-0.9937,0,0,0.9937,145.300853,15.074399)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 182.109375 58.117188 C 182.109375 57.023438 181.222656 56.140625 180.128906 56.140625 C 179.035156 56.140625 178.148438 57.023438 178.148438 58.117188 C 178.148438 59.210938 179.035156 60.097656 180.128906 60.097656 C 181.222656 60.097656 182.109375 59.210938 182.109375 58.117188 Z M 182.109375 58.117188 "/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.504295 54.855212 L -81.328261 54.855212 L -81.328261 14.597683 " transform="matrix(0.9937,0,0,-0.9937,120.479956,69.583842)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052728 -0.000351346 L 1.61068 1.682123 L 3.088742 -0.000351346 L 1.61068 -1.682826 Z M 6.052728 -0.000351346 " transform="matrix(0,0.9937,0.9937,0,39.664412,52.258842)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -71.367068 0.00182273 L -47.651252 0.00182273 " transform="matrix(0.9937,0,0,-0.9937,120.479956,69.583842)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054738 0.00182273 L 1.60876 1.684297 L 3.086822 0.00182273 L 1.60876 -1.684583 Z M 6.054738 0.00182273 " transform="matrix(0.9937,0,0,-0.9937,70.307625,69.583842)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="67.196768" y="65.789896"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -95.924122 0.00182273 L -119.636006 0.00182273 " transform="matrix(0.9937,0,0,-0.9937,120.479956,69.583842)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054209 0.00182273 L 1.608231 1.684297 L 3.086292 0.00182273 L 1.608231 -1.684583 Z M 6.054209 0.00182273 " transform="matrix(0.9937,0,0,-0.9937,22.339401,69.583842)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="5.392603" y="65.789896"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph7-1" x="12.134857" y="62.196677"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 25 KiB |
BIN
figs/control_architecture_iff_feedforward.pdf
Normal file
BIN
figs/control_architecture_iff_feedforward.png
Normal file
After Width: | Height: | Size: 15 KiB |
273
figs/control_architecture_iff_feedforward.svg
Normal file
@ -0,0 +1,273 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="341.1pt" height="127.717pt" viewBox="0 0 341.1 127.717" version="1.2">
|
||||
<defs>
|
||||
<g>
|
||||
<symbol overflow="visible" id="glyph0-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<path style="stroke:none;" d="M 6.203125 -4.9375 C 6.203125 -5.90625 5.21875 -6.78125 3.859375 -6.78125 L 0.34375 -6.78125 L 0.34375 -6.484375 L 0.59375 -6.484375 C 1.34375 -6.484375 1.375 -6.375 1.375 -6.015625 L 1.375 -0.78125 C 1.375 -0.421875 1.34375 -0.3125 0.59375 -0.3125 L 0.34375 -0.3125 L 0.34375 0 C 0.703125 -0.03125 1.4375 -0.03125 1.8125 -0.03125 C 2.1875 -0.03125 2.9375 -0.03125 3.28125 0 L 3.28125 -0.3125 L 3.046875 -0.3125 C 2.28125 -0.3125 2.25 -0.421875 2.25 -0.78125 L 2.25 -3.140625 L 3.9375 -3.140625 C 5.125 -3.140625 6.203125 -3.9375 6.203125 -4.9375 Z M 5.171875 -4.9375 C 5.171875 -4.46875 5.171875 -3.40625 3.59375 -3.40625 L 2.21875 -3.40625 L 2.21875 -6.078125 C 2.21875 -6.40625 2.25 -6.484375 2.71875 -6.484375 L 3.59375 -6.484375 C 5.171875 -6.484375 5.171875 -5.421875 5.171875 -4.9375 Z M 5.171875 -4.9375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 2.53125 0 L 2.53125 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -6.890625 L 0.328125 -6.78125 L 0.328125 -6.484375 C 1.03125 -6.484375 1.109375 -6.40625 1.109375 -5.921875 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.4375 -0.03125 Z M 2.53125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 4.796875 -0.890625 L 4.796875 -1.4375 L 4.546875 -1.4375 L 4.546875 -0.890625 C 4.546875 -0.3125 4.296875 -0.25 4.1875 -0.25 C 3.859375 -0.25 3.828125 -0.703125 3.828125 -0.75 L 3.828125 -2.734375 C 3.828125 -3.15625 3.828125 -3.53125 3.46875 -3.90625 C 3.078125 -4.296875 2.578125 -4.453125 2.109375 -4.453125 C 1.296875 -4.453125 0.609375 -3.984375 0.609375 -3.328125 C 0.609375 -3.03125 0.8125 -2.859375 1.0625 -2.859375 C 1.34375 -2.859375 1.515625 -3.0625 1.515625 -3.3125 C 1.515625 -3.4375 1.46875 -3.765625 1.015625 -3.78125 C 1.28125 -4.125 1.765625 -4.234375 2.09375 -4.234375 C 2.578125 -4.234375 3.140625 -3.84375 3.140625 -2.96875 L 3.140625 -2.59375 C 2.640625 -2.5625 1.9375 -2.53125 1.3125 -2.234375 C 0.5625 -1.890625 0.3125 -1.375 0.3125 -0.9375 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.5625 0.109375 3.015625 -0.28125 3.203125 -0.75 C 3.25 -0.359375 3.515625 0.0625 3.984375 0.0625 C 4.1875 0.0625 4.796875 -0.078125 4.796875 -0.890625 Z M 3.140625 -1.390625 C 3.140625 -0.453125 2.421875 -0.109375 1.984375 -0.109375 C 1.484375 -0.109375 1.078125 -0.453125 1.078125 -0.953125 C 1.078125 -1.5 1.5 -2.328125 3.140625 -2.390625 Z M 3.140625 -1.390625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 5.3125 0 L 5.3125 -0.3125 C 4.796875 -0.3125 4.546875 -0.3125 4.546875 -0.609375 L 4.546875 -2.5 C 4.546875 -3.359375 4.546875 -3.671875 4.234375 -4.03125 C 4.09375 -4.1875 3.765625 -4.390625 3.1875 -4.390625 C 2.46875 -4.390625 2 -3.96875 1.71875 -3.34375 L 1.71875 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.015625 -3.96875 1.09375 -3.90625 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.546875 0 L 2.546875 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.578125 C 1.78125 -3.625 2.484375 -4.171875 3.125 -4.171875 C 3.75 -4.171875 3.859375 -3.640625 3.859375 -3.078125 L 3.859375 -0.75 C 3.859375 -0.3125 3.75 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.203125 -0.03125 Z M 5.3125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 3.296875 -1.234375 L 3.296875 -1.796875 L 3.046875 -1.796875 L 3.046875 -1.25 C 3.046875 -0.515625 2.75 -0.140625 2.390625 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.21875 L 1.71875 -3.96875 L 3.140625 -3.96875 L 3.140625 -4.28125 L 1.71875 -4.28125 L 1.71875 -6.109375 L 1.46875 -6.109375 C 1.453125 -5.296875 1.15625 -4.234375 0.1875 -4.1875 L 0.1875 -3.96875 L 1.03125 -3.96875 L 1.03125 -1.234375 C 1.03125 -0.015625 1.953125 0.109375 2.3125 0.109375 C 3.015625 0.109375 3.296875 -0.59375 3.296875 -1.234375 Z M 3.296875 -1.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 3.3125 0 L 3.3125 -0.3125 L 3.046875 -0.3125 C 2.265625 -0.3125 2.234375 -0.421875 2.234375 -0.78125 L 2.234375 -6.015625 C 2.234375 -6.375 2.265625 -6.484375 3.046875 -6.484375 L 3.3125 -6.484375 L 3.3125 -6.78125 C 2.96875 -6.75 2.171875 -6.75 1.796875 -6.75 C 1.40625 -6.75 0.625 -6.75 0.28125 -6.78125 L 0.28125 -6.484375 L 0.53125 -6.484375 C 1.328125 -6.484375 1.34375 -6.375 1.34375 -6.015625 L 1.34375 -0.78125 C 1.34375 -0.421875 1.328125 -0.3125 0.53125 -0.3125 L 0.28125 -0.3125 L 0.28125 0 C 0.625 -0.03125 1.40625 -0.03125 1.78125 -0.03125 C 2.171875 -0.03125 2.96875 -0.03125 3.3125 0 Z M 3.3125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 5.046875 -3.96875 L 5.046875 -4.28125 C 4.8125 -4.265625 4.53125 -4.25 4.296875 -4.25 L 3.4375 -4.28125 L 3.4375 -3.96875 C 3.8125 -3.96875 3.921875 -3.734375 3.921875 -3.546875 C 3.921875 -3.453125 3.890625 -3.421875 3.859375 -3.3125 L 2.84375 -0.78125 L 1.734375 -3.546875 C 1.671875 -3.671875 1.671875 -3.71875 1.671875 -3.71875 C 1.671875 -3.96875 2.0625 -3.96875 2.234375 -3.96875 L 2.234375 -4.28125 L 1.15625 -4.25 C 0.890625 -4.25 0.484375 -4.265625 0.1875 -4.28125 L 0.1875 -3.96875 C 0.8125 -3.96875 0.859375 -3.921875 0.984375 -3.609375 L 2.421875 -0.078125 C 2.46875 0.0625 2.5 0.109375 2.625 0.109375 C 2.75 0.109375 2.796875 0.015625 2.828125 -0.078125 L 4.140625 -3.3125 C 4.21875 -3.53125 4.390625 -3.96875 5.046875 -3.96875 Z M 5.046875 -3.96875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 4.125 -1.1875 C 4.125 -1.28125 4.046875 -1.296875 4 -1.296875 C 3.90625 -1.296875 3.890625 -1.25 3.859375 -1.15625 C 3.515625 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 L 3.875 -2.296875 C 4.09375 -2.296875 4.125 -2.296875 4.125 -2.5 C 4.125 -3.484375 3.59375 -4.453125 2.34375 -4.453125 C 1.1875 -4.453125 0.28125 -3.421875 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.671875 0.109375 4.125 -1 4.125 -1.1875 Z M 3.46875 -2.5 L 1.109375 -2.5 C 1.171875 -3.984375 2 -4.234375 2.34375 -4.234375 C 3.375 -4.234375 3.46875 -2.890625 3.46875 -2.5 Z M 3.46875 -2.5 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-9">
|
||||
<path style="stroke:none;" d="M 3.625 -3.78125 C 3.625 -4.109375 3.3125 -4.390625 2.875 -4.390625 C 2.15625 -4.390625 1.796875 -3.734375 1.65625 -3.296875 L 1.65625 -4.390625 L 0.28125 -4.28125 L 0.28125 -3.96875 C 0.96875 -3.96875 1.046875 -3.90625 1.046875 -3.421875 L 1.046875 -0.75 C 1.046875 -0.3125 0.9375 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.40625 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.671875 0 L 2.671875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.703125 -0.421875 1.703125 -0.78125 L 1.703125 -2.3125 C 1.703125 -3.296875 2.125 -4.171875 2.875 -4.171875 C 2.953125 -4.171875 2.96875 -4.171875 2.984375 -4.15625 C 2.96875 -4.15625 2.765625 -4.03125 2.765625 -3.78125 C 2.765625 -3.5 2.96875 -3.34375 3.1875 -3.34375 C 3.375 -3.34375 3.625 -3.46875 3.625 -3.78125 Z M 3.625 -3.78125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-10">
|
||||
<path style="stroke:none;" d="M 3.578125 -1.265625 C 3.578125 -1.796875 3.28125 -2.09375 3.15625 -2.21875 C 2.828125 -2.53125 2.4375 -2.609375 2.03125 -2.6875 C 1.46875 -2.796875 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.859375 1.0625 -4.265625 1.921875 -4.265625 C 3.015625 -4.265625 3.0625 -3.375 3.078125 -3.0625 C 3.09375 -2.96875 3.203125 -2.96875 3.203125 -2.96875 C 3.328125 -2.96875 3.328125 -3.015625 3.328125 -3.203125 L 3.328125 -4.21875 C 3.328125 -4.375 3.328125 -4.453125 3.21875 -4.453125 C 3.171875 -4.453125 3.15625 -4.453125 3.015625 -4.328125 C 2.984375 -4.296875 2.890625 -4.203125 2.859375 -4.171875 C 2.46875 -4.453125 2.0625 -4.453125 1.921875 -4.453125 C 0.703125 -4.453125 0.328125 -3.78125 0.328125 -3.234375 C 0.328125 -2.875 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.125 1.34375 -2.0625 2.0625 -1.921875 C 2.28125 -1.890625 3.09375 -1.734375 3.09375 -1.015625 C 3.09375 -0.5 2.75 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.515625 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.4375 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.765625 0.109375 1.984375 0.109375 C 3.125 0.109375 3.578125 -0.5625 3.578125 -1.265625 Z M 3.578125 -1.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-11">
|
||||
<path style="stroke:none;" d="M 7.3125 0 L 7.3125 -0.3125 C 6.78125 -0.3125 6.5625 -0.34375 6.265625 -0.78125 L 3.96875 -4.15625 L 5.765625 -5.890625 C 5.84375 -5.96875 6.375 -6.46875 7.171875 -6.484375 L 7.171875 -6.78125 C 6.921875 -6.75 6.59375 -6.75 6.328125 -6.75 C 5.96875 -6.75 5.40625 -6.75 5.0625 -6.78125 L 5.0625 -6.484375 C 5.46875 -6.46875 5.53125 -6.234375 5.53125 -6.15625 C 5.53125 -6 5.421875 -5.890625 5.34375 -5.828125 L 2.234375 -2.859375 L 2.234375 -6.015625 C 2.234375 -6.375 2.25 -6.484375 3.015625 -6.484375 L 3.265625 -6.484375 L 3.265625 -6.78125 C 2.90625 -6.75 2.171875 -6.75 1.796875 -6.75 C 1.421875 -6.75 0.671875 -6.75 0.328125 -6.78125 L 0.328125 -6.484375 L 0.5625 -6.484375 C 1.328125 -6.484375 1.34375 -6.375 1.34375 -6.015625 L 1.34375 -0.78125 C 1.34375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.40625 -0.03125 1.78125 -0.03125 C 2.171875 -0.03125 2.90625 -0.03125 3.265625 0 L 3.265625 -0.3125 L 3.015625 -0.3125 C 2.25 -0.3125 2.234375 -0.421875 2.234375 -0.78125 L 2.234375 -2.515625 L 3.390625 -3.609375 L 5.1875 -0.9375 C 5.25 -0.859375 5.34375 -0.71875 5.34375 -0.609375 C 5.34375 -0.3125 4.953125 -0.3125 4.75 -0.3125 L 4.75 0 C 5.09375 -0.03125 5.796875 -0.03125 6.171875 -0.03125 Z M 7.3125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-12">
|
||||
<path style="stroke:none;" d="M 2.453125 0 L 2.453125 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 L 1.765625 -4.390625 L 0.375 -4.28125 L 0.375 -3.96875 C 1.015625 -3.96875 1.109375 -3.921875 1.109375 -3.421875 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 C 1.765625 -0.03125 2.109375 -0.015625 2.453125 0 Z M 1.90625 -6 C 1.90625 -6.265625 1.671875 -6.53125 1.375 -6.53125 C 1.046875 -6.53125 0.84375 -6.25 0.84375 -6 C 0.84375 -5.734375 1.078125 -5.46875 1.375 -5.46875 C 1.703125 -5.46875 1.90625 -5.75 1.90625 -6 Z M 1.90625 -6 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-13">
|
||||
<path style="stroke:none;" d="M 8.078125 0 L 8.078125 -0.3125 C 7.5625 -0.3125 7.3125 -0.3125 7.296875 -0.609375 L 7.296875 -2.5 C 7.296875 -3.359375 7.296875 -3.671875 7 -4.03125 C 6.859375 -4.1875 6.53125 -4.390625 5.953125 -4.390625 C 5.125 -4.390625 4.6875 -3.796875 4.515625 -3.421875 C 4.375 -4.28125 3.640625 -4.390625 3.1875 -4.390625 C 2.46875 -4.390625 2 -3.96875 1.71875 -3.34375 L 1.71875 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.015625 -3.96875 1.09375 -3.90625 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.546875 0 L 2.546875 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.578125 C 1.78125 -3.625 2.484375 -4.171875 3.125 -4.171875 C 3.75 -4.171875 3.859375 -3.640625 3.859375 -3.078125 L 3.859375 -0.75 C 3.859375 -0.3125 3.75 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.203125 -0.03125 L 5.3125 0 L 5.3125 -0.3125 C 4.65625 -0.3125 4.546875 -0.3125 4.546875 -0.75 L 4.546875 -2.578125 C 4.546875 -3.625 5.25 -4.171875 5.890625 -4.171875 C 6.515625 -4.171875 6.625 -3.640625 6.625 -3.078125 L 6.625 -0.75 C 6.625 -0.3125 6.515625 -0.3125 5.84375 -0.3125 L 5.84375 0 L 6.96875 -0.03125 Z M 8.078125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-14">
|
||||
<path style="stroke:none;" d="M 4.125 -1.1875 C 4.125 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.90625 -1.28125 3.890625 -1.25 3.859375 -1.1875 C 3.578125 -0.265625 2.9375 -0.140625 2.5625 -0.140625 C 2.03125 -0.140625 1.15625 -0.5625 1.15625 -2.171875 C 1.15625 -3.78125 1.984375 -4.203125 2.5 -4.203125 C 2.59375 -4.203125 3.21875 -4.1875 3.5625 -3.828125 C 3.15625 -3.8125 3.09375 -3.515625 3.09375 -3.375 C 3.09375 -3.125 3.28125 -2.921875 3.5625 -2.921875 C 3.8125 -2.921875 4.015625 -3.09375 4.015625 -3.390625 C 4.015625 -4.0625 3.265625 -4.453125 2.5 -4.453125 C 1.25 -4.453125 0.34375 -3.375 0.34375 -2.140625 C 0.34375 -0.875 1.328125 0.109375 2.46875 0.109375 C 3.8125 0.109375 4.125 -1.078125 4.125 -1.1875 Z M 4.125 -1.1875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-1">
|
||||
<path style="stroke:none;" d="M 5.859375 -4.171875 C 6.515625 -4.640625 8.34375 -5.921875 8.6875 -6.109375 C 8.90625 -6.21875 9.125 -6.328125 9.625 -6.34375 C 9.8125 -6.359375 9.96875 -6.359375 9.96875 -6.640625 C 9.96875 -6.734375 9.890625 -6.8125 9.78125 -6.8125 C 9.546875 -6.8125 9.25 -6.78125 9 -6.78125 C 8.59375 -6.78125 8.15625 -6.8125 7.75 -6.8125 C 7.671875 -6.8125 7.46875 -6.8125 7.46875 -6.53125 C 7.46875 -6.34375 7.65625 -6.34375 7.71875 -6.34375 C 7.796875 -6.34375 8 -6.34375 8.171875 -6.28125 L 3.640625 -3.15625 L 4.421875 -6.3125 C 4.640625 -6.34375 4.984375 -6.34375 5.09375 -6.34375 C 5.234375 -6.34375 5.421875 -6.34375 5.46875 -6.375 C 5.5625 -6.453125 5.578125 -6.625 5.578125 -6.640625 C 5.578125 -6.765625 5.46875 -6.8125 5.359375 -6.8125 C 5.109375 -6.8125 4.84375 -6.796875 4.59375 -6.796875 C 4.359375 -6.796875 4.109375 -6.78125 3.859375 -6.78125 C 3.59375 -6.78125 3.34375 -6.796875 3.09375 -6.796875 C 2.828125 -6.796875 2.5625 -6.8125 2.3125 -6.8125 C 2.21875 -6.8125 2.015625 -6.8125 2.015625 -6.53125 C 2.015625 -6.34375 2.140625 -6.34375 2.4375 -6.34375 C 2.640625 -6.34375 2.828125 -6.34375 3.046875 -6.328125 L 1.625 -0.671875 C 1.578125 -0.5 1.5625 -0.5 1.390625 -0.484375 C 1.21875 -0.46875 1.03125 -0.46875 0.859375 -0.46875 C 0.609375 -0.46875 0.59375 -0.46875 0.546875 -0.453125 C 0.421875 -0.375 0.421875 -0.21875 0.421875 -0.171875 C 0.421875 -0.15625 0.4375 0 0.640625 0 C 0.890625 0 1.15625 -0.015625 1.40625 -0.015625 C 1.65625 -0.015625 1.90625 -0.03125 2.15625 -0.03125 C 2.421875 -0.03125 2.671875 -0.015625 2.921875 -0.015625 C 3.1875 -0.015625 3.453125 0 3.703125 0 C 3.796875 0 3.859375 0 3.921875 -0.0625 C 3.96875 -0.125 3.984375 -0.265625 3.984375 -0.28125 C 3.984375 -0.46875 3.84375 -0.46875 3.578125 -0.46875 C 3.375 -0.46875 3.1875 -0.484375 2.96875 -0.484375 L 3.484375 -2.546875 L 4.71875 -3.40625 L 6.203125 -0.53125 C 6 -0.46875 5.703125 -0.46875 5.671875 -0.46875 C 5.53125 -0.46875 5.46875 -0.46875 5.421875 -0.390625 C 5.375 -0.34375 5.359375 -0.203125 5.359375 -0.171875 C 5.359375 -0.171875 5.359375 0 5.5625 0 C 5.890625 0 6.703125 -0.03125 7.03125 -0.03125 C 7.25 -0.03125 7.46875 -0.015625 7.671875 -0.015625 C 7.875 -0.015625 8.078125 0 8.265625 0 C 8.34375 0 8.53125 0 8.53125 -0.28125 C 8.53125 -0.46875 8.375 -0.46875 8.21875 -0.46875 C 7.765625 -0.46875 7.734375 -0.5 7.65625 -0.671875 Z M 5.859375 -4.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<path style="stroke:none;" d="M 3.46875 -3.453125 L 5.3125 -3.453125 C 5.515625 -3.453125 5.640625 -3.453125 5.796875 -3.609375 C 6 -3.78125 6 -4 6 -4.03125 C 6 -4.40625 5.640625 -4.40625 5.46875 -4.40625 L 2.203125 -4.40625 C 2 -4.40625 1.5625 -4.40625 1.046875 -3.9375 C 0.703125 -3.625 0.3125 -3.109375 0.3125 -3.015625 C 0.3125 -2.875 0.421875 -2.875 0.53125 -2.875 C 0.6875 -2.875 0.703125 -2.875 0.78125 -2.984375 C 1.15625 -3.453125 1.8125 -3.453125 2 -3.453125 L 2.90625 -3.453125 L 2.546875 -2.40625 C 2.453125 -2.15625 2.234375 -1.515625 2.15625 -1.265625 C 2.046875 -0.953125 1.859375 -0.421875 1.859375 -0.3125 C 1.859375 -0.046875 2.078125 0.125 2.328125 0.125 C 2.390625 0.125 2.90625 0.125 3 -0.53125 Z M 3.46875 -3.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-3">
|
||||
<path style="stroke:none;" d="M 5.59375 -3.15625 C 5.671875 -3.421875 5.78125 -3.90625 5.78125 -3.96875 C 5.78125 -4.1875 5.625 -4.40625 5.3125 -4.40625 C 5.15625 -4.40625 4.796875 -4.328125 4.65625 -3.890625 C 4.625 -3.75 4.171875 -1.953125 4.09375 -1.625 C 4.03125 -1.390625 3.96875 -1.109375 3.9375 -0.921875 C 3.765625 -0.6875 3.375 -0.28125 2.875 -0.28125 C 2.28125 -0.28125 2.28125 -0.78125 2.28125 -1 C 2.28125 -1.609375 2.578125 -2.390625 2.859375 -3.09375 C 2.96875 -3.359375 2.984375 -3.421875 2.984375 -3.59375 C 2.984375 -4.171875 2.421875 -4.484375 1.875 -4.484375 C 0.8125 -4.484375 0.3125 -3.140625 0.3125 -2.9375 C 0.3125 -2.796875 0.46875 -2.796875 0.5625 -2.796875 C 0.671875 -2.796875 0.75 -2.796875 0.78125 -2.9375 C 1.109375 -4.03125 1.65625 -4.140625 1.8125 -4.140625 C 1.875 -4.140625 1.984375 -4.140625 1.984375 -3.921875 C 1.984375 -3.703125 1.859375 -3.421875 1.8125 -3.296875 C 1.40625 -2.25 1.21875 -1.703125 1.21875 -1.21875 C 1.21875 -0.078125 2.203125 0.078125 2.796875 0.078125 C 3.078125 0.078125 3.515625 0.046875 4.046875 -0.46875 C 4.375 0.015625 4.953125 0.078125 5.1875 0.078125 C 5.5625 0.078125 5.84375 -0.125 6.046875 -0.484375 C 6.296875 -0.890625 6.421875 -1.421875 6.421875 -1.46875 C 6.421875 -1.609375 6.28125 -1.609375 6.1875 -1.609375 C 6.078125 -1.609375 6.046875 -1.609375 6 -1.5625 C 5.96875 -1.546875 5.96875 -1.515625 5.90625 -1.265625 C 5.71875 -0.5 5.5 -0.28125 5.234375 -0.28125 C 5.09375 -0.28125 5.015625 -0.375 5.015625 -0.640625 C 5.015625 -0.8125 5.046875 -0.96875 5.140625 -1.375 C 5.21875 -1.65625 5.3125 -2.046875 5.359375 -2.265625 Z M 5.59375 -3.15625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-4">
|
||||
<path style="stroke:none;" d="M 4.40625 -4 C 3.859375 -3.890625 3.8125 -3.40625 3.8125 -3.296875 C 3.8125 -3.078125 3.96875 -2.84375 4.296875 -2.84375 C 4.640625 -2.84375 5.015625 -3.125 5.015625 -3.625 C 5.015625 -4.078125 4.65625 -4.484375 4.046875 -4.484375 C 3.484375 -4.484375 3.015625 -4.21875 2.71875 -3.890625 C 2.484375 -4.359375 1.921875 -4.484375 1.5625 -4.484375 C 1.1875 -4.484375 0.921875 -4.28125 0.703125 -3.921875 C 0.453125 -3.53125 0.3125 -3 0.3125 -2.9375 C 0.3125 -2.796875 0.46875 -2.796875 0.5625 -2.796875 C 0.671875 -2.796875 0.703125 -2.796875 0.75 -2.859375 C 0.78125 -2.875 0.78125 -2.890625 0.828125 -3.140625 C 1.03125 -3.890625 1.25 -4.140625 1.515625 -4.140625 C 1.65625 -4.140625 1.734375 -4.03125 1.734375 -3.78125 C 1.734375 -3.59375 1.703125 -3.484375 1.59375 -3.015625 C 1.546875 -2.859375 1.390625 -2.203125 1.328125 -1.953125 C 1.28125 -1.765625 1.171875 -1.3125 1.125 -1.140625 C 1.0625 -0.875 0.9375 -0.421875 0.9375 -0.359375 C 0.9375 -0.15625 1.109375 0.078125 1.40625 0.078125 C 1.609375 0.078125 1.953125 -0.046875 2.0625 -0.453125 C 2.078125 -0.484375 2.75 -3.1875 2.765625 -3.234375 C 2.796875 -3.390625 2.796875 -3.40625 2.9375 -3.5625 C 3.15625 -3.84375 3.53125 -4.140625 4.03125 -4.140625 C 4.265625 -4.140625 4.375 -4.03125 4.40625 -4 Z M 4.40625 -4 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-1">
|
||||
<path style="stroke:none;" d="M 2.515625 0 L 2.515625 -0.25 L 2.34375 -0.25 C 1.765625 -0.25 1.765625 -0.328125 1.765625 -0.5625 L 1.765625 -4.171875 C 1.765625 -4.421875 1.765625 -4.5 2.34375 -4.5 L 2.515625 -4.5 L 2.515625 -4.75 L 1.4375 -4.71875 L 0.359375 -4.75 L 0.359375 -4.5 L 0.53125 -4.5 C 1.109375 -4.5 1.109375 -4.421875 1.109375 -4.171875 L 1.109375 -0.5625 C 1.109375 -0.328125 1.109375 -0.25 0.53125 -0.25 L 0.359375 -0.25 L 0.359375 0 L 1.4375 -0.03125 Z M 2.515625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<path style="stroke:none;" d="M 4.734375 -3.125 L 4.53125 -4.71875 L 0.390625 -4.71875 L 0.390625 -4.46875 L 0.5625 -4.46875 C 1.09375 -4.46875 1.109375 -4.40625 1.109375 -4.15625 L 1.109375 -0.5625 C 1.109375 -0.328125 1.09375 -0.25 0.5625 -0.25 L 0.390625 -0.25 L 0.390625 0 L 1.453125 -0.03125 L 2.65625 0 L 2.65625 -0.25 L 2.421875 -0.25 C 1.765625 -0.25 1.765625 -0.34375 1.765625 -0.5625 L 1.765625 -2.234375 L 2.4375 -2.234375 C 3.140625 -2.234375 3.234375 -2.03125 3.234375 -1.421875 L 3.46875 -1.421875 L 3.46875 -3.296875 L 3.234375 -3.296875 C 3.234375 -2.703125 3.140625 -2.484375 2.4375 -2.484375 L 1.765625 -2.484375 L 1.765625 -4.203125 C 1.765625 -4.421875 1.765625 -4.46875 2.09375 -4.46875 L 3.078125 -4.46875 C 4.1875 -4.46875 4.375 -4.09375 4.5 -3.125 Z M 4.734375 -3.125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-3">
|
||||
<path style="stroke:none;" d="M 4.96875 -4.390625 C 4.96875 -4.6875 4.671875 -4.890625 4.296875 -4.890625 C 4.046875 -4.890625 3.734375 -4.8125 3.484375 -4.609375 C 3.25 -4.859375 2.84375 -4.890625 2.578125 -4.890625 C 1.8125 -4.890625 0.859375 -4.546875 0.859375 -3.765625 L 0.859375 -3 L 0.265625 -3 L 0.265625 -2.75 L 0.859375 -2.75 L 0.859375 -0.546875 C 0.859375 -0.25 0.796875 -0.25 0.34375 -0.25 L 0.34375 0 C 0.34375 0 0.84375 -0.03125 1.125 -0.03125 C 1.390625 -0.03125 1.640625 -0.015625 1.90625 0 L 1.90625 -0.25 C 1.453125 -0.25 1.390625 -0.25 1.390625 -0.546875 L 1.390625 -2.75 L 3.109375 -2.75 L 3.109375 -0.546875 C 3.109375 -0.25 3.03125 -0.25 2.59375 -0.25 L 2.59375 0 C 2.625 0 3.09375 -0.03125 3.375 -0.03125 L 4.28125 0 L 4.28125 -0.25 L 4.140625 -0.25 C 3.625 -0.25 3.625 -0.328125 3.625 -0.5625 L 3.625 -2.75 L 4.5 -2.75 L 4.5 -3 L 3.609375 -3 L 3.609375 -3.78125 C 3.609375 -4.40625 3.96875 -4.703125 4.28125 -4.703125 C 4.34375 -4.703125 4.421875 -4.6875 4.484375 -4.671875 C 4.390625 -4.609375 4.328125 -4.5 4.328125 -4.390625 C 4.328125 -4.203125 4.46875 -4.0625 4.65625 -4.0625 C 4.84375 -4.0625 4.96875 -4.203125 4.96875 -4.390625 Z M 3.140625 -4.59375 C 3.0625 -4.5625 2.953125 -4.46875 2.953125 -4.296875 C 2.953125 -4.1875 2.984375 -4.078125 3.125 -4 C 3.109375 -3.9375 3.109375 -3.84375 3.109375 -3.78125 L 3.109375 -3 L 1.359375 -3 L 1.359375 -3.75 C 1.359375 -4.421875 2.03125 -4.703125 2.546875 -4.703125 C 2.609375 -4.703125 2.90625 -4.703125 3.140625 -4.59375 Z M 3.140625 -4.59375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-1">
|
||||
<path style="stroke:none;" d="M 11.5625 -4.28125 C 11.5625 -4.578125 11.28125 -4.578125 11.03125 -4.578125 L 6.46875 -4.578125 L 6.46875 -9.140625 C 6.46875 -9.375 6.46875 -9.671875 6.1875 -9.671875 C 5.875 -9.671875 5.875 -9.390625 5.875 -9.140625 L 5.875 -4.578125 L 1.328125 -4.578125 C 1.078125 -4.578125 0.796875 -4.578125 0.796875 -4.296875 C 0.796875 -3.984375 1.0625 -3.984375 1.328125 -3.984375 L 5.875 -3.984375 L 5.875 0.5625 C 5.875 0.8125 5.875 1.09375 6.171875 1.09375 C 6.46875 1.09375 6.46875 0.828125 6.46875 0.5625 L 6.46875 -3.984375 L 11.03125 -3.984375 C 11.265625 -3.984375 11.5625 -3.984375 11.5625 -4.28125 Z M 11.5625 -4.28125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-1">
|
||||
<path style="stroke:none;" d="M 5.125 -0.984375 C 5.125 -1.015625 5.109375 -1.046875 5.0625 -1.046875 C 4.953125 -1.046875 4.5 -0.890625 4.421875 -0.609375 C 4.3125 -0.3125 4.234375 -0.3125 4.0625 -0.3125 C 3.6875 -0.3125 3.1875 -0.4375 2.84375 -0.53125 C 2.484375 -0.625 2.109375 -0.703125 1.75 -0.703125 C 1.71875 -0.703125 1.578125 -0.703125 1.484375 -0.6875 C 1.859375 -1.234375 1.953125 -1.578125 2.0625 -2.015625 C 2.203125 -2.53125 2.40625 -3.25 2.75 -3.828125 C 3.09375 -4.390625 3.265625 -4.421875 3.5 -4.421875 C 3.828125 -4.421875 4.046875 -4.1875 4.046875 -3.84375 C 4.046875 -3.734375 4.03125 -3.65625 4.03125 -3.625 C 4.03125 -3.59375 4.046875 -3.5625 4.109375 -3.5625 C 4.125 -3.5625 4.296875 -3.59375 4.546875 -3.765625 C 4.6875 -3.859375 4.765625 -3.9375 4.765625 -4.203125 C 4.765625 -4.46875 4.609375 -4.890625 4.0625 -4.890625 C 3.453125 -4.890625 2.78125 -4.484375 2.421875 -4.046875 C 1.953125 -3.515625 1.640625 -2.8125 1.359375 -1.671875 C 1.1875 -1.03125 0.9375 -0.5 0.609375 -0.234375 C 0.546875 -0.171875 0.359375 0 0.359375 0.09375 C 0.359375 0.140625 0.421875 0.140625 0.4375 0.140625 C 0.6875 0.140625 1 -0.15625 1.09375 -0.25 C 1.296875 -0.25 1.578125 -0.234375 2.203125 -0.078125 C 2.734375 0.0625 3.109375 0.140625 3.5 0.140625 C 4.375 0.140625 5.125 -0.65625 5.125 -0.984375 Z M 5.125 -0.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-2">
|
||||
<path style="stroke:none;" d="M 5.3125 -0.6875 C 5.3125 -0.734375 5.265625 -0.734375 5.234375 -0.734375 C 5.125 -0.734375 4.84375 -0.625 4.703125 -0.421875 C 4.46875 -0.421875 4.203125 -0.421875 4.078125 -1.0625 L 3.875 -2.46875 C 3.875 -2.5 3.890625 -2.515625 3.90625 -2.53125 L 4.15625 -2.65625 C 6.21875 -3.78125 6.21875 -4.09375 6.21875 -4.34375 C 6.21875 -4.546875 6.109375 -4.75 5.828125 -4.75 C 5.609375 -4.75 5.265625 -4.5 5.265625 -4.390625 C 5.265625 -4.328125 5.296875 -4.328125 5.34375 -4.328125 C 5.515625 -4.296875 5.578125 -4.15625 5.578125 -4.015625 C 5.578125 -3.875 5.578125 -3.796875 4.9375 -3.40625 C 4.8125 -3.3125 4.671875 -3.21875 3.84375 -2.78125 C 3.75 -3.28125 3.703125 -3.84375 3.640625 -4.09375 C 3.515625 -4.65625 3.265625 -4.75 2.953125 -4.75 C 2.1875 -4.75 1.78125 -4.234375 1.78125 -4.078125 C 1.78125 -4.015625 1.828125 -4.015625 1.859375 -4.015625 C 1.984375 -4.015625 2.265625 -4.125 2.40625 -4.328125 C 2.625 -4.328125 2.875 -4.328125 3 -3.75 L 3.1875 -2.421875 C 2.796875 -2.21875 2.0625 -1.828125 1.640625 -1.578125 C 0.546875 -0.890625 0.484375 -0.625 0.484375 -0.40625 C 0.484375 -0.203125 0.59375 0 0.890625 0 C 1.09375 0 1.453125 -0.234375 1.453125 -0.375 C 1.453125 -0.421875 1.390625 -0.421875 1.359375 -0.421875 C 1.203125 -0.4375 1.140625 -0.5625 1.140625 -0.734375 C 1.140625 -0.890625 1.140625 -0.984375 1.984375 -1.484375 L 3.21875 -2.15625 C 3.328125 -1.625 3.40625 -0.921875 3.421875 -0.78125 C 3.53125 -0.3125 3.640625 0 4.140625 0 C 4.90625 0 5.3125 -0.5 5.3125 -0.6875 Z M 5.3125 -0.6875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-1">
|
||||
<path style="stroke:none;" d="M 1.65625 -0.046875 C 1.65625 -0.46875 1.5 -0.796875 1.171875 -0.796875 C 0.953125 -0.796875 0.78125 -0.625 0.78125 -0.40625 C 0.78125 -0.1875 0.9375 0 1.1875 0 C 1.34375 0 1.46875 -0.109375 1.46875 -0.109375 C 1.46875 0.265625 1.390625 0.71875 0.921875 1.15625 C 0.890625 1.1875 0.875 1.203125 0.875 1.25 C 0.875 1.296875 0.9375 1.34375 0.96875 1.34375 C 1.078125 1.34375 1.65625 0.78125 1.65625 -0.046875 Z M 1.65625 -0.046875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-2">
|
||||
<path style="stroke:none;" d="M 6.703125 -1 C 6.703125 -1.078125 6.625 -1.078125 6.59375 -1.078125 C 6.5 -1.078125 6.5 -1.046875 6.46875 -0.96875 C 6.3125 -0.40625 6 -0.125 5.734375 -0.125 C 5.578125 -0.125 5.5625 -0.21875 5.5625 -0.375 C 5.5625 -0.53125 5.59375 -0.625 5.71875 -0.9375 C 5.796875 -1.140625 6.078125 -1.890625 6.078125 -2.28125 C 6.078125 -2.390625 6.078125 -2.671875 5.828125 -2.875 C 5.703125 -2.96875 5.5 -3.0625 5.1875 -3.0625 C 4.546875 -3.0625 4.171875 -2.65625 3.953125 -2.359375 C 3.890625 -2.953125 3.40625 -3.0625 3.046875 -3.0625 C 2.46875 -3.0625 2.078125 -2.71875 1.875 -2.4375 C 1.828125 -2.90625 1.40625 -3.0625 1.125 -3.0625 C 0.828125 -3.0625 0.671875 -2.84375 0.578125 -2.6875 C 0.421875 -2.4375 0.328125 -2.03125 0.328125 -2 C 0.328125 -1.90625 0.421875 -1.90625 0.4375 -1.90625 C 0.546875 -1.90625 0.546875 -1.9375 0.59375 -2.125 C 0.703125 -2.53125 0.828125 -2.875 1.109375 -2.875 C 1.28125 -2.875 1.328125 -2.71875 1.328125 -2.53125 C 1.328125 -2.40625 1.265625 -2.140625 1.21875 -1.953125 L 1.078125 -1.328125 L 0.84375 -0.4375 C 0.828125 -0.34375 0.78125 -0.171875 0.78125 -0.15625 C 0.78125 0 0.90625 0.0625 1.015625 0.0625 C 1.140625 0.0625 1.25 -0.015625 1.28125 -0.078125 C 1.328125 -0.140625 1.375 -0.375 1.40625 -0.515625 L 1.5625 -1.140625 C 1.609375 -1.296875 1.640625 -1.453125 1.6875 -1.609375 C 1.765625 -1.890625 1.765625 -1.953125 1.96875 -2.234375 C 2.171875 -2.515625 2.5 -2.875 3.015625 -2.875 C 3.421875 -2.875 3.421875 -2.515625 3.421875 -2.390625 C 3.421875 -2.21875 3.40625 -2.125 3.3125 -1.734375 L 3.015625 -0.5625 C 2.984375 -0.421875 2.921875 -0.1875 2.921875 -0.15625 C 2.921875 0 3.046875 0.0625 3.15625 0.0625 C 3.28125 0.0625 3.390625 -0.015625 3.421875 -0.078125 C 3.46875 -0.140625 3.515625 -0.375 3.546875 -0.515625 L 3.703125 -1.140625 C 3.75 -1.296875 3.796875 -1.453125 3.828125 -1.609375 C 3.90625 -1.90625 3.90625 -1.921875 4.046875 -2.140625 C 4.265625 -2.46875 4.609375 -2.875 5.15625 -2.875 C 5.546875 -2.875 5.5625 -2.546875 5.5625 -2.390625 C 5.5625 -1.96875 5.265625 -1.203125 5.15625 -0.90625 C 5.078125 -0.703125 5.046875 -0.640625 5.046875 -0.53125 C 5.046875 -0.15625 5.359375 0.0625 5.703125 0.0625 C 6.40625 0.0625 6.703125 -0.890625 6.703125 -1 Z M 6.703125 -1 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-3">
|
||||
<path style="stroke:none;" d="M 3.96875 -1 C 3.96875 -1.078125 3.875 -1.078125 3.859375 -1.078125 C 3.765625 -1.078125 3.75 -1.0625 3.703125 -0.875 C 3.625 -0.53125 3.484375 -0.125 3.203125 -0.125 C 3.015625 -0.125 2.96875 -0.28125 2.96875 -0.46875 C 2.96875 -0.59375 2.984375 -0.65625 3 -0.75 L 3.96875 -4.609375 C 3.984375 -4.625 4 -4.734375 4 -4.734375 C 4 -4.765625 3.96875 -4.828125 3.890625 -4.828125 C 3.75 -4.828125 3.171875 -4.765625 3 -4.75 C 2.9375 -4.75 2.84375 -4.734375 2.84375 -4.59375 C 2.84375 -4.5 2.9375 -4.5 3.03125 -4.5 C 3.359375 -4.5 3.359375 -4.453125 3.359375 -4.390625 C 3.359375 -4.34375 3.34375 -4.296875 3.328125 -4.234375 L 2.9375 -2.65625 C 2.78125 -2.890625 2.546875 -3.0625 2.21875 -3.0625 C 1.328125 -3.0625 0.421875 -2.09375 0.421875 -1.078125 C 0.421875 -0.40625 0.875 0.0625 1.46875 0.0625 C 1.84375 0.0625 2.1875 -0.140625 2.46875 -0.421875 C 2.59375 0 3 0.0625 3.171875 0.0625 C 3.421875 0.0625 3.609375 -0.078125 3.734375 -0.296875 C 3.875 -0.5625 3.96875 -0.96875 3.96875 -1 Z M 2.8125 -2.171875 L 2.484375 -0.875 C 2.4375 -0.671875 2.28125 -0.53125 2.140625 -0.40625 C 2.078125 -0.34375 1.796875 -0.125 1.5 -0.125 C 1.234375 -0.125 0.984375 -0.3125 0.984375 -0.796875 C 0.984375 -1.171875 1.1875 -1.9375 1.34375 -2.21875 C 1.671875 -2.765625 2.015625 -2.875 2.21875 -2.875 C 2.703125 -2.875 2.84375 -2.34375 2.84375 -2.265625 C 2.84375 -2.234375 2.828125 -2.1875 2.8125 -2.171875 Z M 2.8125 -2.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-1">
|
||||
<path style="stroke:none;" d="M 4.953125 -1.421875 C 4.953125 -1.515625 4.859375 -1.515625 4.828125 -1.515625 C 4.734375 -1.515625 4.71875 -1.484375 4.6875 -1.34375 C 4.515625 -0.703125 4.34375 -0.109375 3.9375 -0.109375 C 3.671875 -0.109375 3.640625 -0.375 3.640625 -0.5625 C 3.640625 -0.8125 3.65625 -0.875 3.703125 -1.046875 L 5.125 -6.78125 C 5.125 -6.78125 5.125 -6.890625 5 -6.890625 C 4.84375 -6.890625 3.90625 -6.8125 3.734375 -6.78125 C 3.65625 -6.78125 3.59375 -6.734375 3.59375 -6.59375 C 3.59375 -6.484375 3.6875 -6.484375 3.828125 -6.484375 C 4.3125 -6.484375 4.328125 -6.40625 4.328125 -6.3125 L 4.296875 -6.109375 L 3.703125 -3.75 C 3.53125 -4.125 3.234375 -4.390625 2.796875 -4.390625 C 1.625 -4.390625 0.390625 -2.9375 0.390625 -1.484375 C 0.390625 -0.546875 0.9375 0.109375 1.71875 0.109375 C 1.921875 0.109375 2.421875 0.0625 3.015625 -0.640625 C 3.09375 -0.21875 3.4375 0.109375 3.921875 0.109375 C 4.265625 0.109375 4.484375 -0.125 4.65625 -0.4375 C 4.8125 -0.796875 4.953125 -1.421875 4.953125 -1.421875 Z M 3.5625 -3.125 L 3.0625 -1.1875 C 3.015625 -1 3.015625 -0.984375 2.859375 -0.8125 C 2.421875 -0.265625 2.015625 -0.109375 1.734375 -0.109375 C 1.25 -0.109375 1.109375 -0.65625 1.109375 -1.046875 C 1.109375 -1.546875 1.421875 -2.765625 1.65625 -3.21875 C 1.953125 -3.8125 2.40625 -4.171875 2.796875 -4.171875 C 3.453125 -4.171875 3.59375 -3.359375 3.59375 -3.296875 C 3.59375 -3.234375 3.5625 -3.1875 3.5625 -3.125 Z M 3.5625 -3.125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-1">
|
||||
<path style="stroke:none;" d="M 7.46875 -1.546875 C 7.46875 -1.65625 7.328125 -1.65625 7.296875 -1.65625 C 6.984375 -1.65625 6.125 -1.265625 6.015625 -0.75 C 5.53125 -0.75 5.171875 -0.8125 4.375 -0.953125 C 4.015625 -1.03125 3.234375 -1.171875 2.65625 -1.171875 C 2.578125 -1.171875 2.46875 -1.171875 2.390625 -1.15625 C 2.71875 -1.71875 2.859375 -2.1875 3.015625 -2.84375 C 3.21875 -3.625 3.625 -5.03125 4.375 -5.875 C 4.5 -6.015625 4.546875 -6.0625 4.796875 -6.0625 C 5.25 -6.0625 5.4375 -5.703125 5.4375 -5.375 C 5.4375 -5.265625 5.40625 -5.15625 5.40625 -5.125 C 5.40625 -5.015625 5.53125 -4.984375 5.578125 -4.984375 C 5.71875 -4.984375 6.015625 -5.0625 6.40625 -5.328125 C 6.796875 -5.59375 6.84375 -5.78125 6.84375 -6.0625 C 6.84375 -6.5625 6.546875 -6.984375 5.890625 -6.984375 C 5.25 -6.984375 4.359375 -6.671875 3.53125 -5.96875 C 2.390625 -4.953125 1.890625 -3.3125 1.609375 -2.1875 C 1.453125 -1.59375 1.25 -0.78125 0.828125 -0.453125 C 0.71875 -0.375 0.390625 -0.109375 0.390625 0.046875 C 0.390625 0.15625 0.5 0.171875 0.5625 0.171875 C 0.640625 0.171875 0.9375 0.15625 1.5 -0.25 C 1.875 -0.25 2.203125 -0.234375 3.109375 -0.0625 C 3.5625 0.03125 4.28125 0.171875 4.84375 0.171875 C 6.1875 0.171875 7.46875 -1 7.46875 -1.546875 Z M 7.46875 -1.546875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-2">
|
||||
<path style="stroke:none;" d="M 7.734375 -1.0625 C 7.734375 -1.171875 7.625 -1.1875 7.546875 -1.1875 C 7.390625 -1.1875 7.0625 -1.078125 6.78125 -0.859375 C 6.375 -0.859375 6.0625 -0.859375 5.90625 -2.09375 L 5.734375 -3.625 C 8.359375 -5.0625 9.015625 -5.71875 9.015625 -6.234375 C 9.015625 -6.640625 8.640625 -6.8125 8.34375 -6.8125 C 7.90625 -6.8125 7.21875 -6.328125 7.21875 -6.078125 C 7.21875 -6.03125 7.234375 -5.96875 7.390625 -5.953125 C 7.703125 -5.921875 7.71875 -5.671875 7.71875 -5.609375 C 7.71875 -5.5 7.6875 -5.453125 7.453125 -5.265625 C 7.03125 -4.953125 6.328125 -4.5625 5.671875 -4.1875 C 5.53125 -5.109375 5.53125 -5.578125 5.421875 -6.03125 C 5.1875 -6.8125 4.671875 -6.8125 4.359375 -6.8125 C 3.015625 -6.8125 2.421875 -6 2.421875 -5.75 C 2.421875 -5.640625 2.53125 -5.625 2.59375 -5.625 C 2.59375 -5.625 2.9375 -5.625 3.375 -5.953125 C 3.6875 -5.953125 4.0625 -5.953125 4.203125 -4.984375 L 4.375 -3.484375 C 3.703125 -3.125 2.796875 -2.625 2.0625 -2.140625 C 1.609375 -1.859375 0.5625 -1.1875 0.5625 -0.578125 C 0.5625 -0.171875 0.90625 0 1.21875 0 C 1.65625 0 2.34375 -0.484375 2.34375 -0.734375 C 2.34375 -0.84375 2.234375 -0.859375 2.15625 -0.859375 C 1.984375 -0.890625 1.84375 -1.03125 1.84375 -1.203125 C 1.84375 -1.328125 1.890625 -1.375 2.15625 -1.5625 C 2.640625 -1.921875 3.375 -2.328125 4.4375 -2.921875 C 4.65625 -1.125 4.671875 -1 4.703125 -0.890625 C 4.921875 0 5.453125 0 5.78125 0 C 7.15625 0 7.734375 -0.828125 7.734375 -1.0625 Z M 7.734375 -1.0625 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
<clipPath id="clip1">
|
||||
<path d="M 250 0.0273438 L 286 0.0273438 L 286 30 L 250 30 Z M 250 0.0273438 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip2">
|
||||
<path d="M 319 42 L 340.203125 42 L 340.203125 74 L 319 74 Z M 319 42 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip3">
|
||||
<path d="M 272 0.0273438 L 306 0.0273438 L 306 31 L 272 31 Z M 272 0.0273438 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip4">
|
||||
<path d="M 319 94 L 340.203125 94 L 340.203125 126 L 319 126 Z M 319 94 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip5">
|
||||
<path d="M 319 68 L 340.203125 68 L 340.203125 100 L 319 100 Z M 319 68 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -42.5216 -42.521617 L 42.518596 -42.521617 L 42.518596 42.518579 L -42.5216 42.518579 Z M -42.5216 -42.521617 " transform="matrix(0.997368,0,0,-0.997368,268.030795,84.004345)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="256.230929" y="87.427313"/>
|
||||
<use xlink:href="#glyph0-2" x="262.993631" y="87.427313"/>
|
||||
<use xlink:href="#glyph0-3" x="265.753958" y="87.427313"/>
|
||||
<use xlink:href="#glyph0-4" x="270.722149" y="87.427313"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="275.964585" y="87.427313"/>
|
||||
</g>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 251.066406 29.292969 L 284.992188 29.292969 L 284.992188 1.019531 L 251.066406 1.019531 Z M 251.066406 29.292969 "/>
|
||||
<g clip-path="url(#clip1)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.009149 54.855733 L 17.006146 54.855733 L 17.006146 83.203771 L -17.009149 83.203771 Z M -17.009149 54.855733 " transform="matrix(0.997368,0,0,-0.997368,268.030795,84.004345)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="256.394497" y="17.821968"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="266.045034" y="19.313034"/>
|
||||
<use xlink:href="#glyph2-2" x="268.915548" y="19.313034"/>
|
||||
<use xlink:href="#glyph2-2" x="274.042408" y="19.313034"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -71.36704 0.000439644 C -71.36704 5.503202 -75.824082 9.96416 -81.326844 9.96416 C -86.829606 9.96416 -91.290564 5.503202 -91.290564 0.000439644 C -91.290564 -5.502323 -86.829606 -9.963281 -81.326844 -9.963281 C -75.824082 -9.963281 -71.36704 -5.502323 -71.36704 0.000439644 Z M -71.36704 0.000439644 " transform="matrix(0.997368,0,0,-0.997368,268.030795,84.004345)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="180.738118" y="88.159382"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -154.1513 -14.173579 L -120.136005 -14.173579 L -120.136005 14.174458 L -154.1513 14.174458 Z M -154.1513 -14.173579 " transform="matrix(0.997368,0,0,-0.997368,268.030795,84.004345)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="119.886676" y="85.9921"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="129.536216" y="87.482168"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-1" x="135.043684" y="87.482168"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="137.403458" y="87.482168"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -238.897754 -14.173579 L -183.494143 -14.173579 L -183.494143 14.174458 L -238.897754 14.174458 Z M -238.897754 -14.173579 " transform="matrix(0.997368,0,0,-0.997368,268.030795,84.004345)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="42.170732" y="81.465045"/>
|
||||
<use xlink:href="#glyph0-4" x="45.758759" y="81.465045"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="51.001195" y="81.465045"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-8" x="55.967399" y="81.465045"/>
|
||||
<use xlink:href="#glyph0-9" x="60.384121" y="81.465045"/>
|
||||
<use xlink:href="#glyph0-10" x="64.276202" y="81.465045"/>
|
||||
<use xlink:href="#glyph0-8" x="68.196105" y="81.465045"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-11" x="33.075729" y="93.388584"/>
|
||||
<use xlink:href="#glyph0-12" x="40.804247" y="93.388584"/>
|
||||
<use xlink:href="#glyph0-4" x="43.564574" y="93.388584"/>
|
||||
<use xlink:href="#glyph0-8" x="49.085229" y="93.388584"/>
|
||||
<use xlink:href="#glyph0-13" x="53.501951" y="93.388584"/>
|
||||
<use xlink:href="#glyph0-3" x="61.781938" y="93.388584"/>
|
||||
<use xlink:href="#glyph0-5" x="66.75013" y="93.388584"/>
|
||||
<use xlink:href="#glyph0-12" x="70.614389" y="93.388584"/>
|
||||
<use xlink:href="#glyph0-14" x="73.374716" y="93.388584"/>
|
||||
<use xlink:href="#glyph0-10" x="77.791438" y="93.388584"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.019916 25.810548 L 66.73075 25.810548 " transform="matrix(0.997368,0,0,-0.997368,268.030795,84.004345)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 337.792969 58.261719 L 333.359375 56.582031 L 334.835938 58.261719 L 333.359375 59.941406 Z M 337.792969 58.261719 "/>
|
||||
<g clip-path="url(#clip2)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053173 -0.000731517 L 1.607881 1.683388 L 3.08834 -0.000731517 L 1.607881 -1.684851 Z M 6.053173 -0.000731517 " transform="matrix(0.997368,0,0,-0.997368,331.755725,58.260989)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-2" x="322.675613" y="66.486566"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-2" x="327.850958" y="67.976634"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.025605 25.810548 L 60.025605 69.029752 L 22.140752 69.029752 " transform="matrix(0.997368,0,0,-0.997368,268.030795,84.004345)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 286.90625 15.15625 L 291.339844 16.835938 L 289.863281 15.15625 L 291.339844 13.480469 Z M 286.90625 15.15625 "/>
|
||||
<g clip-path="url(#clip3)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053001 -0.00131198 L 1.60771 1.682807 L 3.088168 -0.00131198 L 1.60771 -1.681515 Z M 6.053001 -0.00131198 " transform="matrix(-0.997368,0,0,0.997368,292.943322,15.157559)"/>
|
||||
</g>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 329.886719 58.261719 C 329.886719 57.164062 328.996094 56.273438 327.898438 56.273438 C 326.800781 56.273438 325.910156 57.164062 325.910156 58.261719 C 325.910156 59.359375 326.800781 60.25 327.898438 60.25 C 328.996094 60.25 329.886719 59.359375 329.886719 58.261719 Z M 329.886719 58.261719 "/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.506552 69.029752 L -81.326844 69.029752 L -81.326844 14.597447 " transform="matrix(0.997368,0,0,-0.997368,268.030795,84.004345)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052887 0.001066 L 1.607595 1.681269 L 3.088053 0.001066 L 1.607595 -1.683053 Z M 6.052887 0.001066 " transform="matrix(0,0.997368,0.997368,0,186.916906,66.615386)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -71.36704 0.000439644 L -47.652289 0.000439644 " transform="matrix(0.997368,0,0,-0.997368,268.030795,84.004345)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053624 0.000439644 L 1.608332 1.684559 L 3.08879 0.000439644 L 1.608332 -1.68368 Z M 6.053624 0.000439644 " transform="matrix(0.997368,0,0,-0.997368,217.673244,84.004345)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="214.550903" y="80.195395"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.019916 -25.809669 L 66.73075 -25.809669 " transform="matrix(0.997368,0,0,-0.997368,268.030795,84.004345)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 337.792969 109.746094 L 333.359375 108.070312 L 334.835938 109.746094 L 333.359375 111.425781 Z M 337.792969 109.746094 "/>
|
||||
<g clip-path="url(#clip4)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053173 0.0016108 L 1.607881 1.681814 L 3.08834 0.0016108 L 1.607881 -1.682509 Z M 6.053173 0.0016108 " transform="matrix(0.997368,0,0,-0.997368,331.755725,109.7477)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph6-1" x="322.395353" y="105.938471"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph7-1" x="327.566708" y="105.938471"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.019916 0.000439644 L 66.73075 0.000439644 " transform="matrix(0.997368,0,0,-0.997368,268.030795,84.004345)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 337.792969 84.003906 L 333.359375 82.324219 L 334.835938 84.003906 L 333.359375 85.683594 Z M 337.792969 84.003906 "/>
|
||||
<g clip-path="url(#clip5)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053173 0.000439644 L 1.607881 1.684559 L 3.08834 0.000439644 L 1.607881 -1.68368 Z M 6.053173 0.000439644 " transform="matrix(0.997368,0,0,-0.997368,331.755725,84.004345)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph7-2" x="325.822311" y="80.195395"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -119.638602 0.000439644 L -95.923851 0.000439644 " transform="matrix(0.997368,0,0,-0.997368,268.030795,84.004345)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054402 0.000439644 L 1.60911 1.684559 L 3.085652 0.000439644 L 1.60911 -1.68368 Z M 6.054402 0.000439644 " transform="matrix(0.997368,0,0,-0.997368,169.527937,84.004345)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="161.196679" y="78.705326"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="167.962826" y="80.195395"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -182.99674 0.000439644 L -159.281989 0.000439644 " transform="matrix(0.997368,0,0,-0.997368,268.030795,84.004345)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051537 0.000439644 L 1.610162 1.684559 L 3.086704 0.000439644 L 1.610162 -1.68368 Z M 6.051537 0.000439644 " transform="matrix(0.997368,0,0,-0.997368,106.335481,84.004345)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="94.587429" y="78.705326"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-3" x="99.841566" y="80.195395"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="103.977653" y="80.195395"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -244.028444 0.000439644 L -267.743195 0.000439644 " transform="matrix(0.997368,0,0,-0.997368,268.030795,84.004345)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051553 0.000439644 L 1.610178 1.684559 L 3.086719 0.000439644 L 1.610178 -1.68368 Z M 6.051553 0.000439644 " transform="matrix(0.997368,0,0,-0.997368,21.812028,84.004345)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="12.994713" y="78.705326"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-2" x="18.247853" y="80.195395"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 48 KiB |
BIN
figs/control_architecture_iff_struts.pdf
Normal file
BIN
figs/control_architecture_iff_struts.png
Normal file
After Width: | Height: | Size: 7.7 KiB |
156
figs/control_architecture_iff_struts.svg
Normal file
@ -0,0 +1,156 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="192.996pt" height="99.37pt" viewBox="0 0 192.996 99.37" version="1.2">
|
||||
<defs>
|
||||
<g>
|
||||
<symbol overflow="visible" id="glyph0-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<path style="stroke:none;" d="M 6.1875 -4.921875 C 6.1875 -5.890625 5.203125 -6.765625 3.84375 -6.765625 L 0.34375 -6.765625 L 0.34375 -6.453125 L 0.578125 -6.453125 C 1.34375 -6.453125 1.359375 -6.34375 1.359375 -6 L 1.359375 -0.765625 C 1.359375 -0.421875 1.34375 -0.3125 0.578125 -0.3125 L 0.34375 -0.3125 L 0.34375 0 C 0.6875 -0.03125 1.421875 -0.03125 1.796875 -0.03125 C 2.171875 -0.03125 2.921875 -0.03125 3.265625 0 L 3.265625 -0.3125 L 3.03125 -0.3125 C 2.265625 -0.3125 2.25 -0.421875 2.25 -0.765625 L 2.25 -3.125 L 3.921875 -3.125 C 5.109375 -3.125 6.1875 -3.9375 6.1875 -4.921875 Z M 5.15625 -4.921875 C 5.15625 -4.453125 5.15625 -3.390625 3.59375 -3.390625 L 2.21875 -3.390625 L 2.21875 -6.0625 C 2.21875 -6.390625 2.234375 -6.453125 2.703125 -6.453125 L 3.59375 -6.453125 C 5.15625 -6.453125 5.15625 -5.40625 5.15625 -4.921875 Z M 5.15625 -4.921875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 2.53125 0 L 2.53125 -0.3125 C 1.859375 -0.3125 1.75 -0.3125 1.75 -0.75 L 1.75 -6.875 L 0.328125 -6.765625 L 0.328125 -6.453125 C 1.015625 -6.453125 1.09375 -6.390625 1.09375 -5.90625 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 Z M 2.53125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 4.78125 -0.875 L 4.78125 -1.4375 L 4.53125 -1.4375 L 4.53125 -0.875 C 4.53125 -0.3125 4.296875 -0.25 4.1875 -0.25 C 3.859375 -0.25 3.8125 -0.6875 3.8125 -0.75 L 3.8125 -2.71875 C 3.8125 -3.140625 3.8125 -3.53125 3.453125 -3.890625 C 3.078125 -4.28125 2.578125 -4.4375 2.09375 -4.4375 C 1.28125 -4.4375 0.609375 -3.96875 0.609375 -3.3125 C 0.609375 -3.015625 0.796875 -2.859375 1.0625 -2.859375 C 1.34375 -2.859375 1.515625 -3.046875 1.515625 -3.3125 C 1.515625 -3.421875 1.46875 -3.75 1.015625 -3.765625 C 1.28125 -4.109375 1.765625 -4.21875 2.078125 -4.21875 C 2.5625 -4.21875 3.125 -3.828125 3.125 -2.953125 L 3.125 -2.578125 C 2.625 -2.5625 1.9375 -2.53125 1.3125 -2.234375 C 0.5625 -1.890625 0.3125 -1.375 0.3125 -0.9375 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.5625 0.109375 3.015625 -0.28125 3.203125 -0.75 C 3.234375 -0.359375 3.5 0.0625 3.96875 0.0625 C 4.1875 0.0625 4.78125 -0.078125 4.78125 -0.875 Z M 3.125 -1.390625 C 3.125 -0.453125 2.421875 -0.109375 1.96875 -0.109375 C 1.484375 -0.109375 1.078125 -0.453125 1.078125 -0.953125 C 1.078125 -1.5 1.5 -2.3125 3.125 -2.375 Z M 3.125 -1.390625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 5.296875 0 L 5.296875 -0.3125 C 4.78125 -0.3125 4.53125 -0.3125 4.53125 -0.609375 L 4.53125 -2.5 C 4.53125 -3.34375 4.53125 -3.65625 4.21875 -4.015625 C 4.078125 -4.1875 3.75 -4.375 3.1875 -4.375 C 2.453125 -4.375 1.984375 -3.953125 1.71875 -3.34375 L 1.71875 -4.375 L 0.3125 -4.265625 L 0.3125 -3.96875 C 1.015625 -3.96875 1.09375 -3.890625 1.09375 -3.40625 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.546875 0 L 2.546875 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -2.578125 C 1.765625 -3.609375 2.484375 -4.15625 3.109375 -4.15625 C 3.734375 -4.15625 3.84375 -3.625 3.84375 -3.0625 L 3.84375 -0.75 C 3.84375 -0.3125 3.734375 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.1875 -0.03125 Z M 5.296875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 3.28125 -1.234375 L 3.28125 -1.796875 L 3.046875 -1.796875 L 3.046875 -1.25 C 3.046875 -0.515625 2.75 -0.140625 2.375 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.203125 L 1.71875 -3.96875 L 3.125 -3.96875 L 3.125 -4.265625 L 1.71875 -4.265625 L 1.71875 -6.09375 L 1.46875 -6.09375 C 1.453125 -5.28125 1.15625 -4.21875 0.1875 -4.1875 L 0.1875 -3.96875 L 1.03125 -3.96875 L 1.03125 -1.234375 C 1.03125 -0.015625 1.953125 0.109375 2.3125 0.109375 C 3.015625 0.109375 3.28125 -0.59375 3.28125 -1.234375 Z M 3.28125 -1.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-1">
|
||||
<path style="stroke:none;" d="M 5.828125 -4.15625 C 6.5 -4.625 8.3125 -5.90625 8.65625 -6.078125 C 8.890625 -6.203125 9.09375 -6.3125 9.59375 -6.328125 C 9.78125 -6.34375 9.9375 -6.34375 9.9375 -6.625 C 9.9375 -6.703125 9.859375 -6.796875 9.75 -6.796875 C 9.515625 -6.796875 9.21875 -6.765625 8.96875 -6.765625 C 8.5625 -6.765625 8.140625 -6.796875 7.734375 -6.796875 C 7.640625 -6.796875 7.453125 -6.796875 7.453125 -6.515625 C 7.453125 -6.328125 7.625 -6.328125 7.6875 -6.328125 C 7.765625 -6.328125 7.96875 -6.3125 8.140625 -6.265625 L 3.625 -3.140625 L 4.40625 -6.296875 C 4.625 -6.328125 4.96875 -6.328125 5.078125 -6.328125 C 5.203125 -6.328125 5.40625 -6.328125 5.453125 -6.359375 C 5.546875 -6.421875 5.5625 -6.609375 5.5625 -6.625 C 5.5625 -6.75 5.453125 -6.796875 5.34375 -6.796875 C 5.09375 -6.796875 4.828125 -6.78125 4.59375 -6.78125 C 4.34375 -6.78125 4.09375 -6.765625 3.84375 -6.765625 C 3.59375 -6.765625 3.328125 -6.78125 3.078125 -6.78125 C 2.828125 -6.78125 2.5625 -6.796875 2.296875 -6.796875 C 2.203125 -6.796875 2.015625 -6.796875 2.015625 -6.515625 C 2.015625 -6.328125 2.140625 -6.328125 2.421875 -6.328125 C 2.640625 -6.328125 2.828125 -6.3125 3.03125 -6.3125 L 1.609375 -0.65625 C 1.578125 -0.5 1.5625 -0.5 1.390625 -0.46875 C 1.21875 -0.46875 1.015625 -0.46875 0.859375 -0.46875 C 0.609375 -0.46875 0.578125 -0.46875 0.546875 -0.453125 C 0.421875 -0.375 0.421875 -0.21875 0.421875 -0.171875 C 0.421875 -0.15625 0.4375 0 0.640625 0 C 0.890625 0 1.15625 -0.015625 1.390625 -0.015625 C 1.640625 -0.015625 1.90625 -0.03125 2.15625 -0.03125 C 2.40625 -0.03125 2.671875 -0.015625 2.90625 -0.015625 C 3.171875 -0.015625 3.4375 0 3.6875 0 C 3.78125 0 3.859375 0 3.90625 -0.0625 C 3.953125 -0.125 3.96875 -0.265625 3.96875 -0.28125 C 3.96875 -0.46875 3.828125 -0.46875 3.5625 -0.46875 C 3.359375 -0.46875 3.171875 -0.46875 2.96875 -0.484375 L 3.484375 -2.546875 L 4.703125 -3.390625 L 6.1875 -0.53125 C 5.984375 -0.46875 5.6875 -0.46875 5.640625 -0.46875 C 5.515625 -0.46875 5.453125 -0.46875 5.40625 -0.390625 C 5.359375 -0.34375 5.34375 -0.203125 5.34375 -0.171875 C 5.34375 -0.171875 5.34375 0 5.546875 0 C 5.875 0 6.6875 -0.03125 7.015625 -0.03125 C 7.21875 -0.03125 7.4375 -0.015625 7.640625 -0.015625 C 7.84375 -0.015625 8.046875 0 8.234375 0 C 8.3125 0 8.515625 0 8.515625 -0.28125 C 8.515625 -0.46875 8.34375 -0.46875 8.1875 -0.46875 C 7.734375 -0.46875 7.71875 -0.5 7.640625 -0.65625 Z M 5.828125 -4.15625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<path style="stroke:none;" d="M 3.453125 -3.453125 L 5.296875 -3.453125 C 5.5 -3.453125 5.625 -3.453125 5.78125 -3.59375 C 5.984375 -3.765625 5.984375 -4 5.984375 -4.015625 C 5.984375 -4.390625 5.625 -4.390625 5.453125 -4.390625 L 2.203125 -4.390625 C 1.984375 -4.390625 1.5625 -4.390625 1.046875 -3.921875 C 0.6875 -3.609375 0.3125 -3.09375 0.3125 -3 C 0.3125 -2.859375 0.421875 -2.859375 0.53125 -2.859375 C 0.6875 -2.859375 0.6875 -2.875 0.78125 -2.984375 C 1.15625 -3.453125 1.8125 -3.453125 2 -3.453125 L 2.890625 -3.453125 L 2.53125 -2.390625 C 2.453125 -2.15625 2.234375 -1.515625 2.15625 -1.265625 C 2.046875 -0.953125 1.859375 -0.421875 1.859375 -0.3125 C 1.859375 -0.046875 2.078125 0.125 2.3125 0.125 C 2.390625 0.125 2.890625 0.125 2.984375 -0.53125 Z M 3.453125 -3.453125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-3">
|
||||
<path style="stroke:none;" d="M 5.578125 -3.140625 C 5.640625 -3.421875 5.765625 -3.890625 5.765625 -3.96875 C 5.765625 -4.171875 5.609375 -4.390625 5.296875 -4.390625 C 5.140625 -4.390625 4.78125 -4.3125 4.640625 -3.875 C 4.609375 -3.734375 4.15625 -1.9375 4.078125 -1.609375 C 4.015625 -1.390625 3.953125 -1.09375 3.9375 -0.921875 C 3.75 -0.6875 3.375 -0.28125 2.859375 -0.28125 C 2.28125 -0.28125 2.265625 -0.765625 2.265625 -1 C 2.265625 -1.609375 2.578125 -2.375 2.859375 -3.09375 C 2.953125 -3.34375 2.984375 -3.421875 2.984375 -3.59375 C 2.984375 -4.15625 2.40625 -4.484375 1.859375 -4.484375 C 0.8125 -4.484375 0.3125 -3.125 0.3125 -2.9375 C 0.3125 -2.796875 0.46875 -2.796875 0.5625 -2.796875 C 0.671875 -2.796875 0.75 -2.796875 0.78125 -2.921875 C 1.109375 -4.015625 1.640625 -4.125 1.796875 -4.125 C 1.875 -4.125 1.96875 -4.125 1.96875 -3.90625 C 1.96875 -3.6875 1.859375 -3.40625 1.8125 -3.28125 C 1.390625 -2.25 1.203125 -1.6875 1.203125 -1.203125 C 1.203125 -0.078125 2.203125 0.078125 2.78125 0.078125 C 3.078125 0.078125 3.5 0.046875 4.046875 -0.46875 C 4.359375 0.015625 4.9375 0.078125 5.171875 0.078125 C 5.53125 0.078125 5.828125 -0.125 6.03125 -0.484375 C 6.28125 -0.875 6.40625 -1.421875 6.40625 -1.46875 C 6.40625 -1.609375 6.265625 -1.609375 6.171875 -1.609375 C 6.0625 -1.609375 6.015625 -1.609375 5.96875 -1.5625 C 5.953125 -1.53125 5.953125 -1.515625 5.890625 -1.265625 C 5.703125 -0.5 5.484375 -0.28125 5.21875 -0.28125 C 5.078125 -0.28125 5 -0.375 5 -0.640625 C 5 -0.8125 5.03125 -0.96875 5.125 -1.359375 C 5.203125 -1.640625 5.296875 -2.046875 5.34375 -2.265625 Z M 5.578125 -3.140625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-1">
|
||||
<path style="stroke:none;" d="M 2.515625 0 L 2.515625 -0.25 L 2.328125 -0.25 C 1.765625 -0.25 1.765625 -0.328125 1.765625 -0.5625 L 1.765625 -4.171875 C 1.765625 -4.40625 1.765625 -4.484375 2.328125 -4.484375 L 2.515625 -4.484375 L 2.515625 -4.734375 L 1.4375 -4.703125 L 0.359375 -4.734375 L 0.359375 -4.484375 L 0.53125 -4.484375 C 1.109375 -4.484375 1.109375 -4.40625 1.109375 -4.171875 L 1.109375 -0.5625 C 1.109375 -0.328125 1.109375 -0.25 0.53125 -0.25 L 0.359375 -0.25 L 0.359375 0 L 1.421875 -0.03125 Z M 2.515625 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-2">
|
||||
<path style="stroke:none;" d="M 4.734375 -3.109375 L 4.515625 -4.703125 L 0.390625 -4.703125 L 0.390625 -4.453125 L 0.5625 -4.453125 C 1.09375 -4.453125 1.109375 -4.390625 1.109375 -4.15625 L 1.109375 -0.5625 C 1.109375 -0.328125 1.09375 -0.25 0.5625 -0.25 L 0.390625 -0.25 L 0.390625 0 L 1.4375 -0.03125 L 2.65625 0 L 2.65625 -0.25 L 2.421875 -0.25 C 1.765625 -0.25 1.765625 -0.34375 1.765625 -0.5625 L 1.765625 -2.234375 L 2.4375 -2.234375 C 3.125 -2.234375 3.21875 -2.03125 3.21875 -1.421875 L 3.46875 -1.421875 L 3.46875 -3.296875 L 3.21875 -3.296875 C 3.21875 -2.703125 3.125 -2.484375 2.4375 -2.484375 L 1.765625 -2.484375 L 1.765625 -4.1875 C 1.765625 -4.40625 1.765625 -4.453125 2.09375 -4.453125 L 3.0625 -4.453125 C 4.1875 -4.453125 4.375 -4.09375 4.5 -3.109375 Z M 4.734375 -3.109375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-1">
|
||||
<path style="stroke:none;" d="M 11.515625 -4.265625 C 11.515625 -4.5625 11.234375 -4.5625 10.984375 -4.5625 L 6.453125 -4.5625 L 6.453125 -9.109375 C 6.453125 -9.34375 6.453125 -9.625 6.15625 -9.625 C 5.84375 -9.625 5.84375 -9.359375 5.84375 -9.109375 L 5.84375 -4.5625 L 1.3125 -4.5625 C 1.078125 -4.5625 0.78125 -4.5625 0.78125 -4.28125 C 0.78125 -3.96875 1.0625 -3.96875 1.3125 -3.96875 L 5.84375 -3.96875 L 5.84375 0.5625 C 5.84375 0.796875 5.84375 1.09375 6.140625 1.09375 C 6.453125 1.09375 6.453125 0.828125 6.453125 0.5625 L 6.453125 -3.96875 L 10.984375 -3.96875 C 11.21875 -3.96875 11.515625 -3.96875 11.515625 -4.265625 Z M 11.515625 -4.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-1">
|
||||
<path style="stroke:none;" d="M 6.6875 -0.984375 C 6.6875 -1.078125 6.609375 -1.078125 6.578125 -1.078125 C 6.484375 -1.078125 6.484375 -1.046875 6.453125 -0.96875 C 6.296875 -0.40625 6 -0.125 5.71875 -0.125 C 5.578125 -0.125 5.546875 -0.21875 5.546875 -0.375 C 5.546875 -0.53125 5.578125 -0.625 5.703125 -0.921875 C 5.78125 -1.140625 6.078125 -1.875 6.078125 -2.265625 C 6.078125 -2.375 6.078125 -2.671875 5.8125 -2.875 C 5.703125 -2.96875 5.5 -3.0625 5.171875 -3.0625 C 4.546875 -3.0625 4.15625 -2.65625 3.9375 -2.359375 C 3.890625 -2.953125 3.390625 -3.0625 3.03125 -3.0625 C 2.46875 -3.0625 2.078125 -2.703125 1.859375 -2.421875 C 1.8125 -2.90625 1.40625 -3.0625 1.125 -3.0625 C 0.828125 -3.0625 0.671875 -2.84375 0.578125 -2.6875 C 0.421875 -2.421875 0.328125 -2.03125 0.328125 -2 C 0.328125 -1.90625 0.421875 -1.90625 0.4375 -1.90625 C 0.546875 -1.90625 0.546875 -1.921875 0.59375 -2.109375 C 0.703125 -2.53125 0.828125 -2.859375 1.109375 -2.859375 C 1.28125 -2.859375 1.328125 -2.71875 1.328125 -2.53125 C 1.328125 -2.390625 1.265625 -2.140625 1.21875 -1.953125 L 1.0625 -1.328125 L 0.84375 -0.4375 C 0.8125 -0.34375 0.78125 -0.171875 0.78125 -0.15625 C 0.78125 0 0.90625 0.0625 1.015625 0.0625 C 1.140625 0.0625 1.25 -0.015625 1.28125 -0.078125 C 1.3125 -0.140625 1.375 -0.375 1.40625 -0.515625 L 1.5625 -1.140625 C 1.609375 -1.296875 1.640625 -1.4375 1.671875 -1.609375 C 1.75 -1.890625 1.765625 -1.9375 1.96875 -2.234375 C 2.171875 -2.5 2.484375 -2.859375 3.015625 -2.859375 C 3.40625 -2.859375 3.421875 -2.515625 3.421875 -2.375 C 3.421875 -2.203125 3.40625 -2.109375 3.296875 -1.734375 L 3.015625 -0.5625 C 2.96875 -0.421875 2.90625 -0.1875 2.90625 -0.15625 C 2.90625 0 3.03125 0.0625 3.15625 0.0625 C 3.28125 0.0625 3.390625 -0.015625 3.421875 -0.078125 C 3.453125 -0.140625 3.515625 -0.375 3.546875 -0.515625 L 3.703125 -1.140625 C 3.734375 -1.296875 3.78125 -1.4375 3.8125 -1.609375 C 3.890625 -1.90625 3.890625 -1.921875 4.03125 -2.125 C 4.25 -2.46875 4.59375 -2.859375 5.140625 -2.859375 C 5.53125 -2.859375 5.546875 -2.546875 5.546875 -2.375 C 5.546875 -1.96875 5.25 -1.1875 5.140625 -0.90625 C 5.0625 -0.703125 5.03125 -0.640625 5.03125 -0.53125 C 5.03125 -0.15625 5.34375 0.0625 5.703125 0.0625 C 6.390625 0.0625 6.6875 -0.890625 6.6875 -0.984375 Z M 6.6875 -0.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-1">
|
||||
<path style="stroke:none;" d="M 4.9375 -1.421875 C 4.9375 -1.515625 4.84375 -1.515625 4.8125 -1.515625 C 4.71875 -1.515625 4.703125 -1.46875 4.671875 -1.34375 C 4.5 -0.6875 4.328125 -0.109375 3.921875 -0.109375 C 3.65625 -0.109375 3.625 -0.359375 3.625 -0.5625 C 3.625 -0.796875 3.640625 -0.875 3.6875 -1.046875 L 5.109375 -6.765625 C 5.109375 -6.765625 5.109375 -6.875 4.984375 -6.875 C 4.828125 -6.875 3.890625 -6.78125 3.71875 -6.765625 C 3.640625 -6.75 3.59375 -6.703125 3.59375 -6.578125 C 3.59375 -6.453125 3.671875 -6.453125 3.828125 -6.453125 C 4.296875 -6.453125 4.3125 -6.390625 4.3125 -6.296875 L 4.296875 -6.09375 L 3.6875 -3.75 C 3.515625 -4.109375 3.234375 -4.375 2.78125 -4.375 C 1.625 -4.375 0.390625 -2.921875 0.390625 -1.46875 C 0.390625 -0.546875 0.9375 0.109375 1.71875 0.109375 C 1.90625 0.109375 2.40625 0.0625 3 -0.640625 C 3.078125 -0.21875 3.421875 0.109375 3.90625 0.109375 C 4.25 0.109375 4.484375 -0.125 4.640625 -0.4375 C 4.796875 -0.796875 4.9375 -1.421875 4.9375 -1.421875 Z M 3.546875 -3.125 L 3.046875 -1.171875 C 3 -1 3 -0.984375 2.859375 -0.8125 C 2.421875 -0.265625 2.015625 -0.109375 1.734375 -0.109375 C 1.234375 -0.109375 1.09375 -0.65625 1.09375 -1.046875 C 1.09375 -1.53125 1.421875 -2.75 1.640625 -3.203125 C 1.953125 -3.796875 2.390625 -4.15625 2.796875 -4.15625 C 3.4375 -4.15625 3.578125 -3.34375 3.578125 -3.28125 C 3.578125 -3.234375 3.5625 -3.171875 3.546875 -3.125 Z M 3.546875 -3.125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-1">
|
||||
<path style="stroke:none;" d="M 7.4375 -1.53125 C 7.4375 -1.640625 7.3125 -1.65625 7.265625 -1.65625 C 6.96875 -1.65625 6.109375 -1.265625 6 -0.75 C 5.515625 -0.75 5.15625 -0.796875 4.375 -0.953125 C 4 -1.015625 3.21875 -1.171875 2.65625 -1.171875 C 2.578125 -1.171875 2.46875 -1.171875 2.390625 -1.15625 C 2.71875 -1.71875 2.84375 -2.171875 3.015625 -2.828125 C 3.203125 -3.609375 3.609375 -5.015625 4.359375 -5.859375 C 4.484375 -6 4.53125 -6.046875 4.78125 -6.046875 C 5.234375 -6.046875 5.421875 -5.6875 5.421875 -5.359375 C 5.421875 -5.25 5.390625 -5.140625 5.390625 -5.109375 C 5.390625 -5 5.515625 -4.96875 5.5625 -4.96875 C 5.703125 -4.96875 6 -5.046875 6.375 -5.3125 C 6.78125 -5.578125 6.828125 -5.75 6.828125 -6.046875 C 6.828125 -6.546875 6.53125 -6.96875 5.859375 -6.96875 C 5.234375 -6.96875 4.34375 -6.65625 3.53125 -5.9375 C 2.390625 -4.9375 1.890625 -3.3125 1.609375 -2.171875 C 1.453125 -1.578125 1.25 -0.78125 0.828125 -0.453125 C 0.71875 -0.359375 0.390625 -0.109375 0.390625 0.046875 C 0.390625 0.15625 0.5 0.171875 0.5625 0.171875 C 0.640625 0.171875 0.9375 0.15625 1.5 -0.25 C 1.859375 -0.25 2.203125 -0.234375 3.09375 -0.0625 C 3.546875 0.03125 4.265625 0.171875 4.828125 0.171875 C 6.15625 0.171875 7.4375 -1 7.4375 -1.53125 Z M 7.4375 -1.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph7-1">
|
||||
<path style="stroke:none;" d="M 2.078125 -3.5 C 2.078125 -3.71875 1.890625 -3.875 1.671875 -3.875 C 1.390625 -3.875 1.3125 -3.65625 1.296875 -3.5625 L 0.375 -0.5625 L 0.328125 -0.4375 C 0.328125 -0.359375 0.546875 -0.28125 0.609375 -0.28125 C 0.65625 -0.28125 0.6875 -0.3125 0.703125 -0.390625 L 2.015625 -3.28125 C 2.046875 -3.34375 2.078125 -3.40625 2.078125 -3.5 Z M 2.078125 -3.5 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
<clipPath id="clip1">
|
||||
<path d="M 77 40 L 164 40 L 164 98.742188 L 77 98.742188 Z M 77 40 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip2">
|
||||
<path d="M 171 42 L 192.386719 42 L 192.386719 74 L 171 74 Z M 171 42 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip3">
|
||||
<path d="M 171 65 L 192.386719 65 L 192.386719 97 L 171 97 Z M 171 65 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 78.226562 97.753906 L 162.730469 97.753906 L 162.730469 41.414062 L 78.226562 41.414062 Z M 78.226562 97.753906 "/>
|
||||
<g clip-path="url(#clip1)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -42.521277 -28.34866 L 42.518379 -28.34866 L 42.518379 28.348375 L -42.521277 28.348375 Z M -42.521277 -28.34866 " transform="matrix(0.9937,0,0,-0.9937,120.479956,69.583842)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="108.723491" y="72.994221"/>
|
||||
<use xlink:href="#glyph0-2" x="115.461319" y="72.994221"/>
|
||||
<use xlink:href="#glyph0-3" x="118.211494" y="72.994221"/>
|
||||
<use xlink:href="#glyph0-4" x="123.161411" y="72.994221"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-5" x="128.384565" y="72.994221"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.008987 40.67997 L 17.01002 40.67997 L 17.01002 69.026522 L -17.008987 69.026522 Z M -17.008987 40.67997 " transform="matrix(0.9937,0,0,-0.9937,120.479956,69.583842)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="108.886458" y="17.729595"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="118.501499" y="19.214183"/>
|
||||
<use xlink:href="#glyph2-2" x="121.361454" y="19.214183"/>
|
||||
<use xlink:href="#glyph2-2" x="126.469458" y="19.214183"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -71.367068 0.00182273 C -71.367068 5.501313 -75.82484 9.963016 -81.328261 9.963016 C -86.831683 9.963016 -91.289454 5.501313 -91.289454 0.00182273 C -91.289454 -5.501599 -86.831683 -9.963301 -81.328261 -9.963301 C -75.82484 -9.963301 -71.367068 -5.501599 -71.367068 0.00182273 Z M -71.367068 0.00182273 " transform="matrix(0.9937,0,0,-0.9937,120.479956,69.583842)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="33.508351" y="73.72459"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.017618 11.539353 L 66.733434 11.539353 " transform="matrix(0.9937,0,0,-0.9937,120.479956,69.583842)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 189.984375 58.117188 L 185.570312 56.445312 L 187.039062 58.117188 L 185.570312 59.792969 Z M 189.984375 58.117188 "/>
|
||||
<g clip-path="url(#clip2)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052003 0.00154292 L 1.609956 1.684018 L 3.088018 0.00154292 L 1.609956 -1.684863 Z M 6.052003 0.00154292 " transform="matrix(0.9937,0,0,-0.9937,183.970499,58.118721)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-2" x="174.923785" y="66.313576"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="180.080094" y="67.799157"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.017618 -11.539638 L 66.733434 -11.539638 " transform="matrix(0.9937,0,0,-0.9937,120.479956,69.583842)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 189.984375 81.050781 L 185.570312 79.375 L 187.039062 81.050781 L 185.570312 82.722656 Z M 189.984375 81.050781 "/>
|
||||
<g clip-path="url(#clip3)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052003 -0.00182847 L 1.609956 1.684577 L 3.088018 -0.00182847 L 1.609956 -1.684303 Z M 6.052003 -0.00182847 " transform="matrix(0.9937,0,0,-0.9937,183.970499,81.048964)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-1" x="167.124234" y="91.71851"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph6-1" x="172.276568" y="91.71851"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="180.080094" y="93.204091"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.027121 11.539353 L 60.027121 54.855212 L 22.139995 54.855212 " transform="matrix(0.9937,0,0,-0.9937,120.479956,69.583842)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053836 -0.000181583 L 1.607857 1.682293 L 3.085919 -0.000181583 L 1.607857 -1.682656 Z M 6.053836 -0.000181583 " transform="matrix(-0.9937,0,0,0.9937,145.300853,15.074399)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 182.109375 58.117188 C 182.109375 57.023438 181.222656 56.140625 180.128906 56.140625 C 179.035156 56.140625 178.148438 57.023438 178.148438 58.117188 C 178.148438 59.210938 179.035156 60.097656 180.128906 60.097656 C 181.222656 60.097656 182.109375 59.210938 182.109375 58.117188 Z M 182.109375 58.117188 "/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.504295 54.855212 L -81.328261 54.855212 L -81.328261 14.597683 " transform="matrix(0.9937,0,0,-0.9937,120.479956,69.583842)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052728 -0.000351346 L 1.61068 1.682123 L 3.088742 -0.000351346 L 1.61068 -1.682826 Z M 6.052728 -0.000351346 " transform="matrix(0,0.9937,0.9937,0,39.664412,52.258842)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -71.367068 0.00182273 L -47.651252 0.00182273 " transform="matrix(0.9937,0,0,-0.9937,120.479956,69.583842)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054738 0.00182273 L 1.60876 1.684297 L 3.086822 0.00182273 L 1.60876 -1.684583 Z M 6.054738 0.00182273 " transform="matrix(0.9937,0,0,-0.9937,70.307625,69.583842)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="67.196768" y="65.789896"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -95.924122 0.00182273 L -119.636006 0.00182273 " transform="matrix(0.9937,0,0,-0.9937,120.479956,69.583842)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054209 0.00182273 L 1.608231 1.684297 L 3.086292 0.00182273 L 1.608231 -1.684583 Z M 6.054209 0.00182273 " transform="matrix(0.9937,0,0,-0.9937,22.339401,69.583842)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="5.392603" y="65.789896"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph7-1" x="12.134857" y="62.196677"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 25 KiB |
BIN
figs/damped_iff_plant_comp_diagonal.pdf
Normal file
BIN
figs/damped_iff_plant_comp_diagonal.png
Normal file
After Width: | Height: | Size: 160 KiB |