Initial commit

main
commit a7f5911bc5

@ -0,0 +1,61 @@
# Sigil Generator
Generates graphical sigil from a statement on a 3x3 cipher grid.[^1]
Example for the phrase: "bind billionaires who fly to the upper sky from coming back to earth"
![drawing of the sigil on a 3x3 grid](full_sigil_bindloareswhfytupkmcg.svg)
[^1]: Jackson, M.B. *Sigils, Ciphers and Scripts: History and Graphic Function of Magick Symbols.* Somerset, England: Green Magic, 2013.
## Installation
The Python scripts are written for [Shoebot](http://shoebot.net/), follow [instructions](https://docs.shoebot.net/install.html) to install it.
(Shoebot is a rewrite of [Nodebox 1](https://www.nodebox.net/code/index.php/Home) so the scripts might work in there and/or in [Drawbot](https://www.drawbot.com/) with some adjustments)
Additional dependencies:
- [Atom](https://atom.io/) code editor with the [Shoebot extension](https://docs.shoebot.net/extensions.html#atom-extension) (optional, Shoebot needs to be installed first for this to work)
- [Basteleur](https://www.velvetyne.fr/fonts/basteleur/) font from Velvetyne
## Usage
### Sigil generator
[`full_sigil.py`](./full_sigil.py) generates a diagram on a 3x3 Grid.
1. Initial statement phrase e.g. "bind billionaires who fly to the upper sky from coming back to earth"
⬇️
2. Strip the phrase of duplicate letters (see [`sigil_letters.py`](./sigil_letters.py)) e.g. "bindloareswhfytupkmcg"
⬇️
3. Connect the letters on this grid
![The 3x3 letter grid](full_sigil_grid.svg)
⬇️
4. Result
![Sigil line on top of the grid](full_sigil_bindloareswhfytupkmcg.svg)
### Animation
To produce animations, use the [`plain_sigil.py`](./plain_sigil.py) script.
1. Save the output as `.svg` like [`plain_sigil.svg`](./plain_sigil.svg)
2. Copy the `<path>` part like the one below and paste it to replace the similar one in [`index.html`](animation/index.html)
```svg
<path style="fill:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0.784314%,8.235294%,70.196078%);stroke-opacity:1;stroke-miterlimit:10;" d="M 150 50 L 250 250 L 150 150 L 50 150 L 250 50 L 250 150 L 50 50 L 250 250 L 50 50 L 150 150 L 150 250 L 250 150 L 50 250 L 150 50 L 250 50 L 50 250 L 150 50 L 50 150 L 250 50 L 50 250 "/>
```
3. Adjust the path length as indicated in the file comments so the animation runs draws the whole line.
4. Open [`index.html`](animation/index.html)
![](animation/animation_dark.gif)

Binary file not shown.

After

Width:  |  Height:  |  Size: 354 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

@ -0,0 +1,33 @@
<html>
<head>
<link rel="stylesheet" href="style.css">
<style media="screen">
html {
background-color: black;
}
.sigil {
stroke-dasharray: 3662; /* path total length: see below how to get this */
stroke-dashoffset: 3662;
animation: dash 5s linear forwards;
}
@keyframes dash {
to {
stroke-dashoffset: 0;
}
}
</style>
</head>
<!-- get the total length of the path in the console type -->
<!-- document.getElementById('line').getTotalLength() -->
<body>
<svg width="300pt" height="300pt" viewBox="0 0 300 300" version="1.2">
<path id="line" class="sigil" style="fill:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke:#c139b6;stroke-opacity:1;stroke-miterlimit:10;" d="M 150 50 L 250 250 L 150 150 L 50 150 L 250 50 L 250 150 L 50 50 L 250 250 L 50 50 L 150 150 L 150 250 L 250 150 L 50 250 L 150 50 L 250 50 L 50 250 L 150 50 L 50 150 L 250 50 L 50 250 "/>
</svg>
</body>
</html>

@ -0,0 +1,60 @@
from collections import OrderedDict
size(300,300)
str = "bind billionaires who fly to the upper sky from coming back to earth"
strp = str.replace(" ", "")
spell = "".join(OrderedDict.fromkeys(strp))
fg_col = '#c139b6'
bg_col = '#0215b3'
background(0)
fill(None)
stroke(bg_col)
ellipsemode(CENTER)
strokewidth(0.5)
cipher_grid = 3
cell_size = WIDTH/cipher_grid
i = 0
cell_letters = ["ajs", "bkt", "clu", "dmv", "enw", "fox", "gpy", "hqz", "ir"]
cell_positions = []
font("Basteleur")
for x,y in grid(cipher_grid,cipher_grid,cell_size,cell_size):
rect(x,y,cell_size,cell_size)
half_cell = cell_size/2
cell_pos = (x+half_cell,y+half_cell)
cell_positions.append(cell_pos)
fill(bg_col)
ellipse(cell_pos[0], cell_pos[1], 5, 5)
text(cell_letters[i], x+5, y+15)
i += 1
fill(None)
# Sigil line
stroke(fg_col)
strokewidth(2)
spell_cells = []
for letter in spell:
for cell in cell_letters:
if letter in cell:
spell_cells.append(cell_letters.index(cell))
first_letter = spell_cells.pop(0)
first_pos = cell_positions[first_letter]
autoclosepath(close=False)
beginpath(first_pos[0],first_pos[1])
for cell in spell_cells:
pos = cell_positions[cell]
lineto(pos[0], pos[1])
endpath()

@ -0,0 +1,160 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="300pt" height="300pt" viewBox="0 0 300 300" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 2.1875 0.15625 C 3.15625 0.15625 4.125 0 5.09375 0 C 6.046875 0 6.984375 0.15625 7.953125 0.15625 C 8.75 0.15625 9.34375 -0.4375 9.34375 -1.234375 C 9.34375 -2.78125 9.1875 -3.375 9.1875 -6.046875 C 9.1875 -8.765625 9.34375 -9.40625 9.34375 -11.015625 C 9.34375 -11.8125 8.75 -12.40625 7.953125 -12.40625 C 6.984375 -12.40625 6.046875 -12.234375 5.09375 -12.234375 C 4.125 -12.234375 3.15625 -12.40625 2.1875 -12.40625 C 1.390625 -12.40625 0.796875 -11.8125 0.796875 -11.015625 C 0.796875 -9.40625 0.953125 -8.765625 0.953125 -6.046875 C 0.953125 -3.375 0.796875 -2.78125 0.796875 -1.234375 C 0.796875 -0.4375 1.390625 0.15625 2.1875 0.15625 Z M 2.59375 -2.0625 L 2.59375 -10.171875 C 2.59375 -10.34375 2.71875 -10.46875 2.875 -10.46875 L 7.265625 -10.46875 C 7.421875 -10.46875 7.546875 -10.34375 7.546875 -10.171875 L 7.546875 -2.0625 C 7.546875 -1.90625 7.421875 -1.78125 7.265625 -1.78125 L 2.875 -1.78125 C 2.71875 -1.78125 2.59375 -1.90625 2.59375 -2.0625 Z M 3.859375 -5.359375 C 3.859375 -5.265625 3.921875 -5.125 3.984375 -4.90625 C 4.0625 -4.71875 4.125 -4.59375 4.234375 -4.59375 C 4.421875 -4.59375 4.421875 -4.734375 4.46875 -4.953125 C 4.546875 -5.390625 4.796875 -5.546875 5.234375 -5.546875 C 5.515625 -5.546875 5.75 -5.40625 5.796875 -5.21875 C 5.828125 -5.046875 5.65625 -4.890625 5.125 -4.640625 C 4.828125 -4.5 4.65625 -4.359375 4.65625 -4.171875 C 4.65625 -3.984375 4.875 -3.84375 5.03125 -3.765625 C 5.125 -3.71875 5.203125 -3.703125 5.234375 -3.75 C 5.296875 -3.84375 5.109375 -4.03125 5.359375 -4.140625 C 5.953125 -4.40625 6.40625 -4.640625 6.40625 -5.09375 C 6.40625 -5.609375 5.875 -5.90625 5.234375 -5.90625 C 4.59375 -5.90625 4.5 -5.65625 4 -5.515625 C 3.90625 -5.484375 3.859375 -5.4375 3.859375 -5.359375 Z M 3.859375 -9.109375 C 3.859375 -9.015625 3.921875 -8.859375 3.984375 -8.65625 C 4.0625 -8.46875 4.125 -8.34375 4.234375 -8.34375 C 4.421875 -8.34375 4.421875 -8.484375 4.46875 -8.703125 C 4.546875 -9.140625 4.796875 -9.296875 5.234375 -9.296875 C 5.515625 -9.296875 5.75 -9.15625 5.796875 -8.953125 C 5.828125 -8.78125 5.65625 -8.640625 5.125 -8.390625 C 4.828125 -8.234375 4.65625 -8.09375 4.65625 -7.921875 C 4.65625 -7.734375 4.875 -7.578125 5.03125 -7.5 C 5.125 -7.453125 5.203125 -7.4375 5.234375 -7.484375 C 5.296875 -7.578125 5.109375 -7.78125 5.359375 -7.890625 C 5.953125 -8.140625 6.40625 -8.390625 6.40625 -8.828125 C 6.40625 -9.359375 5.875 -9.640625 5.234375 -9.640625 C 4.59375 -9.640625 4.5 -9.40625 4 -9.265625 C 3.90625 -9.234375 3.859375 -9.1875 3.859375 -9.109375 Z M 4.671875 -3.125 C 4.671875 -2.859375 4.875 -2.65625 5.140625 -2.65625 C 5.390625 -2.65625 5.59375 -2.859375 5.59375 -3.125 C 5.59375 -3.359375 5.390625 -3.5625 5.140625 -3.5625 C 4.875 -3.5625 4.671875 -3.359375 4.671875 -3.125 Z M 4.671875 -6.859375 C 4.671875 -6.609375 4.875 -6.40625 5.140625 -6.40625 C 5.390625 -6.40625 5.59375 -6.609375 5.59375 -6.859375 C 5.59375 -7.109375 5.390625 -7.3125 5.140625 -7.3125 C 4.875 -7.3125 4.671875 -7.109375 4.671875 -6.859375 Z M 4.671875 -6.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 9.09375 0.109375 C 9.78125 0.109375 10.40625 -0.53125 10.40625 -1.0625 C 10.40625 -1.59375 9.421875 -2.34375 8.734375 -3.921875 C 8.125 -5.328125 8.03125 -6 8.5625 -6.859375 C 9.109375 -7.75 9.78125 -8.203125 9.25 -8.734375 C 8.875 -9.109375 7.84375 -8.796875 6.828125 -8.296875 C 6.046875 -8.890625 5.234375 -9.203125 4 -9.203125 C 2.390625 -9.203125 0.953125 -8.40625 0.984375 -7.984375 C 1.03125 -7.578125 1.296875 -7.28125 1.859375 -7.296875 C 2.609375 -7.328125 3.6875 -7.40625 4.59375 -7.046875 C 1.1875 -5.171875 -0.296875 -1.234375 1.28125 -0.046875 C 2.34375 0.734375 5.09375 -0.390625 6.484375 -2.546875 C 6.96875 -0.765625 8.046875 0.109375 9.09375 0.109375 Z M 3.734375 -2.609375 C 3.28125 -2.921875 3.484375 -3.75 4.21875 -4.65625 C 4.78125 -5.359375 5.234375 -5.765625 5.71875 -6.078125 C 6.140625 -5.296875 6.03125 -4.234375 5.46875 -3.453125 C 4.828125 -2.578125 4.15625 -2.296875 3.734375 -2.609375 Z M 3.734375 -2.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 1.140625 4.125 C 2.828125 3.328125 4.984375 1.5625 5.046875 0.765625 C 5.09375 0.078125 4.703125 -0.453125 4.703125 -3.328125 C 4.703125 -5.828125 4.84375 -6.265625 5.015625 -6.90625 C 5.15625 -7.515625 5.34375 -8.296875 4.890625 -8.71875 C 4.515625 -9.078125 4.0625 -9.03125 2.9375 -8.359375 C 2.21875 -7.921875 1.5 -7.6875 1.125 -7.390625 C 0.78125 -7.140625 0.625 -6.78125 0.828125 -6.4375 C 1.28125 -5.6875 2.375 -6.125 2.375 -1.96875 C 2.375 0.34375 1.6875 1.453125 1.234375 1.9375 C 0.65625 2.546875 0 2.78125 0 3.53125 C 0 3.953125 0.59375 4.390625 1.140625 4.125 Z M 1.71875 -11.796875 C 1.71875 -10.84375 2.484375 -10.078125 3.421875 -10.078125 C 4.390625 -10.078125 5.15625 -10.84375 5.15625 -11.796875 C 5.15625 -12.71875 4.390625 -13.484375 3.421875 -13.484375 C 2.484375 -13.484375 1.71875 -12.71875 1.71875 -11.796875 Z M 1.71875 -11.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 4.65625 0.234375 C 7.078125 0.234375 8.921875 -0.734375 8.921875 -2.484375 C 8.921875 -4.15625 7.609375 -5.015625 5.359375 -5.6875 C 3.84375 -6.125 3.296875 -6.453125 3.296875 -6.9375 C 3.296875 -7.46875 3.734375 -7.75 4.578125 -7.75 C 5.46875 -7.75 6.421875 -7.265625 6.859375 -6.546875 C 7.203125 -6 7.59375 -5.265625 8.09375 -5.46875 C 8.5625 -5.65625 8.3125 -6.265625 8.28125 -6.96875 C 8.25 -7.734375 8.296875 -8.15625 8.3125 -8.390625 C 8.359375 -8.765625 8.0625 -8.765625 7.515625 -8.75 C 6.765625 -8.734375 6.15625 -9.046875 4.84375 -9.046875 C 3.140625 -9.046875 0.796875 -8.359375 0.796875 -6.25 C 0.796875 -4.625 1.953125 -3.6875 4.03125 -3.046875 C 5.71875 -2.53125 6.453125 -2.265625 6.453125 -1.84375 C 6.453125 -1.328125 5.84375 -1.15625 5.03125 -1.15625 C 3.921875 -1.15625 2.78125 -1.8125 2.3125 -2.421875 C 1.921875 -2.9375 1.578125 -3.609375 1.09375 -3.40625 C 0.625 -3.21875 0.859375 -2.6875 0.890625 -1.984375 C 0.90625 -1.546875 0.890625 -1.046875 0.859375 -0.734375 C 0.828125 -0.40625 0.984375 -0.21875 1.359375 -0.125 C 2.421875 0.140625 3.34375 0.234375 4.65625 0.234375 Z M 4.65625 0.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 6.453125 0.234375 C 9.03125 0.234375 11.09375 -1.734375 11.09375 -4.421875 C 11.09375 -6.96875 9.1875 -9.0625 6.765625 -9.0625 C 5.484375 -9.0625 4.75 -8.484375 4.265625 -7.828125 C 4.34375 -11.546875 5.15625 -12.625 4.609375 -13.125 C 4.015625 -13.65625 3.1875 -12.8125 2.140625 -12.4375 C 0.453125 -11.8125 -0.203125 -11.921875 0.0625 -11.078125 C 0.34375 -10.234375 1.9375 -11.453125 1.9375 -8.609375 L 1.9375 -5.359375 C 1.9375 -4.015625 1.765625 -2.96875 1.4375 -2.484375 C 0.625 -1.203125 0.0625 -0.921875 0.703125 -0.28125 C 1.328125 0.34375 1.90625 0.109375 3.5625 -1.03125 C 4.25 -0.234375 5.21875 0.234375 6.453125 0.234375 Z M 4.28125 -4.546875 C 4.1875 -6.296875 4.5625 -7.421875 5.703125 -7.375 C 7.21875 -7.3125 7.96875 -5.4375 8.03125 -3.859375 C 8.09375 -2.296875 7.609375 -1.265625 6.59375 -1.28125 C 5.265625 -1.296875 4.390625 -2.859375 4.28125 -4.546875 Z M 4.28125 -4.546875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 1.453125 0.078125 C 2.265625 0.078125 2.703125 -0.046875 3.375 -0.046875 C 4.0625 -0.046875 4.65625 0.078125 5.296875 0.078125 C 5.890625 0.078125 6.265625 -0.203125 6.265625 -0.625 C 6.265625 -1.375 5.703125 -1.25 5.046875 -2.109375 C 4.25 -3.328125 5.28125 -3.875 5.90625 -4.296875 C 6.40625 -3.484375 7.375 -1.796875 7.78125 -1.28125 C 8.625 -0.1875 9.28125 0.234375 10.703125 0.234375 C 11.484375 0.234375 12.203125 -0.046875 12.203125 -0.515625 C 12.203125 -1.03125 11.84375 -0.9375 11.0625 -1.546875 C 10.4375 -2.03125 9.546875 -2.859375 9.03125 -3.703125 L 7.78125 -5.625 C 8.609375 -6.171875 9.765625 -6.859375 10.265625 -7.1875 C 10.984375 -7.625 11.4375 -7.703125 11.484375 -8.21875 C 11.515625 -8.578125 11.265625 -8.921875 10.671875 -8.921875 C 10.03125 -8.921875 9.640625 -8.796875 8.953125 -8.796875 C 8.28125 -8.796875 7.515625 -8.921875 7.046875 -8.921875 C 6.59375 -8.921875 6.21875 -8.578125 6.21875 -8.21875 C 6.21875 -7.546875 7.078125 -7.71875 7.203125 -7.171875 C 7.328125 -6.640625 6.1875 -5.875 5.578125 -5.53125 C 5.15625 -5.3125 4.921875 -5.203125 4.765625 -5.265625 C 4.59375 -5.328125 4.546875 -5.484375 4.546875 -5.9375 L 4.546875 -7.171875 C 4.546875 -10.125 4.671875 -10.578125 4.828125 -11.21875 C 4.96875 -11.828125 5.171875 -12.609375 4.71875 -13.03125 C 4.34375 -13.375 3.890625 -13.328125 2.765625 -12.65625 C 2.046875 -12.21875 1.328125 -11.984375 0.9375 -11.703125 C 0.609375 -11.4375 0.453125 -11.09375 0.65625 -10.734375 C 1.109375 -9.984375 2.203125 -10.4375 2.203125 -7.09375 L 2.203125 -5.1875 C 2.203125 -3.84375 2.109375 -2.640625 1.71875 -2.109375 C 1.0625 -1.25 0.484375 -1.375 0.484375 -0.625 C 0.484375 -0.203125 0.859375 0.078125 1.453125 0.078125 Z M 1.453125 0.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 4.703125 0.234375 C 6.265625 0.234375 7.625 -0.546875 8.46875 -2.078125 C 8.671875 -2.46875 8.703125 -2.65625 8.46875 -2.828125 C 8.265625 -2.96875 8.125 -2.921875 7.796875 -2.640625 C 7.328125 -2.234375 6.875 -1.953125 5.96875 -1.953125 C 4.78125 -1.953125 3.9375 -3.375 3.984375 -5.65625 C 3.984375 -5.953125 4.015625 -6.375 4.046875 -6.8125 L 6.203125 -6.65625 C 7.5625 -6.5625 7.734375 -7.09375 8.171875 -7.96875 C 8.375 -8.34375 8.234375 -8.59375 7.71875 -8.578125 L 4.203125 -8.484375 C 4.234375 -8.71875 4.28125 -8.9375 4.3125 -9.140625 C 4.46875 -9.875 4.546875 -10.4375 4.078125 -10.671875 C 3.453125 -10.984375 3.015625 -10.125 2.203125 -9.453125 C 1.5625 -8.90625 0.921875 -8.625 0.546875 -8.34375 C 0.203125 -8.078125 0.046875 -7.734375 0.25 -7.375 C 0.703125 -6.625 1.859375 -7.875 1.640625 -4.421875 C 1.484375 -1.734375 2.765625 0.234375 4.703125 0.234375 Z M 4.703125 0.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 5.046875 0.234375 C 6.765625 0.234375 8.265625 -0.546875 9.125 -2.078125 C 9.34375 -2.46875 9.359375 -2.65625 9.125 -2.828125 C 8.921875 -2.96875 8.78125 -2.921875 8.453125 -2.640625 C 7.375 -1.75 4.5625 -1.453125 3.40625 -3.59375 C 2.609375 -5.09375 2.6875 -6.9375 3.59375 -7.53125 C 4.453125 -8.078125 5.71875 -7.515625 6.5 -6.546875 C 7.140625 -5.734375 7.53125 -5.078125 7.96875 -5.25 C 8.359375 -5.40625 8.890625 -7.875 8.859375 -8.265625 C 8.8125 -8.78125 8.546875 -8.796875 7.734375 -8.6875 C 6.859375 -8.578125 6.609375 -9.0625 5.046875 -9.0625 C 2.46875 -9.0625 0.40625 -6.96875 0.40625 -4.421875 C 0.40625 -1.734375 2.46875 0.234375 5.046875 0.234375 Z M 5.046875 0.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 1.53125 0.078125 C 2.359375 0.078125 2.78125 -0.046875 3.453125 -0.046875 C 4.140625 -0.046875 4.734375 0.078125 5.375 0.078125 C 5.96875 0.078125 6.359375 -0.203125 6.359375 -0.625 C 6.359375 -1.375 5.78125 -1.25 5.125 -2.109375 C 4.71875 -2.640625 4.625 -3.84375 4.625 -5.1875 L 4.625 -7.171875 C 4.625 -10.125 4.75 -10.578125 4.90625 -11.21875 C 5.0625 -11.828125 5.25 -12.609375 4.796875 -13.03125 C 4.421875 -13.375 3.96875 -13.328125 2.84375 -12.65625 C 2.125 -12.21875 1.40625 -11.984375 1.03125 -11.703125 C 0.6875 -11.4375 0.53125 -11.09375 0.734375 -10.734375 C 1.1875 -9.984375 2.28125 -10.4375 2.28125 -7.09375 L 2.28125 -5.1875 C 2.28125 -3.84375 2.1875 -2.640625 1.796875 -2.109375 C 1.140625 -1.25 0.5625 -1.375 0.5625 -0.625 C 0.5625 -0.203125 0.9375 0.078125 1.53125 0.078125 Z M 1.53125 0.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 5.296875 0.234375 C 6.9375 0.234375 7.75 -0.546875 8.234375 -1.71875 C 8.296875 -0.9375 8.390625 -0.21875 8.625 0.015625 C 9.015625 0.40625 9.59375 0.03125 10.40625 -0.109375 C 10.9375 -0.203125 12.03125 -0.203125 11.9375 -1.046875 C 11.859375 -1.765625 11.296875 -1.4375 10.9375 -2.0625 C 10.625 -2.640625 10.453125 -3.90625 10.453125 -5.71875 C 10.453125 -7.609375 11.265625 -8.296875 10.828125 -8.9375 C 10.5625 -9.34375 9.921875 -9.3125 9.40625 -8.953125 C 8.96875 -8.65625 8.546875 -8.453125 7.984375 -8.109375 C 7.078125 -7.546875 6.65625 -7.234375 6.890625 -6.65625 C 7.125 -6.109375 8.109375 -6.359375 8.109375 -5.328125 C 8.109375 -3.578125 7.515625 -1.828125 6.046875 -1.828125 C 4.609375 -1.828125 4.125 -3.265625 4.125 -4.59375 C 4.125 -7.4375 4.78125 -8.296875 4.359375 -8.9375 C 4.078125 -9.34375 3.390625 -9.359375 2.921875 -8.953125 C 2.5 -8.578125 2.0625 -8.34375 1.609375 -8.0625 C 0.703125 -7.5 0.25 -7.203125 0.578125 -6.65625 C 0.875 -6.140625 1.875 -6.5 1.8125 -4.71875 C 1.71875 -1.984375 2.25 0.234375 5.296875 0.234375 Z M 5.296875 0.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 5.046875 0.234375 C 6.265625 0.234375 7.234375 -0.234375 7.921875 -1.03125 C 9.578125 0.109375 10.15625 0.34375 10.78125 -0.28125 C 11.421875 -0.921875 10.90625 -1.203125 10.234375 -2.25 C 9.78125 -2.96875 9.546875 -4.015625 9.546875 -5.359375 L 9.546875 -7.34375 C 9.546875 -11.453125 10.5 -12.609375 9.9375 -13.125 C 9.34375 -13.65625 8.625 -12.8125 7.578125 -12.4375 C 5.890625 -11.8125 5.234375 -11.921875 5.5 -11.078125 C 5.78125 -10.234375 7.21875 -11.453125 7.21875 -8.609375 L 7.21875 -7.828125 C 6.75 -8.484375 6 -9.0625 4.71875 -9.0625 C 2.296875 -9.0625 0.40625 -6.96875 0.40625 -4.421875 C 0.40625 -1.734375 2.46875 0.234375 5.046875 0.234375 Z M 3.390625 -4.671875 C 3.296875 -6.4375 3.6875 -7.546875 4.875 -7.5 C 6.484375 -7.453125 7.28125 -5.5625 7.34375 -3.984375 C 7.40625 -2.4375 6.890625 -1.390625 5.828125 -1.40625 C 4.4375 -1.421875 3.5 -2.984375 3.390625 -4.671875 Z M 3.390625 -4.671875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 1.84375 0.125 C 2.65625 0.125 2.921875 0 3.59375 0 C 4.28125 0 4.5625 0.125 5.046875 0.125 C 5.46875 0.125 5.828125 -0.15625 5.859375 -0.578125 C 5.890625 -0.96875 5.609375 -1.4375 5.265625 -2.0625 C 4.3125 -3.75 4.484375 -6.28125 6.171875 -7.015625 C 7.890625 -7.734375 9.171875 -5.78125 8.40625 -3.65625 C 7.609375 -1.484375 6.796875 -1.328125 6.828125 -0.578125 C 6.84375 -0.171875 7.0625 0.125 7.640625 0.125 C 8.296875 0.125 8.578125 0 9.25 0 C 9.9375 0 10.28125 0.125 10.921875 0.125 C 11.515625 0.125 11.859375 -0.15625 11.90625 -0.578125 C 11.953125 -1.046875 11.6875 -1.265625 11.375 -1.75 C 10.3125 -3.40625 10.375 -6.046875 12.0625 -6.765625 C 13.78125 -7.484375 15.078125 -5.78125 14.359375 -3.65625 C 13.609375 -1.484375 12.796875 -1.328125 12.828125 -0.578125 C 12.84375 -0.171875 13.0625 0.125 13.640625 0.125 C 14.296875 0.125 14.671875 0 15.34375 0 C 16.03125 0 16.28125 0.125 16.921875 0.125 C 17.515625 0.125 17.859375 -0.15625 17.90625 -0.578125 C 17.953125 -1.046875 17.84375 -1.265625 17.359375 -1.75 C 16.671875 -2.4375 16.5625 -2.75 16.875 -5.09375 C 17.234375 -7.609375 16.1875 -8.875 14.234375 -8.875 C 12.78125 -8.875 11.625 -8.28125 10.875 -7.375 C 10.65625 -8.53125 9.6875 -9.484375 8.1875 -9.484375 C 6.75 -9.484375 5.515625 -8.40625 4.765625 -7.015625 C 4.765625 -8.796875 5.0625 -9.40625 4.8125 -9.75 C 4.546875 -10.125 4.03125 -10.15625 3.5625 -9.765625 C 3.140625 -9.375 2.859375 -9.140625 2.421875 -8.859375 C 1.84375 -8.515625 1.40625 -8.390625 1.03125 -8.09375 C 0.6875 -7.84375 0.53125 -7.484375 0.734375 -7.140625 C 1.1875 -6.390625 2.4375 -6.984375 2.4375 -5.171875 C 2.4375 -3.828125 2.34375 -2.59375 1.9375 -2.0625 C 1.359375 -1.296875 0.859375 -1.375 0.859375 -0.625 C 0.859375 -0.203125 1.25 0.125 1.84375 0.125 Z M 1.84375 0.125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 5.28125 0.234375 C 5.609375 0.234375 5.78125 0.015625 6.140625 -0.65625 L 7.890625 -3.859375 C 8.765625 -5.453125 9.546875 -6.703125 10.046875 -7.3125 C 10.546875 -7.921875 10.9375 -7.96875 10.9375 -8.34375 C 10.9375 -8.6875 10.65625 -8.890625 10.21875 -8.890625 C 9.765625 -8.890625 9.453125 -8.796875 8.953125 -8.796875 C 8.46875 -8.796875 7.625 -8.890625 7.265625 -8.890625 C 6.84375 -8.890625 6.578125 -8.6875 6.578125 -8.34375 C 6.578125 -7.96875 7.21875 -7.90625 7.4375 -7.375 C 7.65625 -6.859375 7.34375 -6.140625 6.34375 -4.21875 L 5.875 -3.34375 L 5.265625 -4.390625 C 4.375 -5.921875 3.828125 -6.875 4.03125 -7.390625 C 4.234375 -7.890625 4.828125 -7.96875 4.828125 -8.34375 C 4.828125 -8.6875 4.546875 -8.890625 4.109375 -8.890625 C 3.640625 -8.890625 2.734375 -8.796875 2.078125 -8.796875 C 1.4375 -8.796875 0.578125 -8.890625 0.21875 -8.890625 C -0.1875 -8.890625 -0.484375 -8.6875 -0.484375 -8.34375 C -0.484375 -7.96875 -0.0625 -7.890625 0.453125 -7.296875 C 0.9375 -6.734375 1.640625 -5.390625 2.5 -3.859375 L 4.296875 -0.578125 C 4.671875 0.078125 4.859375 0.234375 5.28125 0.234375 Z M 5.28125 0.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 5.046875 0.234375 C 6.765625 0.234375 8.265625 -0.546875 9.125 -2.078125 C 9.34375 -2.46875 9.359375 -2.65625 9.125 -2.828125 C 8.921875 -2.96875 8.78125 -2.921875 8.453125 -2.640625 C 7.375 -1.75 4.5625 -1.453125 3.40625 -3.59375 C 3.28125 -3.828125 3.1875 -4.078125 3.109375 -4.3125 L 7.21875 -4.609375 C 8.21875 -4.671875 8.515625 -4.75 8.515625 -5.71875 C 8.515625 -8.015625 7.171875 -9.0625 5.046875 -9.0625 C 2.46875 -9.0625 0.40625 -6.96875 0.40625 -4.421875 C 0.40625 -1.734375 2.46875 0.234375 5.046875 0.234375 Z M 2.875 -5.609375 C 2.859375 -6.484375 3.15625 -7.25 3.734375 -7.59375 C 4.890625 -8.3125 6.015625 -7.515625 6.015625 -6.09375 Z M 2.875 -5.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 1.84375 0.125 C 2.65625 0.125 2.921875 0 3.59375 0 C 4.28125 0 4.5625 0.125 5.046875 0.125 C 5.46875 0.125 5.828125 -0.15625 5.859375 -0.578125 C 5.890625 -0.96875 5.609375 -1.4375 5.265625 -2.0625 C 4.3125 -3.75 4.484375 -6.28125 6.171875 -7.015625 C 7.890625 -7.734375 9.34375 -5.78125 8.625 -3.65625 C 7.890625 -1.484375 6.90625 -1.328125 6.9375 -0.578125 C 6.953125 -0.171875 7.171875 0.125 7.765625 0.125 C 8.421875 0.125 8.53125 0 9.203125 0 C 9.890625 0 10.5625 0.125 11.203125 0.125 C 11.796875 0.125 12.125 -0.15625 12.171875 -0.578125 C 12.21875 -1.046875 12.109375 -1.265625 11.625 -1.75 C 10.9375 -2.4375 10.828125 -2.984375 11.15625 -5.328125 C 11.5 -7.859375 10.296875 -9.125 8.359375 -9.125 C 6.75 -9.125 5.515625 -8.40625 4.765625 -7.015625 C 4.765625 -8.796875 5.0625 -9.40625 4.8125 -9.75 C 4.546875 -10.125 4.03125 -10.15625 3.5625 -9.765625 C 3.140625 -9.375 2.859375 -9.140625 2.421875 -8.859375 C 1.84375 -8.515625 1.40625 -8.390625 1.03125 -8.09375 C 0.6875 -7.84375 0.53125 -7.484375 0.734375 -7.140625 C 1.1875 -6.390625 2.4375 -6.984375 2.4375 -5.171875 C 2.4375 -3.828125 2.34375 -2.59375 1.9375 -2.0625 C 1.359375 -1.296875 0.859375 -1.375 0.859375 -0.625 C 0.859375 -0.203125 1.25 0.125 1.84375 0.125 Z M 1.84375 0.125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 4.640625 0.234375 C 4.96875 0.234375 5.171875 0.03125 5.5 -0.65625 L 7.546875 -4.8125 L 9.640625 -0.578125 C 9.984375 0.09375 10.203125 0.234375 10.625 0.234375 C 10.953125 0.234375 11.171875 0.046875 11.484375 -0.65625 L 12.953125 -3.859375 C 13.734375 -5.515625 14.3125 -6.703125 14.8125 -7.3125 C 15.3125 -7.921875 15.71875 -7.96875 15.71875 -8.34375 C 15.71875 -8.6875 15.421875 -8.890625 14.984375 -8.890625 C 14.53125 -8.890625 14.21875 -8.796875 13.734375 -8.796875 C 13.234375 -8.796875 12.40625 -8.890625 12.03125 -8.890625 C 11.609375 -8.890625 11.34375 -8.6875 11.34375 -8.34375 C 11.34375 -7.96875 11.984375 -7.90625 12.203125 -7.375 C 12.4375 -6.859375 12.203125 -6.25 11.40625 -4.21875 L 11.140625 -3.546875 L 8.921875 -8.015625 C 8.546875 -8.78125 8.46875 -9.046875 8.078125 -9.046875 C 7.75 -9.046875 7.625 -8.796875 7.265625 -7.96875 L 5.328125 -3.5 L 4.96875 -4.390625 C 4.34375 -6.03125 3.828125 -6.875 4.03125 -7.390625 C 4.234375 -7.890625 4.828125 -7.96875 4.828125 -8.34375 C 4.828125 -8.6875 4.546875 -8.890625 4.109375 -8.890625 C 3.640625 -8.890625 2.734375 -8.796875 2.078125 -8.796875 C 1.4375 -8.796875 0.578125 -8.890625 0.21875 -8.890625 C -0.1875 -8.890625 -0.484375 -8.6875 -0.484375 -8.34375 C -0.484375 -7.96875 -0.0625 -7.890625 0.453125 -7.296875 C 0.9375 -6.734375 1.46875 -5.453125 2.203125 -3.859375 L 3.734375 -0.578125 C 4.046875 0.109375 4.21875 0.234375 4.640625 0.234375 Z M 4.640625 0.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 1.609375 0.109375 C 2.4375 0.109375 2.859375 0 3.53125 0 C 4.21875 0 4.8125 0.109375 5.453125 0.109375 C 6.046875 0.109375 6.4375 -0.171875 6.4375 -0.59375 C 6.4375 -1.34375 5.859375 -1.21875 5.203125 -2.078125 C 4.796875 -2.609375 4.703125 -3.84375 4.703125 -5.1875 L 4.703125 -6.59375 L 6.125 -6.5 C 7.484375 -6.40625 7.625 -6.921875 8.09375 -7.8125 C 8.28125 -8.171875 8.15625 -8.4375 7.625 -8.421875 L 4.765625 -8.34375 C 4.875 -9.9375 5.203125 -11.15625 6.0625 -11.15625 C 6.984375 -11.15625 7.1875 -9.53125 7.8125 -9.5625 C 8.453125 -9.609375 8.375 -10.3125 8.453125 -11.234375 C 8.515625 -11.890625 8.625 -12.28125 8.609375 -12.78125 C 8.59375 -13.125 8.4375 -13.265625 8.046875 -13.265625 C 6.0625 -13.265625 3.515625 -12.171875 2.765625 -10.25 C 2.140625 -8.65625 1.8125 -8.296875 1.109375 -8.015625 C 0.71875 -7.859375 0.609375 -7.40625 0.8125 -7.0625 C 1.265625 -6.296875 2.375 -7.390625 2.375 -4.6875 L 2.375 -4.21875 C 2.375 -2.875 2.265625 -2.609375 1.875 -2.078125 C 1.21875 -1.21875 0.640625 -1.34375 0.640625 -0.59375 C 0.640625 -0.171875 1.03125 0.109375 1.609375 0.109375 Z M 1.609375 0.109375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-17">
<path style="stroke:none;" d="M 5.171875 0.234375 C 7.796875 0.234375 9.9375 -1.84375 9.9375 -4.421875 C 9.9375 -7.09375 7.796875 -9.046875 5.171875 -9.046875 C 2.53125 -9.046875 0.40625 -6.96875 0.40625 -4.421875 C 0.40625 -1.734375 2.53125 0.234375 5.171875 0.234375 Z M 3.375 -4.078125 C 2.671875 -5.703125 2.734375 -7.1875 3.65625 -7.484375 C 4.953125 -7.921875 6.546875 -6.171875 7.140625 -4.703125 C 7.71875 -3.265625 7.75 -1.859375 6.765625 -1.53125 C 5.5 -1.125 4.046875 -2.53125 3.375 -4.078125 Z M 3.375 -4.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-18">
<path style="stroke:none;" d="M 0.875 0.125 C 1.34375 0.125 2.1875 0.03125 2.703125 0.03125 C 3.203125 0.03125 3.875 0.125 4.484375 0.125 C 4.90625 0.125 5.203125 -0.09375 5.203125 -0.40625 C 5.203125 -0.953125 4.34375 -0.8125 4.3125 -1.390625 C 4.296875 -1.65625 4.640625 -2.171875 5.078125 -2.703125 L 6.171875 -1.28125 C 7.015625 -0.1875 8.046875 0.234375 9.46875 0.234375 C 10.25 0.234375 10.8125 -0.046875 10.8125 -0.515625 C 10.8125 -1.03125 10.53125 -0.9375 9.75 -1.546875 C 9.125 -2.03125 8.234375 -2.875 7.59375 -3.640625 L 6.828125 -4.546875 C 8.015625 -5.703125 8.78125 -6.421875 9.3125 -6.859375 C 10.125 -7.578125 10.65625 -7.703125 10.703125 -8.21875 C 10.734375 -8.578125 10.484375 -8.921875 9.890625 -8.921875 C 9.25 -8.921875 9.03125 -8.796875 8.34375 -8.796875 C 7.65625 -8.796875 7.375 -8.921875 6.890625 -8.921875 C 6.453125 -8.921875 6.234375 -8.578125 6.234375 -8.21875 C 6.234375 -7.71875 6.625 -7.828125 6.75 -7.28125 C 6.828125 -6.921875 6.40625 -6.375 5.890625 -5.828125 C 5.484375 -6.4375 5.15625 -7.046875 5.015625 -7.375 C 4.625 -8.25 4.53125 -8.984375 3.625 -8.921875 C 2.953125 -8.875 2.34375 -8.875 1.515625 -8.921875 C 0.921875 -8.953125 0.546875 -8.59375 0.546875 -8.171875 C 0.546875 -7.546875 0.84375 -7.703125 1.421875 -7.125 C 1.828125 -6.71875 2.953125 -5.453125 3.5625 -4.671875 L 4.078125 -4 C 2.890625 -2.875 1.796875 -2.046875 1.25 -1.65625 C 0.671875 -1.25 0.15625 -0.953125 0.15625 -0.40625 C 0.15625 -0.09375 0.4375 0.125 0.875 0.125 Z M 0.875 0.125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-19">
<path style="stroke:none;" d="M 1.71875 3.96875 C 3.078125 4.609375 7.015625 4.421875 9.25 2.4375 C 11.390625 0.546875 11.15625 -1.359375 10.515625 -1.703125 C 9.953125 -1.984375 8.65625 -1.65625 6.28125 -0.921875 C 4.359375 -0.3125 3.453125 -0.515625 3.078125 -0.90625 C 2.84375 -1.15625 2.90625 -1.640625 3.1875 -1.90625 C 3.3125 -2.015625 3.484375 -2.125 3.875 -2.015625 L 3.84375 -2.03125 C 4.34375 -1.90625 4.875 -1.84375 5.4375 -1.84375 C 8.078125 -1.84375 10.21875 -3.453125 10.21875 -5.453125 C 10.21875 -6.625 9.546875 -7.59375 8.484375 -8.25 C 9.53125 -8.296875 10.390625 -8.671875 10.5 -9.484375 C 10.75 -11.25 8.640625 -11.453125 8.453125 -11.234375 C 8.296875 -11.078125 8.5625 -10.171875 8.09375 -9.71875 C 7.71875 -9.328125 6.828125 -9.046875 5.4375 -9.046875 C 2.765625 -9.046875 0.640625 -7.421875 0.640625 -5.453125 C 0.640625 -4.546875 1.046875 -3.75 1.71875 -3.125 L 1.703125 -3.140625 C 1.71875 -3.125 1.75 -3.109375 1.765625 -3.09375 L 1.84375 -3.03125 C 2.140625 -2.734375 1.984375 -2.578125 1.765625 -2.390625 C 1.21875 -1.90625 0.578125 -1.125 0.953125 -0.3125 C 1.21875 0.203125 1.546875 0.59375 1.9375 0.859375 C 0.703125 1.578125 0.21875 3.28125 1.71875 3.96875 Z M 2.3125 1.09375 C 3.71875 1.78125 5.640625 1.3125 7.40625 0.84375 C 8.3125 0.609375 8.640625 0.8125 8.640625 1.21875 C 8.640625 1.609375 7.84375 2.75 5.640625 2.765625 C 4.109375 2.78125 2.875 2.265625 2.3125 1.09375 Z M 4.046875 -5.1875 C 3.515625 -6.4375 3.546875 -7.578125 4.265625 -7.828125 C 5.265625 -8.15625 6.5 -6.8125 6.953125 -5.65625 C 7.40625 -4.5625 7.421875 -3.46875 6.671875 -3.21875 C 5.703125 -2.875 4.5625 -3.984375 4.046875 -5.1875 Z M 4.046875 -5.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-20">
<path style="stroke:none;" d="M 1.265625 4.125 C 1.859375 4.125 2.9375 4 3.578125 4 C 4.140625 4 5.328125 4.125 5.828125 4.125 C 6.421875 4.125 6.640625 3.796875 6.640625 3.421875 C 6.640625 3.09375 6.296875 2.796875 5.859375 2.703125 C 4.84375 2.484375 4.078125 2.046875 4.078125 1.078125 L 4.078125 -0.40625 C 4.671875 0.015625 5.40625 0.234375 6.25 0.234375 C 8.828125 0.234375 10.890625 -1.734375 10.890625 -4.421875 C 10.890625 -6.96875 8.984375 -9.046875 6.578125 -9.046875 C 5.78125 -9.046875 5.21875 -8.78125 4.734375 -8.5 C 4.078125 -8.09375 3.421875 -8 2.65625 -8.453125 C 1.484375 -9.140625 1.03125 -9.203125 0.515625 -8.6875 C -0.125 -8.046875 0.4375 -7.78125 1.25 -6.5 C 1.5625 -6 1.75 -4.953125 1.75 -3.609375 L 1.75 -0.984375 C 1.75 3.28125 0.28125 2.484375 0.28125 3.421875 C 0.28125 3.765625 0.625 4.125 1.265625 4.125 Z M 4.09375 -4.546875 C 4 -6.296875 4.375 -7.421875 5.5 -7.375 C 7.03125 -7.3125 7.78125 -5.4375 7.84375 -3.859375 C 7.90625 -2.296875 7.421875 -1.265625 6.40625 -1.28125 C 5.078125 -1.296875 4.1875 -2.859375 4.09375 -4.546875 Z M 4.09375 -4.546875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-21">
<path style="stroke:none;" d="M 4.015625 4.140625 C 4.359375 4.140625 4.15625 3.59375 6.09375 -0.5 L 6.609375 -1.59375 L 7.90625 -3.953125 C 8.78125 -5.546875 9.546875 -6.703125 10.046875 -7.3125 C 10.546875 -7.921875 10.9375 -7.96875 10.9375 -8.34375 C 10.9375 -8.6875 10.65625 -8.890625 10.21875 -8.890625 C 9.765625 -8.890625 9.453125 -8.796875 8.953125 -8.796875 C 8.46875 -8.796875 7.625 -8.890625 7.265625 -8.890625 C 6.84375 -8.890625 6.578125 -8.6875 6.578125 -8.34375 C 6.578125 -7.96875 7.21875 -7.90625 7.4375 -7.375 C 7.65625 -6.859375 7.375 -6.234375 6.359375 -4.3125 L 5.875 -3.421875 L 5.25 -4.484375 C 4.359375 -6.015625 3.828125 -6.875 4.03125 -7.390625 C 4.234375 -7.890625 4.828125 -7.96875 4.828125 -8.34375 C 4.828125 -8.6875 4.546875 -8.890625 4.109375 -8.890625 C 3.640625 -8.890625 2.734375 -8.796875 2.078125 -8.796875 C 1.4375 -8.796875 0.578125 -8.890625 0.21875 -8.890625 C -0.1875 -8.890625 -0.484375 -8.6875 -0.484375 -8.34375 C -0.484375 -7.96875 -0.0625 -7.890625 0.453125 -7.296875 C 0.9375 -6.734375 1.609375 -5.484375 2.484375 -3.953125 L 4.28125 -0.703125 L 3.765625 0.046875 C 3.21875 0.84375 2.28125 1.140625 1.28125 1.25 C 0.8125 1.296875 0.40625 1.265625 0.25 1.5625 C 0.09375 1.90625 0.171875 2.265625 0.703125 2.546875 C 1.15625 2.765625 1.796875 2.984375 2.296875 3.234375 C 2.875 3.5 3.421875 4.140625 4.015625 4.140625 Z M 4.015625 4.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-22">
<path style="stroke:none;" d="M 1.765625 0.125 C 2.578125 0.125 2.84375 0 3.515625 0 C 4.203125 0 4.484375 0.125 4.953125 0.125 C 5.390625 0.125 5.75 -0.15625 5.78125 -0.578125 C 5.8125 -0.96875 5.53125 -1.4375 5.1875 -2.0625 C 4.234375 -3.75 4.40625 -6.28125 6.09375 -7.015625 C 7.8125 -7.734375 9.265625 -5.71875 8.546875 -3.609375 C 7.8125 -1.484375 6.828125 -1.328125 6.859375 -0.578125 C 6.875 -0.171875 7.09375 0.125 7.6875 0.125 C 8.34375 0.125 8.453125 0 9.125 0 C 9.8125 0 10.484375 0.125 11.125 0.125 C 11.71875 0.125 12.046875 -0.15625 12.09375 -0.578125 C 12.140625 -1.046875 12.03125 -1.265625 11.546875 -1.75 C 10.859375 -2.4375 10.75 -2.984375 11.078125 -5.328125 C 11.421875 -7.859375 10.21875 -9.125 8.265625 -9.125 C 6.671875 -9.125 5.4375 -8.40625 4.6875 -7.015625 L 4.6875 -7.515625 C 4.6875 -8.703125 4.6875 -10.5 4.9375 -11.46875 C 5.109375 -12.078125 5.21875 -12.515625 4.890625 -12.9375 C 4.609375 -13.328125 4.125 -13.328125 3.640625 -12.953125 C 3.140625 -12.578125 2.84375 -12.09375 2.28125 -11.6875 C 1.75 -11.28125 1.328125 -11.109375 0.9375 -10.8125 C 0.609375 -10.5625 0.453125 -10.203125 0.65625 -9.859375 C 0.90625 -9.421875 1.21875 -9.5 1.640625 -9.28125 C 2.359375 -8.921875 2.359375 -8.0625 2.359375 -6.71875 L 2.359375 -5.171875 C 2.359375 -3.78125 2.25 -2.59375 1.859375 -2.0625 C 1.28125 -1.296875 0.78125 -1.328125 0.78125 -0.578125 C 0.78125 -0.15625 1.171875 0.125 1.765625 0.125 Z M 1.765625 0.125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-23">
<path style="stroke:none;" d="M 5.609375 4.125 C 6.109375 4.125 7.296875 4 7.859375 4 C 8.5 4 9.578125 4.125 10.171875 4.125 C 10.8125 4.125 11.15625 3.765625 11.15625 3.421875 C 11.15625 2.484375 9.703125 3.28125 9.703125 -0.984375 L 9.703125 -3.609375 C 9.703125 -4.953125 9.875 -6 10.1875 -6.5 C 11.015625 -7.78125 11.5625 -8.046875 10.921875 -8.6875 C 10.4375 -9.203125 9.984375 -9.140625 8.796875 -8.453125 C 8.109375 -8.046875 7.546875 -8 6.78125 -8.46875 C 6.1875 -8.8125 5.609375 -9.0625 4.71875 -9.0625 C 2.296875 -9.0625 0.40625 -6.96875 0.40625 -4.421875 C 0.40625 -1.734375 2.46875 0.234375 5.046875 0.234375 C 5.96875 0.234375 6.734375 -0.03125 7.359375 -0.5 L 7.359375 1.078125 C 7.359375 2.046875 6.59375 2.484375 5.578125 2.703125 C 5.140625 2.796875 4.796875 3.09375 4.796875 3.421875 C 4.796875 3.796875 5.03125 4.125 5.609375 4.125 Z M 3.59375 -4.671875 C 3.5 -6.4375 3.875 -7.546875 5.015625 -7.5 C 6.53125 -7.453125 7.28125 -5.5625 7.34375 -3.984375 C 7.40625 -2.4375 6.921875 -1.390625 5.90625 -1.40625 C 4.578125 -1.421875 3.703125 -2.984375 3.59375 -4.671875 Z M 3.59375 -4.671875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-24">
<path style="stroke:none;" d="M 8.78125 0.265625 C 9.28125 0.34375 9.625 0.296875 9.59375 -0.1875 C 9.578125 -0.484375 9.390625 -1.34375 9.328125 -2.3125 C 9.265625 -3.234375 9.421875 -4.21875 8.953125 -4.375 C 8.453125 -4.53125 8.359375 -4.0625 7.515625 -2.75 C 6.859375 -1.734375 6.359375 -1.0625 5.203125 -1.0625 C 4.671875 -1.0625 4.546875 -1.40625 4.609375 -1.71875 C 4.6875 -2.09375 5.375 -2.984375 6.421875 -4.21875 C 7.609375 -5.640625 8.46875 -6.640625 9.140625 -7.390625 C 9.40625 -7.703125 9.5625 -7.953125 9.484375 -8.34375 C 9.40625 -8.6875 9.234375 -8.921875 8.640625 -8.921875 C 8 -8.921875 7.140625 -8.796875 5.46875 -8.796875 C 3.8125 -8.796875 2.796875 -9.0625 1.609375 -9.21875 C 1.125 -9.28125 0.765625 -9.25 0.796875 -8.75 C 0.8125 -8.46875 1.25 -7.59375 1.203125 -6.625 C 1.15625 -5.71875 0.84375 -4.8125 1.4375 -4.578125 C 2.078125 -4.3125 2.5625 -5.53125 3.046875 -6.1875 C 3.609375 -6.984375 3.9375 -7.75 4.890625 -7.75 C 5.390625 -7.75 5.703125 -7.59375 5.78125 -7.3125 C 5.875 -6.9375 5.390625 -6.375 3.578125 -4.3125 C 2.34375 -2.90625 1.609375 -2.09375 1.1875 -1.65625 C 0.6875 -1.171875 0.3125 -0.953125 0.3125 -0.40625 C 0.3125 -0.09375 0.59375 0.125 1.046875 0.125 C 1.125 0.125 3.109375 0 4.921875 0 C 6.59375 0 7.59375 0.109375 8.78125 0.265625 Z M 8.78125 0.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-25">
<path style="stroke:none;" d="M 1.609375 0.125 C 2.4375 0.125 3.03125 0 3.703125 0 C 4.390625 0 4.96875 0.125 5.453125 0.125 C 5.9375 0.125 6.375 -0.15625 6.390625 -0.6875 C 6.421875 -1.296875 5.78125 -1.515625 5.359375 -2.0625 C 4.9375 -2.609375 4.859375 -3.171875 4.859375 -4.609375 C 4.859375 -5.828125 5.015625 -6.265625 5.171875 -6.90625 C 5.3125 -7.515625 5.5 -8.296875 5.0625 -8.71875 C 4.671875 -9.078125 4.21875 -9.03125 3.109375 -8.359375 C 2.390625 -7.921875 1.65625 -7.6875 1.28125 -7.390625 C 0.9375 -7.140625 0.78125 -6.78125 0.984375 -6.4375 C 1.4375 -5.6875 2.53125 -6.125 2.53125 -4.203125 C 2.53125 -3.1875 2.4375 -2.59375 2.03125 -2.0625 C 1.453125 -1.296875 0.640625 -1.375 0.640625 -0.625 C 0.640625 -0.203125 1.03125 0.125 1.609375 0.125 Z M 2 -11.796875 C 2 -10.84375 2.765625 -10.078125 3.71875 -10.078125 C 4.671875 -10.078125 5.4375 -10.84375 5.4375 -11.796875 C 5.4375 -12.71875 4.671875 -13.484375 3.71875 -13.484375 C 2.765625 -13.484375 2 -12.71875 2 -11.796875 Z M 2 -11.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-26">
<path style="stroke:none;" d="M 1.609375 0.125 C 2.4375 0.125 3.34375 0 4.015625 0 C 4.703125 0 5.78125 0.125 6.25 0.125 C 6.734375 0.125 7.171875 -0.15625 7.1875 -0.6875 C 7.203125 -1.609375 5.953125 -1.296875 5.359375 -2.0625 C 5.015625 -2.53125 4.890625 -3.015625 4.859375 -4.0625 C 4.96875 -6.609375 6.59375 -6.671875 7.1875 -6.0625 C 7.765625 -5.46875 8.140625 -4.3125 8.78125 -4.578125 C 9.375 -4.8125 9.078125 -5.71875 9.03125 -6.625 C 8.96875 -7.59375 9.25 -8.78125 9.265625 -9.078125 C 9.296875 -9.5625 8.9375 -9.59375 8.453125 -9.53125 C 7.53125 -9.40625 5.84375 -8.125 4.9375 -6.671875 C 4.953125 -6.859375 4.96875 -7.0625 5.015625 -7.234375 C 5.15625 -8.171875 5.15625 -9.015625 4.578125 -9.1875 C 4 -9.375 3.578125 -8.96875 2.75 -8.453125 C 2.03125 -8 1.65625 -8 1.28125 -7.71875 C 0.9375 -7.453125 0.78125 -7.109375 0.984375 -6.75 C 1.4375 -6 2.53125 -6.125 2.53125 -4.203125 C 2.53125 -3.1875 2.4375 -2.59375 2.03125 -2.0625 C 1.453125 -1.296875 0.640625 -1.375 0.640625 -0.625 C 0.640625 -0.203125 1.03125 0.125 1.609375 0.125 Z M 1.609375 0.125 "/>
</symbol>
</g>
<clipPath id="clip1">
<rect x="0" y="0" width="300" height="300"/>
</clipPath>
<g id="surface382" clip-path="url(#clip1)">
<rect x="0" y="0" width="300" height="300" style="fill:rgb(0%,0%,0%);fill-opacity:1;stroke:none;"/>
<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0.784314%,8.235294%,70.196078%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 0 L 100 0 L 100 100 L 0 100 Z M 0 0 "/>
<path style="fill-rule:nonzero;fill:rgb(0.784314%,8.235294%,70.196078%);fill-opacity:1;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0.784314%,8.235294%,70.196078%);stroke-opacity:1;stroke-miterlimit:10;" d="M 52.5 50 C 52.5 53.332031 47.5 53.332031 47.5 50 C 47.5 46.667969 52.5 46.667969 52.5 50 Z M 52.5 50 "/>
<g style="fill:rgb(0.784314%,8.235294%,70.196078%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="5" y="15"/>
<use xlink:href="#glyph0-2" x="16" y="15"/>
<use xlink:href="#glyph0-3" x="22" y="15"/>
</g>
<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0.784314%,8.235294%,70.196078%);stroke-opacity:1;stroke-miterlimit:10;" d="M 100 0 L 200 0 L 200 100 L 100 100 Z M 100 0 "/>
<path style="fill-rule:nonzero;fill:rgb(0.784314%,8.235294%,70.196078%);fill-opacity:1;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0.784314%,8.235294%,70.196078%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.5 50 C 152.5 53.332031 147.5 53.332031 147.5 50 C 147.5 46.667969 152.5 46.667969 152.5 50 Z M 152.5 50 "/>
<g style="fill:rgb(0.784314%,8.235294%,70.196078%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="105" y="15"/>
<use xlink:href="#glyph0-5" x="116" y="15"/>
<use xlink:href="#glyph0-6" x="128" y="15"/>
</g>
<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0.784314%,8.235294%,70.196078%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200 0 L 300 0 L 300 100 L 200 100 Z M 200 0 "/>
<path style="fill-rule:nonzero;fill:rgb(0.784314%,8.235294%,70.196078%);fill-opacity:1;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0.784314%,8.235294%,70.196078%);stroke-opacity:1;stroke-miterlimit:10;" d="M 252.5 50 C 252.5 53.332031 247.5 53.332031 247.5 50 C 247.5 46.667969 252.5 46.667969 252.5 50 Z M 252.5 50 "/>
<g style="fill:rgb(0.784314%,8.235294%,70.196078%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="205" y="15"/>
<use xlink:href="#glyph0-8" x="215" y="15"/>
<use xlink:href="#glyph0-9" x="221" y="15"/>
</g>
<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0.784314%,8.235294%,70.196078%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 100 L 100 100 L 100 200 L 0 200 Z M 0 100 "/>
<path style="fill-rule:nonzero;fill:rgb(0.784314%,8.235294%,70.196078%);fill-opacity:1;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0.784314%,8.235294%,70.196078%);stroke-opacity:1;stroke-miterlimit:10;" d="M 52.5 150 C 52.5 153.332031 47.5 153.332031 47.5 150 C 47.5 146.667969 52.5 146.667969 52.5 150 Z M 52.5 150 "/>
<g style="fill:rgb(0.784314%,8.235294%,70.196078%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="5" y="115"/>
<use xlink:href="#glyph0-11" x="16" y="115"/>
<use xlink:href="#glyph0-12" x="34" y="115"/>
</g>
<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0.784314%,8.235294%,70.196078%);stroke-opacity:1;stroke-miterlimit:10;" d="M 100 100 L 200 100 L 200 200 L 100 200 Z M 100 100 "/>
<path style="fill-rule:nonzero;fill:rgb(0.784314%,8.235294%,70.196078%);fill-opacity:1;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0.784314%,8.235294%,70.196078%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.5 150 C 152.5 153.332031 147.5 153.332031 147.5 150 C 147.5 146.667969 152.5 146.667969 152.5 150 Z M 152.5 150 "/>
<g style="fill:rgb(0.784314%,8.235294%,70.196078%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="105" y="115"/>
<use xlink:href="#glyph0-14" x="114" y="115"/>
<use xlink:href="#glyph0-15" x="126" y="115"/>
</g>
<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0.784314%,8.235294%,70.196078%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200 100 L 300 100 L 300 200 L 200 200 Z M 200 100 "/>
<path style="fill-rule:nonzero;fill:rgb(0.784314%,8.235294%,70.196078%);fill-opacity:1;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0.784314%,8.235294%,70.196078%);stroke-opacity:1;stroke-miterlimit:10;" d="M 252.5 150 C 252.5 153.332031 247.5 153.332031 247.5 150 C 247.5 146.667969 252.5 146.667969 252.5 150 Z M 252.5 150 "/>
<g style="fill:rgb(0.784314%,8.235294%,70.196078%);fill-opacity:1;">
<use xlink:href="#glyph0-16" x="205" y="115"/>
<use xlink:href="#glyph0-17" x="213" y="115"/>
<use xlink:href="#glyph0-18" x="223" y="115"/>
</g>
<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0.784314%,8.235294%,70.196078%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 200 L 100 200 L 100 300 L 0 300 Z M 0 200 "/>
<path style="fill-rule:nonzero;fill:rgb(0.784314%,8.235294%,70.196078%);fill-opacity:1;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0.784314%,8.235294%,70.196078%);stroke-opacity:1;stroke-miterlimit:10;" d="M 52.5 250 C 52.5 253.332031 47.5 253.332031 47.5 250 C 47.5 246.667969 52.5 246.667969 52.5 250 Z M 52.5 250 "/>
<g style="fill:rgb(0.784314%,8.235294%,70.196078%);fill-opacity:1;">
<use xlink:href="#glyph0-19" x="5" y="215"/>
<use xlink:href="#glyph0-20" x="16" y="215"/>
<use xlink:href="#glyph0-21" x="27" y="215"/>
</g>
<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0.784314%,8.235294%,70.196078%);stroke-opacity:1;stroke-miterlimit:10;" d="M 100 200 L 200 200 L 200 300 L 100 300 Z M 100 200 "/>
<path style="fill-rule:nonzero;fill:rgb(0.784314%,8.235294%,70.196078%);fill-opacity:1;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0.784314%,8.235294%,70.196078%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.5 250 C 152.5 253.332031 147.5 253.332031 147.5 250 C 147.5 246.667969 152.5 246.667969 152.5 250 Z M 152.5 250 "/>
<g style="fill:rgb(0.784314%,8.235294%,70.196078%);fill-opacity:1;">
<use xlink:href="#glyph0-22" x="105" y="215"/>
<use xlink:href="#glyph0-23" x="118" y="215"/>
<use xlink:href="#glyph0-24" x="129" y="215"/>
</g>
<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0.784314%,8.235294%,70.196078%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200 200 L 300 200 L 300 300 L 200 300 Z M 200 200 "/>
<path style="fill-rule:nonzero;fill:rgb(0.784314%,8.235294%,70.196078%);fill-opacity:1;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0.784314%,8.235294%,70.196078%);stroke-opacity:1;stroke-miterlimit:10;" d="M 252.5 250 C 252.5 253.332031 247.5 253.332031 247.5 250 C 247.5 246.667969 252.5 246.667969 252.5 250 Z M 252.5 250 "/>
<g style="fill:rgb(0.784314%,8.235294%,70.196078%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="205" y="215"/>
<use xlink:href="#glyph0-26" x="212" y="215"/>
</g>
<path style="fill:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(75.686275%,22.352941%,71.372549%);stroke-opacity:1;stroke-miterlimit:10;" d="M 150 50 L 250 250 L 150 150 L 50 150 L 250 50 L 250 150 L 50 50 L 250 250 L 50 50 L 150 150 L 150 250 L 250 150 L 50 250 L 150 50 L 250 50 L 50 250 L 150 50 L 50 150 L 250 50 L 50 250 "/>
</g>
</defs>
<g id="surface379">
<use xlink:href="#surface382"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 41 KiB

@ -0,0 +1,159 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="300pt" height="300pt" viewBox="0 0 300 300" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 2.1875 0.15625 C 3.15625 0.15625 4.125 0 5.09375 0 C 6.046875 0 6.984375 0.15625 7.953125 0.15625 C 8.75 0.15625 9.34375 -0.4375 9.34375 -1.234375 C 9.34375 -2.78125 9.1875 -3.375 9.1875 -6.046875 C 9.1875 -8.765625 9.34375 -9.40625 9.34375 -11.015625 C 9.34375 -11.8125 8.75 -12.40625 7.953125 -12.40625 C 6.984375 -12.40625 6.046875 -12.234375 5.09375 -12.234375 C 4.125 -12.234375 3.15625 -12.40625 2.1875 -12.40625 C 1.390625 -12.40625 0.796875 -11.8125 0.796875 -11.015625 C 0.796875 -9.40625 0.953125 -8.765625 0.953125 -6.046875 C 0.953125 -3.375 0.796875 -2.78125 0.796875 -1.234375 C 0.796875 -0.4375 1.390625 0.15625 2.1875 0.15625 Z M 2.59375 -2.0625 L 2.59375 -10.171875 C 2.59375 -10.34375 2.71875 -10.46875 2.875 -10.46875 L 7.265625 -10.46875 C 7.421875 -10.46875 7.546875 -10.34375 7.546875 -10.171875 L 7.546875 -2.0625 C 7.546875 -1.90625 7.421875 -1.78125 7.265625 -1.78125 L 2.875 -1.78125 C 2.71875 -1.78125 2.59375 -1.90625 2.59375 -2.0625 Z M 3.859375 -5.359375 C 3.859375 -5.265625 3.921875 -5.125 3.984375 -4.90625 C 4.0625 -4.71875 4.125 -4.59375 4.234375 -4.59375 C 4.421875 -4.59375 4.421875 -4.734375 4.46875 -4.953125 C 4.546875 -5.390625 4.796875 -5.546875 5.234375 -5.546875 C 5.515625 -5.546875 5.75 -5.40625 5.796875 -5.21875 C 5.828125 -5.046875 5.65625 -4.890625 5.125 -4.640625 C 4.828125 -4.5 4.65625 -4.359375 4.65625 -4.171875 C 4.65625 -3.984375 4.875 -3.84375 5.03125 -3.765625 C 5.125 -3.71875 5.203125 -3.703125 5.234375 -3.75 C 5.296875 -3.84375 5.109375 -4.03125 5.359375 -4.140625 C 5.953125 -4.40625 6.40625 -4.640625 6.40625 -5.09375 C 6.40625 -5.609375 5.875 -5.90625 5.234375 -5.90625 C 4.59375 -5.90625 4.5 -5.65625 4 -5.515625 C 3.90625 -5.484375 3.859375 -5.4375 3.859375 -5.359375 Z M 3.859375 -9.109375 C 3.859375 -9.015625 3.921875 -8.859375 3.984375 -8.65625 C 4.0625 -8.46875 4.125 -8.34375 4.234375 -8.34375 C 4.421875 -8.34375 4.421875 -8.484375 4.46875 -8.703125 C 4.546875 -9.140625 4.796875 -9.296875 5.234375 -9.296875 C 5.515625 -9.296875 5.75 -9.15625 5.796875 -8.953125 C 5.828125 -8.78125 5.65625 -8.640625 5.125 -8.390625 C 4.828125 -8.234375 4.65625 -8.09375 4.65625 -7.921875 C 4.65625 -7.734375 4.875 -7.578125 5.03125 -7.5 C 5.125 -7.453125 5.203125 -7.4375 5.234375 -7.484375 C 5.296875 -7.578125 5.109375 -7.78125 5.359375 -7.890625 C 5.953125 -8.140625 6.40625 -8.390625 6.40625 -8.828125 C 6.40625 -9.359375 5.875 -9.640625 5.234375 -9.640625 C 4.59375 -9.640625 4.5 -9.40625 4 -9.265625 C 3.90625 -9.234375 3.859375 -9.1875 3.859375 -9.109375 Z M 4.671875 -3.125 C 4.671875 -2.859375 4.875 -2.65625 5.140625 -2.65625 C 5.390625 -2.65625 5.59375 -2.859375 5.59375 -3.125 C 5.59375 -3.359375 5.390625 -3.5625 5.140625 -3.5625 C 4.875 -3.5625 4.671875 -3.359375 4.671875 -3.125 Z M 4.671875 -6.859375 C 4.671875 -6.609375 4.875 -6.40625 5.140625 -6.40625 C 5.390625 -6.40625 5.59375 -6.609375 5.59375 -6.859375 C 5.59375 -7.109375 5.390625 -7.3125 5.140625 -7.3125 C 4.875 -7.3125 4.671875 -7.109375 4.671875 -6.859375 Z M 4.671875 -6.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 9.09375 0.109375 C 9.78125 0.109375 10.40625 -0.53125 10.40625 -1.0625 C 10.40625 -1.59375 9.421875 -2.34375 8.734375 -3.921875 C 8.125 -5.328125 8.03125 -6 8.5625 -6.859375 C 9.109375 -7.75 9.78125 -8.203125 9.25 -8.734375 C 8.875 -9.109375 7.84375 -8.796875 6.828125 -8.296875 C 6.046875 -8.890625 5.234375 -9.203125 4 -9.203125 C 2.390625 -9.203125 0.953125 -8.40625 0.984375 -7.984375 C 1.03125 -7.578125 1.296875 -7.28125 1.859375 -7.296875 C 2.609375 -7.328125 3.6875 -7.40625 4.59375 -7.046875 C 1.1875 -5.171875 -0.296875 -1.234375 1.28125 -0.046875 C 2.34375 0.734375 5.09375 -0.390625 6.484375 -2.546875 C 6.96875 -0.765625 8.046875 0.109375 9.09375 0.109375 Z M 3.734375 -2.609375 C 3.28125 -2.921875 3.484375 -3.75 4.21875 -4.65625 C 4.78125 -5.359375 5.234375 -5.765625 5.71875 -6.078125 C 6.140625 -5.296875 6.03125 -4.234375 5.46875 -3.453125 C 4.828125 -2.578125 4.15625 -2.296875 3.734375 -2.609375 Z M 3.734375 -2.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 1.140625 4.125 C 2.828125 3.328125 4.984375 1.5625 5.046875 0.765625 C 5.09375 0.078125 4.703125 -0.453125 4.703125 -3.328125 C 4.703125 -5.828125 4.84375 -6.265625 5.015625 -6.90625 C 5.15625 -7.515625 5.34375 -8.296875 4.890625 -8.71875 C 4.515625 -9.078125 4.0625 -9.03125 2.9375 -8.359375 C 2.21875 -7.921875 1.5 -7.6875 1.125 -7.390625 C 0.78125 -7.140625 0.625 -6.78125 0.828125 -6.4375 C 1.28125 -5.6875 2.375 -6.125 2.375 -1.96875 C 2.375 0.34375 1.6875 1.453125 1.234375 1.9375 C 0.65625 2.546875 0 2.78125 0 3.53125 C 0 3.953125 0.59375 4.390625 1.140625 4.125 Z M 1.71875 -11.796875 C 1.71875 -10.84375 2.484375 -10.078125 3.421875 -10.078125 C 4.390625 -10.078125 5.15625 -10.84375 5.15625 -11.796875 C 5.15625 -12.71875 4.390625 -13.484375 3.421875 -13.484375 C 2.484375 -13.484375 1.71875 -12.71875 1.71875 -11.796875 Z M 1.71875 -11.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 4.65625 0.234375 C 7.078125 0.234375 8.921875 -0.734375 8.921875 -2.484375 C 8.921875 -4.15625 7.609375 -5.015625 5.359375 -5.6875 C 3.84375 -6.125 3.296875 -6.453125 3.296875 -6.9375 C 3.296875 -7.46875 3.734375 -7.75 4.578125 -7.75 C 5.46875 -7.75 6.421875 -7.265625 6.859375 -6.546875 C 7.203125 -6 7.59375 -5.265625 8.09375 -5.46875 C 8.5625 -5.65625 8.3125 -6.265625 8.28125 -6.96875 C 8.25 -7.734375 8.296875 -8.15625 8.3125 -8.390625 C 8.359375 -8.765625 8.0625 -8.765625 7.515625 -8.75 C 6.765625 -8.734375 6.15625 -9.046875 4.84375 -9.046875 C 3.140625 -9.046875 0.796875 -8.359375 0.796875 -6.25 C 0.796875 -4.625 1.953125 -3.6875 4.03125 -3.046875 C 5.71875 -2.53125 6.453125 -2.265625 6.453125 -1.84375 C 6.453125 -1.328125 5.84375 -1.15625 5.03125 -1.15625 C 3.921875 -1.15625 2.78125 -1.8125 2.3125 -2.421875 C 1.921875 -2.9375 1.578125 -3.609375 1.09375 -3.40625 C 0.625 -3.21875 0.859375 -2.6875 0.890625 -1.984375 C 0.90625 -1.546875 0.890625 -1.046875 0.859375 -0.734375 C 0.828125 -0.40625 0.984375 -0.21875 1.359375 -0.125 C 2.421875 0.140625 3.34375 0.234375 4.65625 0.234375 Z M 4.65625 0.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 6.453125 0.234375 C 9.03125 0.234375 11.09375 -1.734375 11.09375 -4.421875 C 11.09375 -6.96875 9.1875 -9.0625 6.765625 -9.0625 C 5.484375 -9.0625 4.75 -8.484375 4.265625 -7.828125 C 4.34375 -11.546875 5.15625 -12.625 4.609375 -13.125 C 4.015625 -13.65625 3.1875 -12.8125 2.140625 -12.4375 C 0.453125 -11.8125 -0.203125 -11.921875 0.0625 -11.078125 C 0.34375 -10.234375 1.9375 -11.453125 1.9375 -8.609375 L 1.9375 -5.359375 C 1.9375 -4.015625 1.765625 -2.96875 1.4375 -2.484375 C 0.625 -1.203125 0.0625 -0.921875 0.703125 -0.28125 C 1.328125 0.34375 1.90625 0.109375 3.5625 -1.03125 C 4.25 -0.234375 5.21875 0.234375 6.453125 0.234375 Z M 4.28125 -4.546875 C 4.1875 -6.296875 4.5625 -7.421875 5.703125 -7.375 C 7.21875 -7.3125 7.96875 -5.4375 8.03125 -3.859375 C 8.09375 -2.296875 7.609375 -1.265625 6.59375 -1.28125 C 5.265625 -1.296875 4.390625 -2.859375 4.28125 -4.546875 Z M 4.28125 -4.546875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 1.453125 0.078125 C 2.265625 0.078125 2.703125 -0.046875 3.375 -0.046875 C 4.0625 -0.046875 4.65625 0.078125 5.296875 0.078125 C 5.890625 0.078125 6.265625 -0.203125 6.265625 -0.625 C 6.265625 -1.375 5.703125 -1.25 5.046875 -2.109375 C 4.25 -3.328125 5.28125 -3.875 5.90625 -4.296875 C 6.40625 -3.484375 7.375 -1.796875 7.78125 -1.28125 C 8.625 -0.1875 9.28125 0.234375 10.703125 0.234375 C 11.484375 0.234375 12.203125 -0.046875 12.203125 -0.515625 C 12.203125 -1.03125 11.84375 -0.9375 11.0625 -1.546875 C 10.4375 -2.03125 9.546875 -2.859375 9.03125 -3.703125 L 7.78125 -5.625 C 8.609375 -6.171875 9.765625 -6.859375 10.265625 -7.1875 C 10.984375 -7.625 11.4375 -7.703125 11.484375 -8.21875 C 11.515625 -8.578125 11.265625 -8.921875 10.671875 -8.921875 C 10.03125 -8.921875 9.640625 -8.796875 8.953125 -8.796875 C 8.28125 -8.796875 7.515625 -8.921875 7.046875 -8.921875 C 6.59375 -8.921875 6.21875 -8.578125 6.21875 -8.21875 C 6.21875 -7.546875 7.078125 -7.71875 7.203125 -7.171875 C 7.328125 -6.640625 6.1875 -5.875 5.578125 -5.53125 C 5.15625 -5.3125 4.921875 -5.203125 4.765625 -5.265625 C 4.59375 -5.328125 4.546875 -5.484375 4.546875 -5.9375 L 4.546875 -7.171875 C 4.546875 -10.125 4.671875 -10.578125 4.828125 -11.21875 C 4.96875 -11.828125 5.171875 -12.609375 4.71875 -13.03125 C 4.34375 -13.375 3.890625 -13.328125 2.765625 -12.65625 C 2.046875 -12.21875 1.328125 -11.984375 0.9375 -11.703125 C 0.609375 -11.4375 0.453125 -11.09375 0.65625 -10.734375 C 1.109375 -9.984375 2.203125 -10.4375 2.203125 -7.09375 L 2.203125 -5.1875 C 2.203125 -3.84375 2.109375 -2.640625 1.71875 -2.109375 C 1.0625 -1.25 0.484375 -1.375 0.484375 -0.625 C 0.484375 -0.203125 0.859375 0.078125 1.453125 0.078125 Z M 1.453125 0.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 4.703125 0.234375 C 6.265625 0.234375 7.625 -0.546875 8.46875 -2.078125 C 8.671875 -2.46875 8.703125 -2.65625 8.46875 -2.828125 C 8.265625 -2.96875 8.125 -2.921875 7.796875 -2.640625 C 7.328125 -2.234375 6.875 -1.953125 5.96875 -1.953125 C 4.78125 -1.953125 3.9375 -3.375 3.984375 -5.65625 C 3.984375 -5.953125 4.015625 -6.375 4.046875 -6.8125 L 6.203125 -6.65625 C 7.5625 -6.5625 7.734375 -7.09375 8.171875 -7.96875 C 8.375 -8.34375 8.234375 -8.59375 7.71875 -8.578125 L 4.203125 -8.484375 C 4.234375 -8.71875 4.28125 -8.9375 4.3125 -9.140625 C 4.46875 -9.875 4.546875 -10.4375 4.078125 -10.671875 C 3.453125 -10.984375 3.015625 -10.125 2.203125 -9.453125 C 1.5625 -8.90625 0.921875 -8.625 0.546875 -8.34375 C 0.203125 -8.078125 0.046875 -7.734375 0.25 -7.375 C 0.703125 -6.625 1.859375 -7.875 1.640625 -4.421875 C 1.484375 -1.734375 2.765625 0.234375 4.703125 0.234375 Z M 4.703125 0.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 5.046875 0.234375 C 6.765625 0.234375 8.265625 -0.546875 9.125 -2.078125 C 9.34375 -2.46875 9.359375 -2.65625 9.125 -2.828125 C 8.921875 -2.96875 8.78125 -2.921875 8.453125 -2.640625 C 7.375 -1.75 4.5625 -1.453125 3.40625 -3.59375 C 2.609375 -5.09375 2.6875 -6.9375 3.59375 -7.53125 C 4.453125 -8.078125 5.71875 -7.515625 6.5 -6.546875 C 7.140625 -5.734375 7.53125 -5.078125 7.96875 -5.25 C 8.359375 -5.40625 8.890625 -7.875 8.859375 -8.265625 C 8.8125 -8.78125 8.546875 -8.796875 7.734375 -8.6875 C 6.859375 -8.578125 6.609375 -9.0625 5.046875 -9.0625 C 2.46875 -9.0625 0.40625 -6.96875 0.40625 -4.421875 C 0.40625 -1.734375 2.46875 0.234375 5.046875 0.234375 Z M 5.046875 0.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 1.53125 0.078125 C 2.359375 0.078125 2.78125 -0.046875 3.453125 -0.046875 C 4.140625 -0.046875 4.734375 0.078125 5.375 0.078125 C 5.96875 0.078125 6.359375 -0.203125 6.359375 -0.625 C 6.359375 -1.375 5.78125 -1.25 5.125 -2.109375 C 4.71875 -2.640625 4.625 -3.84375 4.625 -5.1875 L 4.625 -7.171875 C 4.625 -10.125 4.75 -10.578125 4.90625 -11.21875 C 5.0625 -11.828125 5.25 -12.609375 4.796875 -13.03125 C 4.421875 -13.375 3.96875 -13.328125 2.84375 -12.65625 C 2.125 -12.21875 1.40625 -11.984375 1.03125 -11.703125 C 0.6875 -11.4375 0.53125 -11.09375 0.734375 -10.734375 C 1.1875 -9.984375 2.28125 -10.4375 2.28125 -7.09375 L 2.28125 -5.1875 C 2.28125 -3.84375 2.1875 -2.640625 1.796875 -2.109375 C 1.140625 -1.25 0.5625 -1.375 0.5625 -0.625 C 0.5625 -0.203125 0.9375 0.078125 1.53125 0.078125 Z M 1.53125 0.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 5.296875 0.234375 C 6.9375 0.234375 7.75 -0.546875 8.234375 -1.71875 C 8.296875 -0.9375 8.390625 -0.21875 8.625 0.015625 C 9.015625 0.40625 9.59375 0.03125 10.40625 -0.109375 C 10.9375 -0.203125 12.03125 -0.203125 11.9375 -1.046875 C 11.859375 -1.765625 11.296875 -1.4375 10.9375 -2.0625 C 10.625 -2.640625 10.453125 -3.90625 10.453125 -5.71875 C 10.453125 -7.609375 11.265625 -8.296875 10.828125 -8.9375 C 10.5625 -9.34375 9.921875 -9.3125 9.40625 -8.953125 C 8.96875 -8.65625 8.546875 -8.453125 7.984375 -8.109375 C 7.078125 -7.546875 6.65625 -7.234375 6.890625 -6.65625 C 7.125 -6.109375 8.109375 -6.359375 8.109375 -5.328125 C 8.109375 -3.578125 7.515625 -1.828125 6.046875 -1.828125 C 4.609375 -1.828125 4.125 -3.265625 4.125 -4.59375 C 4.125 -7.4375 4.78125 -8.296875 4.359375 -8.9375 C 4.078125 -9.34375 3.390625 -9.359375 2.921875 -8.953125 C 2.5 -8.578125 2.0625 -8.34375 1.609375 -8.0625 C 0.703125 -7.5 0.25 -7.203125 0.578125 -6.65625 C 0.875 -6.140625 1.875 -6.5 1.8125 -4.71875 C 1.71875 -1.984375 2.25 0.234375 5.296875 0.234375 Z M 5.296875 0.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 5.046875 0.234375 C 6.265625 0.234375 7.234375 -0.234375 7.921875 -1.03125 C 9.578125 0.109375 10.15625 0.34375 10.78125 -0.28125 C 11.421875 -0.921875 10.90625 -1.203125 10.234375 -2.25 C 9.78125 -2.96875 9.546875 -4.015625 9.546875 -5.359375 L 9.546875 -7.34375 C 9.546875 -11.453125 10.5 -12.609375 9.9375 -13.125 C 9.34375 -13.65625 8.625 -12.8125 7.578125 -12.4375 C 5.890625 -11.8125 5.234375 -11.921875 5.5 -11.078125 C 5.78125 -10.234375 7.21875 -11.453125 7.21875 -8.609375 L 7.21875 -7.828125 C 6.75 -8.484375 6 -9.0625 4.71875 -9.0625 C 2.296875 -9.0625 0.40625 -6.96875 0.40625 -4.421875 C 0.40625 -1.734375 2.46875 0.234375 5.046875 0.234375 Z M 3.390625 -4.671875 C 3.296875 -6.4375 3.6875 -7.546875 4.875 -7.5 C 6.484375 -7.453125 7.28125 -5.5625 7.34375 -3.984375 C 7.40625 -2.4375 6.890625 -1.390625 5.828125 -1.40625 C 4.4375 -1.421875 3.5 -2.984375 3.390625 -4.671875 Z M 3.390625 -4.671875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 1.84375 0.125 C 2.65625 0.125 2.921875 0 3.59375 0 C 4.28125 0 4.5625 0.125 5.046875 0.125 C 5.46875 0.125 5.828125 -0.15625 5.859375 -0.578125 C 5.890625 -0.96875 5.609375 -1.4375 5.265625 -2.0625 C 4.3125 -3.75 4.484375 -6.28125 6.171875 -7.015625 C 7.890625 -7.734375 9.171875 -5.78125 8.40625 -3.65625 C 7.609375 -1.484375 6.796875 -1.328125 6.828125 -0.578125 C 6.84375 -0.171875 7.0625 0.125 7.640625 0.125 C 8.296875 0.125 8.578125 0 9.25 0 C 9.9375 0 10.28125 0.125 10.921875 0.125 C 11.515625 0.125 11.859375 -0.15625 11.90625 -0.578125 C 11.953125 -1.046875 11.6875 -1.265625 11.375 -1.75 C 10.3125 -3.40625 10.375 -6.046875 12.0625 -6.765625 C 13.78125 -7.484375 15.078125 -5.78125 14.359375 -3.65625 C 13.609375 -1.484375 12.796875 -1.328125 12.828125 -0.578125 C 12.84375 -0.171875 13.0625 0.125 13.640625 0.125 C 14.296875 0.125 14.671875 0 15.34375 0 C 16.03125 0 16.28125 0.125 16.921875 0.125 C 17.515625 0.125 17.859375 -0.15625 17.90625 -0.578125 C 17.953125 -1.046875 17.84375 -1.265625 17.359375 -1.75 C 16.671875 -2.4375 16.5625 -2.75 16.875 -5.09375 C 17.234375 -7.609375 16.1875 -8.875 14.234375 -8.875 C 12.78125 -8.875 11.625 -8.28125 10.875 -7.375 C 10.65625 -8.53125 9.6875 -9.484375 8.1875 -9.484375 C 6.75 -9.484375 5.515625 -8.40625 4.765625 -7.015625 C 4.765625 -8.796875 5.0625 -9.40625 4.8125 -9.75 C 4.546875 -10.125 4.03125 -10.15625 3.5625 -9.765625 C 3.140625 -9.375 2.859375 -9.140625 2.421875 -8.859375 C 1.84375 -8.515625 1.40625 -8.390625 1.03125 -8.09375 C 0.6875 -7.84375 0.53125 -7.484375 0.734375 -7.140625 C 1.1875 -6.390625 2.4375 -6.984375 2.4375 -5.171875 C 2.4375 -3.828125 2.34375 -2.59375 1.9375 -2.0625 C 1.359375 -1.296875 0.859375 -1.375 0.859375 -0.625 C 0.859375 -0.203125 1.25 0.125 1.84375 0.125 Z M 1.84375 0.125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 5.28125 0.234375 C 5.609375 0.234375 5.78125 0.015625 6.140625 -0.65625 L 7.890625 -3.859375 C 8.765625 -5.453125 9.546875 -6.703125 10.046875 -7.3125 C 10.546875 -7.921875 10.9375 -7.96875 10.9375 -8.34375 C 10.9375 -8.6875 10.65625 -8.890625 10.21875 -8.890625 C 9.765625 -8.890625 9.453125 -8.796875 8.953125 -8.796875 C 8.46875 -8.796875 7.625 -8.890625 7.265625 -8.890625 C 6.84375 -8.890625 6.578125 -8.6875 6.578125 -8.34375 C 6.578125 -7.96875 7.21875 -7.90625 7.4375 -7.375 C 7.65625 -6.859375 7.34375 -6.140625 6.34375 -4.21875 L 5.875 -3.34375 L 5.265625 -4.390625 C 4.375 -5.921875 3.828125 -6.875 4.03125 -7.390625 C 4.234375 -7.890625 4.828125 -7.96875 4.828125 -8.34375 C 4.828125 -8.6875 4.546875 -8.890625 4.109375 -8.890625 C 3.640625 -8.890625 2.734375 -8.796875 2.078125 -8.796875 C 1.4375 -8.796875 0.578125 -8.890625 0.21875 -8.890625 C -0.1875 -8.890625 -0.484375 -8.6875 -0.484375 -8.34375 C -0.484375 -7.96875 -0.0625 -7.890625 0.453125 -7.296875 C 0.9375 -6.734375 1.640625 -5.390625 2.5 -3.859375 L 4.296875 -0.578125 C 4.671875 0.078125 4.859375 0.234375 5.28125 0.234375 Z M 5.28125 0.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 5.046875 0.234375 C 6.765625 0.234375 8.265625 -0.546875 9.125 -2.078125 C 9.34375 -2.46875 9.359375 -2.65625 9.125 -2.828125 C 8.921875 -2.96875 8.78125 -2.921875 8.453125 -2.640625 C 7.375 -1.75 4.5625 -1.453125 3.40625 -3.59375 C 3.28125 -3.828125 3.1875 -4.078125 3.109375 -4.3125 L 7.21875 -4.609375 C 8.21875 -4.671875 8.515625 -4.75 8.515625 -5.71875 C 8.515625 -8.015625 7.171875 -9.0625 5.046875 -9.0625 C 2.46875 -9.0625 0.40625 -6.96875 0.40625 -4.421875 C 0.40625 -1.734375 2.46875 0.234375 5.046875 0.234375 Z M 2.875 -5.609375 C 2.859375 -6.484375 3.15625 -7.25 3.734375 -7.59375 C 4.890625 -8.3125 6.015625 -7.515625 6.015625 -6.09375 Z M 2.875 -5.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 1.84375 0.125 C 2.65625 0.125 2.921875 0 3.59375 0 C 4.28125 0 4.5625 0.125 5.046875 0.125 C 5.46875 0.125 5.828125 -0.15625 5.859375 -0.578125 C 5.890625 -0.96875 5.609375 -1.4375 5.265625 -2.0625 C 4.3125 -3.75 4.484375 -6.28125 6.171875 -7.015625 C 7.890625 -7.734375 9.34375 -5.78125 8.625 -3.65625 C 7.890625 -1.484375 6.90625 -1.328125 6.9375 -0.578125 C 6.953125 -0.171875 7.171875 0.125 7.765625 0.125 C 8.421875 0.125 8.53125 0 9.203125 0 C 9.890625 0 10.5625 0.125 11.203125 0.125 C 11.796875 0.125 12.125 -0.15625 12.171875 -0.578125 C 12.21875 -1.046875 12.109375 -1.265625 11.625 -1.75 C 10.9375 -2.4375 10.828125 -2.984375 11.15625 -5.328125 C 11.5 -7.859375 10.296875 -9.125 8.359375 -9.125 C 6.75 -9.125 5.515625 -8.40625 4.765625 -7.015625 C 4.765625 -8.796875 5.0625 -9.40625 4.8125 -9.75 C 4.546875 -10.125 4.03125 -10.15625 3.5625 -9.765625 C 3.140625 -9.375 2.859375 -9.140625 2.421875 -8.859375 C 1.84375 -8.515625 1.40625 -8.390625 1.03125 -8.09375 C 0.6875 -7.84375 0.53125 -7.484375 0.734375 -7.140625 C 1.1875 -6.390625 2.4375 -6.984375 2.4375 -5.171875 C 2.4375 -3.828125 2.34375 -2.59375 1.9375 -2.0625 C 1.359375 -1.296875 0.859375 -1.375 0.859375 -0.625 C 0.859375 -0.203125 1.25 0.125 1.84375 0.125 Z M 1.84375 0.125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 4.640625 0.234375 C 4.96875 0.234375 5.171875 0.03125 5.5 -0.65625 L 7.546875 -4.8125 L 9.640625 -0.578125 C 9.984375 0.09375 10.203125 0.234375 10.625 0.234375 C 10.953125 0.234375 11.171875 0.046875 11.484375 -0.65625 L 12.953125 -3.859375 C 13.734375 -5.515625 14.3125 -6.703125 14.8125 -7.3125 C 15.3125 -7.921875 15.71875 -7.96875 15.71875 -8.34375 C 15.71875 -8.6875 15.421875 -8.890625 14.984375 -8.890625 C 14.53125 -8.890625 14.21875 -8.796875 13.734375 -8.796875 C 13.234375 -8.796875 12.40625 -8.890625 12.03125 -8.890625 C 11.609375 -8.890625 11.34375 -8.6875 11.34375 -8.34375 C 11.34375 -7.96875 11.984375 -7.90625 12.203125 -7.375 C 12.4375 -6.859375 12.203125 -6.25 11.40625 -4.21875 L 11.140625 -3.546875 L 8.921875 -8.015625 C 8.546875 -8.78125 8.46875 -9.046875 8.078125 -9.046875 C 7.75 -9.046875 7.625 -8.796875 7.265625 -7.96875 L 5.328125 -3.5 L 4.96875 -4.390625 C 4.34375 -6.03125 3.828125 -6.875 4.03125 -7.390625 C 4.234375 -7.890625 4.828125 -7.96875 4.828125 -8.34375 C 4.828125 -8.6875 4.546875 -8.890625 4.109375 -8.890625 C 3.640625 -8.890625 2.734375 -8.796875 2.078125 -8.796875 C 1.4375 -8.796875 0.578125 -8.890625 0.21875 -8.890625 C -0.1875 -8.890625 -0.484375 -8.6875 -0.484375 -8.34375 C -0.484375 -7.96875 -0.0625 -7.890625 0.453125 -7.296875 C 0.9375 -6.734375 1.46875 -5.453125 2.203125 -3.859375 L 3.734375 -0.578125 C 4.046875 0.109375 4.21875 0.234375 4.640625 0.234375 Z M 4.640625 0.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 1.609375 0.109375 C 2.4375 0.109375 2.859375 0 3.53125 0 C 4.21875 0 4.8125 0.109375 5.453125 0.109375 C 6.046875 0.109375 6.4375 -0.171875 6.4375 -0.59375 C 6.4375 -1.34375 5.859375 -1.21875 5.203125 -2.078125 C 4.796875 -2.609375 4.703125 -3.84375 4.703125 -5.1875 L 4.703125 -6.59375 L 6.125 -6.5 C 7.484375 -6.40625 7.625 -6.921875 8.09375 -7.8125 C 8.28125 -8.171875 8.15625 -8.4375 7.625 -8.421875 L 4.765625 -8.34375 C 4.875 -9.9375 5.203125 -11.15625 6.0625 -11.15625 C 6.984375 -11.15625 7.1875 -9.53125 7.8125 -9.5625 C 8.453125 -9.609375 8.375 -10.3125 8.453125 -11.234375 C 8.515625 -11.890625 8.625 -12.28125 8.609375 -12.78125 C 8.59375 -13.125 8.4375 -13.265625 8.046875 -13.265625 C 6.0625 -13.265625 3.515625 -12.171875 2.765625 -10.25 C 2.140625 -8.65625 1.8125 -8.296875 1.109375 -8.015625 C 0.71875 -7.859375 0.609375 -7.40625 0.8125 -7.0625 C 1.265625 -6.296875 2.375 -7.390625 2.375 -4.6875 L 2.375 -4.21875 C 2.375 -2.875 2.265625 -2.609375 1.875 -2.078125 C 1.21875 -1.21875 0.640625 -1.34375 0.640625 -0.59375 C 0.640625 -0.171875 1.03125 0.109375 1.609375 0.109375 Z M 1.609375 0.109375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-17">
<path style="stroke:none;" d="M 5.171875 0.234375 C 7.796875 0.234375 9.9375 -1.84375 9.9375 -4.421875 C 9.9375 -7.09375 7.796875 -9.046875 5.171875 -9.046875 C 2.53125 -9.046875 0.40625 -6.96875 0.40625 -4.421875 C 0.40625 -1.734375 2.53125 0.234375 5.171875 0.234375 Z M 3.375 -4.078125 C 2.671875 -5.703125 2.734375 -7.1875 3.65625 -7.484375 C 4.953125 -7.921875 6.546875 -6.171875 7.140625 -4.703125 C 7.71875 -3.265625 7.75 -1.859375 6.765625 -1.53125 C 5.5 -1.125 4.046875 -2.53125 3.375 -4.078125 Z M 3.375 -4.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-18">
<path style="stroke:none;" d="M 0.875 0.125 C 1.34375 0.125 2.1875 0.03125 2.703125 0.03125 C 3.203125 0.03125 3.875 0.125 4.484375 0.125 C 4.90625 0.125 5.203125 -0.09375 5.203125 -0.40625 C 5.203125 -0.953125 4.34375 -0.8125 4.3125 -1.390625 C 4.296875 -1.65625 4.640625 -2.171875 5.078125 -2.703125 L 6.171875 -1.28125 C 7.015625 -0.1875 8.046875 0.234375 9.46875 0.234375 C 10.25 0.234375 10.8125 -0.046875 10.8125 -0.515625 C 10.8125 -1.03125 10.53125 -0.9375 9.75 -1.546875 C 9.125 -2.03125 8.234375 -2.875 7.59375 -3.640625 L 6.828125 -4.546875 C 8.015625 -5.703125 8.78125 -6.421875 9.3125 -6.859375 C 10.125 -7.578125 10.65625 -7.703125 10.703125 -8.21875 C 10.734375 -8.578125 10.484375 -8.921875 9.890625 -8.921875 C 9.25 -8.921875 9.03125 -8.796875 8.34375 -8.796875 C 7.65625 -8.796875 7.375 -8.921875 6.890625 -8.921875 C 6.453125 -8.921875 6.234375 -8.578125 6.234375 -8.21875 C 6.234375 -7.71875 6.625 -7.828125 6.75 -7.28125 C 6.828125 -6.921875 6.40625 -6.375 5.890625 -5.828125 C 5.484375 -6.4375 5.15625 -7.046875 5.015625 -7.375 C 4.625 -8.25 4.53125 -8.984375 3.625 -8.921875 C 2.953125 -8.875 2.34375 -8.875 1.515625 -8.921875 C 0.921875 -8.953125 0.546875 -8.59375 0.546875 -8.171875 C 0.546875 -7.546875 0.84375 -7.703125 1.421875 -7.125 C 1.828125 -6.71875 2.953125 -5.453125 3.5625 -4.671875 L 4.078125 -4 C 2.890625 -2.875 1.796875 -2.046875 1.25 -1.65625 C 0.671875 -1.25 0.15625 -0.953125 0.15625 -0.40625 C 0.15625 -0.09375 0.4375 0.125 0.875 0.125 Z M 0.875 0.125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-19">
<path style="stroke:none;" d="M 1.71875 3.96875 C 3.078125 4.609375 7.015625 4.421875 9.25 2.4375 C 11.390625 0.546875 11.15625 -1.359375 10.515625 -1.703125 C 9.953125 -1.984375 8.65625 -1.65625 6.28125 -0.921875 C 4.359375 -0.3125 3.453125 -0.515625 3.078125 -0.90625 C 2.84375 -1.15625 2.90625 -1.640625 3.1875 -1.90625 C 3.3125 -2.015625 3.484375 -2.125 3.875 -2.015625 L 3.84375 -2.03125 C 4.34375 -1.90625 4.875 -1.84375 5.4375 -1.84375 C 8.078125 -1.84375 10.21875 -3.453125 10.21875 -5.453125 C 10.21875 -6.625 9.546875 -7.59375 8.484375 -8.25 C 9.53125 -8.296875 10.390625 -8.671875 10.5 -9.484375 C 10.75 -11.25 8.640625 -11.453125 8.453125 -11.234375 C 8.296875 -11.078125 8.5625 -10.171875 8.09375 -9.71875 C 7.71875 -9.328125 6.828125 -9.046875 5.4375 -9.046875 C 2.765625 -9.046875 0.640625 -7.421875 0.640625 -5.453125 C 0.640625 -4.546875 1.046875 -3.75 1.71875 -3.125 L 1.703125 -3.140625 C 1.71875 -3.125 1.75 -3.109375 1.765625 -3.09375 L 1.84375 -3.03125 C 2.140625 -2.734375 1.984375 -2.578125 1.765625 -2.390625 C 1.21875 -1.90625 0.578125 -1.125 0.953125 -0.3125 C 1.21875 0.203125 1.546875 0.59375 1.9375 0.859375 C 0.703125 1.578125 0.21875 3.28125 1.71875 3.96875 Z M 2.3125 1.09375 C 3.71875 1.78125 5.640625 1.3125 7.40625 0.84375 C 8.3125 0.609375 8.640625 0.8125 8.640625 1.21875 C 8.640625 1.609375 7.84375 2.75 5.640625 2.765625 C 4.109375 2.78125 2.875 2.265625 2.3125 1.09375 Z M 4.046875 -5.1875 C 3.515625 -6.4375 3.546875 -7.578125 4.265625 -7.828125 C 5.265625 -8.15625 6.5 -6.8125 6.953125 -5.65625 C 7.40625 -4.5625 7.421875 -3.46875 6.671875 -3.21875 C 5.703125 -2.875 4.5625 -3.984375 4.046875 -5.1875 Z M 4.046875 -5.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-20">
<path style="stroke:none;" d="M 1.265625 4.125 C 1.859375 4.125 2.9375 4 3.578125 4 C 4.140625 4 5.328125 4.125 5.828125 4.125 C 6.421875 4.125 6.640625 3.796875 6.640625 3.421875 C 6.640625 3.09375 6.296875 2.796875 5.859375 2.703125 C 4.84375 2.484375 4.078125 2.046875 4.078125 1.078125 L 4.078125 -0.40625 C 4.671875 0.015625 5.40625 0.234375 6.25 0.234375 C 8.828125 0.234375 10.890625 -1.734375 10.890625 -4.421875 C 10.890625 -6.96875 8.984375 -9.046875 6.578125 -9.046875 C 5.78125 -9.046875 5.21875 -8.78125 4.734375 -8.5 C 4.078125 -8.09375 3.421875 -8 2.65625 -8.453125 C 1.484375 -9.140625 1.03125 -9.203125 0.515625 -8.6875 C -0.125 -8.046875 0.4375 -7.78125 1.25 -6.5 C 1.5625 -6 1.75 -4.953125 1.75 -3.609375 L 1.75 -0.984375 C 1.75 3.28125 0.28125 2.484375 0.28125 3.421875 C 0.28125 3.765625 0.625 4.125 1.265625 4.125 Z M 4.09375 -4.546875 C 4 -6.296875 4.375 -7.421875 5.5 -7.375 C 7.03125 -7.3125 7.78125 -5.4375 7.84375 -3.859375 C 7.90625 -2.296875 7.421875 -1.265625 6.40625 -1.28125 C 5.078125 -1.296875 4.1875 -2.859375 4.09375 -4.546875 Z M 4.09375 -4.546875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-21">
<path style="stroke:none;" d="M 4.015625 4.140625 C 4.359375 4.140625 4.15625 3.59375 6.09375 -0.5 L 6.609375 -1.59375 L 7.90625 -3.953125 C 8.78125 -5.546875 9.546875 -6.703125 10.046875 -7.3125 C 10.546875 -7.921875 10.9375 -7.96875 10.9375 -8.34375 C 10.9375 -8.6875 10.65625 -8.890625 10.21875 -8.890625 C 9.765625 -8.890625 9.453125 -8.796875 8.953125 -8.796875 C 8.46875 -8.796875 7.625 -8.890625 7.265625 -8.890625 C 6.84375 -8.890625 6.578125 -8.6875 6.578125 -8.34375 C 6.578125 -7.96875 7.21875 -7.90625 7.4375 -7.375 C 7.65625 -6.859375 7.375 -6.234375 6.359375 -4.3125 L 5.875 -3.421875 L 5.25 -4.484375 C 4.359375 -6.015625 3.828125 -6.875 4.03125 -7.390625 C 4.234375 -7.890625 4.828125 -7.96875 4.828125 -8.34375 C 4.828125 -8.6875 4.546875 -8.890625 4.109375 -8.890625 C 3.640625 -8.890625 2.734375 -8.796875 2.078125 -8.796875 C 1.4375 -8.796875 0.578125 -8.890625 0.21875 -8.890625 C -0.1875 -8.890625 -0.484375 -8.6875 -0.484375 -8.34375 C -0.484375 -7.96875 -0.0625 -7.890625 0.453125 -7.296875 C 0.9375 -6.734375 1.609375 -5.484375 2.484375 -3.953125 L 4.28125 -0.703125 L 3.765625 0.046875 C 3.21875 0.84375 2.28125 1.140625 1.28125 1.25 C 0.8125 1.296875 0.40625 1.265625 0.25 1.5625 C 0.09375 1.90625 0.171875 2.265625 0.703125 2.546875 C 1.15625 2.765625 1.796875 2.984375 2.296875 3.234375 C 2.875 3.5 3.421875 4.140625 4.015625 4.140625 Z M 4.015625 4.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-22">
<path style="stroke:none;" d="M 1.765625 0.125 C 2.578125 0.125 2.84375 0 3.515625 0 C 4.203125 0 4.484375 0.125 4.953125 0.125 C 5.390625 0.125 5.75 -0.15625 5.78125 -0.578125 C 5.8125 -0.96875 5.53125 -1.4375 5.1875 -2.0625 C 4.234375 -3.75 4.40625 -6.28125 6.09375 -7.015625 C 7.8125 -7.734375 9.265625 -5.71875 8.546875 -3.609375 C 7.8125 -1.484375 6.828125 -1.328125 6.859375 -0.578125 C 6.875 -0.171875 7.09375 0.125 7.6875 0.125 C 8.34375 0.125 8.453125 0 9.125 0 C 9.8125 0 10.484375 0.125 11.125 0.125 C 11.71875 0.125 12.046875 -0.15625 12.09375 -0.578125 C 12.140625 -1.046875 12.03125 -1.265625 11.546875 -1.75 C 10.859375 -2.4375 10.75 -2.984375 11.078125 -5.328125 C 11.421875 -7.859375 10.21875 -9.125 8.265625 -9.125 C 6.671875 -9.125 5.4375 -8.40625 4.6875 -7.015625 L 4.6875 -7.515625 C 4.6875 -8.703125 4.6875 -10.5 4.9375 -11.46875 C 5.109375 -12.078125 5.21875 -12.515625 4.890625 -12.9375 C 4.609375 -13.328125 4.125 -13.328125 3.640625 -12.953125 C 3.140625 -12.578125 2.84375 -12.09375 2.28125 -11.6875 C 1.75 -11.28125 1.328125 -11.109375 0.9375 -10.8125 C 0.609375 -10.5625 0.453125 -10.203125 0.65625 -9.859375 C 0.90625 -9.421875 1.21875 -9.5 1.640625 -9.28125 C 2.359375 -8.921875 2.359375 -8.0625 2.359375 -6.71875 L 2.359375 -5.171875 C 2.359375 -3.78125 2.25 -2.59375 1.859375 -2.0625 C 1.28125 -1.296875 0.78125 -1.328125 0.78125 -0.578125 C 0.78125 -0.15625 1.171875 0.125 1.765625 0.125 Z M 1.765625 0.125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-23">
<path style="stroke:none;" d="M 5.609375 4.125 C 6.109375 4.125 7.296875 4 7.859375 4 C 8.5 4 9.578125 4.125 10.171875 4.125 C 10.8125 4.125 11.15625 3.765625 11.15625 3.421875 C 11.15625 2.484375 9.703125 3.28125 9.703125 -0.984375 L 9.703125 -3.609375 C 9.703125 -4.953125 9.875 -6 10.1875 -6.5 C 11.015625 -7.78125 11.5625 -8.046875 10.921875 -8.6875 C 10.4375 -9.203125 9.984375 -9.140625 8.796875 -8.453125 C 8.109375 -8.046875 7.546875 -8 6.78125 -8.46875 C 6.1875 -8.8125 5.609375 -9.0625 4.71875 -9.0625 C 2.296875 -9.0625 0.40625 -6.96875 0.40625 -4.421875 C 0.40625 -1.734375 2.46875 0.234375 5.046875 0.234375 C 5.96875 0.234375 6.734375 -0.03125 7.359375 -0.5 L 7.359375 1.078125 C 7.359375 2.046875 6.59375 2.484375 5.578125 2.703125 C 5.140625 2.796875 4.796875 3.09375 4.796875 3.421875 C 4.796875 3.796875 5.03125 4.125 5.609375 4.125 Z M 3.59375 -4.671875 C 3.5 -6.4375 3.875 -7.546875 5.015625 -7.5 C 6.53125 -7.453125 7.28125 -5.5625 7.34375 -3.984375 C 7.40625 -2.4375 6.921875 -1.390625 5.90625 -1.40625 C 4.578125 -1.421875 3.703125 -2.984375 3.59375 -4.671875 Z M 3.59375 -4.671875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-24">
<path style="stroke:none;" d="M 8.78125 0.265625 C 9.28125 0.34375 9.625 0.296875 9.59375 -0.1875 C 9.578125 -0.484375 9.390625 -1.34375 9.328125 -2.3125 C 9.265625 -3.234375 9.421875 -4.21875 8.953125 -4.375 C 8.453125 -4.53125 8.359375 -4.0625 7.515625 -2.75 C 6.859375 -1.734375 6.359375 -1.0625 5.203125 -1.0625 C 4.671875 -1.0625 4.546875 -1.40625 4.609375 -1.71875 C 4.6875 -2.09375 5.375 -2.984375 6.421875 -4.21875 C 7.609375 -5.640625 8.46875 -6.640625 9.140625 -7.390625 C 9.40625 -7.703125 9.5625 -7.953125 9.484375 -8.34375 C 9.40625 -8.6875 9.234375 -8.921875 8.640625 -8.921875 C 8 -8.921875 7.140625 -8.796875 5.46875 -8.796875 C 3.8125 -8.796875 2.796875 -9.0625 1.609375 -9.21875 C 1.125 -9.28125 0.765625 -9.25 0.796875 -8.75 C 0.8125 -8.46875 1.25 -7.59375 1.203125 -6.625 C 1.15625 -5.71875 0.84375 -4.8125 1.4375 -4.578125 C 2.078125 -4.3125 2.5625 -5.53125 3.046875 -6.1875 C 3.609375 -6.984375 3.9375 -7.75 4.890625 -7.75 C 5.390625 -7.75 5.703125 -7.59375 5.78125 -7.3125 C 5.875 -6.9375 5.390625 -6.375 3.578125 -4.3125 C 2.34375 -2.90625 1.609375 -2.09375 1.1875 -1.65625 C 0.6875 -1.171875 0.3125 -0.953125 0.3125 -0.40625 C 0.3125 -0.09375 0.59375 0.125 1.046875 0.125 C 1.125 0.125 3.109375 0 4.921875 0 C 6.59375 0 7.59375 0.109375 8.78125 0.265625 Z M 8.78125 0.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-25">
<path style="stroke:none;" d="M 1.609375 0.125 C 2.4375 0.125 3.03125 0 3.703125 0 C 4.390625 0 4.96875 0.125 5.453125 0.125 C 5.9375 0.125 6.375 -0.15625 6.390625 -0.6875 C 6.421875 -1.296875 5.78125 -1.515625 5.359375 -2.0625 C 4.9375 -2.609375 4.859375 -3.171875 4.859375 -4.609375 C 4.859375 -5.828125 5.015625 -6.265625 5.171875 -6.90625 C 5.3125 -7.515625 5.5 -8.296875 5.0625 -8.71875 C 4.671875 -9.078125 4.21875 -9.03125 3.109375 -8.359375 C 2.390625 -7.921875 1.65625 -7.6875 1.28125 -7.390625 C 0.9375 -7.140625 0.78125 -6.78125 0.984375 -6.4375 C 1.4375 -5.6875 2.53125 -6.125 2.53125 -4.203125 C 2.53125 -3.1875 2.4375 -2.59375 2.03125 -2.0625 C 1.453125 -1.296875 0.640625 -1.375 0.640625 -0.625 C 0.640625 -0.203125 1.03125 0.125 1.609375 0.125 Z M 2 -11.796875 C 2 -10.84375 2.765625 -10.078125 3.71875 -10.078125 C 4.671875 -10.078125 5.4375 -10.84375 5.4375 -11.796875 C 5.4375 -12.71875 4.671875 -13.484375 3.71875 -13.484375 C 2.765625 -13.484375 2 -12.71875 2 -11.796875 Z M 2 -11.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-26">
<path style="stroke:none;" d="M 1.609375 0.125 C 2.4375 0.125 3.34375 0 4.015625 0 C 4.703125 0 5.78125 0.125 6.25 0.125 C 6.734375 0.125 7.171875 -0.15625 7.1875 -0.6875 C 7.203125 -1.609375 5.953125 -1.296875 5.359375 -2.0625 C 5.015625 -2.53125 4.890625 -3.015625 4.859375 -4.0625 C 4.96875 -6.609375 6.59375 -6.671875 7.1875 -6.0625 C 7.765625 -5.46875 8.140625 -4.3125 8.78125 -4.578125 C 9.375 -4.8125 9.078125 -5.71875 9.03125 -6.625 C 8.96875 -7.59375 9.25 -8.78125 9.265625 -9.078125 C 9.296875 -9.5625 8.9375 -9.59375 8.453125 -9.53125 C 7.53125 -9.40625 5.84375 -8.125 4.9375 -6.671875 C 4.953125 -6.859375 4.96875 -7.0625 5.015625 -7.234375 C 5.15625 -8.171875 5.15625 -9.015625 4.578125 -9.1875 C 4 -9.375 3.578125 -8.96875 2.75 -8.453125 C 2.03125 -8 1.65625 -8 1.28125 -7.71875 C 0.9375 -7.453125 0.78125 -7.109375 0.984375 -6.75 C 1.4375 -6 2.53125 -6.125 2.53125 -4.203125 C 2.53125 -3.1875 2.4375 -2.59375 2.03125 -2.0625 C 1.453125 -1.296875 0.640625 -1.375 0.640625 -0.625 C 0.640625 -0.203125 1.03125 0.125 1.609375 0.125 Z M 1.609375 0.125 "/>
</symbol>
</g>
<clipPath id="clip1">
<rect x="0" y="0" width="300" height="300"/>
</clipPath>
<g id="surface472" clip-path="url(#clip1)">
<rect x="0" y="0" width="300" height="300" style="fill:rgb(0%,0%,0%);fill-opacity:1;stroke:none;"/>
<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(75.686275%,22.352941%,71.372549%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 0 L 100 0 L 100 100 L 0 100 Z M 0 0 "/>
<path style="fill-rule:nonzero;fill:rgb(75.686275%,22.352941%,71.372549%);fill-opacity:1;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(75.686275%,22.352941%,71.372549%);stroke-opacity:1;stroke-miterlimit:10;" d="M 52.5 50 C 52.5 53.332031 47.5 53.332031 47.5 50 C 47.5 46.667969 52.5 46.667969 52.5 50 Z M 52.5 50 "/>
<g style="fill:rgb(75.686275%,22.352941%,71.372549%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="5" y="15"/>
<use xlink:href="#glyph0-2" x="16" y="15"/>
<use xlink:href="#glyph0-3" x="22" y="15"/>
</g>
<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(75.686275%,22.352941%,71.372549%);stroke-opacity:1;stroke-miterlimit:10;" d="M 100 0 L 200 0 L 200 100 L 100 100 Z M 100 0 "/>
<path style="fill-rule:nonzero;fill:rgb(75.686275%,22.352941%,71.372549%);fill-opacity:1;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(75.686275%,22.352941%,71.372549%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.5 50 C 152.5 53.332031 147.5 53.332031 147.5 50 C 147.5 46.667969 152.5 46.667969 152.5 50 Z M 152.5 50 "/>
<g style="fill:rgb(75.686275%,22.352941%,71.372549%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="105" y="15"/>
<use xlink:href="#glyph0-5" x="116" y="15"/>
<use xlink:href="#glyph0-6" x="128" y="15"/>
</g>
<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(75.686275%,22.352941%,71.372549%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200 0 L 300 0 L 300 100 L 200 100 Z M 200 0 "/>
<path style="fill-rule:nonzero;fill:rgb(75.686275%,22.352941%,71.372549%);fill-opacity:1;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(75.686275%,22.352941%,71.372549%);stroke-opacity:1;stroke-miterlimit:10;" d="M 252.5 50 C 252.5 53.332031 247.5 53.332031 247.5 50 C 247.5 46.667969 252.5 46.667969 252.5 50 Z M 252.5 50 "/>
<g style="fill:rgb(75.686275%,22.352941%,71.372549%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="205" y="15"/>
<use xlink:href="#glyph0-8" x="215" y="15"/>
<use xlink:href="#glyph0-9" x="221" y="15"/>
</g>
<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(75.686275%,22.352941%,71.372549%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 100 L 100 100 L 100 200 L 0 200 Z M 0 100 "/>
<path style="fill-rule:nonzero;fill:rgb(75.686275%,22.352941%,71.372549%);fill-opacity:1;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(75.686275%,22.352941%,71.372549%);stroke-opacity:1;stroke-miterlimit:10;" d="M 52.5 150 C 52.5 153.332031 47.5 153.332031 47.5 150 C 47.5 146.667969 52.5 146.667969 52.5 150 Z M 52.5 150 "/>
<g style="fill:rgb(75.686275%,22.352941%,71.372549%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="5" y="115"/>
<use xlink:href="#glyph0-11" x="16" y="115"/>
<use xlink:href="#glyph0-12" x="34" y="115"/>
</g>
<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(75.686275%,22.352941%,71.372549%);stroke-opacity:1;stroke-miterlimit:10;" d="M 100 100 L 200 100 L 200 200 L 100 200 Z M 100 100 "/>
<path style="fill-rule:nonzero;fill:rgb(75.686275%,22.352941%,71.372549%);fill-opacity:1;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(75.686275%,22.352941%,71.372549%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.5 150 C 152.5 153.332031 147.5 153.332031 147.5 150 C 147.5 146.667969 152.5 146.667969 152.5 150 Z M 152.5 150 "/>
<g style="fill:rgb(75.686275%,22.352941%,71.372549%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="105" y="115"/>
<use xlink:href="#glyph0-14" x="114" y="115"/>
<use xlink:href="#glyph0-15" x="126" y="115"/>
</g>
<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(75.686275%,22.352941%,71.372549%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200 100 L 300 100 L 300 200 L 200 200 Z M 200 100 "/>
<path style="fill-rule:nonzero;fill:rgb(75.686275%,22.352941%,71.372549%);fill-opacity:1;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(75.686275%,22.352941%,71.372549%);stroke-opacity:1;stroke-miterlimit:10;" d="M 252.5 150 C 252.5 153.332031 247.5 153.332031 247.5 150 C 247.5 146.667969 252.5 146.667969 252.5 150 Z M 252.5 150 "/>
<g style="fill:rgb(75.686275%,22.352941%,71.372549%);fill-opacity:1;">
<use xlink:href="#glyph0-16" x="205" y="115"/>
<use xlink:href="#glyph0-17" x="213" y="115"/>
<use xlink:href="#glyph0-18" x="223" y="115"/>
</g>
<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(75.686275%,22.352941%,71.372549%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 200 L 100 200 L 100 300 L 0 300 Z M 0 200 "/>
<path style="fill-rule:nonzero;fill:rgb(75.686275%,22.352941%,71.372549%);fill-opacity:1;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(75.686275%,22.352941%,71.372549%);stroke-opacity:1;stroke-miterlimit:10;" d="M 52.5 250 C 52.5 253.332031 47.5 253.332031 47.5 250 C 47.5 246.667969 52.5 246.667969 52.5 250 Z M 52.5 250 "/>
<g style="fill:rgb(75.686275%,22.352941%,71.372549%);fill-opacity:1;">
<use xlink:href="#glyph0-19" x="5" y="215"/>
<use xlink:href="#glyph0-20" x="16" y="215"/>
<use xlink:href="#glyph0-21" x="27" y="215"/>
</g>
<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(75.686275%,22.352941%,71.372549%);stroke-opacity:1;stroke-miterlimit:10;" d="M 100 200 L 200 200 L 200 300 L 100 300 Z M 100 200 "/>
<path style="fill-rule:nonzero;fill:rgb(75.686275%,22.352941%,71.372549%);fill-opacity:1;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(75.686275%,22.352941%,71.372549%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.5 250 C 152.5 253.332031 147.5 253.332031 147.5 250 C 147.5 246.667969 152.5 246.667969 152.5 250 Z M 152.5 250 "/>
<g style="fill:rgb(75.686275%,22.352941%,71.372549%);fill-opacity:1;">
<use xlink:href="#glyph0-22" x="105" y="215"/>
<use xlink:href="#glyph0-23" x="118" y="215"/>
<use xlink:href="#glyph0-24" x="129" y="215"/>
</g>
<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(75.686275%,22.352941%,71.372549%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200 200 L 300 200 L 300 300 L 200 300 Z M 200 200 "/>
<path style="fill-rule:nonzero;fill:rgb(75.686275%,22.352941%,71.372549%);fill-opacity:1;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(75.686275%,22.352941%,71.372549%);stroke-opacity:1;stroke-miterlimit:10;" d="M 252.5 250 C 252.5 253.332031 247.5 253.332031 247.5 250 C 247.5 246.667969 252.5 246.667969 252.5 250 Z M 252.5 250 "/>
<g style="fill:rgb(75.686275%,22.352941%,71.372549%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="205" y="215"/>
<use xlink:href="#glyph0-26" x="212" y="215"/>
</g>
</g>
</defs>
<g id="surface469">
<use xlink:href="#surface472"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 41 KiB

@ -0,0 +1,59 @@
from collections import OrderedDict
size(300,300)
str = "bind billionaires who fly to the upper sky from coming back to earth"
strp = str.replace(" ", "")
spell = "".join(OrderedDict.fromkeys(strp))
bg_col = '#c139b6'
fg_col = '#0215b3'
# fill(None)
# stroke(bg_col)
# ellipsemode(CENTER)
# strokewidth(0.5)
cipher_grid = 3
cell_size = WIDTH/cipher_grid
i = 0
cell_letters = ["ajs", "bkt", "clu", "dmv", "enw", "fox", "gpy", "hqz", "ir"]
cell_positions = []
font("Basteleur")
for x,y in grid(cipher_grid,cipher_grid,cell_size,cell_size):
#rect(x,y,cell_size,cell_size)
half_cell = cell_size/2
cell_pos = (x+half_cell,y+half_cell)
cell_positions.append(cell_pos)
# fill(bg_col)
# ellipse(cell_pos[0], cell_pos[1], 5, 5)
# text(cell_letters[i], x+5, y+15)
# i += 1
fill(None)
# Sigil line
stroke(fg_col)
strokewidth(2)
spell_cells = []
for letter in spell:
for cell in cell_letters:
if letter in cell:
spell_cells.append(cell_letters.index(cell))
first_letter = spell_cells.pop(0)
first_pos = cell_positions[first_letter]
autoclosepath(close=False)
beginpath(first_pos[0],first_pos[1])
for cell in spell_cells:
pos = cell_positions[cell]
lineto(pos[0], pos[1])
endpath()

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="300pt" height="300pt" viewBox="0 0 300 300" version="1.2">
<defs>
<clipPath id="clip1">
<rect x="0" y="0" width="300" height="300"/>
</clipPath>
<g id="surface178" clip-path="url(#clip1)">
<rect x="0" y="0" width="300" height="300" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
<path style="fill:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0.784314%,8.235294%,70.196078%);stroke-opacity:1;stroke-miterlimit:10;" d="M 150 50 L 250 250 L 150 150 L 50 150 L 250 50 L 250 150 L 50 50 L 250 250 L 50 50 L 150 150 L 150 250 L 250 150 L 50 250 L 150 50 L 250 50 L 50 250 L 150 50 L 50 150 L 250 50 L 50 250 "/>
</g>
</defs>
<g id="surface175">
<use xlink:href="#surface178"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 858 B

Binary file not shown.

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150.28 146.04"><defs><style>.cls-1{font-size:14px;fill:#dedc00;}.cls-1,.cls-5{font-family:Basteleur-Bold, Basteleur;font-weight:700;}.cls-2{fill:#1d1d1b;}.cls-2,.cls-3,.cls-4{stroke:#1d1d1b;stroke-miterlimit:10;stroke-width:0.5px;}.cls-3{fill:none;}.cls-4,.cls-5{fill:#312783;}.cls-5{font-size:3px;}.cls-6{letter-spacing:-0.04em;}.cls-7{letter-spacing:-0.02em;}.cls-8{letter-spacing:0.01em;}.cls-9{letter-spacing:-0.08em;}.cls-10{letter-spacing:-0.05em;}.cls-11{letter-spacing:0.03em;}.cls-12{letter-spacing:-0.03em;}.cls-13{letter-spacing:-0.01em;}</style></defs><g id="Calque_4" data-name="Calque 4"><text class="cls-1" transform="translate(0.28 12.22)">A J <tspan x="0" y="16">S</tspan></text><text class="cls-1" transform="translate(56.47 12.22)">B K <tspan x="0" y="16">T </tspan></text><text class="cls-1" transform="translate(113.38 12.22)">C L <tspan x="0" y="16">U </tspan></text><text class="cls-1" transform="translate(0.28 68.91)">D M <tspan x="0" y="16">V </tspan></text><text class="cls-1" transform="translate(56.71 68.91)">E N <tspan x="0" y="16">W</tspan></text><text class="cls-1" transform="translate(113.38 68.91)">F O <tspan x="0" y="16">X </tspan></text><text class="cls-1" transform="translate(113.52 125.52)">I R </text><text class="cls-1" transform="translate(56.71 125.52)">H Q <tspan x="0" y="16">Z</tspan></text><text class="cls-1" transform="translate(0.28 125.52)">G P <tspan x="0" y="16">Y</tspan></text></g><g id="Calque_3" data-name="Calque 3"><line class="cls-2" x1="71.14" y1="14.73" x2="127.83" y2="128.12"/><line class="cls-2" x1="71.14" y1="71.43" x2="14.44" y2="71.43"/><line class="cls-3" x1="14.44" y1="71.43" x2="127.83" y2="14.73"/><line class="cls-3" x1="127.83" y1="14.73" x2="127.83" y2="71.42"/><line class="cls-3" x1="127.83" y1="71.42" x2="14.44" y2="14.73"/><polyline class="cls-2" points="14.44 14.73 127.83 128.12 71.14 71.42 127.83 128.12"/><line class="cls-2" x1="71.14" y1="71.43" x2="71.14" y2="128.12"/><line class="cls-3" x1="71.14" y1="128.12" x2="127.83" y2="71.42"/><line class="cls-3" x1="127.83" y1="71.42" x2="14.44" y2="128.12"/><line class="cls-4" x1="71.07" y1="14.73" x2="127.76" y2="14.73"/><line class="cls-3" x1="14.44" y1="128.12" x2="71.14" y2="14.73"/><line class="cls-3" x1="14.44" y1="128.12" x2="127.83" y2="14.73"/><line class="cls-3" x1="71.14" y1="14.73" x2="14.44" y2="71.43"/><text class="cls-5" transform="translate(71.14 13.39)">1, <tspan class="cls-6" x="3.74" y="0">1</tspan><tspan x="5.58" y="0">5, 18</tspan></text><text class="cls-5" transform="translate(127.83 131.34)">2, 8</text><text class="cls-5" transform="translate(73.14 72.51)"><tspan class="cls-7">3</tspan><tspan x="2.17" y="0">, </tspan><tspan class="cls-6" x="3.96" y="0">9</tspan><tspan x="6.06" y="0">, </tspan><tspan class="cls-8" x="7.84" y="0">1</tspan><tspan x="9.83" y="0">1</tspan></text><text class="cls-5" transform="translate(14.44 75.36)">4, <tspan class="cls-7" x="4.03" y="0">1</tspan><tspan x="5.92" y="0">9</tspan></text><text class="cls-5" transform="translate(127.83 13.39)">5, <tspan class="cls-7" x="4.08" y="0">1</tspan><tspan x="5.98" y="0">6, 20</tspan></text><text class="cls-5" transform="translate(127.83 75.36)">6, <tspan class="cls-7" x="4.01" y="0">1</tspan><tspan x="5.9" y="0">3</tspan></text><text class="cls-5" transform="translate(14.44 13.39)"><tspan class="cls-9">7</tspan><tspan x="1.79" y="0">, </tspan><tspan class="cls-10" x="3.57" y="0">1</tspan><tspan x="5.38" y="0">0</tspan></text><text class="cls-5" transform="translate(71.14 131.34)"><tspan class="cls-11">1</tspan><tspan x="2.05" y="0">2</tspan></text><text class="cls-5" transform="translate(14.44 131.34)"><tspan class="cls-6">1</tspan><tspan x="1.84" y="0">4, </tspan><tspan class="cls-12" x="5.86" y="0">1</tspan><tspan class="cls-9" x="7.73" y="0">7</tspan><tspan x="9.51" y="0">, </tspan><tspan class="cls-13" x="11.3" y="0">2</tspan><tspan x="13.52" y="0">1</tspan></text></g></svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

@ -0,0 +1,717 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
viewBox="0 0 150.28 146.04"
version="1.1"
id="svg140"
sodipodi:docname="BINDLOARESWHFYTUPKMCG(cipher)-v4.svg"
inkscape:version="1.1 (1:1.1+202105261517+ce6663b3b7)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview142"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:pageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="5.1561218"
inkscape:cx="72.826053"
inkscape:cy="72.923025"
inkscape:window-width="1844"
inkscape:window-height="1037"
inkscape:window-x="68"
inkscape:window-y="35"
inkscape:window-maximized="0"
inkscape:current-layer="layer1" />
<defs
id="defs4">
<linearGradient
id="linearGradient1839"
inkscape:swatch="solid">
<stop
style="stop-color:#dedc00;stop-opacity:1;"
offset="0"
id="stop1837" />
</linearGradient>
<linearGradient
id="linearGradient1817"
inkscape:swatch="solid">
<stop
style="stop-color:#c139b6;stop-opacity:1;"
offset="0"
id="stop1815" />
</linearGradient>
<style
id="style2">.cls-1{font-size:14px;fill:#dedc00;}.cls-1,.cls-5{font-family:Basteleur-Bold, Basteleur;font-weight:700;}.cls-2{fill:#1d1d1b;}.cls-2,.cls-3,.cls-4{stroke:#1d1d1b;stroke-miterlimit:10;stroke-width:0.5px;}.cls-3{fill:none;}.cls-4,.cls-5{fill:#312783;}.cls-5{font-size:3px;}.cls-6{letter-spacing:-0.04em;}.cls-7{letter-spacing:-0.02em;}.cls-8{letter-spacing:0.01em;}.cls-9{letter-spacing:-0.08em;}.cls-10{letter-spacing:-0.05em;}.cls-11{letter-spacing:0.03em;}.cls-12{letter-spacing:-0.03em;}.cls-13{letter-spacing:-0.01em;}</style>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1817"
id="linearGradient2869"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(2,1)"
x1="14.56"
y1="130.39977"
x2="29.886001"
y2="130.39977" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1817"
id="linearGradient2873"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(2,1)"
x1="71.259999"
y1="130.1865"
x2="75.299002"
y2="130.1865" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1817"
id="linearGradient2877"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(2,1)"
x1="21.815"
y1="15.621545"
x2="29.480999"
y2="15.621545" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1817"
id="linearGradient2881"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(2,1)"
x1="127.98"
y1="74.44706"
x2="135.815"
y2="74.44706" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1817"
id="linearGradient2885"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(2,1)"
x1="128.97921"
y1="15.460276"
x2="143.48299"
y2="15.460276" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1817"
id="linearGradient2889"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(2,1)"
x1="14.43998"
y1="74.419777"
x2="22.424131"
y2="74.419777" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1817"
id="linearGradient2893"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(2,1)"
x1="73.229212"
y1="71.597062"
x2="84.896001"
y2="71.597062" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1817"
id="linearGradient2897"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(2,1)"
x1="127.86105"
y1="130.41027"
x2="133.977"
y2="130.41027" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1817"
id="linearGradient2901"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(2,1)"
x1="74.259999"
y1="17.477059"
x2="87.873991"
y2="17.477059" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1817"
id="linearGradient2903"
gradientUnits="userSpaceOnUse"
x1="0.49384251"
y1="2.8269999"
x2="22.70797"
y2="2.8269999" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1817"
id="linearGradient2905"
gradientUnits="userSpaceOnUse"
x1="-0.0052116164"
y1="2.687"
x2="28.111965"
y2="2.687" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1817"
id="linearGradient2907"
gradientUnits="userSpaceOnUse"
x1="0.41999999"
y1="2.75"
x2="25.353958"
y2="2.75" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1817"
id="linearGradient2909"
gradientUnits="userSpaceOnUse"
x1="0"
y1="2.855"
x2="33.921978"
y2="2.855" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1817"
id="linearGradient2911"
gradientUnits="userSpaceOnUse"
x1="0"
y1="2.8901501"
x2="28.923946"
y2="2.8901501" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1817"
id="linearGradient2913"
gradientUnits="userSpaceOnUse"
x1="0.14"
y1="2.7219999"
x2="27.425968"
y2="2.7219999" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1817"
id="linearGradient2915"
gradientUnits="userSpaceOnUse"
x1="1.12"
y1="-5.3043284"
x2="23.575979"
y2="-5.3043284" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1817"
id="linearGradient2917"
gradientUnits="userSpaceOnUse"
x1="0.55354345"
y1="2.6816454"
x2="30.813976"
y2="2.6816454" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1817"
id="linearGradient2919"
gradientUnits="userSpaceOnUse"
x1="-0.28130826"
y1="2.687"
x2="26.20797"
y2="2.687" />
</defs>
<rect
style="opacity:0.994;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.5;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="rect2943"
width="150.40157"
height="147.10062"
x="-0.1295546"
y="0.0043739248" />
<g
inkscape:groupmode="layer"
id="layer1"
inkscape:label="text"
style="display:inline">
<g
id="Calque_4"
data-name="Calque 4"
transform="translate(2,1)" />
<g
aria-label="A J S"
transform="translate(2.28,13.22)"
id="text8"
style="font-weight:700;font-size:14px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2903)"
class="cls-1">
<path
d="m 9.996,0 c 0.798,0 1.204,-0.56 1.204,-1.036 0,-0.476 -0.84,-1.05 -1.638,-2.884 -0.714,-1.624 -0.406,-2.954 0.196,-3.934 0.63,-1.022 1.232,-1.582 0.602,-2.156 -0.49,-0.448 -1.47,0.028 -2.534,0.686 -0.154,0.098 -0.224,0.098 -0.378,-0.028 -0.994,-0.868 -2.016,-1.19 -3.682,-1.19 -1.862,0 -2.534,0.728 -2.548,1.204 -0.014,0.448 0.504,0.714 1.148,0.588 0.938,-0.196 2.394,-0.084 3.122,0.336 0.224,0.126 0.224,0.266 0,0.392 -3.682,2.128 -6.202,6.622 -4.396,7.952 1.358,0.994 5.054,-0.658 6.244,-3.332 0.098,-0.224 0.238,-0.21 0.266,0 C 7.868,-1.246 8.694,0 9.996,0 Z M 3.08,-2.226 C 2.562,-2.59 2.94,-3.724 4.116,-5.194 4.998,-6.286 5.866,-6.888 6.37,-7.21 6.566,-7.336 6.65,-7.322 6.748,-7.14 7.112,-6.384 6.846,-5.25 5.824,-3.864 4.83,-2.52 3.598,-1.862 3.08,-2.226 Z"
style="font-weight:700;font-size:14px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2903)"
id="path3416" />
<path
d="m 17.093988,2.03 c 1.652,-0.28 3.402,-1.456 3.402,-4.564 v -3.36 c 0,-1.176 0.084,-2.226 0.434,-2.688 0.574,-0.756 0.938,-0.784 0.938,-1.246 0,-0.42 -0.336,-0.672 -0.854,-0.672 -0.574,0 -0.938,0.112 -1.54,0.112 -0.588,0 -1.12,-0.112 -1.54,-0.112 -0.518,0 -0.854,0.252 -0.854,0.672 0,0.462 0.364,0.49 0.938,1.246 0.35,0.462 0.434,1.512 0.434,2.688 v 1.358 c 0,2.548 -0.434,4.046 -1.848,5.18 -0.378,0.308 -0.588,0.686 -0.476,0.98 0.112,0.294 0.448,0.49 0.966,0.406 z"
style="font-weight:700;font-size:14px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2903)"
id="path3418" />
<path
d="m 5.306,16.196 c 2.422,0 5.124,-1.078 5.124,-3.514 0,-1.876 -1.484,-2.912 -4.032,-3.22 -2.604,-0.308 -3.332,-0.63 -3.332,-1.26 0,-0.784 0.98,-1.47 2.352,-1.47 1.554,0 2.268,0.602 2.716,1.638 C 8.47,9.14 8.54,9.448 9.002,9.434 9.492,9.42 9.632,8.986 9.716,8.174 9.856,6.816 10.066,6.27 9.226,6.2 8.036,6.102 7.63,5.43 5.572,5.43 c -2.478,0 -4.704,1.372 -4.704,3.486 0,1.974 1.386,2.716 4.592,3.122 2.24,0.28 2.856,0.616 2.856,1.288 0,0.672 -0.686,1.414 -2.45,1.414 -1.75,0 -2.8,-0.812 -3.304,-1.848 C 2.114,11.954 1.988,11.618 1.526,11.604 0.994,11.59 0.56,12.36 0.56,13.592 c 0,1.358 0.35,1.582 1.022,1.876 0.728,0.322 1.988,0.728 3.724,0.728 z"
id="path3420" />
</g>
<g
aria-label="B K T"
transform="translate(58.47,13.22)"
id="text12"
style="font-weight:700;font-size:14px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2905)"
class="cls-1">
<path
d="m 6.44,0.084 c 2.45,0 4.088,-1.33 4.088,-3.318 0,-1.512 -0.91,-2.45 -2.128,-2.492 -0.168,0 -0.168,-0.084 -0.042,-0.154 0.966,-0.504 1.834,-1.162 1.834,-2.674 0,-1.288 -0.994,-2.142 -2.492,-2.142 -1.218,0 -1.974,0.574 -3.122,0.574 -1.148,0 -2.436,-0.378 -2.884,-0.378 -0.518,0 -0.854,0.238 -0.854,0.616 0,0.658 0.504,0.546 1.078,1.302 0.35,0.462 0.434,1.512 0.434,2.688 v 1.358 c 0,1.176 -0.084,2.226 -0.434,2.688 -0.574,0.756 -1.078,0.644 -1.078,1.302 0,0.392 0.336,0.616 0.854,0.616 0.714,0 1.092,-0.112 1.68,-0.112 0.98,0 1.834,0.126 3.066,0.126 z M 4.312,-7.448 c 0.252,-0.882 1.036,-1.456 1.974,-1.624 0.952,-0.168 1.778,0.21 1.778,0.98 0,1.54 -2.66,2.954 -3.458,2.59 C 4.2,-5.684 4.046,-6.524 4.312,-7.448 Z m 0.224,5.964 c -0.448,-0.574 -0.644,-2.044 0.406,-2.73 0.994,-0.63 2.156,-0.742 2.856,-0.336 0.784,0.462 0.784,1.68 -0.308,2.758 -0.868,0.84 -2.45,0.938 -2.954,0.308 z"
style="font-weight:700;font-size:14px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2905)"
id="path3409" />
<path
d="m 25.045979,0.224 c 1.582,-0.07 2.506,-1.708 2.506,-4.466 0,-1.148 -0.588,-1.736 -1.526,-1.736 -1.19,0 -1.54,0.84 -1.204,1.54 0.63,1.316 1.176,3.262 0.644,3.43 -0.938,0.294 -0.812,-3.766 -3.766,-4.172 2.52,-1.204 4.9,-3.64 4.9,-4.648 0,-0.42 -0.196,-0.672 -0.714,-0.672 -0.574,0 -0.882,0.112 -1.484,0.112 -0.588,0 -0.896,-0.112 -1.316,-0.112 -0.518,0 -0.854,0.252 -0.854,0.672 0,0.462 0.784,0.672 0.938,1.246 0.182,0.7 -0.308,2.1 -3.234,2.982 -0.238,0.07 -0.336,-0.028 -0.336,-0.28 0,-1.148 0.084,-2.24 0.434,-2.702 0.574,-0.756 0.938,-0.784 0.938,-1.246 0,-0.42 -0.336,-0.672 -0.854,-0.672 -0.574,0 -0.938,0.112 -1.54,0.112 -0.588,0 -1.12,-0.112 -1.54,-0.112 -0.518,0 -0.854,0.252 -0.854,0.672 0,0.462 0.364,0.49 0.938,1.246 0.35,0.462 0.434,1.512 0.434,2.688 v 1.358 c 0,1.176 -0.084,2.226 -0.434,2.688 -0.574,0.756 -1.078,0.644 -1.078,1.302 0,0.364 0.336,0.616 0.854,0.616 0.714,0 1.092,-0.112 1.68,-0.112 0.602,0 1.12,0.112 1.68,0.112 0.518,0 0.854,-0.252 0.854,-0.616 0,-0.658 -0.504,-0.546 -1.078,-1.302 -0.35,-0.448 -0.434,-1.47 -0.434,-2.366 0,-0.196 0.098,-0.238 0.294,-0.21 1.456,0.238 1.932,1.218 2.338,2.212 0.49,1.246 0.868,2.52 2.814,2.436 z"
style="font-weight:700;font-size:14px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2905)"
id="path3411" />
<path
d="m 3.486,16.07 c 0.714,0 1.33,-0.07 1.68,-0.07 0.56,0 1.12,0.07 1.68,0.07 C 7.462,16.07 7.7,15.762 7.7,15.454 7.7,14.796 7.196,14.908 6.622,14.152 6.272,13.69 6.188,12.64 6.188,11.464 L 6.174,8.328 c 0,-0.826 0.392,-1.19 1.078,-1.19 0.7,0 1.162,0.196 1.652,1.092 C 9.296,8.972 9.45,9.336 9.912,9.294 10.444,9.252 10.458,8.258 10.318,7.026 10.164,5.682 9.758,5.234 9.016,5.234 8.274,5.234 7.308,5.71 5.194,5.71 3.08,5.71 2.114,5.234 1.372,5.234 0.63,5.234 0.224,5.682 0.07,7.026 -0.07,8.258 -0.056,9.252 0.476,9.294 0.938,9.336 1.092,8.972 1.484,8.23 1.946,7.362 2.408,7.138 3.066,7.138 c 0.742,0 1.092,0.392 1.092,1.19 l -0.014,3.136 c 0,1.176 -0.084,2.226 -0.434,2.688 -0.574,0.756 -1.078,0.644 -1.078,1.302 0,0.308 0.238,0.616 0.854,0.616 z"
id="path3413" />
</g>
<g
aria-label="C L U"
transform="translate(115.38,13.22)"
id="text16"
style="font-weight:700;font-size:14px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2907)"
class="cls-1">
<path
d="m 5.698,0.196 c 2.52,0 3.906,-1.61 4.634,-3.416 0.182,-0.448 0.168,-0.812 -0.028,-0.91 -0.322,-0.154 -0.518,0.07 -0.854,0.546 -0.63,0.896 -1.624,1.596 -2.94,1.596 -2.268,0 -3.99,-1.834 -3.99,-4.13 0,-1.722 1.134,-3.122 2.8,-3.122 1.288,0 2.142,0.7 2.87,1.862 0.49,0.784 0.966,0.742 1.288,0.322 0.266,-0.35 0.532,-2.24 0.504,-2.674 -0.042,-0.602 -0.364,-0.63 -1.288,-0.49 -0.966,0.14 -1.288,-0.42 -2.996,-0.42 -2.842,0 -5.278,2.436 -5.278,5.418 0,2.982 2.296,5.418 5.278,5.418 z"
style="font-weight:700;font-size:14px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2907)"
id="path3402" />
<path
d="m 23.575965,0.084 c 0.742,0 1.302,-0.434 1.442,-1.792 0.14,-1.372 -0.014,-2.632 -0.504,-2.73 -0.462,-0.098 -0.756,0.364 -1.19,1.106 -0.826,1.4 -1.512,2.072 -2.632,2.072 -1.288,0 -1.358,-1.05 -1.358,-2.436 v -2.198 c 0,-1.176 0.084,-2.226 0.434,-2.688 0.574,-0.756 0.938,-0.784 0.938,-1.246 0,-0.42 -0.336,-0.672 -0.854,-0.672 -0.574,0 -0.938,0.112 -1.54,0.112 -0.588,0 -1.12,-0.112 -1.54,-0.112 -0.518,0 -0.854,0.252 -0.854,0.672 0,0.462 0.364,0.49 0.938,1.246 0.35,0.462 0.434,1.512 0.434,2.688 v 1.358 c 0,1.176 -0.084,2.226 -0.434,2.688 -0.574,0.756 -1.078,0.644 -1.078,1.302 0,0.364 0.336,0.616 0.854,0.616 0.714,0 1.932,-0.112 3.08,-0.112 1.134,0 3.122,0.126 3.864,0.126 z"
style="font-weight:700;font-size:14px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2907)"
id="path3404" />
<path
d="m 6.482,16.14 c 3.57,0 4.942,-1.932 4.662,-4.676 C 10.906,9.224 10.878,8.146 11.438,7.418 12.012,6.662 12.376,6.634 12.376,6.172 12.376,5.752 12.04,5.5 11.522,5.5 10.948,5.5 10.584,5.612 9.982,5.612 9.394,5.612 8.862,5.5 8.442,5.5 7.924,5.5 7.588,5.752 7.588,6.172 c 0,0.462 0.364,0.49 0.938,1.246 0.364,0.476 0.434,1.316 0.434,3.626 0,2.492 -0.686,3.64 -2.478,3.64 -1.82,0 -2.506,-1.148 -2.506,-3.64 C 3.976,8.79 4.032,7.908 4.41,7.418 4.984,6.662 5.348,6.634 5.348,6.172 5.348,5.752 5.012,5.5 4.494,5.5 3.92,5.5 3.556,5.612 2.954,5.612 2.366,5.612 1.834,5.5 1.414,5.5 0.896,5.5 0.56,5.752 0.56,6.172 c 0,0.462 0.364,0.49 0.938,1.246 0.546,0.714 0.532,1.764 0.294,4.046 -0.28,2.744 1.12,4.676 4.69,4.676 z"
id="path3406" />
</g>
<g
aria-label="D M V"
transform="translate(2.28,69.91)"
id="text20"
style="font-weight:700;font-size:14px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2909)"
class="cls-1">
<path
d="m 1.694,0.07 c 0.714,0 1.26,-0.49 3.85,-0.154 3.514,0.448 7.224,-0.644 7.224,-5.138 0,-3.248 -2.366,-5.488 -5.474,-5.488 -1.484,0 -2.38,0.322 -3.78,0.322 -0.588,0 -1.26,-0.112 -1.68,-0.112 -0.518,0 -0.854,0.252 -0.854,0.672 0,0.462 0.364,0.49 0.938,1.246 0.35,0.462 0.434,1.512 0.434,2.688 v 1.358 c 0,1.176 -0.084,2.226 -0.434,2.688 -0.574,0.756 -1.078,0.644 -1.078,1.302 0,0.364 0.336,0.616 0.854,0.616 z m 2.66,-6.384 c 0,-2.254 0.742,-3.052 2.17,-3.052 2.422,0 3.878,2.59 3.878,4.998 0,1.862 -1.344,3.416 -3.598,3.094 -1.806,-0.266 -2.45,-1.792 -2.45,-5.04 z"
style="font-weight:700;font-size:14px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2909)"
id="path3395" />
<path
d="m 25.199981,0.154 c 0.28,0 0.434,-0.252 0.574,-0.616 l 2.506,-6.258 c 0.266,-0.644 0.378,-0.616 0.574,0.168 l 0.504,2.016 c 0.28,1.162 0.644,2.226 0.294,2.688 -0.574,0.756 -1.078,0.644 -1.078,1.302 0,0.364 0.336,0.616 0.854,0.616 0.714,0 1.092,-0.112 1.68,-0.112 0.602,0 1.26,0.112 1.82,0.112 0.518,0 0.854,-0.252 0.854,-0.616 0,-0.658 -0.504,-0.546 -1.078,-1.302 -0.35,-0.462 -0.84,-1.526 -1.162,-2.688 l -0.378,-1.358 c -0.322,-1.162 -0.756,-2.226 -0.406,-2.688 0.574,-0.756 1.498,-0.784 1.498,-1.386 0,-0.35 -0.196,-0.532 -0.77,-0.532 h -1.624 c -2.8,0 -1.932,0.462 -2.758,2.814 l -1.33,3.78 c -0.126,0.336 -0.238,0.336 -0.364,0.014 l -1.54,-3.724 c -0.91,-2.212 -0.56,-2.772 -2.198,-2.772 -0.308,0 -1.33,-0.112 -1.75,-0.112 -0.518,0 -0.854,0.252 -0.854,0.672 0,0.602 0.924,0.49 1.498,1.246 0.35,0.462 0.056,1.554 -0.28,2.688 l -0.406,1.358 c -0.336,1.134 -0.784,2.226 -1.134,2.688 -0.574,0.756 -1.078,0.644 -1.078,1.302 0,0.364 0.336,0.616 0.854,0.616 0.714,0 1.022,-0.112 1.33,-0.112 0.322,0 0.77,0.112 1.33,0.112 0.518,0 0.854,-0.252 0.854,-0.616 0,-0.658 -0.504,-0.546 -1.078,-1.302 -0.35,-0.462 -0.042,-1.554 0.28,-2.688 l 0.56,-1.974 c 0.07,-0.252 0.182,-0.266 0.28,-0.042 l 2.562,6.09 c 0.154,0.308 0.28,0.616 0.56,0.616 z"
style="font-weight:700;font-size:14px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2909)"
id="path3397" />
<path
d="m 6.356,16.42 c 0.406,0 0.63,-0.28 1.05,-1.078 L 9.24,11.464 C 10.108,9.532 10.836,8.146 11.438,7.418 12.04,6.69 12.516,6.634 12.516,6.172 12.516,5.752 12.18,5.5 11.662,5.5 11.088,5.5 10.724,5.612 10.122,5.612 9.534,5.612 8.862,5.5 8.442,5.5 7.924,5.5 7.588,5.752 7.588,6.172 c 0,0.462 0.504,0.49 1.078,1.246 0.364,0.476 -0.042,1.61 -0.938,3.626 l -0.938,2.1 C 6.706,13.34 6.636,13.34 6.538,13.158 L 5.376,10.834 C 4.438,8.972 3.948,7.936 4.27,7.418 4.662,6.802 5.208,6.634 5.208,6.172 5.208,5.752 4.872,5.5 4.354,5.5 3.78,5.5 2.996,5.612 2.394,5.612 1.806,5.612 1.274,5.5 0.854,5.5 0.336,5.5 0,5.752 0,6.172 0,6.634 0.364,6.662 0.938,7.418 1.484,8.132 2.324,9.56 3.248,11.464 L 5.18,15.44 c 0.406,0.826 0.672,0.98 1.176,0.98 z"
id="path3399" />
</g>
<g
aria-label="E N W"
transform="translate(58.71,69.91)"
id="text24"
style="font-weight:700;font-size:14px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2911)"
class="cls-1">
<path
d="m 5.698,0.196 c 2.52,0 3.906,-1.61 4.634,-3.416 0.182,-0.448 0.168,-0.812 -0.028,-0.91 -0.322,-0.154 -0.518,0.07 -0.854,0.546 -0.63,0.896 -1.624,1.596 -2.94,1.596 -1.568,0 -3.01,-0.756 -3.486,-1.862 -0.448,-1.036 0.21,-1.036 0.812,-1.078 1.554,-0.084 2.142,0.182 2.45,0.742 0.294,0.546 0.672,0.952 1.19,0.798 0.42,-0.126 0.504,-0.938 0.364,-2.086 -0.112,-0.924 -0.518,-1.792 -1.26,-1.792 -0.882,0 -0.434,1.19 -2.884,0.994 C 2.94,-6.328 2.45,-6.342 2.73,-7.336 3.122,-8.456 4.074,-9.24 5.32,-9.24 c 1.288,0 2.142,0.7 2.87,1.862 0.49,0.784 0.966,0.742 1.288,0.322 0.266,-0.35 0.532,-2.24 0.504,-2.674 -0.042,-0.602 -0.364,-0.63 -1.288,-0.49 -0.966,0.14 -1.288,-0.42 -2.996,-0.42 -2.842,0 -5.278,2.436 -5.278,5.418 0,2.982 2.296,5.418 5.278,5.418 z"
style="font-weight:700;font-size:14px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2911)"
id="path3388" />
<path
d="m 26.557965,0.644 c 0.252,-0.098 0.294,-0.434 0.294,-0.952 v -5.586 c 0,-1.176 0.084,-2.226 0.434,-2.688 0.574,-0.756 0.938,-0.784 0.938,-1.246 0,-0.42 -0.336,-0.672 -0.854,-0.672 -0.574,0 -0.658,0.112 -1.19,0.112 -0.518,0 -0.77,-0.112 -1.19,-0.112 -0.518,0 -0.854,0.252 -0.854,0.672 0,0.462 0.364,0.49 0.938,1.246 0.35,0.462 0.434,1.512 0.434,2.688 v 2.268 c 0,0.168 -0.07,0.21 -0.182,0.084 l -5.222,-6.412 c -0.224,-0.28 -0.49,-0.546 -0.952,-0.546 -0.574,0 -0.658,0.112 -1.19,0.112 -0.518,0 -0.77,-0.112 -1.19,-0.112 -0.518,0 -0.854,0.252 -0.854,0.672 0,0.462 0.364,0.49 0.938,1.246 0.35,0.462 0.434,1.512 0.434,2.688 v 1.358 c 0,1.176 -0.084,2.226 -0.434,2.688 -0.574,0.756 -1.078,0.644 -1.078,1.302 0,0.364 0.336,0.616 0.854,0.616 0.714,0 0.812,-0.112 1.33,-0.112 0.532,0 0.77,0.112 1.33,0.112 0.518,0 0.854,-0.252 0.854,-0.616 0,-0.658 -0.504,-0.546 -1.078,-1.302 -0.35,-0.462 -0.434,-1.512 -0.434,-2.688 v -1.358 c 0,-0.7 0.042,-1.372 0.112,-1.75 0.028,-0.21 0.098,-0.21 0.224,-0.056 2.366,2.758 6.328,7.49 6.678,7.896 0.364,0.434 0.644,0.546 0.91,0.448 z"
style="font-weight:700;font-size:14px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2911)"
id="path3390" />
<path
d="M 5.026,16.42 C 5.544,16.392 5.782,16.014 6.132,15.09 L 8.26,9.532 c 0.112,-0.294 0.21,-0.308 0.322,0 l 2.086,5.544 c 0.294,0.784 0.49,1.344 1.106,1.344 0.602,0 0.714,-0.546 0.966,-1.344 l 1.582,-4.9 C 14.658,9.14 15.106,7.95 15.456,7.488 16.03,6.732 16.534,6.844 16.534,6.186 16.534,5.822 16.198,5.57 15.68,5.57 c -0.714,0 -1.022,0.112 -1.33,0.112 -0.322,0 -0.77,-0.112 -1.33,-0.112 -0.518,0 -0.854,0.252 -0.854,0.616 0,0.658 0.504,0.546 1.078,1.302 0.35,0.462 0.126,1.568 -0.28,2.688 l -0.756,2.114 c -0.112,0.308 -0.21,0.308 -0.322,0 L 9.59,5.99 C 9.38,5.43 9.114,5.304 8.596,5.458 L 7.728,5.724 C 7.336,5.836 7.308,6.228 7.518,6.634 7.728,7.04 7.686,7.362 7.56,7.67 l -1.82,4.438 c -0.126,0.308 -0.224,0.588 -0.392,0.588 -0.154,0 -0.224,-0.28 -0.378,-0.756 L 4.396,10.176 C 4.032,9.042 3.64,7.95 3.99,7.488 4.424,6.914 5.068,6.844 5.068,6.186 5.068,5.822 4.732,5.57 4.214,5.57 3.5,5.57 3.122,5.682 2.534,5.682 1.932,5.682 1.414,5.57 0.854,5.57 0.336,5.57 0,5.822 0,6.186 0,6.844 0.504,6.732 1.078,7.488 1.428,7.95 1.75,9.056 2.156,10.176 l 1.75,4.9 c 0.308,0.882 0.63,1.358 1.12,1.344 z"
id="path3392" />
</g>
<g
aria-label="F O X"
transform="translate(115.38,69.91)"
id="text28"
style="font-weight:700;font-size:14px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2913)"
class="cls-1">
<path
d="m 1.974,0.07 c 0.714,0 1.092,-0.112 1.68,-0.112 0.602,0 1.12,0.112 1.68,0.112 0.518,0 0.854,-0.252 0.854,-0.616 0,-0.658 -0.504,-0.546 -1.078,-1.302 C 4.774,-2.296 4.676,-3.29 4.676,-4.424 4.69,-4.676 4.83,-4.69 5.11,-4.69 c 0.812,0 1.316,0.294 1.596,0.784 C 7,-3.36 7.378,-2.954 7.896,-3.108 8.316,-3.234 8.4,-4.046 8.26,-5.194 8.148,-6.118 7.742,-6.986 7,-6.986 c -0.812,0 -0.504,1.106 -1.89,1.078 -0.28,-0.014 -0.42,-0.098 -0.434,-0.434 0,-1.246 0.042,-2.002 0.336,-2.408 0.266,-0.378 0.784,-0.532 1.554,-0.532 1.12,0 1.862,0.378 2.212,1.386 0.266,0.77 0.532,1.162 0.854,1.19 0.518,0.042 0.826,-0.616 1.008,-2.268 0.154,-1.344 -0.42,-1.792 -1.162,-1.792 -0.742,0 -3.388,0.476 -5.082,0.476 -1.008,0 -2.282,-0.21 -2.702,-0.21 -0.518,0 -0.854,0.252 -0.854,0.672 0,0.462 0.504,0.49 1.078,1.246 0.35,0.462 0.714,1.512 0.714,2.688 v 1.358 c 0,1.176 -0.084,2.226 -0.434,2.688 -0.574,0.756 -1.078,0.644 -1.078,1.302 0,0.364 0.336,0.616 0.854,0.616 z"
style="font-weight:700;font-size:14px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2913)"
id="path3381" />
<path
d="m 21.251969,0.196 c 3.192,0 5.754,-2.422 5.754,-5.418 0,-3.122 -2.562,-5.418 -5.754,-5.418 -3.192,0 -5.754,2.422 -5.754,5.418 0,3.122 2.562,5.418 5.754,5.418 z m -3.15,-6.524 c 0,-1.652 1.078,-2.898 2.674,-2.898 2.198,0 3.626,2.492 3.626,4.816 0,1.652 -1.078,2.912 -2.674,2.912 -2.198,0 -3.626,-2.506 -3.626,-4.83 z"
style="font-weight:700;font-size:14px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2913)"
id="path3383" />
<path
d="m 10.22,16.21 c 0.938,0 1.414,-0.532 1.414,-0.896 0,-0.518 -0.448,-0.504 -1.372,-1.232 C 9.534,13.508 8.484,12.514 7.28,11.114 6.944,10.722 6.944,10.568 7.252,10.246 8.218,9.238 9.66,7.88 10.136,7.418 10.822,6.76 11.354,6.634 11.354,6.172 11.354,5.752 11.018,5.5 10.5,5.5 10.08,5.5 9.828,5.612 9.24,5.612 8.638,5.612 8.554,5.5 7.98,5.5 7.462,5.5 7.126,5.752 7.126,6.172 c 0,0.602 0.546,0.378 0.7,1.022 C 7.938,7.656 7.084,8.608 6.3,9.406 6.132,9.588 5.992,9.588 5.824,9.392 5.166,8.594 4.396,7.642 4.508,7.194 4.634,6.676 5.068,6.774 5.068,6.172 5.068,5.752 4.732,5.5 4.214,5.5 3.64,5.5 3.276,5.612 2.674,5.612 2.086,5.612 1.414,5.5 0.994,5.5 0.476,5.5 0.14,5.752 0.14,6.172 0.14,6.634 0.672,6.76 1.358,7.418 1.834,7.88 3.318,9.476 4.256,10.596 4.55,10.932 4.648,11.128 4.2,11.604 3.5,12.332 2.142,13.718 1.638,14.138 0.994,14.67 0.42,14.796 0.42,15.454 c 0,0.364 0.336,0.616 0.854,0.616 0.56,0 0.798,-0.112 1.4,-0.112 0.588,0 0.826,0.112 1.54,0.112 0.518,0 0.854,-0.252 0.854,-0.616 0,-0.658 -0.784,-0.546 -1.036,-1.176 -0.182,-0.476 0.476,-1.218 1.19,-1.932 0.21,-0.21 0.336,-0.21 0.504,0 0.602,0.742 1.19,1.54 1.596,2.072 0.77,1.008 1.596,1.792 2.898,1.792 z"
id="path3385" />
</g>
<g
aria-label="I R"
transform="translate(115.52,126.52)"
id="text30"
style="font-weight:700;font-size:14px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2915)"
class="cls-1">
<path
d="m 1.974,0.07 c 0.714,0 1.092,-0.112 1.68,-0.112 0.602,0 1.12,0.112 1.68,0.112 0.518,0 0.854,-0.252 0.854,-0.616 0,-0.658 -0.504,-0.546 -1.078,-1.302 C 4.76,-2.31 4.676,-3.36 4.676,-4.536 v -1.358 c 0,-1.176 0.084,-2.226 0.434,-2.688 0.574,-0.756 0.938,-0.784 0.938,-1.246 0,-0.42 -0.336,-0.672 -0.854,-0.672 -0.574,0 -0.938,0.112 -1.54,0.112 -0.588,0 -1.12,-0.112 -1.54,-0.112 -0.518,0 -0.854,0.252 -0.854,0.672 0,0.462 0.364,0.49 0.938,1.246 0.35,0.462 0.434,1.512 0.434,2.688 v 1.358 c 0,1.176 -0.084,2.226 -0.434,2.688 -0.574,0.756 -1.078,0.644 -1.078,1.302 0,0.364 0.336,0.616 0.854,0.616 z"
style="font-weight:700;font-size:14px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2915)"
id="path3376" />
<path
d="m 20.92998,0.084 c 1.582,-0.07 2.646,-1.008 2.646,-3.766 0,-1.148 -0.588,-1.736 -1.526,-1.736 -1.19,0 -1.54,0.84 -1.204,1.54 0.644,1.316 1.036,2.562 0.504,2.73 -1.106,0.35 -0.364,-3.542 -3.542,-3.64 3.248,-0.714 4.032,-2.254 4.032,-3.766 0,-1.246 -1.274,-2.142 -2.492,-2.142 -1.218,0 -2.114,0.574 -3.262,0.574 -0.588,0 -2.324,-0.378 -2.744,-0.378 -0.518,0 -0.854,0.252 -0.854,0.672 0,0.462 0.364,0.49 0.938,1.246 0.35,0.462 0.434,1.512 0.434,2.688 v 1.358 c 0,1.176 -0.084,2.226 -0.434,2.688 -0.574,0.756 -1.078,0.644 -1.078,1.302 0,0.364 0.336,0.616 0.854,0.616 0.714,0 1.092,-0.112 1.68,-0.112 0.602,0 1.12,0.112 1.68,0.112 0.518,0 0.854,-0.252 0.854,-0.616 0,-0.658 -0.504,-0.546 -1.078,-1.302 -0.294,-0.406 -0.406,-1.232 -0.42,-1.764 -0.014,-0.672 0.252,-0.812 0.868,-0.504 1.75,0.854 1.05,4.326 4.144,4.2 z m -5.026,-5.978 c 0,-1.82 0.154,-2.842 2.03,-3.178 0.952,-0.168 1.778,0.21 1.778,0.98 0,1.414 -1.764,2.212 -3.528,2.464 -0.21,0.028 -0.28,-0.028 -0.28,-0.266 z"
style="font-weight:700;font-size:14px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2915)"
id="path3378" />
</g>
<g
aria-label="H Q Z"
transform="translate(58.71,126.52)"
id="text34"
style="font-weight:700;font-size:14px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2917)"
class="cls-1">
<path
d="m 9.212,0.07 c 0.714,0 1.092,-0.112 1.68,-0.112 0.602,0 1.12,0.112 1.68,0.112 0.518,0 0.854,-0.252 0.854,-0.616 0,-0.658 -0.504,-0.546 -1.078,-1.302 -0.35,-0.462 -0.434,-1.512 -0.434,-2.688 v -1.358 c 0,-1.176 0.084,-2.226 0.434,-2.688 0.574,-0.756 0.938,-0.784 0.938,-1.246 0,-0.42 -0.336,-0.672 -0.854,-0.672 -0.574,0 -0.938,0.112 -1.54,0.112 -0.588,0 -1.12,-0.112 -1.54,-0.112 -0.518,0 -0.854,0.252 -0.854,0.672 0,0.462 0.364,0.49 0.938,1.246 0.252,0.336 0.364,0.756 0.406,1.568 0.028,0.826 -0.14,1.148 -0.924,1.148 H 5.404 c -0.742,0 -0.98,-0.182 -0.994,-0.826 0.028,-1.05 0.14,-1.512 0.42,-1.89 0.574,-0.756 0.938,-0.784 0.938,-1.246 0,-0.42 -0.336,-0.672 -0.854,-0.672 -0.574,0 -0.938,0.112 -1.54,0.112 -0.588,0 -1.12,-0.112 -1.54,-0.112 -0.518,0 -0.854,0.252 -0.854,0.672 0,0.462 0.364,0.49 0.938,1.246 0.35,0.462 0.434,1.512 0.434,2.688 v 1.358 c 0,1.176 -0.084,2.226 -0.434,2.688 -0.574,0.756 -1.078,0.644 -1.078,1.302 0,0.364 0.336,0.616 0.854,0.616 0.714,0 1.092,-0.112 1.68,-0.112 0.602,0 1.12,0.112 1.68,0.112 0.518,0 0.854,-0.252 0.854,-0.616 0,-0.658 -0.504,-0.546 -1.078,-1.302 C 4.578,-2.184 4.466,-2.604 4.424,-3.402 v 0.028 C 4.382,-4.158 4.55,-4.522 5.404,-4.522 h 3.528 c 0.672,0 0.91,0.21 0.924,0.784 -0.028,1.022 -0.14,1.512 -0.42,1.89 -0.574,0.756 -1.078,0.644 -1.078,1.302 0,0.364 0.336,0.616 0.854,0.616 z"
style="font-weight:700;font-size:14px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2917)"
id="path3369" />
<path
d="m 28.209977,2.632 c 1.47,0 1.918,-1.778 1.708,-2.142 -0.112,-0.196 -0.686,-0.168 -1.47,-0.14 -0.462,0.014 -1.806,-0.014 -2.66,-0.084 -0.266,-0.028 -0.518,-0.042 -0.504,-0.154 0.014,-0.112 0.378,-0.07 1.064,-0.196 2.072,-0.392 4.046,-2.52 4.046,-5.138 0,-3.122 -2.562,-5.418 -5.754,-5.418 -3.192,0 -5.754,2.422 -5.754,5.418 0,2.114 1.176,3.85 3.514,4.746 0.182,0.07 0.154,0.112 -0.028,0.126 -0.784,0.07 -1.12,0.168 -1.512,0.35 -0.602,0.266 -0.868,0.616 -0.728,0.966 0.14,0.35 0.588,0.448 1.176,0.294 0.588,-0.154 1.498,-0.14 2.492,0.168 0.98,0.308 3.346,1.204 4.41,1.204 z m -6.72,-8.96 c 0,-1.652 1.078,-2.898 2.674,-2.898 2.198,0 3.626,2.492 3.626,4.816 0,1.652 -1.078,2.912 -2.674,2.912 -2.198,0 -3.626,-2.506 -3.626,-4.83 z"
style="font-weight:700;font-size:14px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2917)"
id="path3371" />
<path
d="m 2.03,16 h 6.314 c 1.708,0 2.24,-0.084 2.24,-2.142 0,-0.518 0.028,-1.274 -0.336,-1.414 C 9.898,12.304 9.66,12.556 9.086,13.27 8.12,14.474 6.874,14.656 5.558,14.656 H 4.41 c -0.378,0 -0.476,-0.14 -0.224,-0.462 L 9.87,6.858 C 10.22,6.41 10.416,6.13 10.318,5.864 10.22,5.612 9.884,5.57 9.366,5.57 H 4.62 c -1.162,0 -1.092,-0.672 -1.834,-0.672 -0.49,0 -0.882,0.49 -1.33,1.456 -0.588,1.274 -0.84,1.932 -0.07,1.932 0.462,0 0.77,-0.364 1.526,-0.938 C 3.374,6.998 4.144,6.914 5.32,6.914 h 0.966 c 0.35,0 0.406,0.084 0.168,0.392 L 1.008,14.544 C 0.532,15.188 0.476,15.398 0.63,15.706 0.812,16.056 1.302,16 2.03,16 Z"
id="path3373" />
</g>
<g
aria-label="G P Y"
transform="translate(2.28,126.52)"
id="text38"
style="font-weight:700;font-size:14px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2919)"
class="cls-1">
<path
d="m 4.368,0.112 c 2.786,0.448 3.472,-1.316 4.284,-1.386 0.868,-0.084 1.274,1.638 2.03,1.246 0.616,-0.322 0.07,-1.288 -0.056,-2.128 -0.182,-1.246 0.308,-2.254 0.322,-2.968 0.014,-0.546 -0.322,-0.714 -0.84,-0.7 -1.092,0.028 -1.568,0.07 -2.954,0.084 -0.756,0.014 -1.106,0.322 -1.134,0.728 -0.028,0.49 0.336,0.742 1.134,0.714 1.512,-0.056 1.778,0.112 1.778,0.854 0,0.84 -1.036,1.456 -2.352,1.456 -2.268,0 -4.27,-1.554 -4.27,-4.13 0,-1.862 1.414,-3.122 3.08,-3.122 1.288,0 2.422,0.7 3.15,1.862 0.49,0.784 1.036,0.784 1.288,0.322 0.266,-0.49 0.784,-2.24 0.924,-2.814 0.182,-0.714 -0.504,-0.77 -1.708,-0.35 -0.924,0.322 -1.568,-0.42 -3.276,-0.42 -2.842,0 -5.558,2.156 -5.558,5.418 0,2.982 1.764,4.942 4.158,5.334 z"
style="font-weight:700;font-size:14px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2919)"
id="path3362" />
<path
d="m 17.289978,0.07 c 0.714,0 1.092,-0.112 1.68,-0.112 0.602,0 1.12,0.112 1.68,0.112 0.518,0 0.854,-0.252 0.854,-0.616 0,-0.658 -0.504,-0.546 -1.078,-1.302 -0.294,-0.406 -0.406,-0.952 -0.42,-1.484 -0.014,-0.532 0.224,-0.7 1.05,-0.616 2.828,0.266 4.872,-1.414 4.872,-4.046 0,-1.806 -1.274,-2.702 -2.492,-2.702 -1.218,0 -2.254,0.434 -3.402,0.434 -0.588,0 -2.184,-0.238 -2.604,-0.238 -0.518,0 -0.854,0.252 -0.854,0.672 0,0.462 0.364,0.49 0.938,1.246 0.35,0.462 0.434,1.512 0.434,2.688 v 1.358 c 0,1.176 -0.084,2.226 -0.434,2.688 -0.574,0.756 -1.078,0.644 -1.078,1.302 0,0.364 0.336,0.616 0.854,0.616 z m 2.702,-6.244 c 0,-1.54 0.154,-2.702 2.03,-3.038 0.952,-0.168 1.778,0.35 1.778,1.54 0,1.918 -1.96,2.856 -3.262,2.436 -0.392,-0.126 -0.546,-0.322 -0.546,-0.938 z"
style="font-weight:700;font-size:14px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2919)"
id="path3364" />
<path
d="m 3.542,16.07 c 0.462,0 1.204,-0.112 1.68,-0.112 0.49,0 1.274,0.112 1.68,0.112 0.518,0 0.854,-0.252 0.854,-0.616 0,-0.658 -0.504,-0.546 -1.078,-1.302 C 6.216,13.536 5.964,12.304 6.496,11.716 9.114,8.874 10.262,7.39 10.332,6.508 10.388,5.752 9.842,5.346 9.198,5.332 8.694,5.318 8.274,5.486 7.938,6.088 7.462,6.942 7.252,8.51 5.866,10.358 5.712,10.554 5.614,10.54 5.53,10.33 4.004,6.662 2.716,5.346 1.708,5.346 c -0.938,0 -1.414,0.35 -1.666,0.63 -0.266,0.294 -0.434,0.672 -0.238,1.064 0.462,0.924 1.792,0.588 2.954,2.646 0.742,1.316 1.428,2.562 1.428,3.318 0,0.686 -0.07,0.686 -0.42,1.148 -0.574,0.756 -1.078,0.644 -1.078,1.302 0,0.364 0.336,0.616 0.854,0.616 z"
id="path3366" />
</g>
<g
aria-label="1, 15, 18"
id="text71"
style="font-weight:700;font-size:3px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2901)"
class="cls-5">
<path
d="m 76.412999,19.404999 c 0.243,0 0.444,-0.024 0.78,-0.024 0.339,0 0.48,0.024 0.72,0.024 0.111,0 0.153,-0.051 0.153,-0.144 0,-0.09 -0.033,-0.147 -0.15,-0.159 -0.111,-0.012 -0.345,-0.015 -0.441,-0.153 -0.066,-0.096 -0.063,-0.279 -0.063,-0.531 v -1.005 c 0,-0.141 0.024,-0.291 -0.09,-0.309 -0.117,-0.018 -0.174,0.066 -0.258,0.18 -0.141,0.189 -0.324,0.312 -0.513,0.411 -0.159,0.084 -0.222,0.162 -0.195,0.249 0.03,0.099 0.156,0.108 0.399,0.012 0.162,-0.063 0.219,-0.051 0.219,0.171 v 0.291 c 0,0.252 0.003,0.435 -0.063,0.531 -0.099,0.141 -0.378,0.144 -0.489,0.156 -0.12,0.012 -0.162,0.069 -0.162,0.159 0,0.09 0.042,0.141 0.153,0.141 z"
style="font-weight:700;font-size:3px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2901)"
id="path3347" />
<path
d="m 78.377995,19.824999 c 0.183,-0.084 0.402,-0.306 0.465,-0.456 0.075,-0.18 0.075,-0.336 -0.066,-0.48 -0.15,-0.156 -0.315,-0.15 -0.465,0 -0.237,0.237 0.144,0.312 0.144,0.501 0,0.093 -0.054,0.147 -0.141,0.216 -0.099,0.078 -0.144,0.135 -0.123,0.189 0.027,0.069 0.096,0.072 0.186,0.03 z"
style="font-weight:700;font-size:3px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2901)"
id="path3349" />
<path
d="m 80.152997,19.404999 c 0.243,0 0.444,-0.024 0.78,-0.024 0.339,0 0.48,0.024 0.72,0.024 0.111,0 0.153,-0.051 0.153,-0.144 0,-0.09 -0.033,-0.147 -0.15,-0.159 -0.111,-0.012 -0.345,-0.015 -0.441,-0.153 -0.066,-0.096 -0.063,-0.279 -0.063,-0.531 v -1.005 c 0,-0.141 0.024,-0.291 -0.09,-0.309 -0.117,-0.018 -0.174,0.066 -0.258,0.18 -0.141,0.189 -0.324,0.312 -0.513,0.411 -0.159,0.084 -0.222,0.162 -0.195,0.249 0.03,0.099 0.156,0.108 0.399,0.012 0.162,-0.063 0.219,-0.051 0.219,0.171 v 0.291 c 0,0.252 0.003,0.435 -0.063,0.531 -0.099,0.141 -0.378,0.144 -0.489,0.156 -0.12,0.012 -0.162,0.069 -0.162,0.159 0,0.09 0.042,0.141 0.153,0.141 z"
style="letter-spacing:-0.04em"
id="path3351" />
<path
d="m 82.887001,19.437999 c 0.498,0 0.978,-0.246 0.978,-0.732 0,-0.612 -0.795,-0.765 -1.35,-0.657 l 0.051,-0.57 c 0.423,-0.039 0.528,-0.03 0.684,0.237 0.078,0.132 0.18,0.351 0.3,0.303 0.111,-0.045 0.054,-0.213 0.045,-0.384 -0.009,-0.183 0.048,-0.342 0.051,-0.399 0.006,-0.093 -0.06,-0.099 -0.153,-0.087 -0.162,0.021 -0.411,0.078 -0.723,0.078 -0.18,0 -0.384,-0.024 -0.504,-0.024 -0.111,0 -0.156,0.03 -0.162,0.111 l -0.066,0.927 c -0.006,0.174 0.102,0.174 0.195,0.15 0.606,-0.162 1.11,-0.063 1.11,0.279 0,0.216 -0.201,0.324 -0.525,0.324 -0.294,0 -0.564,-0.096 -0.765,-0.306 -0.066,-0.069 -0.105,-0.108 -0.15,-0.069 -0.048,0.039 -0.042,0.093 0,0.183 0.18,0.384 0.459,0.636 0.984,0.636 z"
id="path3353" />
<path
d="m 84.296999,19.824999 c 0.183,-0.084 0.402,-0.306 0.465,-0.456 0.075,-0.18 0.075,-0.336 -0.066,-0.48 -0.15,-0.156 -0.315,-0.15 -0.465,0 -0.237,0.237 0.144,0.312 0.144,0.501 0,0.093 -0.054,0.147 -0.141,0.216 -0.099,0.078 -0.144,0.135 -0.123,0.189 0.027,0.069 0.096,0.072 0.186,0.03 z"
id="path3355" />
<path
d="m 86.075996,19.404999 c 0.243,0 0.444,-0.024 0.78,-0.024 0.339,0 0.48,0.024 0.72,0.024 0.111,0 0.153,-0.051 0.153,-0.144 0,-0.09 -0.033,-0.147 -0.15,-0.159 -0.111,-0.012 -0.345,-0.015 -0.441,-0.153 -0.066,-0.096 -0.063,-0.279 -0.063,-0.531 v -1.005 c 0,-0.141 0.024,-0.291 -0.09,-0.309 -0.117,-0.018 -0.174,0.066 -0.258,0.18 -0.141,0.189 -0.324,0.312 -0.513,0.411 -0.159,0.084 -0.222,0.162 -0.195,0.249 0.03,0.099 0.156,0.108 0.399,0.012 0.162,-0.063 0.219,-0.051 0.219,0.171 v 0.291 c 0,0.252 0.003,0.435 -0.063,0.531 -0.099,0.141 -0.378,0.144 -0.489,0.156 -0.12,0.012 -0.162,0.069 -0.162,0.159 0,0.09 0.042,0.141 0.153,0.141 z"
id="path3357" />
<path
d="m 88.862991,19.434999 c 0.606,0 1.011,-0.288 1.011,-0.717 0,-0.264 -0.195,-0.414 -0.474,-0.525 0.228,-0.09 0.354,-0.267 0.354,-0.456 0,-0.375 -0.285,-0.627 -0.891,-0.627 -0.609,0 -0.954,0.288 -0.954,0.717 0,0.243 0.15,0.405 0.351,0.513 -0.255,0.108 -0.411,0.282 -0.411,0.498 0,0.357 0.405,0.597 1.014,0.597 z m -0.504,-0.612 c 0,-0.15 0.063,-0.273 0.228,-0.36 0.042,0.012 0.084,0.021 0.126,0.03 0.402,0.081 0.582,0.147 0.582,0.357 0,0.237 -0.159,0.372 -0.408,0.372 -0.333,0 -0.528,-0.189 -0.528,-0.399 z m 0.075,-1.155 c 0,-0.243 0.144,-0.381 0.399,-0.381 0.249,0 0.411,0.162 0.411,0.378 0,0.162 -0.063,0.318 -0.228,0.405 l -0.153,-0.039 c -0.279,-0.072 -0.429,-0.156 -0.429,-0.363 z"
id="path3359" />
</g>
<g
aria-label="2, 8"
id="text73"
style="font-weight:700;font-size:3px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2897)"
class="cls-5">
<path
d="m 130.166,132.34 h 1.383 c 0.276,0 0.39,-0.018 0.39,-0.459 0,-0.411 0,-0.561 -0.072,-0.564 -0.075,-0.003 -0.105,0.198 -0.279,0.438 -0.153,0.21 -0.384,0.255 -0.606,0.264 -0.162,0.006 -0.21,0.006 -0.222,-0.021 -0.012,-0.03 0.018,-0.072 0.15,-0.165 0.492,-0.345 0.816,-0.714 0.816,-1.17 0,-0.363 -0.276,-0.645 -0.753,-0.645 -0.612,0 -0.978,0.426 -0.9,1.011 0.018,0.135 0.072,0.168 0.123,0.168 0.06,0 0.099,-0.054 0.117,-0.174 0.042,-0.291 0.243,-0.525 0.504,-0.525 0.213,0 0.357,0.15 0.357,0.372 0,0.381 -0.612,0.819 -1.005,1.074 -0.249,0.162 -0.33,0.234 -0.303,0.303 0.036,0.093 0.144,0.093 0.3,0.093 z"
style="font-weight:700;font-size:3px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2897)"
id="path3340" />
<path
d="m 132.356,132.775 c 0.183,-0.084 0.402,-0.306 0.465,-0.456 0.075,-0.18 0.075,-0.336 -0.066,-0.48 -0.15,-0.156 -0.315,-0.15 -0.465,0 -0.237,0.237 0.144,0.312 0.144,0.501 0,0.093 -0.054,0.147 -0.141,0.216 -0.099,0.078 -0.144,0.135 -0.123,0.189 0.027,0.069 0.096,0.072 0.186,0.03 z"
style="font-weight:700;font-size:3px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2897)"
id="path3342" />
<path
d="m 134.966,132.385 c 0.606,0 1.011,-0.288 1.011,-0.717 0,-0.264 -0.195,-0.414 -0.474,-0.525 0.228,-0.09 0.354,-0.267 0.354,-0.456 0,-0.375 -0.285,-0.627 -0.891,-0.627 -0.609,0 -0.954,0.288 -0.954,0.717 0,0.243 0.15,0.405 0.351,0.513 -0.255,0.108 -0.411,0.282 -0.411,0.498 0,0.357 0.405,0.597 1.014,0.597 z m -0.504,-0.612 c 0,-0.15 0.063,-0.273 0.228,-0.36 0.042,0.012 0.084,0.021 0.126,0.03 0.402,0.081 0.582,0.147 0.582,0.357 0,0.237 -0.159,0.372 -0.408,0.372 -0.333,0 -0.528,-0.189 -0.528,-0.399 z m 0.075,-1.155 c 0,-0.243 0.144,-0.381 0.399,-0.381 0.249,0 0.411,0.162 0.411,0.378 0,0.162 -0.063,0.318 -0.228,0.405 l -0.153,-0.039 c -0.279,-0.072 -0.429,-0.156 -0.429,-0.363 z"
style="font-weight:700;font-size:3px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2897)"
id="path3344" />
</g>
<g
aria-label="3,9,11"
id="text87"
style="font-weight:700;font-size:3px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2893)"
class="cls-5">
<path
d="m 76.246999,73.555002 c 0.498,0 0.978,-0.303 0.978,-0.759 0,-0.399 -0.324,-0.525 -0.645,-0.579 0.33,-0.087 0.513,-0.3 0.522,-0.573 0.009,-0.291 -0.252,-0.381 -0.453,-0.381 -0.12,0 -0.327,0.051 -0.504,0.051 -0.162,0 -0.381,-0.024 -0.543,-0.045 -0.093,-0.012 -0.159,-0.006 -0.153,0.087 0.003,0.057 0.06,0.216 0.051,0.399 -0.009,0.171 -0.096,0.405 0.015,0.444 0.093,0.033 0.159,-0.051 0.33,-0.363 0.135,-0.249 0.345,-0.315 0.495,-0.315 0.126,0 0.219,0.057 0.219,0.153 0,0.135 -0.195,0.348 -0.687,0.645 -0.069,0.042 -0.072,0.099 -0.051,0.138 0.036,0.066 0.09,0.072 0.165,0.051 0.378,-0.105 0.717,-0.078 0.717,0.234 0,0.246 -0.231,0.402 -0.555,0.402 -0.294,0 -0.534,-0.126 -0.735,-0.336 -0.066,-0.069 -0.102,-0.099 -0.15,-0.069 -0.048,0.03 -0.042,0.093 0,0.183 0.18,0.384 0.459,0.633 0.984,0.633 z"
style="letter-spacing:-0.02em"
id="path3327" />
<path
d="m 77.591998,73.945002 c 0.183,-0.084 0.402,-0.306 0.465,-0.456 0.075,-0.18 0.075,-0.336 -0.066,-0.48 -0.15,-0.156 -0.315,-0.15 -0.465,0 -0.237,0.237 0.144,0.312 0.144,0.501 0,0.093 -0.054,0.147 -0.141,0.216 -0.099,0.078 -0.144,0.135 -0.123,0.189 0.027,0.069 0.096,0.072 0.186,0.03 z"
id="path3329" />
<path
d="m 79.828998,73.528002 c 0.672,0.018 1.176,-0.321 1.305,-0.987 0.129,-0.66 -0.162,-1.17 -0.762,-1.287 -0.528,-0.108 -1.005,0.141 -1.104,0.636 -0.084,0.411 0.129,0.831 0.642,0.933 0.231,0.045 0.429,0.003 0.657,-0.129 0.021,-0.012 0.03,-0.009 0.021,0.012 -0.138,0.348 -0.441,0.507 -0.852,0.534 -0.15,0.009 -0.249,-0.006 -0.267,0.084 -0.021,0.105 0.126,0.198 0.36,0.204 z m -0.126,-1.755 c 0.054,-0.198 0.255,-0.279 0.465,-0.213 0.318,0.105 0.546,0.483 0.48,0.729 -0.051,0.18 -0.249,0.267 -0.483,0.204 -0.345,-0.096 -0.534,-0.465 -0.462,-0.72 z"
style="letter-spacing:-0.04em"
id="path3331" />
<path
d="m 81.481997,73.945002 c 0.183,-0.084 0.402,-0.306 0.465,-0.456 0.075,-0.18 0.075,-0.336 -0.066,-0.48 -0.15,-0.156 -0.315,-0.15 -0.465,0 -0.237,0.237 0.144,0.312 0.144,0.501 0,0.093 -0.054,0.147 -0.141,0.216 -0.099,0.078 -0.144,0.135 -0.123,0.189 0.027,0.069 0.096,0.072 0.186,0.03 z"
id="path3333" />
<path
d="m 83.253003,73.525002 c 0.243,0 0.444,-0.024 0.78,-0.024 0.339,0 0.48,0.024 0.72,0.024 0.111,0 0.153,-0.051 0.153,-0.144 0,-0.09 -0.033,-0.147 -0.15,-0.159 -0.111,-0.012 -0.345,-0.015 -0.441,-0.153 -0.066,-0.096 -0.063,-0.279 -0.063,-0.531 v -1.005 c 0,-0.141 0.024,-0.291 -0.09,-0.309 -0.117,-0.018 -0.174,0.066 -0.258,0.18 -0.141,0.189 -0.324,0.312 -0.513,0.411 -0.159,0.084 -0.222,0.162 -0.195,0.249 0.03,0.099 0.156,0.108 0.399,0.012 0.162,-0.063 0.219,-0.051 0.219,0.171 v 0.291 c 0,0.252 0.003,0.435 -0.063,0.531 -0.099,0.141 -0.378,0.144 -0.489,0.156 -0.12,0.012 -0.162,0.069 -0.162,0.159 0,0.09 0.042,0.141 0.153,0.141 z"
style="letter-spacing:0.01em"
id="path3335" />
<path
d="m 85.243001,73.525002 c 0.243,0 0.444,-0.024 0.78,-0.024 0.339,0 0.48,0.024 0.72,0.024 0.111,0 0.153,-0.051 0.153,-0.144 0,-0.09 -0.033,-0.147 -0.15,-0.159 -0.111,-0.012 -0.345,-0.015 -0.441,-0.153 -0.066,-0.096 -0.063,-0.279 -0.063,-0.531 v -1.005 c 0,-0.141 0.024,-0.291 -0.09,-0.309 -0.117,-0.018 -0.174,0.066 -0.258,0.18 -0.141,0.189 -0.324,0.312 -0.513,0.411 -0.159,0.084 -0.222,0.162 -0.195,0.249 0.03,0.099 0.156,0.108 0.399,0.012 0.162,-0.063 0.219,-0.051 0.219,0.171 v 0.291 c 0,0.252 0.003,0.435 -0.063,0.531 -0.099,0.141 -0.378,0.144 -0.489,0.156 -0.12,0.012 -0.162,0.069 -0.162,0.159 0,0.09 0.042,0.141 0.153,0.141 z"
id="path3337" />
</g>
<g
aria-label="4, 19"
id="text93"
style="font-weight:700;font-size:3px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2889)"
class="cls-5">
<path
d="m 17.222999,76.381001 c 0.153,0 0.324,-0.021 0.51,-0.021 0.219,0 0.48,0.021 0.6,0.021 0.111,0 0.183,-0.057 0.183,-0.132 0,-0.141 -0.228,-0.117 -0.351,-0.279 -0.036,-0.048 -0.054,-0.135 -0.06,-0.249 h 0.138 c 0.3,0 0.375,-0.126 0.375,-0.318 0,-0.102 -0.033,-0.123 -0.153,-0.099 -0.117,0.024 -0.24,0.045 -0.36,0.063 v -0.051 l 0.03,-1.098 c 0.003,-0.126 -0.024,-0.201 -0.144,-0.201 -0.126,0 -0.249,0.165 -0.36,0.282 l -1.056,1.086 c -0.114,0.12 -0.162,0.189 -0.12,0.264 0.045,0.081 0.132,0.069 0.258,0.069 l 0.912,0.003 c -0.009,0.117 -0.03,0.18 -0.084,0.249 -0.117,0.156 -0.471,0.138 -0.471,0.279 0,0.078 0.042,0.132 0.153,0.132 z m -0.279,-0.924 0.714,-0.747 -0.021,0.711 c -0.243,0.021 -0.48,0.033 -0.693,0.036 z"
style="font-weight:700;font-size:3px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2889)"
id="path3318" />
<path
d="m 18.959994,76.795001 c 0.183,-0.084 0.402,-0.306 0.465,-0.456 0.075,-0.18 0.075,-0.336 -0.066,-0.48 -0.15,-0.156 -0.315,-0.15 -0.465,0 -0.237,0.237 0.144,0.312 0.144,0.501 0,0.093 -0.054,0.147 -0.141,0.216 -0.099,0.078 -0.144,0.135 -0.123,0.189 0.027,0.069 0.096,0.072 0.186,0.03 z"
style="font-weight:700;font-size:3px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2889)"
id="path3320" />
<path
d="m 20.742999,76.375001 c 0.243,0 0.444,-0.024 0.78,-0.024 0.339,0 0.48,0.024 0.72,0.024 0.111,0 0.153,-0.051 0.153,-0.144 0,-0.09 -0.033,-0.147 -0.15,-0.159 -0.111,-0.012 -0.345,-0.015 -0.441,-0.153 -0.066,-0.096 -0.063,-0.279 -0.063,-0.531 v -1.005 c 0,-0.141 0.024,-0.291 -0.09,-0.309 -0.117,-0.018 -0.174,0.066 -0.258,0.18 -0.141,0.189 -0.324,0.312 -0.513,0.411 -0.159,0.084 -0.222,0.162 -0.195,0.249 0.03,0.099 0.156,0.108 0.399,0.012 0.162,-0.063 0.219,-0.051 0.219,0.171 v 0.291 c 0,0.252 0.003,0.435 -0.063,0.531 -0.099,0.141 -0.378,0.144 -0.489,0.156 -0.12,0.012 -0.162,0.069 -0.162,0.159 0,0.09 0.042,0.141 0.153,0.141 z"
style="letter-spacing:-0.02em"
id="path3322" />
<path
d="m 23.089001,76.378001 c 0.672,0.018 1.176,-0.321 1.305,-0.987 0.129,-0.66 -0.162,-1.17 -0.762,-1.287 -0.528,-0.108 -1.005,0.141 -1.104,0.636 -0.084,0.411 0.129,0.831 0.642,0.933 0.231,0.045 0.429,0.003 0.657,-0.129 0.021,-0.012 0.03,-0.009 0.021,0.012 -0.138,0.348 -0.441,0.507 -0.852,0.534 -0.15,0.009 -0.249,-0.006 -0.267,0.084 -0.021,0.105 0.126,0.198 0.36,0.204 z m -0.126,-1.755 c 0.054,-0.198 0.255,-0.279 0.465,-0.213 0.318,0.105 0.546,0.483 0.48,0.729 -0.051,0.18 -0.249,0.267 -0.483,0.204 -0.345,-0.096 -0.534,-0.465 -0.462,-0.72 z"
id="path3324" />
</g>
<g
aria-label="5, 16, 20"
id="text99"
style="font-weight:700;font-size:3px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2885)"
class="cls-5">
<path
d="m 131.997,17.437999 c 0.498,0 0.978,-0.246 0.978,-0.732 0,-0.612 -0.795,-0.765 -1.35,-0.657 l 0.051,-0.57 c 0.423,-0.039 0.528,-0.03 0.684,0.237 0.078,0.132 0.18,0.351 0.3,0.303 0.111,-0.045 0.054,-0.213 0.045,-0.384 -0.009,-0.183 0.048,-0.342 0.051,-0.399 0.006,-0.093 -0.06,-0.099 -0.153,-0.087 -0.162,0.021 -0.411,0.078 -0.723,0.078 -0.18,0 -0.384,-0.024 -0.504,-0.024 -0.111,0 -0.156,0.03 -0.162,0.111 l -0.066,0.927 c -0.006,0.174 0.102,0.174 0.195,0.15 0.606,-0.162 1.11,-0.063 1.11,0.279 0,0.216 -0.201,0.324 -0.525,0.324 -0.294,0 -0.564,-0.096 -0.765,-0.306 -0.066,-0.069 -0.105,-0.108 -0.15,-0.069 -0.048,0.039 -0.042,0.093 0,0.183 0.18,0.384 0.459,0.636 0.984,0.636 z"
style="font-weight:700;font-size:3px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2885)"
id="path3303" />
<path
d="m 133.407,17.824999 c 0.183,-0.084 0.402,-0.306 0.465,-0.456 0.075,-0.18 0.075,-0.336 -0.066,-0.48 -0.15,-0.156 -0.315,-0.15 -0.465,0 -0.237,0.237 0.144,0.312 0.144,0.501 0,0.093 -0.054,0.147 -0.141,0.216 -0.099,0.078 -0.144,0.135 -0.123,0.189 0.027,0.069 0.096,0.072 0.186,0.03 z"
style="font-weight:700;font-size:3px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2885)"
id="path3305" />
<path
d="m 135.183,17.404999 c 0.243,0 0.444,-0.024 0.78,-0.024 0.339,0 0.48,0.024 0.72,0.024 0.111,0 0.153,-0.051 0.153,-0.144 0,-0.09 -0.033,-0.147 -0.15,-0.159 -0.111,-0.012 -0.345,-0.015 -0.441,-0.153 -0.066,-0.096 -0.063,-0.279 -0.063,-0.531 v -1.005 c 0,-0.141 0.024,-0.291 -0.09,-0.309 -0.117,-0.018 -0.174,0.066 -0.258,0.18 -0.141,0.189 -0.324,0.312 -0.513,0.411 -0.159,0.084 -0.222,0.162 -0.195,0.249 0.03,0.099 0.156,0.108 0.399,0.012 0.162,-0.063 0.219,-0.051 0.219,0.171 v 0.291 c 0,0.252 0.003,0.435 -0.063,0.531 -0.099,0.141 -0.378,0.144 -0.489,0.156 -0.12,0.012 -0.162,0.069 -0.162,0.159 0,0.09 0.042,0.141 0.153,0.141 z"
style="letter-spacing:-0.02em"
id="path3307" />
<path
d="m 137.95,17.434999 c 0.54,0 0.96,-0.327 0.96,-0.831 0,-0.417 -0.288,-0.789 -0.81,-0.789 -0.252,0 -0.45,0.087 -0.654,0.288 0.078,-0.381 0.369,-0.627 0.741,-0.732 0.147,-0.042 0.246,-0.045 0.246,-0.135 0,-0.108 -0.156,-0.144 -0.387,-0.105 -0.573,0.099 -1.086,0.576 -1.086,1.287 0,0.612 0.378,1.017 0.99,1.017 z m -0.477,-0.918 c 0,-0.186 0.168,-0.324 0.408,-0.324 0.36,0 0.639,0.306 0.639,0.57 0,0.207 -0.174,0.339 -0.393,0.33 -0.336,-0.012 -0.654,-0.321 -0.654,-0.576 z"
id="path3309" />
<path
d="m 139.312,17.824999 c 0.183,-0.084 0.402,-0.306 0.465,-0.456 0.075,-0.18 0.075,-0.336 -0.066,-0.48 -0.15,-0.156 -0.315,-0.15 -0.465,0 -0.237,0.237 0.144,0.312 0.144,0.501 0,0.093 -0.054,0.147 -0.141,0.216 -0.099,0.078 -0.144,0.135 -0.123,0.189 0.027,0.069 0.096,0.072 0.186,0.03 z"
id="path3311" />
<path
d="m 141.15399,17.389999 h 1.383 c 0.276,0 0.39,-0.018 0.39,-0.459 0,-0.411 0,-0.561 -0.072,-0.564 -0.075,-0.003 -0.105,0.198 -0.279,0.438 -0.153,0.21 -0.384,0.255 -0.606,0.264 -0.162,0.006 -0.21,0.006 -0.222,-0.021 -0.012,-0.03 0.018,-0.072 0.15,-0.165 0.492,-0.345 0.816,-0.714 0.816,-1.17 0,-0.363 -0.276,-0.645 -0.753,-0.645 -0.612,0 -0.978,0.426 -0.9,1.011 0.018,0.135 0.072,0.168 0.123,0.168 0.06,0 0.099,-0.054 0.117,-0.174 0.042,-0.291 0.243,-0.525 0.504,-0.525 0.213,0 0.357,0.15 0.357,0.372 0,0.381 -0.612,0.819 -1.005,1.074 -0.249,0.162 -0.33,0.234 -0.303,0.303 0.036,0.093 0.144,0.093 0.3,0.093 z"
id="path3313" />
<path
d="m 144.32499,15.112999 c -0.639,0 -1.158,0.519 -1.158,1.161 0,0.669 0.519,1.161 1.158,1.161 0.642,0 1.158,-0.522 1.158,-1.161 0,-0.672 -0.516,-1.161 -1.158,-1.161 z m -0.606,1.362 c -0.045,-0.171 -0.042,-0.393 0.009,-0.594 0.09,-0.342 0.378,-0.543 0.702,-0.462 0.096,0.027 0.183,0.069 0.249,0.135 0.081,0.081 0.024,0.168 -0.06,0.246 l -0.72,0.693 c -0.078,0.075 -0.153,0.09 -0.18,-0.018 z m 0.303,0.507 c -0.099,-0.084 -0.087,-0.174 0,-0.258 l 0.705,-0.681 c 0.099,-0.096 0.189,-0.081 0.213,0.036 0.036,0.171 0.018,0.357 -0.024,0.528 -0.084,0.342 -0.369,0.549 -0.699,0.465 -0.06,-0.015 -0.132,-0.039 -0.195,-0.09 z"
id="path3315" />
</g>
<g
aria-label="6, 13"
id="text105"
style="font-weight:700;font-size:3px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2881)"
class="cls-5">
<path
d="m 130.97,76.405001 c 0.54,0 0.96,-0.327 0.96,-0.831 0,-0.417 -0.288,-0.789 -0.81,-0.789 -0.252,0 -0.45,0.087 -0.654,0.288 0.078,-0.381 0.369,-0.627 0.741,-0.732 0.147,-0.042 0.246,-0.045 0.246,-0.135 0,-0.108 -0.156,-0.144 -0.387,-0.105 -0.573,0.099 -1.086,0.576 -1.086,1.287 0,0.612 0.378,1.017 0.99,1.017 z m -0.477,-0.918 c 0,-0.186 0.168,-0.324 0.408,-0.324 0.36,0 0.639,0.306 0.639,0.57 0,0.207 -0.174,0.339 -0.393,0.33 -0.336,-0.012 -0.654,-0.321 -0.654,-0.576 z"
style="font-weight:700;font-size:3px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2881)"
id="path3294" />
<path
d="m 132.332,76.795001 c 0.183,-0.084 0.402,-0.306 0.465,-0.456 0.075,-0.18 0.075,-0.336 -0.066,-0.48 -0.15,-0.156 -0.315,-0.15 -0.465,0 -0.237,0.237 0.144,0.312 0.144,0.501 0,0.093 -0.054,0.147 -0.141,0.216 -0.099,0.078 -0.144,0.135 -0.123,0.189 0.027,0.069 0.096,0.072 0.186,0.03 z"
style="font-weight:700;font-size:3px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2881)"
id="path3296" />
<path
d="m 134.113,76.375001 c 0.243,0 0.444,-0.024 0.78,-0.024 0.339,0 0.48,0.024 0.72,0.024 0.111,0 0.153,-0.051 0.153,-0.144 0,-0.09 -0.033,-0.147 -0.15,-0.159 -0.111,-0.012 -0.345,-0.015 -0.441,-0.153 -0.066,-0.096 -0.063,-0.279 -0.063,-0.531 v -1.005 c 0,-0.141 0.024,-0.291 -0.09,-0.309 -0.117,-0.018 -0.174,0.066 -0.258,0.18 -0.141,0.189 -0.324,0.312 -0.513,0.411 -0.159,0.084 -0.222,0.162 -0.195,0.249 0.03,0.099 0.156,0.108 0.399,0.012 0.162,-0.063 0.219,-0.051 0.219,0.171 v 0.291 c 0,0.252 0.003,0.435 -0.063,0.531 -0.099,0.141 -0.378,0.144 -0.489,0.156 -0.12,0.012 -0.162,0.069 -0.162,0.159 0,0.09 0.042,0.141 0.153,0.141 z"
style="letter-spacing:-0.02em"
id="path3298" />
<path
d="m 136.837,76.405001 c 0.498,0 0.978,-0.303 0.978,-0.759 0,-0.399 -0.324,-0.525 -0.645,-0.579 0.33,-0.087 0.513,-0.3 0.522,-0.573 0.009,-0.291 -0.252,-0.381 -0.453,-0.381 -0.12,0 -0.327,0.051 -0.504,0.051 -0.162,0 -0.381,-0.024 -0.543,-0.045 -0.093,-0.012 -0.159,-0.006 -0.153,0.087 0.003,0.057 0.06,0.216 0.051,0.399 -0.009,0.171 -0.096,0.405 0.015,0.444 0.093,0.033 0.159,-0.051 0.33,-0.363 0.135,-0.249 0.345,-0.315 0.495,-0.315 0.126,0 0.219,0.057 0.219,0.153 0,0.135 -0.195,0.348 -0.687,0.645 -0.069,0.042 -0.072,0.099 -0.051,0.138 0.036,0.066 0.09,0.072 0.165,0.051 0.378,-0.105 0.717,-0.078 0.717,0.234 0,0.246 -0.231,0.402 -0.555,0.402 -0.294,0 -0.534,-0.126 -0.735,-0.336 -0.066,-0.069 -0.102,-0.099 -0.15,-0.069 -0.048,0.03 -0.042,0.093 0,0.183 0.18,0.384 0.459,0.633 0.984,0.633 z"
id="path3300" />
</g>
<g
aria-label="7,10"
id="text115"
style="font-weight:700;font-size:3px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2877)"
class="cls-5">
<path
d="m 24.43,17.552485 c 0.048,0 0.132,-0.018 0.186,-0.018 0.093,0 0.186,0.018 0.243,0.018 0.099,0 0.117,-0.039 0.102,-0.21 -0.069,-0.846 0.141,-1.32 0.534,-1.707 0.123,-0.12 0.234,-0.189 0.204,-0.267 -0.027,-0.072 -0.135,-0.069 -0.291,-0.069 h -1.203 c -0.276,0 -0.39,0.018 -0.39,0.459 0,0.411 0,0.561 0.072,0.564 0.075,0.003 0.108,-0.165 0.207,-0.333 0.18,-0.306 0.387,-0.36 0.639,-0.372 0.162,-0.006 0.21,-0.003 0.222,0.024 0.012,0.03 0.009,0.066 -0.12,0.225 -0.357,0.441 -0.462,0.987 -0.501,1.503 -0.009,0.123 0.009,0.183 0.096,0.183 z"
style="letter-spacing:-0.08em"
id="path3285" />
<path
d="m 25.751999,17.969485 c 0.183,-0.084 0.402,-0.306 0.465,-0.456 0.075,-0.18 0.075,-0.336 -0.066,-0.48 -0.15,-0.156 -0.315,-0.15 -0.465,0 -0.237,0.237 0.144,0.312 0.144,0.501 0,0.093 -0.054,0.147 -0.141,0.216 -0.099,0.078 -0.144,0.135 -0.123,0.189 0.027,0.069 0.096,0.072 0.186,0.03 z"
id="path3287" />
<path
d="m 27.523,17.549485 c 0.243,0 0.444,-0.024 0.78,-0.024 0.339,0 0.48,0.024 0.72,0.024 0.111,0 0.153,-0.051 0.153,-0.144 0,-0.09 -0.033,-0.147 -0.15,-0.159 -0.111,-0.012 -0.345,-0.015 -0.441,-0.153 -0.066,-0.096 -0.063,-0.279 -0.063,-0.531 v -1.005 c 0,-0.141 0.024,-0.291 -0.09,-0.309 -0.117,-0.018 -0.174,0.066 -0.258,0.18 -0.141,0.189 -0.324,0.312 -0.513,0.411 -0.159,0.084 -0.222,0.162 -0.195,0.249 0.03,0.099 0.156,0.108 0.399,0.012 0.162,-0.063 0.219,-0.051 0.219,0.171 v 0.291 c 0,0.252 0.003,0.435 -0.063,0.531 -0.099,0.141 -0.378,0.144 -0.489,0.156 -0.12,0.012 -0.162,0.069 -0.162,0.159 0,0.09 0.042,0.141 0.153,0.141 z"
style="letter-spacing:-0.05em"
id="path3289" />
<path
d="m 30.322999,15.257485 c -0.639,0 -1.158,0.519 -1.158,1.161 0,0.669 0.519,1.161 1.158,1.161 0.642,0 1.158,-0.522 1.158,-1.161 0,-0.672 -0.516,-1.161 -1.158,-1.161 z m -0.606,1.362 c -0.045,-0.171 -0.042,-0.393 0.009,-0.594 0.09,-0.342 0.378,-0.543 0.702,-0.462 0.096,0.027 0.183,0.069 0.249,0.135 0.081,0.081 0.024,0.168 -0.06,0.246 l -0.72,0.693 c -0.078,0.075 -0.153,0.09 -0.18,-0.018 z m 0.303,0.507 c -0.099,-0.084 -0.087,-0.174 0,-0.258 l 0.705,-0.681 c 0.099,-0.096 0.189,-0.081 0.213,0.036 0.036,0.171 0.018,0.357 -0.024,0.528 -0.084,0.342 -0.369,0.549 -0.699,0.465 -0.06,-0.015 -0.132,-0.039 -0.195,-0.09 z"
id="path3291" />
</g>
<g
aria-label="12"
id="text121"
style="font-weight:700;font-size:3px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2873)"
class="cls-5">
<path
d="m 73.412999,132.355 c 0.243,0 0.444,-0.024 0.78,-0.024 0.339,0 0.48,0.024 0.72,0.024 0.111,0 0.153,-0.051 0.153,-0.144 0,-0.09 -0.033,-0.147 -0.15,-0.159 -0.111,-0.012 -0.345,-0.015 -0.441,-0.153 -0.066,-0.096 -0.063,-0.279 -0.063,-0.531 v -1.005 c 0,-0.141 0.024,-0.291 -0.09,-0.309 -0.117,-0.018 -0.174,0.066 -0.258,0.18 -0.141,0.189 -0.324,0.312 -0.513,0.411 -0.159,0.084 -0.222,0.162 -0.195,0.249 0.03,0.099 0.156,0.108 0.399,0.012 0.162,-0.063 0.219,-0.051 0.219,0.171 v 0.291 c 0,0.252 0.003,0.435 -0.063,0.531 -0.099,0.141 -0.378,0.144 -0.489,0.156 -0.12,0.012 -0.162,0.069 -0.162,0.159 0,0.09 0.042,0.141 0.153,0.141 z"
style="letter-spacing:0.03em"
id="path3280" />
<path
d="m 75.526002,132.34 h 1.383 c 0.276,0 0.39,-0.018 0.39,-0.459 0,-0.411 0,-0.561 -0.072,-0.564 -0.075,-0.003 -0.105,0.198 -0.279,0.438 -0.153,0.21 -0.384,0.255 -0.606,0.264 -0.162,0.006 -0.21,0.006 -0.222,-0.021 -0.012,-0.03 0.018,-0.072 0.15,-0.165 0.492,-0.345 0.816,-0.714 0.816,-1.17 0,-0.363 -0.276,-0.645 -0.753,-0.645 -0.612,0 -0.978,0.426 -0.9,1.011 0.018,0.135 0.072,0.168 0.123,0.168 0.06,0 0.099,-0.054 0.117,-0.174 0.042,-0.291 0.243,-0.525 0.504,-0.525 0.213,0 0.357,0.15 0.357,0.372 0,0.381 -0.612,0.819 -1.005,1.074 -0.249,0.162 -0.33,0.234 -0.303,0.303 0.036,0.093 0.144,0.093 0.3,0.093 z"
id="path3282" />
</g>
<g
aria-label="14,17,21"
id="text137"
style="font-weight:700;font-size:3px;font-family:Basteleur-Bold, Basteleur;fill:url(#linearGradient2869)"
class="cls-5">
<path
d="m 16.712999,132.355 c 0.243,0 0.444,-0.024 0.78,-0.024 0.339,0 0.48,0.024 0.72,0.024 0.111,0 0.153,-0.051 0.153,-0.144 0,-0.09 -0.033,-0.147 -0.15,-0.159 -0.111,-0.012 -0.345,-0.015 -0.441,-0.153 -0.066,-0.096 -0.063,-0.279 -0.063,-0.531 v -1.005 c 0,-0.141 0.024,-0.291 -0.09,-0.309 -0.117,-0.018 -0.174,0.066 -0.258,0.18 -0.141,0.189 -0.324,0.312 -0.513,0.411 -0.159,0.084 -0.222,0.162 -0.195,0.249 0.03,0.099 0.156,0.108 0.399,0.012 0.162,-0.063 0.219,-0.051 0.219,0.171 v 0.291 c 0,0.252 0.003,0.435 -0.063,0.531 -0.099,0.141 -0.378,0.144 -0.489,0.156 -0.12,0.012 -0.162,0.069 -0.162,0.159 0,0.09 0.042,0.141 0.153,0.141 z"
style="letter-spacing:-0.04em"
id="path3263" />
<path
d="m 19.063001,132.361 c 0.153,0 0.324,-0.021 0.51,-0.021 0.219,0 0.48,0.021 0.6,0.021 0.111,0 0.183,-0.057 0.183,-0.132 0,-0.141 -0.228,-0.117 -0.351,-0.279 -0.036,-0.048 -0.054,-0.135 -0.06,-0.249 h 0.138 c 0.3,0 0.375,-0.126 0.375,-0.318 0,-0.102 -0.033,-0.123 -0.153,-0.099 -0.117,0.024 -0.24,0.045 -0.36,0.063 v -0.051 l 0.03,-1.098 c 0.003,-0.126 -0.024,-0.201 -0.144,-0.201 -0.126,0 -0.249,0.165 -0.36,0.282 l -1.056,1.086 c -0.114,0.12 -0.162,0.189 -0.12,0.264 0.045,0.081 0.132,0.069 0.258,0.069 l 0.912,0.003 c -0.009,0.117 -0.03,0.18 -0.084,0.249 -0.117,0.156 -0.471,0.138 -0.471,0.279 0,0.078 0.042,0.132 0.153,0.132 z m -0.279,-0.924 0.714,-0.747 -0.021,0.711 c -0.243,0.021 -0.48,0.033 -0.693,0.036 z"
id="path3265" />
<path
d="m 20.799996,132.775 c 0.183,-0.084 0.402,-0.306 0.465,-0.456 0.075,-0.18 0.075,-0.336 -0.066,-0.48 -0.15,-0.156 -0.315,-0.15 -0.465,0 -0.237,0.237 0.144,0.312 0.144,0.501 0,0.093 -0.054,0.147 -0.141,0.216 -0.099,0.078 -0.144,0.135 -0.123,0.189 0.027,0.069 0.096,0.072 0.186,0.03 z"
id="path3267" />
<path
d="m 22.572999,132.355 c 0.243,0 0.444,-0.024 0.78,-0.024 0.339,0 0.48,0.024 0.72,0.024 0.111,0 0.153,-0.051 0.153,-0.144 0,-0.09 -0.033,-0.147 -0.15,-0.159 -0.111,-0.012 -0.345,-0.015 -0.441,-0.153 -0.066,-0.096 -0.063,-0.279 -0.063,-0.531 v -1.005 c 0,-0.141 0.024,-0.291 -0.09,-0.309 -0.117,-0.018 -0.174,0.066 -0.258,0.18 -0.141,0.189 -0.324,0.312 -0.513,0.411 -0.159,0.084 -0.222,0.162 -0.195,0.249 0.03,0.099 0.156,0.108 0.399,0.012 0.162,-0.063 0.219,-0.051 0.219,0.171 v 0.291 c 0,0.252 0.003,0.435 -0.063,0.531 -0.099,0.141 -0.378,0.144 -0.489,0.156 -0.12,0.012 -0.162,0.069 -0.162,0.159 0,0.09 0.042,0.141 0.153,0.141 z"
style="letter-spacing:-0.03em"
id="path3269" />
<path
d="m 24.92,132.358 c 0.048,0 0.132,-0.018 0.186,-0.018 0.093,0 0.186,0.018 0.243,0.018 0.099,0 0.117,-0.039 0.102,-0.21 -0.069,-0.846 0.141,-1.32 0.534,-1.707 0.123,-0.12 0.234,-0.189 0.204,-0.267 -0.027,-0.072 -0.135,-0.069 -0.291,-0.069 h -1.203 c -0.276,0 -0.39,0.018 -0.39,0.459 0,0.411 0,0.561 0.072,0.564 0.075,0.003 0.108,-0.165 0.207,-0.333 0.18,-0.306 0.387,-0.36 0.639,-0.372 0.162,-0.006 0.21,-0.003 0.222,0.024 0.012,0.03 0.009,0.066 -0.12,0.225 -0.357,0.441 -0.462,0.987 -0.501,1.503 -0.009,0.123 0.009,0.183 0.096,0.183 z"
style="letter-spacing:-0.08em"
id="path3271" />
<path
d="m 26.232001,132.775 c 0.183,-0.084 0.402,-0.306 0.465,-0.456 0.075,-0.18 0.075,-0.336 -0.066,-0.48 -0.15,-0.156 -0.315,-0.15 -0.465,0 -0.237,0.237 0.144,0.312 0.144,0.501 0,0.093 -0.054,0.147 -0.141,0.216 -0.099,0.078 -0.144,0.135 -0.123,0.189 0.027,0.069 0.096,0.072 0.186,0.03 z"
id="path3273" />
<path
d="m 28.076,132.34 h 1.383 c 0.276,0 0.39,-0.018 0.39,-0.459 0,-0.411 0,-0.561 -0.072,-0.564 -0.075,-0.003 -0.105,0.198 -0.279,0.438 -0.153,0.21 -0.384,0.255 -0.606,0.264 -0.162,0.006 -0.21,0.006 -0.222,-0.021 -0.012,-0.03 0.018,-0.072 0.15,-0.165 0.492,-0.345 0.816,-0.714 0.816,-1.17 0,-0.363 -0.276,-0.645 -0.753,-0.645 -0.612,0 -0.978,0.426 -0.9,1.011 0.018,0.135 0.072,0.168 0.123,0.168 0.06,0 0.099,-0.054 0.117,-0.174 0.042,-0.291 0.243,-0.525 0.504,-0.525 0.213,0 0.357,0.15 0.357,0.372 0,0.381 -0.612,0.819 -1.005,1.074 -0.249,0.162 -0.33,0.234 -0.303,0.303 0.036,0.093 0.144,0.093 0.3,0.093 z"
style="letter-spacing:-0.01em"
id="path3275" />
<path
d="m 30.233001,132.355 c 0.243,0 0.444,-0.024 0.78,-0.024 0.339,0 0.48,0.024 0.72,0.024 0.111,0 0.153,-0.051 0.153,-0.144 0,-0.09 -0.033,-0.147 -0.15,-0.159 -0.111,-0.012 -0.345,-0.015 -0.441,-0.153 -0.066,-0.096 -0.063,-0.279 -0.063,-0.531 v -1.005 c 0,-0.141 0.024,-0.291 -0.09,-0.309 -0.117,-0.018 -0.174,0.066 -0.258,0.18 -0.141,0.189 -0.324,0.312 -0.513,0.411 -0.159,0.084 -0.222,0.162 -0.195,0.249 0.03,0.099 0.156,0.108 0.399,0.012 0.162,-0.063 0.219,-0.051 0.219,0.171 v 0.291 c 0,0.252 0.003,0.435 -0.063,0.531 -0.099,0.141 -0.378,0.144 -0.489,0.156 -0.12,0.012 -0.162,0.069 -0.162,0.159 0,0.09 0.042,0.141 0.153,0.141 z"
id="path3277" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="line"
style="mix-blend-mode:multiply">
<g
id="line41"
class="cls-2"
style="stroke:none">
<path
style="color:#000000;fill:#1d1d1b;stroke:none;stroke-width:1.5;stroke-miterlimit:10;-inkscape-stroke:none"
d="M 73.139999,15.73 129.83,129.12"
id="path3239" />
<path
style="color:#000000;fill:#0215b3;stroke:none;stroke-miterlimit:10;-inkscape-stroke:none"
d="M 73.810547,15.394531 72.46875,16.064453 129.1582,129.45508 130.5,128.78516 Z"
id="path3241" />
</g>
<g
id="line43"
class="cls-2"
style="stroke:none">
<path
style="color:#000000;fill:#1d1d1b;stroke:none;stroke-width:1.5;stroke-miterlimit:10;-inkscape-stroke:none"
d="m 73.139999,72.43 h -56.7"
id="path3231" />
<path
style="color:#000000;fill:#0215b3;stroke:none;stroke-miterlimit:10;-inkscape-stroke:none"
d="m 16.439453,71.679687 v 1.5 h 56.701172 v -1.5 z"
id="path3233" />
</g>
<path
style="color:#000000;fill:#0215b3;stroke:none;stroke-miterlimit:10;-inkscape-stroke:none"
d="M 129.49414,15.058594 16.105469,71.759766 16.775391,73.101562 130.16602,16.400391 Z"
id="line45" />
<path
style="color:#000000;fill:#0215b3;stroke:none;stroke-miterlimit:10;-inkscape-stroke:none"
d="m 129.08008,15.730469 v 56.689453 h 1.5 V 15.730469 Z"
id="line47" />
<path
style="color:#000000;fill:#0215b3;stroke:none;stroke-miterlimit:10;-inkscape-stroke:none"
d="M 16.775391,15.058594 16.105469,16.400391 129.49414,73.091797 130.16602,71.75 Z"
id="line49" />
<g
id="polyline51"
class="cls-2"
transform="translate(2,1)"
style="stroke:none">
<path
style="color:#000000;fill:#1d1d1b;stroke:none;stroke-width:1.5;stroke-miterlimit:10;-inkscape-stroke:none"
d="m 14.44,14.73 113.39,113.39 -56.69,-56.7 56.69,56.7"
id="path3205" />
<path
style="color:#000000;fill:#0215b3;stroke:none;stroke-miterlimit:10;-inkscape-stroke:none"
d="m 14.970703,14.199219 -1.060547,1.060547 113.388674,113.390624 1.06054,-1.06055 -56.689448,-56.699215 -0.0039,0.0039 z"
id="path3207" />
</g>
<g
id="line53"
class="cls-2"
style="stroke:none">
<path
style="color:#000000;fill:#1d1d1b;stroke:none;stroke-width:1.5;stroke-miterlimit:10;-inkscape-stroke:none"
d="m 73.139999,72.43 v 56.69"
id="path3197" />
<path
style="color:#000000;fill:#0215b3;stroke:none;stroke-miterlimit:10;-inkscape-stroke:none"
d="m 72.390625,72.429687 v 56.689453 h 1.5 V 72.429687 Z"
id="path3199" />
</g>
<path
style="color:#000000;fill:#0215b3;stroke:none;stroke-miterlimit:10;-inkscape-stroke:none"
d="m 129.29883,71.890625 -56.689455,56.699215 1.060547,1.06055 56.691408,-56.699218 z"
id="line55" />
<path
style="color:#000000;fill:#0215b3;stroke:none;stroke-miterlimit:10;-inkscape-stroke:none"
d="m 129.49414,71.75 -113.388671,56.69922 0.669922,1.3418 113.390629,-56.701176 z"
id="line57" />
<g
id="line59"
class="cls-4"
style="stroke:none">
<path
style="color:#000000;fill:#312783;stroke:none;stroke-width:1.5;stroke-miterlimit:10;-inkscape-stroke:none"
d="m 73.07,15.73 h 56.69001"
id="path3177" />
<path
style="color:#000000;fill:#0215b3;stroke:none;stroke-miterlimit:10;-inkscape-stroke:none"
d="m 73.070312,14.980469 v 1.5 h 56.689458 v -1.5 z"
id="path3179" />
</g>
<path
style="color:#000000;fill:#0215b3;stroke:none;stroke-miterlimit:10;-inkscape-stroke:none"
d="M 72.46875,15.394531 15.769531,128.78516 17.111328,129.45508 73.810547,16.066406 Z"
id="line61" />
<path
style="color:#000000;fill:#0215b3;stroke:none;stroke-miterlimit:10;-inkscape-stroke:none"
d="M 129.29883,15.199219 15.910156,128.58984 16.970703,129.65039 130.35937,16.259766 Z"
id="line63" />
<path
style="color:#000000;fill:#0215b3;stroke:none;stroke-miterlimit:10;-inkscape-stroke:none"
d="M 72.609375,15.199219 15.910156,71.900391 16.970703,72.960937 73.669922,16.259766 Z"
id="line65" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 66 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.0 KiB

@ -0,0 +1 @@
<svg id="Calque_3" data-name="Calque 3" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 136.06 121.82"><defs><style>.cls-1{fill:#1d1d1b;}.cls-1,.cls-2,.cls-3{stroke:#1d1d1b;stroke-miterlimit:10;stroke-width:0.5px;}.cls-2{fill:none;}.cls-3,.cls-4{fill:#312783;}.cls-4{font-size:3px;font-family:Basteleur-Bold, Basteleur;font-weight:700;}.cls-5{letter-spacing:-0.04em;}.cls-6{letter-spacing:-0.02em;}.cls-7{letter-spacing:0.01em;}.cls-8{letter-spacing:-0.08em;}.cls-9{letter-spacing:-0.05em;}.cls-10{letter-spacing:0.03em;}.cls-11{letter-spacing:-0.03em;}.cls-12{letter-spacing:-0.01em;}</style></defs><line class="cls-1" x1="56.92" y1="3.96" x2="113.61" y2="117.34"/><line class="cls-1" x1="56.92" y1="60.65" x2="0.22" y2="60.65"/><line class="cls-2" x1="0.22" y1="60.65" x2="113.61" y2="3.96"/><line class="cls-2" x1="113.61" y1="3.96" x2="113.61" y2="60.65"/><line class="cls-2" x1="113.61" y1="60.65" x2="0.22" y2="3.96"/><polyline class="cls-1" points="0.22 3.96 113.61 117.34 56.92 60.65 113.61 117.34"/><line class="cls-1" x1="56.92" y1="60.65" x2="56.92" y2="117.34"/><line class="cls-2" x1="56.92" y1="117.34" x2="113.61" y2="60.65"/><line class="cls-2" x1="113.61" y1="60.65" x2="0.22" y2="117.34"/><line class="cls-3" x1="56.85" y1="3.96" x2="113.55" y2="3.96"/><line class="cls-2" x1="0.22" y1="117.34" x2="56.92" y2="3.96"/><line class="cls-2" x1="0.22" y1="117.34" x2="113.61" y2="3.96"/><line class="cls-2" x1="56.92" y1="3.96" x2="0.22" y2="60.65"/><text class="cls-4" transform="translate(56.92 2.62)">1, <tspan class="cls-5" x="3.74" y="0">1</tspan><tspan x="5.58" y="0">5, 18</tspan></text><text class="cls-4" transform="translate(113.61 120.56)">2, 8</text><text class="cls-4" transform="translate(58.92 61.74)"><tspan class="cls-6">3</tspan><tspan x="2.17" y="0">, </tspan><tspan class="cls-5" x="3.96" y="0">9</tspan><tspan x="6.06" y="0">, </tspan><tspan class="cls-7" x="7.84" y="0">1</tspan><tspan x="9.83" y="0">1</tspan></text><text class="cls-4" transform="translate(0.22 64.58)">4, <tspan class="cls-6" x="4.03" y="0">1</tspan><tspan x="5.92" y="0">9</tspan></text><text class="cls-4" transform="translate(113.61 2.62)">5, <tspan class="cls-6" x="4.08" y="0">1</tspan><tspan x="5.98" y="0">6, 20</tspan></text><text class="cls-4" transform="translate(113.61 64.58)">6, <tspan class="cls-6" x="4.01" y="0">1</tspan><tspan x="5.9" y="0">3</tspan></text><text class="cls-4" transform="translate(0.22 2.62)"><tspan class="cls-8">7</tspan><tspan x="1.79" y="0">, </tspan><tspan class="cls-9" x="3.57" y="0">1</tspan><tspan x="5.38" y="0">0</tspan></text><text class="cls-4" transform="translate(56.92 120.56)"><tspan class="cls-10">1</tspan><tspan x="2.05" y="0">2</tspan></text><text class="cls-4" transform="translate(0.22 120.56)"><tspan class="cls-5">1</tspan><tspan x="1.84" y="0">4, </tspan><tspan class="cls-11" x="5.86" y="0">1</tspan><tspan class="cls-8" x="7.73" y="0">7</tspan><tspan x="9.51" y="0">, </tspan><tspan class="cls-12" x="11.3" y="0">2</tspan><tspan x="13.52" y="0">1</tspan></text></svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

@ -0,0 +1 @@
<svg id="Calque_3" data-name="Calque 3" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 113.86 113.86"><defs><style>.cls-1{fill:#1d1d1b;}.cls-1,.cls-2,.cls-3{stroke:#1d1d1b;stroke-miterlimit:10;stroke-width:0.5px;}.cls-2{fill:none;}.cls-3{fill:#312783;}</style></defs><line class="cls-1" x1="56.92" y1="0.25" x2="113.61" y2="113.64"/><line class="cls-1" x1="56.92" y1="56.94" x2="0.22" y2="56.94"/><line class="cls-2" x1="0.22" y1="56.94" x2="113.61" y2="0.25"/><line class="cls-2" x1="113.61" y1="0.25" x2="113.61" y2="56.94"/><line class="cls-2" x1="113.61" y1="56.94" x2="0.22" y2="0.25"/><polyline class="cls-1" points="0.22 0.25 113.61 113.64 56.92 56.94 113.61 113.64"/><line class="cls-1" x1="56.92" y1="56.94" x2="56.92" y2="113.64"/><line class="cls-2" x1="56.92" y1="113.64" x2="113.61" y2="56.94"/><line class="cls-2" x1="113.61" y1="56.94" x2="0.22" y2="113.64"/><line class="cls-3" x1="56.85" y1="0.25" x2="113.55" y2="0.25"/><line class="cls-2" x1="0.22" y1="113.64" x2="56.92" y2="0.25"/><line class="cls-2" x1="0.22" y1="113.64" x2="113.61" y2="0.25"/><line class="cls-2" x1="56.92" y1="0.25" x2="0.22" y2="56.94"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

@ -0,0 +1,14 @@
#%%
from collections import OrderedDict
# %%
str = "bind billionaires who fly to the upper sky from coming back to earth"
strp = str.replace(" ", "")
sigil = "".join(OrderedDict.fromkeys(strp))
print(sigil)
# 'bindloareswhfytupkmcg'
Loading…
Cancel
Save