@@ -1,6 +1,6 @@ | |||
SLUG=Bogaudio | |||
VERSION=0.6.13 | |||
VERSION=0.6.14 | |||
FLAGS += -DSLUG=$(SLUG) -DVERSION=$(VERSION) | |||
ifdef REQUIRE_VERSION | |||
@@ -7,6 +7,7 @@ Modules for [VCV Rack](https://github.com/VCVRack/Rack), an open-source Eurorack | |||
- [Envelopes and Envelope Utilities](#envelopes) | |||
- [Mixers, Panners and VCAs](#mixers) | |||
- [Effects and Dynamics](#effects) | |||
- [Sequential Switches and Sequencers](#sequencers) | |||
- [Visualizers](#visualizers) | |||
- [Pitch CV Utilities](#pitch) | |||
- [Other Utilities](#utilities) | |||
@@ -16,6 +17,8 @@ Modules for [VCV Rack](https://github.com/VCVRack/Rack), an open-source Eurorack | |||
 | |||
 | |||
 | |||
 | |||
@@ -104,7 +107,9 @@ A standard LFO featuring: | |||
- Reset (hard sync) input. | |||
- Slow mode. | |||
LFO tracks pitch CVs at the V/OCT input four octaves lower than a normal oscillator: with a 0V input, the output frequency is note C0 (16.35HZ). The frequency knob is calibrated in linear volts (the small ticks), and its value is added to the input V/OCT. With no input, the frequency range is from approximately 0.1 to 400HZ; with CV the frequency may be driven up to 2000HZ or down to arbitrarily low values. In slow mode, the output frequency tracks the controls 8 octaves lower than in normal mode. | |||
LFO tracks pitch CVs at the V/OCT input seven octaves lower than a normal oscillator: with a 0V input, the output frequency is note C-3 (2.04HZ). The frequency knob is calibrated in linear volts (the small ticks), and its value is added to the input V/OCT. With no input, the frequency range is from approximately 0.1 to 400HZ; with CV the frequency may be driven up to 2000HZ or down to arbitrarily low values. In slow mode, the output frequency tracks the controls 11 octaves lower than in normal mode. | |||
*NOTE ON FREQUENCIES:* Previous to release 0.6.14 (April 2019), LFO tracked 0V as C0 or 16.35HZ (and 8 octaves lower in slow mode). Patches created with older versions will continue to have the old behavior. New instances of LFO added to patches will have the new behavior. The behavior can be toggled, in either case, on the context (right-click) menu. | |||
#### 8FO | |||
@@ -191,6 +196,7 @@ Features: | |||
- CV-controlled stereo panners; expects +/-5 volt CV; CV is attenuverted by the corresponding knob when in use. | |||
- Stereo outputs; if only one is patched, the output mix is mono. | |||
- Performance mutes (buttons) per channel. | |||
- Right-click a mute buttons solos that channel (un-mutes that channel and temporarily mutes all others). Right or left click will un-solo, restoring the old state. Multiple channels can be "soloed" at once. | |||
- Fader handles contain lights indicating the signal level out of that channel or the entire mix. | |||
- Output saturates (soft clips) to +/-12 volts, where the clipping effect becomes noticeable above +/-10 volts. | |||
@@ -228,6 +234,8 @@ Saturation (soft clipping) is applied to each output at +/-12 volts; the LEVEL k | |||
MUTE8 provides 8 independent manual or CV-controlled mutes. Each channel is muted if its button is toggled on or if there is a positive voltage at its CV input. Otherwise the input is passed to the output. | |||
As with MIX4 and MIX8, a right-click on a mute button will solo that channel (pass that channel through while muting all others). Right or left click clears this. | |||
#### PAN | |||
A stereo panner with dual inputs channels. Each channel's panner may be controlled with a +/-5 volt CV; when CV is in use, it is attenuverted the corresponding knob. Output saturates (soft clips) to +/-12 volts. | |||
@@ -309,6 +317,28 @@ In contrast to CLPR, LMTR does not distort the signal (or not much); it just red | |||
NSGT is a compact (6HP) [noise gate](https://en.wikipedia.org/wiki/Noise_gate). Its controls behave the same as the corresponding controls on PRESSOR. | |||
### <a name="sequencers"></a> Sequential Switches and Sequencers | |||
 | |||
#### 8:1 | |||
8:1 is a sequential switch and voltage-addressed switch (multiplexer) at once -- it routes 8 inputs to 1 output according to either a clock or CV input (or both). | |||
As a sequential switch, a trigger at the clock input advances the input selection -- which input is routed to the output. Like a sequencer, it can be reset with a trigger at RESET, the number of inputs to cycle through may be set with the STEPS knob, and the direction is set with the FWD/REV switch. | |||
As a multiplexer, it routes an input to the output under control of the SELECT knob and CV. A 0-10V CV, divided into 8 equal divisions of 1.25V, controls the input selection. This value is summed with the knob setting; for example, setting the knob to 4 and inputting a 2.6V CV will send input 7 to the output. When the knob-plus-CV value exceeds 8, it wraps around. | |||
Both functions may be used simultaneously: the SELECT+CV value is added to the sequential/clocked value, wrapping around. Note that the STEPS value only affects the sequential value; for example, using a clock input and setting STEPS to 2 will yield an alternation between two adjacent inputs, but this pair can be selected with the SELECT knob or CV. | |||
#### 1:8 | |||
1:8 is the opposite of 8:1 -- it routes a single input to 1 of 8 outputs. The control circuit behavior (CLOCK, SELECT, etc) is the same. | |||
#### ADDR-SEQ | |||
ADDR-SEQ is an 8-step sequencer where the step values are set by 8 bipolar knobs able to dial in voltages from -10 to 10V. It has the same clocked or voltage-addressed control circuit as 8:1 and 1:8. | |||
### <a name="visualizers"></a> Visualizers | |||
#### ANALYZER | |||
@@ -10,6 +10,7 @@ ALL_OBJ= \ | |||
src/dsp/signal.o \ | |||
src/dsp/table.o \ | |||
src/AD.o \ | |||
src/AddrSeq.o \ | |||
src/ADSR.o \ | |||
src/Additator.o \ | |||
src/AMRM.o \ | |||
@@ -25,10 +26,12 @@ ALL_OBJ= \ | |||
src/DGate.o \ | |||
src/Detune.o \ | |||
src/EightFO.o \ | |||
src/EightOne.o \ | |||
src/FMOp.o \ | |||
src/FlipFlop.o \ | |||
src/Follow.o \ | |||
src/LFO.o \ | |||
src/lfo_base.o \ | |||
src/LLFO.o \ | |||
src/Lag.o \ | |||
src/Lmtr.o \ | |||
@@ -41,6 +44,7 @@ ALL_OBJ= \ | |||
src/Noise.o \ | |||
src/Nsgt.o \ | |||
src/Offset.o \ | |||
src/OneEight.o \ | |||
src/Pressor.o \ | |||
src/Pan.o \ | |||
src/Reftone.o \ | |||
@@ -59,6 +63,8 @@ ALL_OBJ= \ | |||
src/VCM.o \ | |||
src/VCO.o \ | |||
src/VU.o \ | |||
src/Walk.o \ | |||
src/Walk2.o \ | |||
src/XCO.o \ | |||
src/XFade.o \ | |||
src/bogaudio.o \ | |||
@@ -0,0 +1,219 @@ | |||
<svg | |||
version="1.1" | |||
xmlns="http://www.w3.org/2000/svg" | |||
xmlns:xlink="http://www.w3.org/1999/xlink" | |||
width="90" | |||
height="380" | |||
viewBox="0 0 90 380" | |||
> | |||
<style> | |||
text { | |||
fill: #333; | |||
font-family: 'Roboto', sans-serif; | |||
font-weight: bold; | |||
} | |||
text.title { | |||
font-family: 'Comfortaa', sans-serif; | |||
font-weight: normal; | |||
} | |||
text.brand { | |||
font-family: 'Audiowide', sans-serif; | |||
font-weight: bold; | |||
} | |||
</style> | |||
<defs> | |||
<symbol id="knob" viewBox="0 0 45px 45px"> | |||
<g transform="translate(22.5 22.5)"> | |||
<polyline points="-5,0 5,0" stroke-width="1" stroke="#00f" /> | |||
<polyline points="0,-5 0,5" stroke-width="1" stroke="#00f" /> | |||
<circle cx="0" cy="0" r="14" stroke-width="1" stroke="#00f" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="knobguide-select" viewBox="0 0 45px 45px"> | |||
<g transform="translate(22.5 22.5)"> | |||
<text font-size="5.0pt" transform="rotate(-240) translate(19 0) rotate(240) translate(-2 2)">1</text> | |||
<text font-size="5.0pt" transform="rotate(-197.1) translate(19 0) rotate(197.1) translate(-2 2)">2</text> | |||
<text font-size="5.0pt" transform="rotate(-154.3) translate(19 0) rotate(154.3) translate(-2 2)">3</text> | |||
<text font-size="5.0pt" transform="rotate(-111.4) translate(19 0) rotate(111.4) translate(-2 2)">4</text> | |||
<text font-size="5.0pt" transform="rotate(-68.6) translate(19 0) rotate(68.6) translate(-2 2)">5</text> | |||
<text font-size="5.0pt" transform="rotate(-25.7) translate(19 0) rotate(25.7) translate(-2 2)">6</text> | |||
<text font-size="5.0pt" transform="rotate(17.1) translate(19 0) rotate(-17.1) translate(-2 2)">7</text> | |||
<text font-size="5.0pt" transform="rotate(60) translate(19 0) rotate(-60) translate(-2 2)">8</text> | |||
</g> | |||
</symbol> | |||
<symbol id="knob-smallest" viewBox="0 0 16px 16px"> | |||
<g transform="translate(8 8)"> | |||
<polyline points="-3,0 3,0" stroke-width="1" stroke="#00f" /> | |||
<polyline points="0,-3 0,3" stroke-width="1" stroke="#00f" /> | |||
<circle r="7.5" stroke-width="1" stroke="#00f" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="knobguide-steps" viewBox="0 0 40px 40px"> | |||
<g transform="translate(20 20)"> | |||
<text font-size="5.0pt" transform="rotate(-240) translate(13 0) rotate(240) translate(-2 2)">2</text> | |||
<text font-size="5.0pt" transform="rotate(-190) translate(13 0) rotate(190) translate(-2 2)">3</text> | |||
<text font-size="5.0pt" transform="rotate(-140) translate(13 0) rotate(140) translate(-2 2)">4</text> | |||
<text font-size="5.0pt" transform="rotate(-90) translate(13 0) rotate(90) translate(-2 2)">5</text> | |||
<text font-size="5.0pt" transform="rotate(-40) translate(13 0) rotate(40) translate(-2 2)">6</text> | |||
<text font-size="5.0pt" transform="rotate(10) translate(13 0) rotate(-10) translate(-2 2)">7</text> | |||
<text font-size="5.0pt" transform="rotate(60) translate(13 0) rotate(-60) translate(-2 2)">8</text> | |||
</g> | |||
</symbol> | |||
<symbol id="knobguide-bipolar-smallest" viewBox="0 0 40px 40px"> | |||
<g transform="translate(20 20)"> | |||
<polyline points="0,0 4,0" stroke-width="1" stroke="#333" transform="rotate(-240) translate(10 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.5" stroke="#333" transform="rotate(-225) translate(10 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.5" stroke="#333" transform="rotate(-210) translate(10 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.5" stroke="#333" transform="rotate(-195) translate(10 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.5" stroke="#333" transform="rotate(-180) translate(10 0)" /> | |||
<polyline points="0,0 4.0,0" stroke-width="1.0" stroke="#333" transform="rotate(-165) translate(10 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.5" stroke="#333" transform="rotate(-150) translate(10 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.5" stroke="#333" transform="rotate(-135) translate(10 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.5" stroke="#333" transform="rotate(-120) translate(10 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.5" stroke="#333" transform="rotate(-105) translate(10 0)" /> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="rotate(-90) translate(10 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.5" stroke="#333" transform="rotate(-75) translate(10 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.5" stroke="#333" transform="rotate(-60) translate(10 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.5" stroke="#333" transform="rotate(-45) translate(10 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.5" stroke="#333" transform="rotate(-30) translate(10 0)" /> | |||
<polyline points="0,0 4,0" stroke-width="1.0" stroke="#333" transform="rotate(-15) translate(10 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.5" stroke="#333" transform="rotate(0) translate(10 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.5" stroke="#333" transform="rotate(15) translate(10 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.5" stroke="#333" transform="rotate(30) translate(10 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.5" stroke="#333" transform="rotate(45) translate(10 0)" /> | |||
<polyline points="0,0 4,0" stroke-width="1" stroke="#333" transform="rotate(60) translate(10 0)" /> | |||
</g> | |||
</symbol> | |||
<symbol id="switch" viewBox="0 0 14px 24px"> | |||
<rect width="14px" height="24px" stroke-width="1" stroke="#000" fill="#ddd" /> | |||
<rect width="14px" height="12px" stroke-width="0" fill="#000" /> | |||
</symbol> | |||
<symbol id="light-small" viewBox="0 0 6.4px 6.4px"> | |||
<rect width="6.4" height="6.4" fill="#0f0" /> | |||
</symbol> | |||
<symbol id="input" viewBox="0 0 24px 24px"> | |||
<g transform="translate(12 12)"> | |||
<circle cx="0" cy="0" r="5" stroke-width="1" stroke="#0f0" fill="#0f0" /> | |||
<circle cx="0" cy="0" r="10.5" stroke-width="3" stroke="#0f0" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="output" viewBox="0 0 24px 24px"> | |||
<g transform="translate(12 12)"> | |||
<circle cx="0" cy="0" r="5" stroke-width="1" stroke="#f00" fill="#f00" /> | |||
<circle cx="0" cy="0" r="10.5" stroke-width="3" stroke="#f00" fill="none" /> | |||
</g> | |||
</symbol> | |||
</defs> | |||
<rect width="100%" height="100%" fill="#ddd" /> | |||
<polyline points="1,1 89,1 89,379 1,379 1,1" stroke="#e4e4e4" stroke-width="0.5" fill="none" /> | |||
<polyline points="0.5,0.5 89.5,0.5 89.5,379.5 0.5,379.5 0.5,0.5" stroke="#ebebeb" stroke-width="0.8" fill="none" /> | |||
<polyline points="0,0 90,0 90,380 0,380 0,0" stroke="#f2f2f2" stroke-width="1" fill="none" /> | |||
<text class="title" x="15" y="17" font-size="9pt" letter-spacing="0.5px">ADDR-SEQ</text> | |||
<g transform="translate(5.5 374)"> | |||
<text class="brand" font-size="6.5pt" letter-spacing="2px">BOGAUDIO</text> | |||
<rect width="1.5" height="2" fill="#ddd" transform="translate(21 -4)" /> | |||
</g> | |||
<g transform="translate(6.5 32)"> | |||
<rect width="34" height="39" rx="5" fill="#fafafa" /> | |||
<rect width="34" height="10" fill="#fafafa" transform="translate(0 30)" /> | |||
<use id="CLOCK_INPUT" xlink:href="#input" transform="translate(5 3)" /> | |||
<text font-size="5pt" letter-spacing="1px" transform="translate(4 35)">CLOCK</text> | |||
</g> | |||
<g transform="translate(6.5 69)"> | |||
<rect width="34" height="39" rx="5" fill="#fafafa" /> | |||
<use id="RESET_INPUT" xlink:href="#input" transform="translate(5 3)" /> | |||
<text font-size="5pt" letter-spacing="1px" transform="translate(5 35)">RESET</text> | |||
</g> | |||
<g transform="translate(1 121)"> | |||
<text font-size="6pt" letter-spacing="1.5px" transform="translate(7.5 0)">STEPS</text> | |||
<use id="STEPS_PARAM" xlink:href="#knob-smallest" transform="translate(14.5 10.5)" /> | |||
<use xlink:href="#knobguide-steps" transform="translate(2.5 -1)" /> | |||
</g> | |||
<g transform="translate(16.5 166)"> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(-1.8 -1)">FWD</text> | |||
<use id="DIRECTION_PARAM" xlink:href="#switch" transform="translate(0 2)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(-1.3 34)">REV</text> | |||
</g> | |||
<!-- <rect width="45" height="14" fill="#0f0" transform="translate(0 200)" /> --> | |||
<!-- <rect width="45" height="14" fill="#0f0" transform="translate(0 307)" /> --> | |||
<g transform="translate(1 220)"> | |||
<text font-size="6pt" letter-spacing="1.5px" transform="translate(4.5 0)">SELECT</text> | |||
<use id="SELECT_PARAM" xlink:href="#knob" transform="translate(0 2)" /> | |||
<use xlink:href="#knobguide-select" transform="translate(0 2)" /> | |||
<g transform="translate(5.5 47)"> | |||
<rect width="34" height="39" rx="5" fill="#fafafa" /> | |||
<use id="SELECT_INPUT" xlink:href="#input" transform="translate(5 3)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(11.5 35)">CV</text> | |||
</g> | |||
</g> | |||
<g transform="translate(6.5 321)"> | |||
<rect width="34" height="39" rx="5" fill="#bbb" /> | |||
<use id="OUT_OUTPUT" xlink:href="#output" transform="translate(5 3)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(8 35)">OUT</text> | |||
</g> | |||
<g transform="translate(49.5 32)"> | |||
<use id="OUT1_PARAM" xlink:href="#knob-smallest" transform="translate(9 4)" /> | |||
<use xlink:href="#knobguide-bipolar-smallest" transform="translate(-3 -8)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(11 32)">1</text> | |||
<use id="OUT1_LIGHT" xlink:href="#light-small" transform="translate(17 26.5)" /> | |||
<use id="OUT2_PARAM" xlink:href="#knob-smallest" transform="translate(9 45.3)" /> | |||
<use xlink:href="#knobguide-bipolar-smallest" transform="translate(-3 33.3)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(11 73.3)">2</text> | |||
<use id="OUT2_LIGHT" xlink:href="#light-small" transform="translate(17 67.8)" /> | |||
<use id="OUT3_PARAM" xlink:href="#knob-smallest" transform="translate(9 86.6)" /> | |||
<use xlink:href="#knobguide-bipolar-smallest" transform="translate(-3 74.6)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(11 114.6)">3</text> | |||
<use id="OUT3_LIGHT" xlink:href="#light-small" transform="translate(17 109.1)" /> | |||
<use id="OUT4_PARAM" xlink:href="#knob-smallest" transform="translate(9 127.9)" /> | |||
<use xlink:href="#knobguide-bipolar-smallest" transform="translate(-3 115.9)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(11 155.9)">4</text> | |||
<use id="OUT4_LIGHT" xlink:href="#light-small" transform="translate(17 150.4)" /> | |||
<use id="OUT5_PARAM" xlink:href="#knob-smallest" transform="translate(9 169.1)" /> | |||
<use xlink:href="#knobguide-bipolar-smallest" transform="translate(-3 157.1)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(11 197.1)">5</text> | |||
<use id="OUT5_LIGHT" xlink:href="#light-small" transform="translate(17 191.6)" /> | |||
<use id="OUT6_PARAM" xlink:href="#knob-smallest" transform="translate(9 210.4)" /> | |||
<use xlink:href="#knobguide-bipolar-smallest" transform="translate(-3 198.4)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(11 238.4)">6</text> | |||
<use id="OUT6_LIGHT" xlink:href="#light-small" transform="translate(17 232.9)" /> | |||
<use id="OUT7_PARAM" xlink:href="#knob-smallest" transform="translate(9 251.7)" /> | |||
<use xlink:href="#knobguide-bipolar-smallest" transform="translate(-3 239.7)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(11 279.7)">7</text> | |||
<use id="OUT7_LIGHT" xlink:href="#light-small" transform="translate(17 274.2)" /> | |||
<use id="OUT8_PARAM" xlink:href="#knob-smallest" transform="translate(9 293)" /> | |||
<use xlink:href="#knobguide-bipolar-smallest" transform="translate(-3 281)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(11 321)">8</text> | |||
<use id="OUT8_LIGHT" xlink:href="#light-small" transform="translate(17 315.5)" /> | |||
</g> | |||
<!-- <polyline points="0,0 90,0" stroke="#f00" stroke-width="1" fill="none" transform="translate(0 47)" /> --> | |||
<!-- <polyline points="0,0 90,0" stroke="#f00" stroke-width="1" fill="none" transform="translate(0 336)" /> --> | |||
<!-- <polyline points="0,0 90,0" stroke="#f00" stroke-width="1" fill="none" transform="translate(0 351)" /> --> | |||
<!-- <polyline points="0,0 0,360" stroke="#f00" stroke-width="1" fill="none" transform="translate(23.50 0)" /> --> | |||
</svg> |
@@ -0,0 +1,407 @@ | |||
<svg | |||
version="1.1" | |||
xmlns="http://www.w3.org/2000/svg" | |||
xmlns:xlink="http://www.w3.org/1999/xlink" | |||
width="255" | |||
height="380" | |||
viewBox="0 0 255 380" | |||
> | |||
<style> | |||
text { | |||
fill: #333; | |||
font-family: 'Roboto', sans-serif; | |||
font-weight: bold; | |||
} | |||
text.title { | |||
font-family: 'Comfortaa', sans-serif; | |||
font-weight: normal; | |||
} | |||
text.brand { | |||
font-family: 'Audiowide', sans-serif; | |||
font-weight: bold; | |||
} | |||
</style> | |||
<defs> | |||
<symbol id="knob-large" viewBox="0 0 68px 68px"> | |||
<g transform="translate(34 34)"> | |||
<polyline points="-10,0 10,0" stroke-width="1" stroke="#00f" /> | |||
<polyline points="0,-10 0,10" stroke-width="1" stroke="#00f" /> | |||
<circle cx="0" cy="0" r="33.5" stroke-width="1" stroke="#00f" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="knob-medium" viewBox="0 0 26px 26px"> | |||
<g transform="translate(13 13)"> | |||
<polyline points="-3,0 3,0" stroke-width="1" stroke="#00f" /> | |||
<polyline points="0,-3 0,3" stroke-width="1" stroke="#00f" /> | |||
<circle cx="0" cy="0" r="12.5" stroke-width="1" stroke="#00f" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="knob-smallest" viewBox="0 0 16px 16px"> | |||
<g transform="translate(8 8)"> | |||
<polyline points="-3,0 3,0" stroke-width="1" stroke="#00f" /> | |||
<polyline points="0,-3 0,3" stroke-width="1" stroke="#00f" /> | |||
<circle r="7.5" stroke-width="1" stroke="#00f" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="knobguide-frequency-lfo" viewBox="0 0 128px 128px"> | |||
<g transform="translate(64 64)"> | |||
<g transform="rotate(-225.08) translate(34 0)"> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="translate(3 0)" /> | |||
<text font-size="7.0pt" transform="translate(14 0) rotate(225.08) translate(-10.5 3.5)">0.1</text> | |||
</g> | |||
<g transform="rotate(-171.49) translate(34 0)"> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="translate(3 0)" /> | |||
<text font-size="7.0pt" transform="translate(14 0) rotate(171.49) translate(-11 3.5)">0.5</text> | |||
</g> | |||
<g transform="rotate(-148.42) translate(34 0)"> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="translate(3 0)" /> | |||
<text font-size="7.0pt" transform="translate(14 0) rotate(148.42) translate(-3 3.5)">1</text> | |||
</g> | |||
<g transform="rotate(-94.83) translate(34 0)"> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="translate(3 0)" /> | |||
<text font-size="7.0pt" transform="translate(14 0) rotate(94.83) translate(-3 3.5)">5</text> | |||
</g> | |||
<g transform="rotate(-55.39) translate(34 0)"> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="translate(3 0)" /> | |||
<text font-size="7.0pt" letter-spacing="1px" transform="translate(14 0) rotate(55.39) translate(-1 3.5)">0V</text> | |||
</g> | |||
<g transform="rotate(-18.17) translate(34 0)"> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="translate(3 0)" /> | |||
<text font-size="7.0pt" transform="translate(14 0) rotate(18.17) translate(-2 3.5)">50</text> | |||
</g> | |||
<g transform="rotate(27.98) translate(34 0)"> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="translate(3 0)" /> | |||
<text font-size="7.0pt" transform="translate(14 0) rotate(-27.98) translate(-2 3.5)">200</text> | |||
</g> | |||
<g transform="rotate(51.06) translate(34 0)"> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="translate(3 0)" /> | |||
<text font-size="7.0pt" transform="translate(14 0) rotate(-51.06) translate(-2 3.5)">400HZ</text> | |||
</g> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-240) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-216.92) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-193.85) translate(37 0)" /> | |||
<!-- <polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-170.77) translate(37 0)" /> --> | |||
<!-- <polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-147.69) translate(37 0)" /> --> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-124.62) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-101.54) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-78.46) translate(37 0)" /> | |||
<!-- <polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-55.38) translate(37 0)" /> --> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-32.31) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-9.23) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(13.85) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(36.92) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(60) translate(37 0)" /> | |||
</g> | |||
</symbol> | |||
<symbol id="waves" viewBox="0 0 70px 70px"> | |||
<!-- <polyline points="0,0 0,70" stroke-width="1" stroke="#0f0" transform="translate(20 0)" /> --> | |||
<g transform="translate(20 35)"> | |||
<!-- <circle r="18" fill="none" stroke="#00f" /> --> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="rotate(-90) translate(11 0)" /> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="rotate(-45) translate(11 0)" /> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="rotate(0) translate(11 0)" /> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="rotate(45) translate(11 0)" /> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="rotate(90) translate(11 0)" /> | |||
</g> | |||
<g transform="translate(14 8)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#0f0" /> --> | |||
<polyline points="0,8 12,0 12,8" stroke-width="1" stroke="#333" fill="none" /> | |||
</g> | |||
<g transform="translate(33.5 13.5)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#0f0" /> --> | |||
<polyline points="0,8 0,0 12,8" stroke-width="1" stroke="#333" fill="none" /> | |||
</g> | |||
<g transform="translate(39 31)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#0f0" /> --> | |||
<path d="M 0 4 A 2 3 0 0 1 6 4" stroke="#333" stroke-width="1" fill="none" /> | |||
<path d="M 6 4 A 2 3 0 0 0 12 4" stroke="#333" stroke-width="1" fill="none" /> | |||
</g> | |||
<g transform="translate(33.5 48.5)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#0f0" /> --> | |||
<polyline points="0,4 3,0 9,8 12,4" stroke-width="1" stroke="#333" fill="none" /> | |||
</g> | |||
<g transform="translate(14 54)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#0f0" /> --> | |||
<polyline points="0,4 0,0 6,0 6,8 12,8 12,4" stroke-width="1" stroke="#333" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="knobguide-attenuverter" viewBox="0 0 45px 45px"> | |||
<g transform="translate(22.5 22.5)"> | |||
<g transform="rotate(-240) translate(15 0)"> | |||
<text font-size="9.0pt" transform="translate(3 0) rotate(240) translate(-2.2 3.6)">-</text> | |||
</g> | |||
<g transform="rotate(-210) translate(15 0)"> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" /> | |||
</g> | |||
<g transform="rotate(-180) translate(15 0)"> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" /> | |||
</g> | |||
<g transform="rotate(-150) translate(15 0)"> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" /> | |||
</g> | |||
<g transform="rotate(-120) translate(15 0)"> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" /> | |||
</g> | |||
<g transform="rotate(-90) translate(15 0)"> | |||
<text font-size="5.0pt" transform="translate(2 0) rotate(90) translate(-2 2)">0</text> | |||
</g> | |||
<g transform="rotate(-60) translate(15 0)"> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" /> | |||
</g> | |||
<g transform="rotate(-30) translate(15 0)"> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" /> | |||
</g> | |||
<g transform="rotate(0) translate(15 0)"> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" /> | |||
</g> | |||
<g transform="rotate(30) translate(15 0)"> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" /> | |||
</g> | |||
<g transform="rotate(60) translate(15 0)"> | |||
<text font-size="5.0pt" transform="translate(3 0) rotate(-60) translate(-2 2)">+</text> | |||
</g> | |||
</g> | |||
</symbol> | |||
<symbol id="knobguide-linear" viewBox="0 0 45px 45px"> | |||
<g transform="translate(22.5 22.5)"> | |||
<text font-size="5.0pt" transform="rotate(-240) translate(18 0) rotate(240) translate(-2 2)">0</text> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(-210) translate(15 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(-180) translate(15 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(-150) translate(15 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(-120) translate(15 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(-90) translate(15 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(-60) translate(15 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(-30) translate(15 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(0) translate(15 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(30) translate(15 0)" /> | |||
<polyline points="0,0 3.5,0" stroke-width="1" stroke="#333" transform="rotate(60) translate(15 0)" /> | |||
</g> | |||
</symbol> | |||
<symbol id="knobguide-phase" viewBox="0 0 40px 40px"> | |||
<g transform="translate(20 20)"> | |||
<g transform="rotate(-90) translate(10 0)"> | |||
<polyline points="0,0 4,0" stroke-width="1" stroke="#333" /> | |||
</g> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(20)" /> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(43)" /> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(-20)" /> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(-43)" /> | |||
</g> | |||
</symbol> | |||
<symbol id="input" viewBox="0 0 24px 24px"> | |||
<g transform="translate(12 12)"> | |||
<circle cx="0" cy="0" r="5" stroke-width="1" stroke="#0f0" fill="#0f0" /> | |||
<circle cx="0" cy="0" r="10.5" stroke-width="3" stroke="#0f0" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="output" viewBox="0 0 24px 24px"> | |||
<g transform="translate(12 12)"> | |||
<circle cx="0" cy="0" r="5" stroke-width="1" stroke="#f00" fill="#f00" /> | |||
<circle cx="0" cy="0" r="10.5" stroke-width="3" stroke="#f00" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="button-small" viewBox="0 0 9px 9px"> | |||
<g transform="translate(4.5 4.5)"> | |||
<circle r="4" stroke-width="1" stroke="#00f" fill="#f00" /> | |||
</g> | |||
</symbol> | |||
<symbol id="light-small" viewBox="0 0 6.4px 6.4px"> | |||
<rect width="6.4" height="6.4" fill="#0f0" /> | |||
</symbol> | |||
</defs> | |||
<rect width="100%" height="100%" fill="#ddd" /> | |||
<polyline points="1,1 254,1 254,379 1,379 1,1" stroke="#e4e4e4" stroke-width="0.5" fill="none" /> | |||
<polyline points="0.5,0.5 254.5,0.5 254.5,379.5 0.5,379.5 0.5,0.5" stroke="#ebebeb" stroke-width="0.8" fill="none" /> | |||
<polyline points="0,0 255,0 255,380 0,380 0,0" stroke="#f2f2f2" stroke-width="1" fill="none" /> | |||
<!-- <rect width="110" height="20" fill="#0f0" transform="translate(0 0)" /> --> | |||
<!-- <rect width="110" height="20" fill="#0f0" transform="translate(160 0)" /> --> | |||
<!-- <rect width="95" height="20" fill="#0f0" transform="translate(0 360)" /> --> | |||
<!-- <rect width="95" height="20" fill="#0f0" transform="translate(175 360)" /> --> | |||
<text class="title" x="114" y="19" font-size="12pt" letter-spacing="4px">8FO</text> | |||
<g transform="translate(95 374)"> | |||
<text class="brand" font-size="8pt" letter-spacing="2px">BOGAUDIO</text> | |||
<rect width="3.0" height="3" fill="#ddd" transform="translate(24 -5)" /> | |||
</g> | |||
<g transform="translate(20 25)"> | |||
<!-- <rect width="108" height="108" fill="none" stroke="#0f0" /> --> | |||
<!-- <polyline points="0,54 54,54" stroke="#0f0" stroke-width="1" fill="none" /> --> | |||
<!-- <polyline points="54,54 54,354" stroke="#0f0" stroke-width="1" fill="none" /> --> | |||
<use id="FREQUENCY_PARAM" xlink:href="#knob-large" transform="translate(20 20)" /> | |||
</g> | |||
<use xlink:href="#knobguide-frequency-lfo" transform="translate(10 15)" /> | |||
<!-- <rect width="20" height="10" fill="#0f0" transform="translate(20 130)" /> --> | |||
<!-- <rect width="20" height="10" fill="#0f0" transform="translate(108 130)" /> --> | |||
<text font-size="6pt" letter-spacing="1px" transform="translate(33 133)">0V = C0 = 16.35HZ</text> | |||
<g transform="translate(86 335)"> | |||
<!-- <rect width="230" height="15" fill="#0f0" transform="translate(-30 -17)" /> --> | |||
<!-- <rect width="230" height="15" fill="#0f0" transform="translate(-30 8)" /> --> | |||
<use id="SLOW_PARAM" xlink:href="#button-small" transform="translate(40 -1.3)" /> | |||
<use id="SLOW_LIGHT" xlink:href="#light-small" transform="translate(0 0)" /> | |||
<text font-size="6pt" letter-spacing="2px" transform="translate(9 6.1)">SLOW</text> | |||
</g> | |||
<!-- <rect width="230" height="10" fill="#0f0" transform="translate(0 137)" /> --> | |||
<g transform="translate(10 163)"> | |||
<!-- <polyline points="0,0 170,0" stroke="#0f0" stroke-width="1" fill="none" transform="translate(10 13)" /> --> | |||
<g transform="translate(10 0)"> | |||
<use id="WAVE_PARAM" xlink:href="#knob-smallest" transform="translate(0 5)" /> | |||
<!-- <rect width="60" height="60" fill="none" stroke="#0f0" transform="translate(-10 -30) translate(8 13)" /> --> | |||
</g> | |||
<g transform="translate(70 0)"> | |||
<!-- <polyline points="0,0 170,0" stroke="#f00" stroke-width="1" fill="none" transform="translate(-10 -10)" /> --> | |||
<!-- <polyline points="0,0 170,0" stroke="#0f0" stroke-width="1" fill="none" transform="translate(-10 13)" /> --> | |||
<!-- <polyline points="0,0 0,170" stroke="#0f0" stroke-width="1" fill="none" transform="translate(33 -13)" /> --> | |||
<!-- <polyline points="0,0 170,0" stroke="#f00" stroke-width="1" fill="none" transform="translate(-10 33)" /> --> | |||
<text font-size="8pt" letter-spacing="2px" transform="translate(8 38) rotate(270)">SAM/PW</text> | |||
<use id="SAMPLE_PWM_PARAM" xlink:href="#knob-medium" transform="translate(20 0)" /> | |||
</g> | |||
<use xlink:href="#knobguide-attenuverter" transform="translate(80.5 -9.6)" /> | |||
<use xlink:href="#waves" transform="translate(-2 -22)" /> | |||
</g> | |||
<!-- <rect width="230" height="10" fill="#0f0" transform="translate(0 203)" /> --> | |||
<g transform="translate(10 226)"> | |||
<!-- <polyline points="0,0 170,0" stroke="#f00" stroke-width="1" fill="none" transform="translate(10 -10)" /> --> | |||
<!-- <polyline points="0,0 170,0" stroke="#0f0" stroke-width="1" fill="none" transform="translate(10 13)" /> --> | |||
<!-- <polyline points="0,0 0,170" stroke="#0f0" stroke-width="1" fill="none" transform="translate(43 -13)" /> --> | |||
<!-- <polyline points="0,0 170,0" stroke="#f00" stroke-width="1" fill="none" transform="translate(10 33)" /> --> | |||
<g transform="translate(10 0)"> | |||
<text font-size="8pt" letter-spacing="2px" transform="translate(8 36.5) rotate(270)">OFFSET</text> | |||
<use id="OFFSET_PARAM" xlink:href="#knob-medium" transform="translate(20 0)" /> | |||
</g> | |||
<use xlink:href="#knobguide-attenuverter" transform="translate(20.5 -9.6)" /> | |||
<g transform="translate(70 0)"> | |||
<text font-size="8pt" letter-spacing="2px" transform="translate(8 32) rotate(270)">SCALE</text> | |||
<use id="SCALE_PARAM" xlink:href="#knob-medium" transform="translate(20 0)" /> | |||
</g> | |||
<use xlink:href="#knobguide-linear" transform="translate(80.5 -9.6)" /> | |||
</g> | |||
<g transform="translate(137 32)"> | |||
<g transform="translate(3 4)"> | |||
<g transform="translate(0 0)"> | |||
<use id="PHASE7_PARAM" xlink:href="#knob-smallest" transform="translate(4 4)" /> | |||
</g> | |||
<g transform="translate(0 40)"> | |||
<use id="PHASE6_PARAM" xlink:href="#knob-smallest" transform="translate(4 4)" /> | |||
</g> | |||
<g transform="translate(0 80)"> | |||
<use id="PHASE5_PARAM" xlink:href="#knob-smallest" transform="translate(4 4)" /> | |||
</g> | |||
<g transform="translate(0 120)"> | |||
<use id="PHASE4_PARAM" xlink:href="#knob-smallest" transform="translate(4 4)" /> | |||
</g> | |||
<g transform="translate(0 160)"> | |||
<use id="PHASE3_PARAM" xlink:href="#knob-smallest" transform="translate(4 4)" /> | |||
</g> | |||
<g transform="translate(0 200)"> | |||
<use id="PHASE2_PARAM" xlink:href="#knob-smallest" transform="translate(4 4)" /> | |||
</g> | |||
<g transform="translate(0 240)"> | |||
<use id="PHASE1_PARAM" xlink:href="#knob-smallest" transform="translate(4 4)" /> | |||
</g> | |||
<g transform="translate(0 280)"> | |||
<!-- <polyline points="0,0 200,0" stroke="#0f0" stroke-width="1" fill="none" transform="translate(0 12)" /> --> | |||
<use id="PHASE0_PARAM" xlink:href="#knob-smallest" transform="translate(4 4)" /> | |||
</g> | |||
</g> | |||
</g> | |||
<g transform="translate(137 36)"> | |||
<use xlink:href="#knobguide-phase" transform="translate(3 0) translate(12 12) rotate(-225) translate(-20 -20)" /> | |||
<use xlink:href="#knobguide-phase" transform="translate(3 40) translate(12 12) rotate(-180) translate(-20 -20)" /> | |||
<use xlink:href="#knobguide-phase" transform="translate(3 80) translate(12 12) rotate(-135) translate(-20 -20)" /> | |||
<use xlink:href="#knobguide-phase" transform="translate(3 120) translate(12 12) rotate(-90) translate(-20 -20)" /> | |||
<use xlink:href="#knobguide-phase" transform="translate(3 160) translate(12 12) rotate(-45) translate(-20 -20)" /> | |||
<use xlink:href="#knobguide-phase" transform="translate(3 200) translate(12 12) rotate(0) translate(-20 -20)" /> | |||
<use xlink:href="#knobguide-phase" transform="translate(3 240) translate(12 12) rotate(45) translate(-20 -20)" /> | |||
<use xlink:href="#knobguide-phase" transform="translate(3 280) translate(12 12) rotate(90) translate(-20 -20)" /> | |||
</g> | |||
<g transform="translate(176 32)"> | |||
<rect width="30" height="328" rx="5" fill="#fafafa" /> | |||
<g transform="translate(3 4)"> | |||
<use id="PHASE7_INPUT" xlink:href="#input" transform="translate(0 0)" /> | |||
<use id="PHASE6_INPUT" xlink:href="#input" transform="translate(0 40)" /> | |||
<use id="PHASE5_INPUT" xlink:href="#input" transform="translate(0 80)" /> | |||
<use id="PHASE4_INPUT" xlink:href="#input" transform="translate(0 120)" /> | |||
<use id="PHASE3_INPUT" xlink:href="#input" transform="translate(0 160)" /> | |||
<use id="PHASE2_INPUT" xlink:href="#input" transform="translate(0 200)" /> | |||
<use id="PHASE1_INPUT" xlink:href="#input" transform="translate(0 240)" /> | |||
<use id="PHASE0_INPUT" xlink:href="#input" transform="translate(0 280)" /> | |||
</g> | |||
<text font-size="6pt" letter-spacing="2px" transform="translate(8 320)">CV</text> | |||
</g> | |||
<g transform="translate(215 32)"> | |||
<rect width="30" height="328" rx="5" fill="#bbb" /> | |||
<g transform="translate(3 4)"> | |||
<use id="PHASE7_OUTPUT" xlink:href="#output" transform="translate(0 0)" /> | |||
<use id="PHASE6_OUTPUT" xlink:href="#output" transform="translate(0 40)" /> | |||
<use id="PHASE5_OUTPUT" xlink:href="#output" transform="translate(0 80)" /> | |||
<use id="PHASE4_OUTPUT" xlink:href="#output" transform="translate(0 120)" /> | |||
<use id="PHASE3_OUTPUT" xlink:href="#output" transform="translate(0 160)" /> | |||
<use id="PHASE2_OUTPUT" xlink:href="#output" transform="translate(0 200)" /> | |||
<use id="PHASE1_OUTPUT" xlink:href="#output" transform="translate(0 240)" /> | |||
<use id="PHASE0_OUTPUT" xlink:href="#output" transform="translate(0 280)" /> | |||
</g> | |||
<text font-size="6pt" letter-spacing="2px" transform="translate(5 320)">OUT</text> | |||
</g> | |||
<!-- <polyline points="0,0 0,360" stroke="#0f0" stroke-width="1" fill="none" transform="translate(135 0)" /> --> | |||
<!-- <polyline points="0,0 270,0" stroke="#0f0" stroke-width="1" fill="none" transform="translate(0 360)" /> --> | |||
<!-- <rect width="230" height="10" fill="#0f0" transform="translate(0 263)" /> --> | |||
<g transform="translate(0 313)"> | |||
<rect width="70" height="87" rx="5" fill="#fafafa" transform="translate(10 -40)" /> | |||
<rect width="108" height="43" rx="5" fill="#fafafa" transform="translate(10 -40)" /> | |||
<!-- <rect width="300" height="7" fill="#f00" transform="translate(10 40)" /> --> | |||
<g transform="translate(10 -40)"> | |||
<!-- <rect width="30" height="40" rx="5" fill="#fafafa" /> --> | |||
<use id="SAMPLE_PWM_INPUT" xlink:href="#input" transform="translate(4 4)" /> | |||
<text font-size="6pt" letter-spacing="1px" transform="translate(4 38)">S/PW</text> | |||
</g> | |||
<g transform="translate(50 -40)"> | |||
<!-- <rect width="30" height="40" rx="5" fill="#fafafa" /> --> | |||
<use id="OFFSET_INPUT" xlink:href="#input" transform="translate(2 4)" /> | |||
<text font-size="6pt" letter-spacing="2px" transform="translate(4.5 38)">OFF</text> | |||
</g> | |||
<g transform="translate(90 -40)"> | |||
<!-- <rect width="30" height="40" rx="5" fill="#fafafa" /> --> | |||
<use id="SCALE_INPUT" xlink:href="#input" transform="translate(0 4)" /> | |||
<text font-size="6pt" letter-spacing="2px" transform="translate(2.5 38)">SCL</text> | |||
</g> | |||
<g transform="translate(10 0)"> | |||
<!-- <rect width="30" height="47" rx="5" fill="#fafafa" /> --> | |||
<use id="PITCH_INPUT" xlink:href="#input" transform="translate(4 5)" /> | |||
<text font-size="6pt" letter-spacing="1px" transform="translate(2 40)">V/OCT</text> | |||
</g> | |||
<g transform="translate(50 0)"> | |||
<!-- <rect width="30" height="47" rx="5" fill="#fafafa" /> --> | |||
<use id="RESET_INPUT" xlink:href="#input" transform="translate(2 5)" /> | |||
<text font-size="6pt" letter-spacing="1px" transform="translate(0 40)">RESET</text> | |||
</g> | |||
</g> | |||
</svg> |
@@ -57,17 +57,13 @@ | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="translate(3 0)" /> | |||
<text font-size="7.0pt" transform="translate(14 0) rotate(171.49) translate(-11 3.5)">0.5</text> | |||
</g> | |||
<g transform="rotate(-148.42) translate(34 0)"> | |||
<g transform="rotate(-71.76) translate(34 0)"> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="translate(3 0)" /> | |||
<text font-size="7.0pt" transform="translate(14 0) rotate(148.42) translate(-3 3.5)">1</text> | |||
<text font-size="7.0pt" transform="translate(14 0) rotate(71.76) translate(-2 3.5)">10</text> | |||
</g> | |||
<g transform="rotate(-94.83) translate(34 0)"> | |||
<g transform="rotate(-124.62) translate(34 0)"> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="translate(3 0)" /> | |||
<text font-size="7.0pt" transform="translate(14 0) rotate(94.83) translate(-3 3.5)">5</text> | |||
</g> | |||
<g transform="rotate(-55.39) translate(34 0)"> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="translate(3 0)" /> | |||
<text font-size="7.0pt" letter-spacing="1px" transform="translate(14 0) rotate(55.39) translate(-1 3.5)">0V</text> | |||
<text font-size="7.0pt" letter-spacing="1px" transform="translate(14 0) rotate(124.62) translate(-10 3.5)">0V</text> | |||
</g> | |||
<g transform="rotate(-18.17) translate(34 0)"> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="translate(3 0)" /> | |||
@@ -77,23 +73,29 @@ | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="translate(3 0)" /> | |||
<text font-size="7.0pt" transform="translate(14 0) rotate(-27.98) translate(-2 3.5)">200</text> | |||
</g> | |||
<g transform="rotate(51.06) translate(34 0)"> | |||
<g transform="rotate(51.05) translate(34 0)"> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="translate(3 0)" /> | |||
<text font-size="7.0pt" transform="translate(14 0) rotate(-51.06) translate(-2 3.5)">400HZ</text> | |||
<text font-size="7.0pt" transform="translate(14 0) rotate(-51.05) translate(-2 3.5)">400HZ</text> | |||
</g> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-240) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-216.92) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-193.85) translate(37 0)" /> | |||
<!-- <polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-170.77) translate(37 0)" /> --> | |||
<!-- <polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-147.69) translate(37 0)" /> --> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-124.62) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-147.69) translate(37 0)" /> | |||
<!-- <polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-124.62) translate(37 0)" /> --> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-101.54) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-78.46) translate(37 0)" /> | |||
<!-- <polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-55.38) translate(37 0)" /> --> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-55.38) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-32.31) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-9.23) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(13.85) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(36.92) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(60) translate(37 0)" /> | |||
</g> | |||
@@ -249,7 +251,7 @@ | |||
<!-- <rect width="20" height="10" fill="#0f0" transform="translate(20 130)" /> --> | |||
<!-- <rect width="20" height="10" fill="#0f0" transform="translate(108 130)" /> --> | |||
<text font-size="6pt" letter-spacing="1px" transform="translate(33 133)">0V = C0 = 16.35HZ</text> | |||
<text font-size="6pt" letter-spacing="1px" transform="translate(34 133)">0V = C-3 = 2.04HZ</text> | |||
<g transform="translate(86 335)"> | |||
<!-- <rect width="230" height="15" fill="#0f0" transform="translate(-30 -17)" /> --> | |||
@@ -0,0 +1,186 @@ | |||
<svg | |||
version="1.1" | |||
xmlns="http://www.w3.org/2000/svg" | |||
xmlns:xlink="http://www.w3.org/1999/xlink" | |||
width="90" | |||
height="380" | |||
viewBox="0 0 90 380" | |||
> | |||
<style> | |||
text { | |||
fill: #333; | |||
font-family: 'Roboto', sans-serif; | |||
font-weight: bold; | |||
} | |||
text.title { | |||
font-family: 'Comfortaa', sans-serif; | |||
font-weight: normal; | |||
} | |||
text.brand { | |||
font-family: 'Audiowide', sans-serif; | |||
font-weight: bold; | |||
} | |||
</style> | |||
<defs> | |||
<symbol id="knob" viewBox="0 0 45px 45px"> | |||
<g transform="translate(22.5 22.5)"> | |||
<polyline points="-5,0 5,0" stroke-width="1" stroke="#00f" /> | |||
<polyline points="0,-5 0,5" stroke-width="1" stroke="#00f" /> | |||
<circle cx="0" cy="0" r="14" stroke-width="1" stroke="#00f" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="knobguide-select" viewBox="0 0 45px 45px"> | |||
<g transform="translate(22.5 22.5)"> | |||
<text font-size="5.0pt" transform="rotate(-240) translate(20 0) rotate(240) translate(-2 2)">1</text> | |||
<text font-size="5.0pt" transform="rotate(-197.1) translate(20 0) rotate(197.1) translate(-2 2)">2</text> | |||
<text font-size="5.0pt" transform="rotate(-154.3) translate(20 0) rotate(154.3) translate(-2 2)">3</text> | |||
<text font-size="5.0pt" transform="rotate(-111.4) translate(20 0) rotate(111.4) translate(-2 2)">4</text> | |||
<text font-size="5.0pt" transform="rotate(-68.6) translate(20 0) rotate(68.6) translate(-2 2)">5</text> | |||
<text font-size="5.0pt" transform="rotate(-25.7) translate(20 0) rotate(25.7) translate(-2 2)">6</text> | |||
<text font-size="5.0pt" transform="rotate(17.1) translate(20 0) rotate(-17.1) translate(-2 2)">7</text> | |||
<text font-size="5.0pt" transform="rotate(60) translate(20 0) rotate(-60) translate(-2 2)">8</text> | |||
</g> | |||
</symbol> | |||
<symbol id="knob-smallest" viewBox="0 0 16px 16px"> | |||
<g transform="translate(8 8)"> | |||
<polyline points="-3,0 3,0" stroke-width="1" stroke="#00f" /> | |||
<polyline points="0,-3 0,3" stroke-width="1" stroke="#00f" /> | |||
<circle r="7.5" stroke-width="1" stroke="#00f" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="knobguide-steps" viewBox="0 0 40px 40px"> | |||
<g transform="translate(20 20)"> | |||
<text font-size="5.0pt" transform="rotate(-240) translate(13 0) rotate(240) translate(-2 2)">2</text> | |||
<text font-size="5.0pt" transform="rotate(-190) translate(13 0) rotate(190) translate(-2 2)">3</text> | |||
<text font-size="5.0pt" transform="rotate(-140) translate(13 0) rotate(140) translate(-2 2)">4</text> | |||
<text font-size="5.0pt" transform="rotate(-90) translate(13 0) rotate(90) translate(-2 2)">5</text> | |||
<text font-size="5.0pt" transform="rotate(-40) translate(13 0) rotate(40) translate(-2 2)">6</text> | |||
<text font-size="5.0pt" transform="rotate(10) translate(13 0) rotate(-10) translate(-2 2)">7</text> | |||
<text font-size="5.0pt" transform="rotate(60) translate(13 0) rotate(-60) translate(-2 2)">8</text> | |||
</g> | |||
</symbol> | |||
<symbol id="switch" viewBox="0 0 14px 24px"> | |||
<rect width="14px" height="24px" stroke-width="1" stroke="#000" fill="#ddd" /> | |||
<rect width="14px" height="12px" stroke-width="0" fill="#000" /> | |||
</symbol> | |||
<symbol id="light-small" viewBox="0 0 6.4px 6.4px"> | |||
<rect width="6.4" height="6.4" fill="#0f0" /> | |||
</symbol> | |||
<symbol id="input" viewBox="0 0 24px 24px"> | |||
<g transform="translate(12 12)"> | |||
<circle cx="0" cy="0" r="5" stroke-width="1" stroke="#0f0" fill="#0f0" /> | |||
<circle cx="0" cy="0" r="10.5" stroke-width="3" stroke="#0f0" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="output" viewBox="0 0 24px 24px"> | |||
<g transform="translate(12 12)"> | |||
<circle cx="0" cy="0" r="5" stroke-width="1" stroke="#f00" fill="#f00" /> | |||
<circle cx="0" cy="0" r="10.5" stroke-width="3" stroke="#f00" fill="none" /> | |||
</g> | |||
</symbol> | |||
</defs> | |||
<rect width="100%" height="100%" fill="#ddd" /> | |||
<polyline points="1,1 89,1 89,379 1,379 1,1" stroke="#e4e4e4" stroke-width="0.5" fill="none" /> | |||
<polyline points="0.5,0.5 89.5,0.5 89.5,379.5 0.5,379.5 0.5,0.5" stroke="#ebebeb" stroke-width="0.8" fill="none" /> | |||
<polyline points="0,0 90,0 90,380 0,380 0,0" stroke="#f2f2f2" stroke-width="1" fill="none" /> | |||
<text class="title" x="63" y="17" font-size="9pt" letter-spacing="3px">8:1</text> | |||
<g transform="translate(5.5 374)"> | |||
<text class="brand" font-size="6.5pt" letter-spacing="2px">BOGAUDIO</text> | |||
<rect width="1.5" height="2" fill="#ddd" transform="translate(21 -4)" /> | |||
</g> | |||
<g transform="translate(6.5 32)"> | |||
<rect width="34" height="337" rx="5" fill="#fafafa" transform="translate(0 -9)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(12.5 0)">IN</text> | |||
<use id="IN1_INPUT" xlink:href="#input" transform="translate(5 3)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(11 35)">1</text> | |||
<use id="IN1_LIGHT" xlink:href="#light-small" transform="translate(17 29.5)" /> | |||
<use id="IN2_INPUT" xlink:href="#input" transform="translate(5 44.3)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(11 76.3)">2</text> | |||
<use id="IN2_LIGHT" xlink:href="#light-small" transform="translate(17 70.8)" /> | |||
<use id="IN3_INPUT" xlink:href="#input" transform="translate(5 86.6)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(11 118.6)">3</text> | |||
<use id="IN3_LIGHT" xlink:href="#light-small" transform="translate(17 113.1)" /> | |||
<use id="IN4_INPUT" xlink:href="#input" transform="translate(5 126.9)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(11 158.9)">4</text> | |||
<use id="IN4_LIGHT" xlink:href="#light-small" transform="translate(17 153.4)" /> | |||
<use id="IN5_INPUT" xlink:href="#input" transform="translate(5 168.1)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(11 200.1)">5</text> | |||
<use id="IN5_LIGHT" xlink:href="#light-small" transform="translate(17 194.6)" /> | |||
<use id="IN6_INPUT" xlink:href="#input" transform="translate(5 209.4)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(11 241.4)">6</text> | |||
<use id="IN6_LIGHT" xlink:href="#light-small" transform="translate(17 235.9)" /> | |||
<use id="IN7_INPUT" xlink:href="#input" transform="translate(5 250.7)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(11 282.7)">7</text> | |||
<use id="IN7_LIGHT" xlink:href="#light-small" transform="translate(17 277.2)" /> | |||
<use id="IN8_INPUT" xlink:href="#input" transform="translate(5 292)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(11 324)">8</text> | |||
<use id="IN8_LIGHT" xlink:href="#light-small" transform="translate(17 318.5)" /> | |||
</g> | |||
<g transform="translate(49.5 32)"> | |||
<rect width="34" height="39" rx="5" fill="#fafafa" /> | |||
<rect width="34" height="10" fill="#fafafa" transform="translate(0 30)" /> | |||
<use id="CLOCK_INPUT" xlink:href="#input" transform="translate(5 3)" /> | |||
<text font-size="5pt" letter-spacing="1px" transform="translate(4 35)">CLOCK</text> | |||
</g> | |||
<g transform="translate(49.5 69)"> | |||
<rect width="34" height="39" rx="5" fill="#fafafa" /> | |||
<use id="RESET_INPUT" xlink:href="#input" transform="translate(5 3)" /> | |||
<text font-size="5pt" letter-spacing="1px" transform="translate(5 35)">RESET</text> | |||
</g> | |||
<g transform="translate(44 121)"> | |||
<text font-size="6pt" letter-spacing="1.5px" transform="translate(7.5 0)">STEPS</text> | |||
<use id="STEPS_PARAM" xlink:href="#knob-smallest" transform="translate(14.5 10.5)" /> | |||
<use xlink:href="#knobguide-steps" transform="translate(2.5 -1)" /> | |||
</g> | |||
<g transform="translate(59 166)"> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(-1.8 -1)">FWD</text> | |||
<use id="DIRECTION_PARAM" xlink:href="#switch" transform="translate(0 2)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(-1.3 34)">REV</text> | |||
</g> | |||
<!-- <rect width="45" height="14" fill="#0f0" transform="translate(0 200)" /> --> | |||
<!-- <rect width="45" height="14" fill="#0f0" transform="translate(0 307)" /> --> | |||
<g transform="translate(44 220)"> | |||
<text font-size="6pt" letter-spacing="1.5px" transform="translate(4.5 0)">SELECT</text> | |||
<use id="SELECT_PARAM" xlink:href="#knob" transform="translate(0 2)" /> | |||
<use xlink:href="#knobguide-select" transform="translate(0 2)" /> | |||
<g transform="translate(5.5 47)"> | |||
<rect width="34" height="39" rx="5" fill="#fafafa" /> | |||
<use id="SELECT_INPUT" xlink:href="#input" transform="translate(5 3)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(11.5 35)">CV</text> | |||
</g> | |||
</g> | |||
<g transform="translate(49.5 321)"> | |||
<rect width="34" height="39" rx="5" fill="#bbb" /> | |||
<use id="OUT_OUTPUT" xlink:href="#output" transform="translate(5 3)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(8 35)">OUT</text> | |||
</g> | |||
<!-- <polyline points="0,0 90,0" stroke="#f00" stroke-width="1" fill="none" transform="translate(0 47)" /> --> | |||
<!-- <polyline points="0,0 90,0" stroke="#f00" stroke-width="1" fill="none" transform="translate(0 336)" /> --> | |||
<!-- <polyline points="0,0 90,0" stroke="#f00" stroke-width="1" fill="none" transform="translate(0 351)" /> --> | |||
<!-- <polyline points="0,0 0,360" stroke="#f00" stroke-width="1" fill="none" transform="translate(66.50 0)" /> --> | |||
</svg> |
@@ -0,0 +1,355 @@ | |||
<svg | |||
version="1.1" | |||
xmlns="http://www.w3.org/2000/svg" | |||
xmlns:xlink="http://www.w3.org/1999/xlink" | |||
width="150" | |||
height="380" | |||
viewBox="0 0 150 380" | |||
> | |||
<style> | |||
text { | |||
fill: #333; | |||
font-family: 'Roboto', sans-serif; | |||
font-weight: bold; | |||
} | |||
text.title { | |||
font-family: 'Comfortaa', sans-serif; | |||
font-weight: normal; | |||
} | |||
text.brand { | |||
font-family: 'Audiowide', sans-serif; | |||
font-weight: bold; | |||
} | |||
</style> | |||
<defs> | |||
<symbol id="knob-large" viewBox="0 0 68px 68px"> | |||
<g transform="translate(34 34)"> | |||
<polyline points="-10,0 10,0" stroke-width="1" stroke="#00f" /> | |||
<polyline points="0,-10 0,10" stroke-width="1" stroke="#00f" /> | |||
<circle cx="0" cy="0" r="33.5" stroke-width="1" stroke="#00f" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="knob-medium" viewBox="0 0 26px 26px"> | |||
<g transform="translate(13 13)"> | |||
<polyline points="-3,0 3,0" stroke-width="1" stroke="#00f" /> | |||
<polyline points="0,-3 0,3" stroke-width="1" stroke="#00f" /> | |||
<circle cx="0" cy="0" r="12.5" stroke-width="1" stroke="#00f" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="knob-smallest" viewBox="0 0 16px 16px"> | |||
<g transform="translate(8 8)"> | |||
<polyline points="-3,0 3,0" stroke-width="1" stroke="#00f" /> | |||
<polyline points="0,-3 0,3" stroke-width="1" stroke="#00f" /> | |||
<circle r="7.5" stroke-width="1" stroke="#00f" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="knobguide-frequency-lfo" viewBox="0 0 128px 128px"> | |||
<g transform="translate(64 64)"> | |||
<g transform="rotate(-225.08) translate(34 0)"> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="translate(3 0)" /> | |||
<text font-size="7.0pt" transform="translate(14 0) rotate(225.08) translate(-10.5 3.5)">0.1</text> | |||
</g> | |||
<g transform="rotate(-171.49) translate(34 0)"> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="translate(3 0)" /> | |||
<text font-size="7.0pt" transform="translate(14 0) rotate(171.49) translate(-11 3.5)">0.5</text> | |||
</g> | |||
<g transform="rotate(-148.42) translate(34 0)"> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="translate(3 0)" /> | |||
<text font-size="7.0pt" transform="translate(14 0) rotate(148.42) translate(-3 3.5)">1</text> | |||
</g> | |||
<g transform="rotate(-94.83) translate(34 0)"> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="translate(3 0)" /> | |||
<text font-size="7.0pt" transform="translate(14 0) rotate(94.83) translate(-3 3.5)">5</text> | |||
</g> | |||
<g transform="rotate(-55.39) translate(34 0)"> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="translate(3 0)" /> | |||
<text font-size="7.0pt" letter-spacing="1px" transform="translate(14 0) rotate(55.39) translate(-1 3.5)">0V</text> | |||
</g> | |||
<g transform="rotate(-18.17) translate(34 0)"> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="translate(3 0)" /> | |||
<text font-size="7.0pt" transform="translate(14 0) rotate(18.17) translate(-2 3.5)">50</text> | |||
</g> | |||
<g transform="rotate(27.98) translate(34 0)"> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="translate(3 0)" /> | |||
<text font-size="7.0pt" transform="translate(14 0) rotate(-27.98) translate(-2 3.5)">200</text> | |||
</g> | |||
<g transform="rotate(51.06) translate(34 0)"> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="translate(3 0)" /> | |||
<text font-size="7.0pt" transform="translate(14 0) rotate(-51.06) translate(-2 3.5)">400HZ</text> | |||
</g> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-240) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-216.92) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-193.85) translate(37 0)" /> | |||
<!-- <polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-170.77) translate(37 0)" /> --> | |||
<!-- <polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-147.69) translate(37 0)" /> --> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-124.62) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-101.54) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-78.46) translate(37 0)" /> | |||
<!-- <polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-55.38) translate(37 0)" /> --> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-32.31) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-9.23) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(13.85) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(36.92) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(60) translate(37 0)" /> | |||
</g> | |||
</symbol> | |||
<symbol id="knobguide-attenuverter" viewBox="0 0 45px 45px"> | |||
<g transform="translate(22.5 22.5)"> | |||
<g transform="rotate(-240) translate(15 0)"> | |||
<text font-size="9.0pt" transform="translate(3 0) rotate(240) translate(-2.2 3.6)">-</text> | |||
</g> | |||
<g transform="rotate(-210) translate(15 0)"> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" /> | |||
</g> | |||
<g transform="rotate(-180) translate(15 0)"> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" /> | |||
</g> | |||
<g transform="rotate(-150) translate(15 0)"> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" /> | |||
</g> | |||
<g transform="rotate(-120) translate(15 0)"> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" /> | |||
</g> | |||
<g transform="rotate(-90) translate(15 0)"> | |||
<text font-size="5.0pt" transform="translate(2 0) rotate(90) translate(-2 2)">0</text> | |||
</g> | |||
<g transform="rotate(-60) translate(15 0)"> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" /> | |||
</g> | |||
<g transform="rotate(-30) translate(15 0)"> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" /> | |||
</g> | |||
<g transform="rotate(0) translate(15 0)"> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" /> | |||
</g> | |||
<g transform="rotate(30) translate(15 0)"> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" /> | |||
</g> | |||
<g transform="rotate(60) translate(15 0)"> | |||
<text font-size="5.0pt" transform="translate(3 0) rotate(-60) translate(-2 2)">+</text> | |||
</g> | |||
</g> | |||
</symbol> | |||
<symbol id="knobguide-linear" viewBox="0 0 45px 45px"> | |||
<g transform="translate(22.5 22.5)"> | |||
<text font-size="5.0pt" transform="rotate(-240) translate(18 0) rotate(240) translate(-2 2)">0</text> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(-210) translate(15 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(-180) translate(15 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(-150) translate(15 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(-120) translate(15 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(-90) translate(15 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(-60) translate(15 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(-30) translate(15 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(0) translate(15 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(30) translate(15 0)" /> | |||
<polyline points="0,0 3.5,0" stroke-width="1" stroke="#333" transform="rotate(60) translate(15 0)" /> | |||
</g> | |||
</symbol> | |||
<symbol id="knobguide-centertick" viewBox="0 0 40px 40px"> | |||
<g transform="translate(20 20)"> | |||
<g transform="rotate(-90) translate(10 0)"> | |||
<polyline points="0,0 4,0" stroke-width="1" stroke="#333" /> | |||
</g> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(20)" /> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(43)" /> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(-20)" /> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(-43)" /> | |||
</g> | |||
</symbol> | |||
<symbol id="knobguide-maxtick" viewBox="0 0 40px 40px"> | |||
<g transform="translate(20 20)"> | |||
<g transform="rotate(60) translate(10 0)"> | |||
<polyline points="0,0 4,0" stroke-width="1" stroke="#333" /> | |||
</g> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(0)" /> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(43)" /> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(0)" /> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(-43)" /> | |||
</g> | |||
</symbol> | |||
<symbol id="input" viewBox="0 0 24px 24px"> | |||
<g transform="translate(12 12)"> | |||
<circle cx="0" cy="0" r="5" stroke-width="1" stroke="#0f0" fill="#0f0" /> | |||
<circle cx="0" cy="0" r="10.5" stroke-width="3" stroke="#0f0" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="output" viewBox="0 0 24px 24px"> | |||
<g transform="translate(12 12)"> | |||
<circle cx="0" cy="0" r="5" stroke-width="1" stroke="#f00" fill="#f00" /> | |||
<circle cx="0" cy="0" r="10.5" stroke-width="3" stroke="#f00" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="button-small" viewBox="0 0 9px 9px"> | |||
<g transform="translate(4.5 4.5)"> | |||
<circle r="4" stroke-width="1" stroke="#00f" fill="#f00" /> | |||
</g> | |||
</symbol> | |||
<symbol id="light-small" viewBox="0 0 6.4px 6.4px"> | |||
<rect width="6.4" height="6.4" fill="#0f0" /> | |||
</symbol> | |||
</defs> | |||
<rect width="100%" height="100%" fill="#ddd" /> | |||
<polyline points="1,1 149,1 149,379 1,379 1,1" stroke="#e4e4e4" stroke-width="0.5" fill="none" /> | |||
<polyline points="0.5,0.5 149.5,0.5 149.5,379.5 0.5,379.5 0.5,0.5" stroke="#ebebeb" stroke-width="0.8" fill="none" /> | |||
<polyline points="0,0 150,0 150,380 0,380 0,0" stroke="#f2f2f2" stroke-width="1" fill="none" /> | |||
<!-- <rect width="50" height="20" fill="#0f0" transform="translate(0 0)" /> --> | |||
<!-- <rect width="50" height="20" fill="#0f0" transform="translate(100 0)" /> --> | |||
<text class="title" x="53" y="19" font-size="12pt" letter-spacing="4px">LFO</text> | |||
<g transform="translate(35.5 374)"> | |||
<text class="brand" font-size="8pt" letter-spacing="2px">BOGAUDIO</text> | |||
<rect width="3.0" height="3" fill="#ddd" transform="translate(24 -5)" /> | |||
</g> | |||
<!-- <polyline points="0,0 0,354" stroke="#0f0" stroke-width="1" fill="none" transform="translate(75 0)" /> --> | |||
<g transform="translate(21 25)"> | |||
<!-- <rect width="108" height="108" fill="none" stroke="#0f0" /> --> | |||
<!-- <polyline points="0,54 54,54" stroke="#0f0" stroke-width="1" fill="none" /> --> | |||
<!-- <polyline points="54,54 54,354" stroke="#0f0" stroke-width="1" fill="none" /> --> | |||
<use id="FREQUENCY_PARAM" xlink:href="#knob-large" transform="translate(20 20)" /> | |||
</g> | |||
<use xlink:href="#knobguide-frequency-lfo" transform="translate(11 15)" /> | |||
<!-- <rect width="20" height="10" fill="#0f0" transform="translate(20 130)" /> --> | |||
<!-- <rect width="20" height="10" fill="#0f0" transform="translate(108 130)" /> --> | |||
<text font-size="6pt" letter-spacing="1px" transform="translate(33 133)">0V = C0 = 16.35HZ</text> | |||
<g transform="translate(111 240)"> | |||
<!-- <rect width="230" height="15" fill="#0f0" transform="translate(-30 -17)" /> --> | |||
<!-- <rect width="230" height="15" fill="#0f0" transform="translate(-30 8)" /> --> | |||
<use id="SLOW_PARAM" xlink:href="#button-small" transform="translate(9 9)" /> | |||
<use id="SLOW_LIGHT" xlink:href="#light-small" transform="translate(0 0)" /> | |||
<text font-size="6pt" letter-spacing="1px" transform="translate(9 6.1)">SLOW</text> | |||
</g> | |||
<g transform="translate(10 150)"> | |||
<g transform="translate(7 0)"> | |||
<!-- <rect width="52" height="38" fill="none" stroke="#0f0" transform="translate(0 -7)" /> --> | |||
<!-- <polyline points="0,0 0,354" stroke="#0f0" stroke-width="1" fill="none" transform="translate(33 0)" /> --> | |||
<text font-size="8pt" letter-spacing="2px" transform="translate(8 27) rotate(270)">SAM</text> | |||
<use id="SAMPLE_PARAM" xlink:href="#knob-medium" transform="translate(20 0)" /> | |||
</g> | |||
<use xlink:href="#knobguide-linear" transform="translate(17.5 -9.6)" /> | |||
<g transform="translate(72 0)"> | |||
<!-- <rect width="52" height="38" fill="none" stroke="#0f0" transform="translate(0 -7)" /> --> | |||
<!-- <polyline points="0,0 0,354" stroke="#0f0" stroke-width="1" fill="none" transform="translate(33 0)" /> --> | |||
<text font-size="8pt" letter-spacing="2px" transform="translate(8 22.5) rotate(270)">PW</text> | |||
<use id="PW_PARAM" xlink:href="#knob-medium" transform="translate(20 0)" /> | |||
</g> | |||
<use xlink:href="#knobguide-attenuverter" transform="translate(82.5 -9.6)" /> | |||
</g> | |||
<g transform="translate(10 196)"> | |||
<g transform="translate(7 0)"> | |||
<!-- <rect width="52" height="38" fill="none" stroke="#0f0" transform="translate(0 -7)" /> --> | |||
<text font-size="8pt" letter-spacing="2px" transform="translate(8 18) rotate(270)">OFF</text> | |||
<use id="OFFSET_PARAM" xlink:href="#knob-smallest" transform="translate(25 0)" /> | |||
</g> | |||
<use xlink:href="#knobguide-centertick" transform="translate(20 -12)" /> | |||
<g transform="translate(72 0)"> | |||
<!-- <rect width="52" height="38" fill="none" stroke="#0f0" transform="translate(0 -7)" /> --> | |||
<text font-size="8pt" letter-spacing="2px" transform="translate(8 18) rotate(270)">SCL</text> | |||
<use id="SCALE_PARAM" xlink:href="#knob-smallest" transform="translate(25 0)" /> | |||
</g> | |||
<use xlink:href="#knobguide-maxtick" transform="translate(85 -12)" /> | |||
</g> | |||
<!-- <rect width="50" height="10" fill="#0f0" transform="translate(0 137)" /> --> | |||
<!-- <rect width="50" height="10" fill="#0f0" transform="translate(0 181)" /> --> | |||
<!-- <rect width="50" height="10" fill="#0f0" transform="translate(0 215)" /> --> | |||
<g transform="translate(0 225)"> | |||
<rect width="130" height="91" rx="5" fill="#bbb" transform="translate(10 44)" /> | |||
<rect width="97.5" height="135" rx="5" fill="#bbb" transform="translate(10 0)" /> | |||
<rect width="65" height="135" rx="5" fill="#fafafa" transform="translate(10 0)" /> | |||
<rect width="10" height="8" fill="#fafafa" transform="translate(32.5 0)" /> | |||
<rect width="10" height="8" fill="#fafafa" transform="translate(65 0)" /> | |||
<rect width="10" height="8" fill="#fafafa" transform="translate(65 127)" /> | |||
<g transform="translate(12 0)"> | |||
<use id="SAMPLE_INPUT" xlink:href="#input" transform="translate(3 5)" /> | |||
<text font-size="6pt" letter-spacing="1px" transform="translate(5 40)">SAM</text> | |||
</g> | |||
<g transform="translate(44 0)"> | |||
<use id="PW_INPUT" xlink:href="#input" transform="translate(3 5)" /> | |||
<text font-size="6pt" letter-spacing="1px" transform="translate(8 40)">PW</text> | |||
</g> | |||
<g transform="translate(76 0)"> | |||
<use id="RAMP_DOWN_OUTPUT" xlink:href="#output" transform="translate(3 5)" /> | |||
<!-- <text font-size="6pt" letter-spacing="2px" transform="translate(4.5 40)">SAW</text> --> | |||
<g transform="translate(9 33.5)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#0f0" /> --> | |||
<polyline points="0,8 0,0 12,8" stroke-width="1" stroke="#333" fill="none" /> | |||
</g> | |||
</g> | |||
<g transform="translate(0 44)"> | |||
<g transform="translate(12 0)"> | |||
<use id="OFFSET_INPUT" xlink:href="#input" transform="translate(3 5)" /> | |||
<text font-size="6pt" letter-spacing="1px" transform="translate(6.5 40)">OFF</text> | |||
</g> | |||
<g transform="translate(44 0)"> | |||
<use id="SCALE_INPUT" xlink:href="#input" transform="translate(3 5)" /> | |||
<text font-size="6pt" letter-spacing="1px" transform="translate(6.5 40)">SCL</text> | |||
</g> | |||
<g transform="translate(76 0)"> | |||
<use id="RAMP_UP_OUTPUT" xlink:href="#output" transform="translate(3 5)" /> | |||
<g transform="translate(9 33.5)"> | |||
<polyline points="0,8 12,0 12,8" stroke-width="1" stroke="#333" fill="none" /> | |||
</g> | |||
</g> | |||
<g transform="translate(108 0)"> | |||
<use id="SQUARE_OUTPUT" xlink:href="#output" transform="translate(3 5)" /> | |||
<!-- <text font-size="6pt" letter-spacing="2px" transform="translate(5.5 40)">SQR</text> --> | |||
<g transform="translate(9 33.5)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#0f0" /> --> | |||
<polyline points="0,4 0,0 6,0 6,8 12,8 12,4" stroke-width="1" stroke="#333" fill="none" /> | |||
</g> | |||
</g> | |||
<g transform="translate(10 44)"> | |||
<g transform="translate(2 0)"> | |||
<use id="PITCH_INPUT" xlink:href="#input" transform="translate(3 5)" /> | |||
<text font-size="6pt" letter-spacing="1px" transform="translate(1 40)">V/OCT</text> | |||
</g> | |||
<g transform="translate(34 0)"> | |||
<use id="RESET_INPUT" xlink:href="#input" transform="translate(3 5)" /> | |||
<text font-size="6pt" letter-spacing="1px" transform="translate(0.7 40)">RESET</text> | |||
</g> | |||
<g transform="translate(66 0)"> | |||
<use id="TRIANGLE_OUTPUT" xlink:href="#output" transform="translate(3 5)" /> | |||
<!-- <text font-size="6pt" letter-spacing="2px" transform="translate(7 40)">TRI</text> --> | |||
<g transform="translate(9 33.5)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#0f0" /> --> | |||
<polyline points="0,4 3,0 9,8 12,4" stroke-width="1" stroke="#333" fill="none" /> | |||
</g> | |||
</g> | |||
<g transform="translate(98 0)"> | |||
<use id="SINE_OUTPUT" xlink:href="#output" transform="translate(3 5)" /> | |||
<!-- <text font-size="6pt" letter-spacing="2px" transform="translate(6.5 40)">SIN</text> --> | |||
<g transform="translate(9 33.5)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#0f0" /> --> | |||
<path d="M 0 4 A 2 3 0 0 1 6 4" stroke="#333" stroke-width="1" fill="none" /> | |||
<path d="M 6 4 A 2 3 0 0 0 12 4" stroke="#333" stroke-width="1" fill="none" /> | |||
</g> | |||
</g> | |||
</g> | |||
</g> | |||
</g> | |||
</svg> |
@@ -57,17 +57,13 @@ | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="translate(3 0)" /> | |||
<text font-size="7.0pt" transform="translate(14 0) rotate(171.49) translate(-11 3.5)">0.5</text> | |||
</g> | |||
<g transform="rotate(-148.42) translate(34 0)"> | |||
<g transform="rotate(-71.76) translate(34 0)"> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="translate(3 0)" /> | |||
<text font-size="7.0pt" transform="translate(14 0) rotate(148.42) translate(-3 3.5)">1</text> | |||
<text font-size="7.0pt" transform="translate(14 0) rotate(71.76) translate(-2 3.5)">10</text> | |||
</g> | |||
<g transform="rotate(-94.83) translate(34 0)"> | |||
<g transform="rotate(-124.62) translate(34 0)"> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="translate(3 0)" /> | |||
<text font-size="7.0pt" transform="translate(14 0) rotate(94.83) translate(-3 3.5)">5</text> | |||
</g> | |||
<g transform="rotate(-55.39) translate(34 0)"> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="translate(3 0)" /> | |||
<text font-size="7.0pt" letter-spacing="1px" transform="translate(14 0) rotate(55.39) translate(-1 3.5)">0V</text> | |||
<text font-size="7.0pt" letter-spacing="1px" transform="translate(14 0) rotate(124.62) translate(-10 3.5)">0V</text> | |||
</g> | |||
<g transform="rotate(-18.17) translate(34 0)"> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="translate(3 0)" /> | |||
@@ -77,23 +73,29 @@ | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="translate(3 0)" /> | |||
<text font-size="7.0pt" transform="translate(14 0) rotate(-27.98) translate(-2 3.5)">200</text> | |||
</g> | |||
<g transform="rotate(51.06) translate(34 0)"> | |||
<g transform="rotate(51.05) translate(34 0)"> | |||
<polyline points="0,0 5,0" stroke-width="1" stroke="#333" transform="translate(3 0)" /> | |||
<text font-size="7.0pt" transform="translate(14 0) rotate(-51.06) translate(-2 3.5)">400HZ</text> | |||
<text font-size="7.0pt" transform="translate(14 0) rotate(-51.05) translate(-2 3.5)">400HZ</text> | |||
</g> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-240) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-216.92) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-193.85) translate(37 0)" /> | |||
<!-- <polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-170.77) translate(37 0)" /> --> | |||
<!-- <polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-147.69) translate(37 0)" /> --> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-124.62) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-147.69) translate(37 0)" /> | |||
<!-- <polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-124.62) translate(37 0)" /> --> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-101.54) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-78.46) translate(37 0)" /> | |||
<!-- <polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-55.38) translate(37 0)" /> --> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-55.38) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-32.31) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(-9.23) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(13.85) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(36.92) translate(37 0)" /> | |||
<polyline points="0,0 3,0" stroke-width="0.7" stroke="#333" transform="rotate(60) translate(37 0)" /> | |||
</g> | |||
@@ -228,7 +230,7 @@ | |||
<!-- <rect width="20" height="10" fill="#0f0" transform="translate(20 130)" /> --> | |||
<!-- <rect width="20" height="10" fill="#0f0" transform="translate(108 130)" /> --> | |||
<text font-size="6pt" letter-spacing="1px" transform="translate(33 133)">0V = C0 = 16.35HZ</text> | |||
<text font-size="6pt" letter-spacing="1px" transform="translate(34 133)">0V = C-3 = 2.04HZ</text> | |||
<g transform="translate(111 240)"> | |||
<!-- <rect width="230" height="15" fill="#0f0" transform="translate(-30 -17)" /> --> | |||
@@ -0,0 +1,234 @@ | |||
<svg | |||
version="1.1" | |||
xmlns="http://www.w3.org/2000/svg" | |||
xmlns:xlink="http://www.w3.org/1999/xlink" | |||
width="45" | |||
height="380" | |||
viewBox="0 0 45 380" | |||
> | |||
<style> | |||
text { | |||
fill: #333; | |||
font-family: 'Roboto', sans-serif; | |||
font-weight: bold; | |||
} | |||
text.title { | |||
font-family: 'Comfortaa', sans-serif; | |||
font-weight: normal; | |||
} | |||
text.brand { | |||
font-family: 'Audiowide', sans-serif; | |||
font-weight: bold; | |||
} | |||
</style> | |||
<defs> | |||
<symbol id="knob-medium" viewBox="0 0 26px 26px"> | |||
<g transform="translate(13 13)"> | |||
<polyline points="-3,0 3,0" stroke-width="1" stroke="#00f" /> | |||
<polyline points="0,-3 0,3" stroke-width="1" stroke="#00f" /> | |||
<circle cx="0" cy="0" r="12.5" stroke-width="1" stroke="#00f" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="knob-smallest" viewBox="0 0 16px 16px"> | |||
<g transform="translate(8 8)"> | |||
<polyline points="-3,0 3,0" stroke-width="1" stroke="#00f" /> | |||
<polyline points="0,-3 0,3" stroke-width="1" stroke="#00f" /> | |||
<circle r="7.5" stroke-width="1" stroke="#00f" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="knobguide-frequency-llfo" viewBox="0 0 45px 45px"> | |||
<g transform="translate(22.5 22.5)"> | |||
<polyline points="0,0 3.5,0" stroke-width="0.7" stroke="#333" transform="rotate(-240) translate(15 0)" /> | |||
<polyline points="0,0 3.5,0" stroke-width="0.7" stroke="#333" transform="rotate(60) translate(15 0)" /> | |||
<g transform="rotate(-148.42) translate(14 0)"> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="translate(0 0)" /> | |||
<text font-size="5.0pt" transform="translate(5 0) rotate(148.42) translate(-2.2 2.3)">1</text> | |||
</g> | |||
<g transform="rotate(-55.39) translate(14 0)"> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="translate(0 0)" /> | |||
<text font-size="5.0pt" transform="translate(5 0) rotate(55.39) translate(-1.0 2.3)">0V</text> | |||
</g> | |||
<g transform="rotate(27.98) translate(14 0)"> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="translate(0 0)" /> | |||
<text font-size="5.0pt" transform="translate(5 0) rotate(-27.98) translate(-2.3 -0.5) rotate(90)">200</text> | |||
</g> | |||
<text font-size="5.0pt" transform="translate(-4.5 22)">HZ</text> | |||
</g> | |||
</symbol> | |||
<symbol id="knobguide-maxtick" viewBox="0 0 40px 40px"> | |||
<g transform="translate(20 20)"> | |||
<g transform="rotate(60) translate(10 0)"> | |||
<polyline points="0,0 4,0" stroke-width="1" stroke="#333" /> | |||
</g> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(0)" /> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(43)" /> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(0)" /> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(-43)" /> | |||
</g> | |||
</symbol> | |||
<symbol id="knobguide-centertick" viewBox="0 0 40px 40px"> | |||
<g transform="translate(20 20)"> | |||
<g transform="rotate(-90) translate(10 0)"> | |||
<polyline points="0,0 4,0" stroke-width="1" stroke="#333" /> | |||
</g> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(20)" /> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(43)" /> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(-20)" /> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(-43)" /> | |||
</g> | |||
</symbol> | |||
<symbol id="input" viewBox="0 0 24px 24px"> | |||
<g transform="translate(12 12)"> | |||
<circle cx="0" cy="0" r="5" stroke-width="1" stroke="#0f0" fill="#0f0" /> | |||
<circle cx="0" cy="0" r="10.5" stroke-width="3" stroke="#0f0" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="output" viewBox="0 0 24px 24px"> | |||
<g transform="translate(12 12)"> | |||
<circle cx="0" cy="0" r="5" stroke-width="1" stroke="#f00" fill="#f00" /> | |||
<circle cx="0" cy="0" r="10.5" stroke-width="3" stroke="#f00" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="button-small" viewBox="0 0 9px 9px"> | |||
<g transform="translate(4.5 4.5)"> | |||
<circle r="4" stroke-width="1" stroke="#00f" fill="#f00" /> | |||
</g> | |||
</symbol> | |||
<symbol id="light-small" viewBox="0 0 6.4px 6.4px"> | |||
<rect width="6.4" height="6.4" fill="#0f0" /> | |||
</symbol> | |||
</defs> | |||
<rect width="100%" height="100%" fill="#ddd" /> | |||
<polyline points="1,1 44,1 44,379 1,379 1,1" stroke="#e4e4e4" stroke-width="0.5" fill="none" /> | |||
<polyline points="0.5,0.5 44.5,0.5 44.5,379.5 0.5,379.5 0.5,0.5" stroke="#ebebeb" stroke-width="0.8" fill="none" /> | |||
<polyline points="0,0 45,0 45,380 0,380 0,0" stroke="#f2f2f2" stroke-width="1" fill="none" /> | |||
<g transform="rotate(-90) translate(-376 13)"> | |||
<text class="title" font-size="7pt" letter-spacing="2.5px">LLFO</text> | |||
<g transform="translate(0 12)"> | |||
<text class="brand" font-size="7pt" letter-spacing="2px">BGA</text> | |||
<rect width="3.0" height="3" fill="#ddd" transform="translate(11.5 -5)" /> | |||
</g> | |||
</g> | |||
<!-- <polyline points="0,0 0,380" stroke="#0f0" stroke-width="1" fill="none" transform="translate(22.5 0)" /> --> | |||
<g transform="translate(0 25)"> | |||
<!-- <polyline points="0,0 45,0" stroke="#0f0" stroke-width="1" fill="none" transform="translate(0 0)" /> --> | |||
<use id="FREQUENCY_PARAM" xlink:href="#knob-medium" transform="translate(9.5 2)" /> | |||
<use xlink:href="#knobguide-frequency-llfo" transform="translate(0 -7.5)" /> | |||
</g> | |||
<g transform="translate(2 72)"> | |||
<!-- <rect width="45" height="8" fill="#f0f" transform="translate(0 -9)" /> --> | |||
<!-- <rect width="230" height="15" fill="#0f0" transform="translate(-30 -17)" /> --> | |||
<!-- <rect width="230" height="15" fill="#0f0" transform="translate(-30 8)" /> --> | |||
<use id="SLOW_PARAM" xlink:href="#button-small" transform="translate(32 -1)" /> | |||
<use id="SLOW_LIGHT" xlink:href="#light-small" transform="translate(0 0)" /> | |||
<text font-size="6pt" letter-spacing="0.5px" transform="translate(8 6.1)">SLOW</text> | |||
</g> | |||
<g transform="translate(0.5 88)"> | |||
<!-- <rect width="45" height="8" fill="#f0f" transform="translate(0 -8)" /> --> | |||
<g transform="translate(9 0)"> | |||
<g transform="translate(0 0)"> | |||
<use id="SINE_LIGHT" xlink:href="#light-small" transform="translate(-7.5 1)" /> | |||
<g transform="translate(1 1) scale(0.8)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#f0f" /> --> | |||
<path d="M 0 4 A 2 3 0 0 1 6 4" stroke="#333" stroke-width="1" fill="none" /> | |||
<path d="M 6 4 A 2 3 0 0 0 12 4" stroke="#333" stroke-width="1" fill="none" /> | |||
</g> | |||
</g> | |||
<g transform="translate(0 13)"> | |||
<use id="RAMP_UP_LIGHT" xlink:href="#light-small" transform="translate(-7.5 1)" /> | |||
<g transform="translate(1 1) scale(0.8)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#f0f" /> --> | |||
<polyline points="0,8 12,0 12,8" stroke-width="1" stroke="#333" fill="none" /> | |||
</g> | |||
</g> | |||
<g transform="translate(0 26)"> | |||
<use id="SQUARE_LIGHT" xlink:href="#light-small" transform="translate(-7.5 1)" /> | |||
<g transform="translate(1 1) scale(0.8)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#f0f" /> --> | |||
<polyline points="0,4 0,0 6,0 6,8 12,8 12,4" stroke-width="1" stroke="#333" fill="none" /> | |||
</g> | |||
</g> | |||
</g> | |||
<g transform="translate(31 0)"> | |||
<g transform="translate(0 0)"> | |||
<use id="TRIANGLE_LIGHT" xlink:href="#light-small" transform="translate(-7.5 1)" /> | |||
<g transform="translate(1 1) scale(0.8)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#f0f" /> --> | |||
<polyline points="0,4 3,0 9,8 12,4" stroke-width="1" stroke="#333" fill="none" /> | |||
</g> | |||
</g> | |||
<g transform="translate(0 13)"> | |||
<use id="RAMP_DOWN_LIGHT" xlink:href="#light-small" transform="translate(-7.5 1)" /> | |||
<g transform="translate(1 1) scale(0.8)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#f0f" /> --> | |||
<polyline points="0,8 0,0 12,8" stroke-width="1" stroke="#333" fill="none" /> | |||
</g> | |||
</g> | |||
<g transform="translate(0 26)"> | |||
<use id="PULSE_LIGHT" xlink:href="#light-small" transform="translate(-7.5 1)" /> | |||
<g transform="translate(1 1) scale(0.8)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#f0f" /> --> | |||
<polyline points="0,4 0,0 3,0 3,8 12,8 12,4" stroke-width="1" stroke="#333" fill="none" /> | |||
</g> | |||
</g> | |||
</g> | |||
<use id="WAVE_PARAM" xlink:href="#button-small" transform="translate(17.5 38)" /> | |||
</g> | |||
<g transform="translate(0 149)"> | |||
<!-- <rect width="45" height="8" fill="#f0f" transform="translate(0 -14)" /> --> | |||
<text font-size="6pt" letter-spacing="2px" transform="translate(3 0)">OFFSET</text> | |||
<use id="OFFSET_PARAM" xlink:href="#knob-smallest" transform="translate(14.5 9.5)" /> | |||
<use xlink:href="#knobguide-centertick" transform="translate(2.2 -2.5)" /> | |||
</g> | |||
<g transform="translate(0 190)"> | |||
<!-- <rect width="45" height="8" fill="#f0f" transform="translate(0 -14)" /> --> | |||
<text font-size="6pt" letter-spacing="2px" transform="translate(6.6 0)">SCALE</text> | |||
<use id="SCALE_PARAM" xlink:href="#knob-smallest" transform="translate(14.5 9.5)" /> | |||
<use xlink:href="#knobguide-maxtick" transform="translate(2.2 -2.5)" /> | |||
</g> | |||
<g transform="translate(0 228)"> | |||
<!-- <rect width="45" height="8" fill="#f0f" transform="translate(0 -8)" /> --> | |||
<g transform="translate(5.5 0)"> | |||
<rect width="34" height="10" fill="#fafafa" transform="translate(0 63)" /> | |||
<rect width="34" height="70" rx="5" fill="#fafafa" /> | |||
<use id="PITCH_INPUT" xlink:href="#input" transform="translate(5 3)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(3.5 35)">V/OCT</text> | |||
<use id="RESET_INPUT" xlink:href="#input" transform="translate(5 38)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(3.5 70)">RESET</text> | |||
</g> | |||
<g transform="translate(5.5 76)"> | |||
<rect width="34" height="10" fill="#bbb" transform="translate(0 -3)" /> | |||
<rect width="34" height="35" rx="5" fill="#bbb" /> | |||
<use id="OUT_OUTPUT" xlink:href="#output" transform="translate(5 0)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(8.3 32)">OUT</text> | |||
</g> | |||
</g> | |||
</svg> |
@@ -44,14 +44,19 @@ | |||
<polyline points="0,0 3.5,0" stroke-width="0.7" stroke="#333" transform="rotate(-240) translate(15 0)" /> | |||
<polyline points="0,0 3.5,0" stroke-width="0.7" stroke="#333" transform="rotate(60) translate(15 0)" /> | |||
<g transform="rotate(-148.42) translate(14 0)"> | |||
<g transform="rotate(-202) translate(14 0)"> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="translate(0 0)" /> | |||
<text font-size="5.0pt" transform="translate(5 0) rotate(148.42) translate(-2.2 2.3)">1</text> | |||
<text font-size="5.0pt" transform="translate(5 0) rotate(202) translate(3 9.5) rotate(-90)">0.2</text> | |||
</g> | |||
<g transform="rotate(-55.39) translate(14 0)"> | |||
<g transform="rotate(-48.68) translate(14 0)"> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="translate(0 0)" /> | |||
<text font-size="5.0pt" transform="translate(5 0) rotate(55.39) translate(-1.0 2.3)">0V</text> | |||
<text font-size="5.0pt" transform="translate(5 0) rotate(48.68) translate(-1 2.3)">20</text> | |||
</g> | |||
<g transform="rotate(-124.62) translate(14 0)"> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="translate(0 0)" /> | |||
<text font-size="5.0pt" transform="translate(5 0) rotate(124.62) translate(-3.0 2.3)">2</text> | |||
</g> | |||
<g transform="rotate(27.98) translate(14 0)"> | |||
@@ -0,0 +1,186 @@ | |||
<svg | |||
version="1.1" | |||
xmlns="http://www.w3.org/2000/svg" | |||
xmlns:xlink="http://www.w3.org/1999/xlink" | |||
width="90" | |||
height="380" | |||
viewBox="0 0 90 380" | |||
> | |||
<style> | |||
text { | |||
fill: #333; | |||
font-family: 'Roboto', sans-serif; | |||
font-weight: bold; | |||
} | |||
text.title { | |||
font-family: 'Comfortaa', sans-serif; | |||
font-weight: normal; | |||
} | |||
text.brand { | |||
font-family: 'Audiowide', sans-serif; | |||
font-weight: bold; | |||
} | |||
</style> | |||
<defs> | |||
<symbol id="knob" viewBox="0 0 45px 45px"> | |||
<g transform="translate(22.5 22.5)"> | |||
<polyline points="-5,0 5,0" stroke-width="1" stroke="#00f" /> | |||
<polyline points="0,-5 0,5" stroke-width="1" stroke="#00f" /> | |||
<circle cx="0" cy="0" r="14" stroke-width="1" stroke="#00f" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="knobguide-select" viewBox="0 0 45px 45px"> | |||
<g transform="translate(22.5 22.5)"> | |||
<text font-size="5.0pt" transform="rotate(-240) translate(20 0) rotate(240) translate(-2 2)">1</text> | |||
<text font-size="5.0pt" transform="rotate(-197.1) translate(20 0) rotate(197.1) translate(-2 2)">2</text> | |||
<text font-size="5.0pt" transform="rotate(-154.3) translate(20 0) rotate(154.3) translate(-2 2)">3</text> | |||
<text font-size="5.0pt" transform="rotate(-111.4) translate(20 0) rotate(111.4) translate(-2 2)">4</text> | |||
<text font-size="5.0pt" transform="rotate(-68.6) translate(20 0) rotate(68.6) translate(-2 2)">5</text> | |||
<text font-size="5.0pt" transform="rotate(-25.7) translate(20 0) rotate(25.7) translate(-2 2)">6</text> | |||
<text font-size="5.0pt" transform="rotate(17.1) translate(20 0) rotate(-17.1) translate(-2 2)">7</text> | |||
<text font-size="5.0pt" transform="rotate(60) translate(20 0) rotate(-60) translate(-2 2)">8</text> | |||
</g> | |||
</symbol> | |||
<symbol id="knob-smallest" viewBox="0 0 16px 16px"> | |||
<g transform="translate(8 8)"> | |||
<polyline points="-3,0 3,0" stroke-width="1" stroke="#00f" /> | |||
<polyline points="0,-3 0,3" stroke-width="1" stroke="#00f" /> | |||
<circle r="7.5" stroke-width="1" stroke="#00f" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="knobguide-steps" viewBox="0 0 40px 40px"> | |||
<g transform="translate(20 20)"> | |||
<text font-size="5.0pt" transform="rotate(-240) translate(13 0) rotate(240) translate(-2 2)">2</text> | |||
<text font-size="5.0pt" transform="rotate(-190) translate(13 0) rotate(190) translate(-2 2)">3</text> | |||
<text font-size="5.0pt" transform="rotate(-140) translate(13 0) rotate(140) translate(-2 2)">4</text> | |||
<text font-size="5.0pt" transform="rotate(-90) translate(13 0) rotate(90) translate(-2 2)">5</text> | |||
<text font-size="5.0pt" transform="rotate(-40) translate(13 0) rotate(40) translate(-2 2)">6</text> | |||
<text font-size="5.0pt" transform="rotate(10) translate(13 0) rotate(-10) translate(-2 2)">7</text> | |||
<text font-size="5.0pt" transform="rotate(60) translate(13 0) rotate(-60) translate(-2 2)">8</text> | |||
</g> | |||
</symbol> | |||
<symbol id="switch" viewBox="0 0 14px 24px"> | |||
<rect width="14px" height="24px" stroke-width="1" stroke="#000" fill="#ddd" /> | |||
<rect width="14px" height="12px" stroke-width="0" fill="#000" /> | |||
</symbol> | |||
<symbol id="light-small" viewBox="0 0 6.4px 6.4px"> | |||
<rect width="6.4" height="6.4" fill="#0f0" /> | |||
</symbol> | |||
<symbol id="input" viewBox="0 0 24px 24px"> | |||
<g transform="translate(12 12)"> | |||
<circle cx="0" cy="0" r="5" stroke-width="1" stroke="#0f0" fill="#0f0" /> | |||
<circle cx="0" cy="0" r="10.5" stroke-width="3" stroke="#0f0" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="output" viewBox="0 0 24px 24px"> | |||
<g transform="translate(12 12)"> | |||
<circle cx="0" cy="0" r="5" stroke-width="1" stroke="#f00" fill="#f00" /> | |||
<circle cx="0" cy="0" r="10.5" stroke-width="3" stroke="#f00" fill="none" /> | |||
</g> | |||
</symbol> | |||
</defs> | |||
<rect width="100%" height="100%" fill="#ddd" /> | |||
<polyline points="1,1 89,1 89,379 1,379 1,1" stroke="#e4e4e4" stroke-width="0.5" fill="none" /> | |||
<polyline points="0.5,0.5 89.5,0.5 89.5,379.5 0.5,379.5 0.5,0.5" stroke="#ebebeb" stroke-width="0.8" fill="none" /> | |||
<polyline points="0,0 90,0 90,380 0,380 0,0" stroke="#f2f2f2" stroke-width="1" fill="none" /> | |||
<text class="title" x="63" y="17" font-size="9pt" letter-spacing="3px">1:8</text> | |||
<g transform="translate(5.5 374)"> | |||
<text class="brand" font-size="6.5pt" letter-spacing="2px">BOGAUDIO</text> | |||
<rect width="1.5" height="2" fill="#ddd" transform="translate(21 -4)" /> | |||
</g> | |||
<g transform="translate(6.5 32)"> | |||
<rect width="34" height="39" rx="5" fill="#fafafa" /> | |||
<rect width="34" height="10" fill="#fafafa" transform="translate(0 30)" /> | |||
<use id="CLOCK_INPUT" xlink:href="#input" transform="translate(5 3)" /> | |||
<text font-size="5pt" letter-spacing="1px" transform="translate(4 35)">CLOCK</text> | |||
</g> | |||
<g transform="translate(6.5 69)"> | |||
<rect width="34" height="39" rx="5" fill="#fafafa" /> | |||
<use id="RESET_INPUT" xlink:href="#input" transform="translate(5 3)" /> | |||
<text font-size="5pt" letter-spacing="1px" transform="translate(5 35)">RESET</text> | |||
</g> | |||
<g transform="translate(1 121)"> | |||
<text font-size="6pt" letter-spacing="1.5px" transform="translate(7.5 0)">STEPS</text> | |||
<use id="STEPS_PARAM" xlink:href="#knob-smallest" transform="translate(14.5 10.5)" /> | |||
<use xlink:href="#knobguide-steps" transform="translate(2.5 -1)" /> | |||
</g> | |||
<g transform="translate(16.5 166)"> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(-1.8 -1)">FWD</text> | |||
<use id="DIRECTION_PARAM" xlink:href="#switch" transform="translate(0 2)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(-1.3 34)">REV</text> | |||
</g> | |||
<!-- <rect width="45" height="14" fill="#0f0" transform="translate(0 200)" /> --> | |||
<!-- <rect width="45" height="14" fill="#0f0" transform="translate(0 307)" /> --> | |||
<g transform="translate(1 220)"> | |||
<text font-size="6pt" letter-spacing="1.5px" transform="translate(4.5 0)">SELECT</text> | |||
<use id="SELECT_PARAM" xlink:href="#knob" transform="translate(0 2)" /> | |||
<use xlink:href="#knobguide-select" transform="translate(0 2)" /> | |||
<g transform="translate(5.5 47)"> | |||
<rect width="34" height="39" rx="5" fill="#fafafa" /> | |||
<use id="SELECT_INPUT" xlink:href="#input" transform="translate(5 3)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(11.5 35)">CV</text> | |||
</g> | |||
</g> | |||
<g transform="translate(6.5 321)"> | |||
<rect width="34" height="39" rx="5" fill="#fafafa" /> | |||
<use id="IN_INPUT" xlink:href="#input" transform="translate(5 3)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(12.5 35)">IN</text> | |||
</g> | |||
<g transform="translate(49.5 32)"> | |||
<rect width="34" height="337" rx="5" fill="#bbb" transform="translate(0 -9)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(8.5 0)">OUT</text> | |||
<use id="OUT1_OUTPUT" xlink:href="#output" transform="translate(5 3)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(11 35)">1</text> | |||
<use id="OUT1_LIGHT" xlink:href="#light-small" transform="translate(17 29.5)" /> | |||
<use id="OUT2_OUTPUT" xlink:href="#output" transform="translate(5 44.3)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(11 76.3)">2</text> | |||
<use id="OUT2_LIGHT" xlink:href="#light-small" transform="translate(17 70.8)" /> | |||
<use id="OUT3_OUTPUT" xlink:href="#output" transform="translate(5 86.6)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(11 118.6)">3</text> | |||
<use id="OUT3_LIGHT" xlink:href="#light-small" transform="translate(17 113.1)" /> | |||
<use id="OUT4_OUTPUT" xlink:href="#output" transform="translate(5 126.9)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(11 158.9)">4</text> | |||
<use id="OUT4_LIGHT" xlink:href="#light-small" transform="translate(17 153.4)" /> | |||
<use id="OUT5_OUTPUT" xlink:href="#output" transform="translate(5 168.1)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(11 200.1)">5</text> | |||
<use id="OUT5_LIGHT" xlink:href="#light-small" transform="translate(17 194.6)" /> | |||
<use id="OUT6_OUTPUT" xlink:href="#output" transform="translate(5 209.4)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(11 241.4)">6</text> | |||
<use id="OUT6_LIGHT" xlink:href="#light-small" transform="translate(17 235.9)" /> | |||
<use id="OUT7_OUTPUT" xlink:href="#output" transform="translate(5 250.7)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(11 282.7)">7</text> | |||
<use id="OUT7_LIGHT" xlink:href="#light-small" transform="translate(17 277.2)" /> | |||
<use id="OUT8_OUTPUT" xlink:href="#output" transform="translate(5 292)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(11 324)">8</text> | |||
<use id="OUT8_LIGHT" xlink:href="#light-small" transform="translate(17 318.5)" /> | |||
</g> | |||
<!-- <polyline points="0,0 90,0" stroke="#f00" stroke-width="1" fill="none" transform="translate(0 47)" /> --> | |||
<!-- <polyline points="0,0 90,0" stroke="#f00" stroke-width="1" fill="none" transform="translate(0 336)" /> --> | |||
<!-- <polyline points="0,0 90,0" stroke="#f00" stroke-width="1" fill="none" transform="translate(0 351)" /> --> | |||
<!-- <polyline points="0,0 0,360" stroke="#f00" stroke-width="1" fill="none" transform="translate(23.50 0)" /> --> | |||
</svg> |
@@ -0,0 +1,172 @@ | |||
<svg | |||
version="1.1" | |||
xmlns="http://www.w3.org/2000/svg" | |||
xmlns:xlink="http://www.w3.org/1999/xlink" | |||
width="45" | |||
height="380" | |||
viewBox="0 0 45 380" | |||
> | |||
<style> | |||
text { | |||
fill: #333; | |||
font-family: 'Roboto', sans-serif; | |||
font-weight: bold; | |||
} | |||
text.title { | |||
font-family: 'Comfortaa', sans-serif; | |||
font-weight: normal; | |||
} | |||
text.brand { | |||
font-family: 'Audiowide', sans-serif; | |||
font-weight: bold; | |||
} | |||
</style> | |||
<defs> | |||
<symbol id="knob-medium" viewBox="0 0 45px 45px"> | |||
<g transform="translate(22.5 22.5)"> | |||
<polyline points="-5,0 5,0" stroke-width="1" stroke="#00f" /> | |||
<polyline points="0,-5 0,5" stroke-width="1" stroke="#00f" /> | |||
<circle cx="0" cy="0" r="14" stroke-width="1" stroke="#00f" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="knob-smallest" viewBox="0 0 16px 16px"> | |||
<g transform="translate(8 8)"> | |||
<polyline points="-3,0 3,0" stroke-width="1" stroke="#00f" /> | |||
<polyline points="0,-3 0,3" stroke-width="1" stroke="#00f" /> | |||
<circle r="7.5" stroke-width="1" stroke="#00f" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="knobguide-change" viewBox="0 0 45px 45px"> | |||
<g transform="translate(22.5 22.5)"> | |||
<polyline points="0,0 4,0" stroke-width="1.0" stroke="#333" transform="rotate(-240) translate(17 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(-210) translate(17 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(-180) translate(17 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(-150) translate(17 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(-120) translate(17 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(-90) translate(17 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(-60) translate(17 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(-30) translate(17 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(0) translate(17 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(30) translate(17 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(60) translate(17 0)" /> | |||
</g> | |||
</symbol> | |||
<symbol id="knobguide-centertick" viewBox="0 0 40px 40px"> | |||
<g transform="translate(20 20)"> | |||
<g transform="rotate(-90) translate(10 0)"> | |||
<polyline points="0,0 4,0" stroke-width="1" stroke="#333" /> | |||
</g> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(20)" /> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(43)" /> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(-20)" /> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(-43)" /> | |||
</g> | |||
</symbol> | |||
<symbol id="knobguide-maxtick" viewBox="0 0 40px 40px"> | |||
<g transform="translate(20 20)"> | |||
<g transform="rotate(60) translate(10 0)"> | |||
<polyline points="0,0 4,0" stroke-width="1" stroke="#333" /> | |||
</g> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(0)" /> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(43)" /> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(0)" /> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(-43)" /> | |||
</g> | |||
</symbol> | |||
<symbol id="input" viewBox="0 0 24px 24px"> | |||
<g transform="translate(12 12)"> | |||
<circle cx="0" cy="0" r="5" stroke-width="1" stroke="#0f0" fill="#0f0" /> | |||
<circle cx="0" cy="0" r="10.5" stroke-width="3" stroke="#0f0" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="output" viewBox="0 0 24px 24px"> | |||
<g transform="translate(12 12)"> | |||
<circle cx="0" cy="0" r="5" stroke-width="1" stroke="#f00" fill="#f00" /> | |||
<circle cx="0" cy="0" r="10.5" stroke-width="3" stroke="#f00" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="button-small" viewBox="0 0 9px 9px"> | |||
<g transform="translate(4.5 4.5)"> | |||
<circle r="4" stroke-width="1" stroke="#00f" fill="#f00" /> | |||
</g> | |||
</symbol> | |||
<symbol id="light-small" viewBox="0 0 6.4px 6.4px"> | |||
<rect width="6.4" height="6.4" fill="#0f0" /> | |||
</symbol> | |||
</defs> | |||
<rect width="100%" height="100%" fill="#ddd" /> | |||
<polyline points="1,1 44,1 44,379 1,379 1,1" stroke="#e4e4e4" stroke-width="0.5" fill="none" /> | |||
<polyline points="0.5,0.5 44.5,0.5 44.5,379.5 0.5,379.5 0.5,0.5" stroke="#ebebeb" stroke-width="0.8" fill="none" /> | |||
<polyline points="0,0 45,0 45,380 0,380 0,0" stroke="#f2f2f2" stroke-width="1" fill="none" /> | |||
<g transform="rotate(-90) translate(-376 13)"> | |||
<text class="title" font-size="7pt" letter-spacing="2.5px">WALK</text> | |||
<g transform="translate(0 12)"> | |||
<text class="brand" font-size="7pt" letter-spacing="2px">BGA</text> | |||
<rect width="3.0" height="3" fill="#ddd" transform="translate(11.5 -5)" /> | |||
</g> | |||
</g> | |||
<!-- <polyline points="0,0 0,300" stroke="#0f0" stroke-width="1" fill="none" transform="translate(22.5 0)" /> --> | |||
<g transform="translate(0 25)"> | |||
<text font-size="6pt" letter-spacing="1.5px" transform="translate(10 0)">RATE</text> | |||
<use id="RATE_PARAM" xlink:href="#knob-medium" transform="translate(0 3)" /> | |||
<use xlink:href="#knobguide-change" transform="translate(0 3)" /> | |||
<g transform="translate(5.5 49)"> | |||
<rect width="34" height="39" rx="5" fill="#fafafa" /> | |||
<use id="RATE_INPUT" xlink:href="#input" transform="translate(5 3)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(11 35)">CV</text> | |||
</g> | |||
</g> | |||
<g transform="translate(0 128)"> | |||
<text font-size="6pt" letter-spacing="1.5px" transform="translate(4.5 0)">OFFSET</text> | |||
<use id="OFFSET_PARAM" xlink:href="#knob-smallest" transform="translate(14.5 9)" /> | |||
<use xlink:href="#knobguide-centertick" transform="translate(2.5 -3)" /> | |||
</g> | |||
<g transform="translate(0 169)"> | |||
<text font-size="6pt" letter-spacing="2.0px" transform="translate(5.5 0)">SCALE</text> | |||
<use id="SCALE_PARAM" xlink:href="#knob-smallest" transform="translate(14.5 9)" /> | |||
<use xlink:href="#knobguide-maxtick" transform="translate(2.5 -3)" /> | |||
</g> | |||
<g transform="translate(0 202)"> | |||
<g transform="translate(0 5)"> | |||
<g transform="translate(5.5 0)"> | |||
<rect width="34" height="10" fill="#fafafa" transform="translate(0 78)" /> | |||
<rect width="34" height="82" rx="5" fill="#fafafa" /> | |||
<use id="HOLD_INPUT" xlink:href="#input" transform="translate(5 3)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(5.5 35)">GATE</text> | |||
</g> | |||
</g> | |||
<g transform="translate(0 5)"> | |||
<g transform="translate(7 41)"> | |||
<use id="TRACK_PARAM" xlink:href="#button-small" transform="translate(22 -1.3)" /> | |||
<use id="TRACK_LIGHT" xlink:href="#light-small" transform="translate(0 0)" /> | |||
<text font-size="5pt" letter-spacing="0.5px" transform="translate(7.3 5.5)">TRK</text> | |||
</g> | |||
<g transform="translate(5.5 54)"> | |||
<rect width="34" height="10" fill="#bbb" transform="translate(0 -3)" /> | |||
<rect width="34" height="70" rx="5" fill="#bbb" /> | |||
<use id="HOLD_OUTPUT" xlink:href="#output" transform="translate(5 0)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(5.8 32)">HOLD</text> | |||
<use id="OUT_OUTPUT" xlink:href="#output" transform="translate(5 35)" /> | |||
<text font-size="5pt" letter-spacing="2px" transform="translate(8.3 67)">OUT</text> | |||
</g> | |||
</g> | |||
</g> | |||
</svg> |
@@ -0,0 +1,239 @@ | |||
<svg | |||
version="1.1" | |||
xmlns="http://www.w3.org/2000/svg" | |||
xmlns:xlink="http://www.w3.org/1999/xlink" | |||
width="210" | |||
height="380" | |||
viewBox="0 0 210 380" | |||
> | |||
<style> | |||
text { | |||
fill: #333; | |||
font-family: 'Roboto', sans-serif; | |||
font-weight: bold; | |||
} | |||
text.title { | |||
font-family: 'Comfortaa', sans-serif; | |||
font-weight: normal; | |||
} | |||
text.brand { | |||
font-family: 'Audiowide', sans-serif; | |||
font-weight: bold; | |||
} | |||
</style> | |||
<defs> | |||
<symbol id="display" viewBox="0 0 190px 190px"> | |||
<rect cx="0" cy="0" width="190" height="190" fill="#222" /> | |||
</symbol> | |||
<symbol id="knob-medium" viewBox="0 0 45px 45px"> | |||
<g transform="translate(22.5 22.5)"> | |||
<polyline points="-5,0 5,0" stroke-width="1" stroke="#00f" /> | |||
<polyline points="0,-5 0,5" stroke-width="1" stroke="#00f" /> | |||
<circle cx="0" cy="0" r="14" stroke-width="1" stroke="#00f" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="knob-smallest" viewBox="0 0 16px 16px"> | |||
<g transform="translate(8 8)"> | |||
<polyline points="-3,0 3,0" stroke-width="1" stroke="#00f" /> | |||
<polyline points="0,-3 0,3" stroke-width="1" stroke="#00f" /> | |||
<circle r="7.5" stroke-width="1" stroke="#00f" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="knobguide-change" viewBox="0 0 45px 45px"> | |||
<g transform="translate(22.5 22.5)"> | |||
<polyline points="0,0 4,0" stroke-width="1.0" stroke="#333" transform="rotate(-240) translate(17 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(-210) translate(17 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(-180) translate(17 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(-150) translate(17 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(-120) translate(17 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(-90) translate(17 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(-60) translate(17 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(-30) translate(17 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(0) translate(17 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(30) translate(17 0)" /> | |||
<polyline points="0,0 2.5,0" stroke-width="0.3" stroke="#333" transform="rotate(60) translate(17 0)" /> | |||
</g> | |||
</symbol> | |||
<symbol id="knobguide-centertick" viewBox="0 0 40px 40px"> | |||
<g transform="translate(20 20)"> | |||
<g transform="rotate(-90) translate(10 0)"> | |||
<polyline points="0,0 4,0" stroke-width="1" stroke="#333" /> | |||
</g> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(20)" /> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(43)" /> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(-20)" /> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(-43)" /> | |||
</g> | |||
</symbol> | |||
<symbol id="knobguide-maxtick" viewBox="0 0 40px 40px"> | |||
<g transform="translate(20 20)"> | |||
<g transform="rotate(60) translate(10 0)"> | |||
<polyline points="0,0 4,0" stroke-width="1" stroke="#333" /> | |||
</g> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(0)" /> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(43)" /> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(0)" /> | |||
<path d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" stroke="#333" stroke-width="0.5" stroke-linecap="round" fill="none" transform="rotate(-43)" /> | |||
</g> | |||
</symbol> | |||
<symbol id="input" viewBox="0 0 24px 24px"> | |||
<g transform="translate(12 12)"> | |||
<circle cx="0" cy="0" r="5" stroke-width="1" stroke="#0f0" fill="#0f0" /> | |||
<circle cx="0" cy="0" r="10.5" stroke-width="3" stroke="#0f0" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="output" viewBox="0 0 24px 24px"> | |||
<g transform="translate(12 12)"> | |||
<circle cx="0" cy="0" r="5" stroke-width="1" stroke="#f00" fill="#f00" /> | |||
<circle cx="0" cy="0" r="10.5" stroke-width="3" stroke="#f00" fill="none" /> | |||
</g> | |||
</symbol> | |||
<symbol id="button-small" viewBox="0 0 9px 9px"> | |||
<g transform="translate(4.5 4.5)"> | |||
<circle r="4" stroke-width="1" stroke="#00f" fill="#f00" /> | |||
</g> | |||
</symbol> | |||
<symbol id="light-small" viewBox="0 0 6.4px 6.4px"> | |||
<rect width="6.4" height="6.4" fill="#0f0" /> | |||
</symbol> | |||
</defs> | |||
<rect width="100%" height="100%" fill="#ddd" /> | |||
<polyline points="1,1 209,1 209,379 1,379 1,1" stroke="#e4e4e4" stroke-width="0.5" fill="none" /> | |||
<polyline points="0.5,0.5 209.5,0.5 209.5,379.5 0.5,379.5 0.5,0.5" stroke="#ebebeb" stroke-width="0.8" fill="none" /> | |||
<polyline points="0,0 210,0 210,380 0,380 0,0" stroke="#f2f2f2" stroke-width="1" fill="none" /> | |||
<!-- <rect width="70" height="20" fill="#0f0" transform="translate(0 0)" /> --> | |||
<!-- <rect width="70" height="20" fill="#0f0" transform="translate(140 0)" /> --> | |||
<!-- <rect width="65" height="20" fill="#0f0" transform="translate(0 360)" /> --> | |||
<!-- <rect width="65" height="20" fill="#0f0" transform="translate(145 360)" /> --> | |||
<text class="title" x="69" y="19" font-size="12pt" letter-spacing="4px">WALK2</text> | |||
<g transform="translate(65 374)"> | |||
<text class="brand" font-size="8pt" letter-spacing="2px">BOGAUDIO</text> | |||
<rect width="3.0" height="3" fill="#ddd" transform="translate(24 -5)" /> | |||
</g> | |||
<!-- <polyline points="0,0 0,380" stroke="#0f0" stroke-width="1" fill="none" transform="translate(10 0)" /> --> | |||
<!-- <polyline points="0,0 0,380" stroke="#0f0" stroke-width="1" fill="none" transform="translate(54.5 0)" /> --> | |||
<!-- <polyline points="0,0 0,380" stroke="#0f0" stroke-width="1" fill="none" transform="translate(105 0)" /> --> | |||
<!-- <polyline points="0,0 0,380" stroke="#0f0" stroke-width="1" fill="none" transform="translate(154.5 0)" /> --> | |||
<!-- <polyline points="0,0 0,380" stroke="#0f0" stroke-width="1" fill="none" transform="translate(200 0)" /> --> | |||
<!-- <polyline points="0,0 210,0" stroke="#0f0" stroke-width="1" fill="none" transform="translate(0 259)" /> --> | |||
<!-- <polyline points="0,0 210,0" stroke="#0f0" stroke-width="1" fill="none" transform="translate(0 254.5)" /> --> | |||
<!-- <polyline points="0,0 210,0" stroke="#0f0" stroke-width="1" fill="none" transform="translate(0 296)" /> --> | |||
<!-- <polyline points="0,0 210,0" stroke="#0f0" stroke-width="1" fill="none" transform="translate(0 320.5)" /> --> | |||
<g transform="translate(10 25)"> | |||
<use id="DISPLAY_WIDGET" xlink:href="#display" /> | |||
</g> | |||
<g transform="translate(0 227)"> | |||
<g transform="translate(6 0)"> | |||
<text font-size="8pt" transform="translate(45 0)">X</text> | |||
<polyline points="0,0 30,0" stroke="#333" stroke-width="1" fill="none" transform="translate(13 -4)" /> | |||
<polyline points="0,0 30,0" stroke="#333" stroke-width="1" fill="none" transform="translate(53 -4)" /> | |||
</g> | |||
<g transform="translate(111 0)"> | |||
<text font-size="8pt" transform="translate(40 0)">Y</text> | |||
<polyline points="0,0 30,0" stroke="#333" stroke-width="1" fill="none" transform="translate(8 -4)" /> | |||
<polyline points="0,0 30,0" stroke="#333" stroke-width="1" fill="none" transform="translate(48 -4)" /> | |||
</g> | |||
</g> | |||
<g transform="translate(12 235)"> | |||
<g transform="translate(-2 0)"> | |||
<text font-size="7pt" letter-spacing="1.5px" transform="translate(9 33.5) rotate(270)">RATE</text> | |||
<use id="RATE_X_PARAM" xlink:href="#knob-medium" transform="translate(10 -3)" /> | |||
</g> | |||
<use xlink:href="#knobguide-change" transform="translate(8 -3)" /> | |||
</g> | |||
<g transform="translate(145.5 235)"> | |||
<g transform="translate(-2 0)"> | |||
<text font-size="7pt" letter-spacing="1.5px" transform="translate(47 5) rotate(90)">RATE</text> | |||
<use id="RATE_Y_PARAM" xlink:href="#knob-medium" transform="translate(0 -3)" /> | |||
</g> | |||
<use xlink:href="#knobguide-change" transform="translate(-2 -3)" /> | |||
</g> | |||
<g transform="translate(105 234)"> | |||
<text font-size="7pt" letter-spacing="2px" transform="translate(3.3 17) rotate(270)">OFF</text> | |||
<use id="OFFSET_X_PARAM" xlink:href="#knob-smallest" transform="translate(-30 0)" /> | |||
<use xlink:href="#knobguide-centertick" transform="translate(-42 -12)" /> | |||
<use id="OFFSET_Y_PARAM" xlink:href="#knob-smallest" transform="translate(14 0)" /> | |||
<use xlink:href="#knobguide-centertick" transform="translate(2 -12)" /> | |||
</g> | |||
<g transform="translate(105 262.5)"> | |||
<text font-size="7pt" letter-spacing="2px" transform="translate(3.3 17) rotate(270)">SCL</text> | |||
<use id="SCALE_X_PARAM" xlink:href="#knob-smallest" transform="translate(-30 0)" /> | |||
<use xlink:href="#knobguide-maxtick" transform="translate(-42 -12)" /> | |||
<use id="SCALE_Y_PARAM" xlink:href="#knob-smallest" transform="translate(14 0)" /> | |||
<use xlink:href="#knobguide-maxtick" transform="translate(2 -12)" /> | |||
</g> | |||
<g transform="translate(0 292)"> | |||
<g transform="translate(72 0)"> | |||
<use id="TRACK_X_PARAM" xlink:href="#button-small" transform="translate(22 -1.3)" /> | |||
<use id="TRACK_X_LIGHT" xlink:href="#light-small" transform="translate(0 0)" /> | |||
<text font-size="5pt" letter-spacing="0.5px" transform="translate(7.3 5.5)">TRK</text> | |||
</g> | |||
<g transform="translate(109 0)"> | |||
<use id="TRACK_Y_PARAM" xlink:href="#button-small" transform="translate(22 -1.3)" /> | |||
<use id="TRACK_Y_LIGHT" xlink:href="#light-small" transform="translate(0 0)" /> | |||
<text font-size="5pt" letter-spacing="0.5px" transform="translate(7.3 5.5)">TRK</text> | |||
</g> | |||
</g> | |||
<g transform="translate(7 281)"> | |||
<rect width="61" height="79" rx="5" fill="#fafafa" /> | |||
<rect width="22" height="79" rx="5" fill="#bbb" transform="translate(40)" /> | |||
<rect width="20" height="79" fill="#bbb" transform="translate(31)" /> | |||
<use id="HOLD_X_INPUT" xlink:href="#input" transform="translate(3.5 3)" /> | |||
<use id="HOLD_X_OUTPUT" xlink:href="#output" transform="translate(34.5 3)" /> | |||
<text font-size="6pt" letter-spacing="1.5px" transform="translate(2 36)">GATE</text> | |||
<text font-size="6pt" letter-spacing="1.5px" transform="translate(35.5 36)">HOLD</text> | |||
<use id="RATE_X_INPUT" xlink:href="#input" transform="translate(3.5 42)" /> | |||
<use id="OUT_X_OUTPUT" xlink:href="#output" transform="translate(34.5 42)" /> | |||
<text font-size="6pt" letter-spacing="1.5px" transform="translate(3.5 75)">RATE</text> | |||
<text font-size="6pt" letter-spacing="1.5px" transform="translate(37 75)">OUT</text> | |||
</g> | |||
<g transform="translate(142 281)"> | |||
<rect width="61" height="79" rx="5" fill="#fafafa" /> | |||
<rect width="22" height="79" rx="5" fill="#bbb" transform="translate(40)" /> | |||
<rect width="20" height="79" fill="#bbb" transform="translate(31)" /> | |||
<use id="HOLD_Y_INPUT" xlink:href="#input" transform="translate(3.5 3)" /> | |||
<use id="HOLD_Y_OUTPUT" xlink:href="#output" transform="translate(34.5 3)" /> | |||
<text font-size="6pt" letter-spacing="1.5px" transform="translate(2 36)">GATE</text> | |||
<text font-size="6pt" letter-spacing="1.5px" transform="translate(35.5 36)">HOLD</text> | |||
<use id="RATE_Y_INPUT" xlink:href="#input" transform="translate(3.5 42)" /> | |||
<use id="OUT_Y_OUTPUT" xlink:href="#output" transform="translate(34.5 42)" /> | |||
<text font-size="6pt" letter-spacing="1.5px" transform="translate(3.5 75)">RATE</text> | |||
<text font-size="6pt" letter-spacing="1.5px" transform="translate(37 75)">OUT</text> | |||
</g> | |||
<g transform="translate(74.5 310)"> | |||
<rect width="61" height="40" rx="5" fill="#fafafa" /> | |||
<rect width="22" height="40" rx="5" fill="#bbb" transform="translate(40)" /> | |||
<rect width="20" height="40" fill="#bbb" transform="translate(31)" /> | |||
<use id="JUMP_INPUT" xlink:href="#input" transform="translate(3.5 3)" /> | |||
<use id="DISTANCE_OUTPUT" xlink:href="#output" transform="translate(34.5 3)" /> | |||
<text font-size="6pt" letter-spacing="1.5px" transform="translate(2 36)">JUMP</text> | |||
<text font-size="6pt" letter-spacing="1.5px" transform="translate(35.5 36)">DIST</text> | |||
</g> | |||
</svg> |
@@ -0,0 +1,28 @@ | |||
<svg | |||
version="1.1" | |||
xmlns="http://www.w3.org/2000/svg" | |||
xmlns:xlink="http://www.w3.org/1999/xlink" | |||
width="18" | |||
height="18" | |||
viewBox="0 0 18 18" | |||
> | |||
<g transform="translate(9 9)"> | |||
<circle r="8.9" fill="#888" /> | |||
<circle r="8.4" fill="#333" /> | |||
<circle r="8.1" fill="#5f5" /> | |||
<circle r="8.1" fill="#666" fill-opacity="0.5" /> | |||
<circle r="7.8" fill="#5f5" /> | |||
<circle r="7.8" fill="#777" fill-opacity="0.5" /> | |||
<circle r="7.5" fill="#5f5" /> | |||
<circle r="7.5" fill="#888" fill-opacity="0.5" /> | |||
<circle r="7.2" fill="#5f5" /> | |||
<circle r="7.2" fill="#999" fill-opacity="0.5" /> | |||
<circle r="6.9" fill="#5f5" /> | |||
<circle r="6.9" fill="#aaa" fill-opacity="0.5" /> | |||
</g> | |||
</svg> |
@@ -0,0 +1,795 @@ | |||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
<svg | |||
xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
xmlns:cc="http://creativecommons.org/ns#" | |||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
xmlns:svg="http://www.w3.org/2000/svg" | |||
xmlns="http://www.w3.org/2000/svg" | |||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |||
version="1.1" | |||
width="90" | |||
height="380" | |||
viewBox="0 0 90 380" | |||
id="svg164" | |||
sodipodi:docname="svg_render_tmp.svg" | |||
inkscape:version="0.92.2 5c3e80d, 2017-08-06"> | |||
<metadata | |||
id="metadata168"> | |||
<rdf:RDF> | |||
<cc:Work | |||
rdf:about=""> | |||
<dc:format>image/svg+xml</dc:format> | |||
<dc:type | |||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
</cc:Work> | |||
</rdf:RDF> | |||
</metadata> | |||
<sodipodi:namedview | |||
pagecolor="#ffffff" | |||
bordercolor="#666666" | |||
borderopacity="1" | |||
objecttolerance="10" | |||
gridtolerance="10" | |||
guidetolerance="10" | |||
inkscape:pageopacity="0" | |||
inkscape:pageshadow="2" | |||
inkscape:window-width="468" | |||
inkscape:window-height="449" | |||
id="namedview166" | |||
showgrid="false" | |||
inkscape:zoom="0.62105263" | |||
inkscape:cx="45" | |||
inkscape:cy="190" | |||
inkscape:window-x="0" | |||
inkscape:window-y="0" | |||
inkscape:window-maximized="0" | |||
inkscape:current-layer="svg164" /> | |||
<style | |||
id="style2"> | |||
text { | |||
fill: #333; | |||
font-family: 'Roboto', sans-serif; | |||
font-weight: bold; | |||
} | |||
text.title { | |||
font-family: 'Comfortaa', sans-serif; | |||
font-weight: normal; | |||
} | |||
text.brand { | |||
font-family: 'Audiowide', sans-serif; | |||
font-weight: bold; | |||
} | |||
</style> | |||
<defs | |||
id="defs80"> | |||
<symbol | |||
id="knob" | |||
viewBox="0 0 45px 45px"> | |||
<g | |||
transform="translate(22.5 22.5)" | |||
id="g10"> | |||
<polyline | |||
points="-5,0 5,0" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline4" /> | |||
<polyline | |||
points="0,-5 0,5" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline6" /> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="14" | |||
stroke-width="1" | |||
stroke="#00f" | |||
fill="none" | |||
id="circle8" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="knobguide-select" | |||
viewBox="0 0 45px 45px"> | |||
<g | |||
transform="translate(22.5 22.5)" | |||
id="g29"> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-240) translate(20 0) rotate(240) translate(-2 2)" | |||
id="text13">1</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-197.1) translate(20 0) rotate(197.1) translate(-2 2)" | |||
id="text15">2</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-154.3) translate(20 0) rotate(154.3) translate(-2 2)" | |||
id="text17">3</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-111.4) translate(20 0) rotate(111.4) translate(-2 2)" | |||
id="text19">4</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-68.6) translate(20 0) rotate(68.6) translate(-2 2)" | |||
id="text21">5</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-25.7) translate(20 0) rotate(25.7) translate(-2 2)" | |||
id="text23">6</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(17.1) translate(20 0) rotate(-17.1) translate(-2 2)" | |||
id="text25">7</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(60) translate(20 0) rotate(-60) translate(-2 2)" | |||
id="text27">8</text> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="knob-smallest" | |||
viewBox="0 0 16px 16px"> | |||
<g | |||
transform="translate(8 8)" | |||
id="g38"> | |||
<polyline | |||
points="-3,0 3,0" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline32" /> | |||
<polyline | |||
points="0,-3 0,3" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline34" /> | |||
<circle | |||
r="7.5" | |||
stroke-width="1" | |||
stroke="#00f" | |||
fill="none" | |||
id="circle36" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="knobguide-steps" | |||
viewBox="0 0 40px 40px"> | |||
<g | |||
transform="translate(20 20)" | |||
id="g55"> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-240) translate(13 0) rotate(240) translate(-2 2)" | |||
id="text41">2</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-190) translate(13 0) rotate(190) translate(-2 2)" | |||
id="text43">3</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-140) translate(13 0) rotate(140) translate(-2 2)" | |||
id="text45">4</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-90) translate(13 0) rotate(90) translate(-2 2)" | |||
id="text47">5</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-40) translate(13 0) rotate(40) translate(-2 2)" | |||
id="text49">6</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(10) translate(13 0) rotate(-10) translate(-2 2)" | |||
id="text51">7</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(60) translate(13 0) rotate(-60) translate(-2 2)" | |||
id="text53">8</text> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="switch" | |||
viewBox="0 0 14px 24px"> | |||
<rect | |||
width="14px" | |||
height="24px" | |||
stroke-width="1" | |||
stroke="#000" | |||
fill="#ddd" | |||
id="rect58" /> | |||
<rect | |||
width="14px" | |||
height="12px" | |||
stroke-width="0" | |||
fill="#000" | |||
id="rect60" /> | |||
</symbol> | |||
<symbol | |||
id="light-small" | |||
viewBox="0 0 6.4px 6.4px"> | |||
<rect | |||
width="6.4" | |||
height="6.4" | |||
fill="#0f0" | |||
id="rect63" /> | |||
</symbol> | |||
<symbol | |||
id="input" | |||
viewBox="0 0 24px 24px"> | |||
<g | |||
transform="translate(12 12)" | |||
id="g70"> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="5" | |||
stroke-width="1" | |||
stroke="#0f0" | |||
fill="#0f0" | |||
id="circle66" /> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="10.5" | |||
stroke-width="3" | |||
stroke="#0f0" | |||
fill="none" | |||
id="circle68" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="output" | |||
viewBox="0 0 24px 24px"> | |||
<g | |||
transform="translate(12 12)" | |||
id="g77"> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="5" | |||
stroke-width="1" | |||
stroke="#f00" | |||
fill="#f00" | |||
id="circle73" /> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="10.5" | |||
stroke-width="3" | |||
stroke="#f00" | |||
fill="none" | |||
id="circle75" /> | |||
</g> | |||
</symbol> | |||
</defs> | |||
<path | |||
style="fill:#dddddd" | |||
d="M 0,0 H 90 V 380 H 0 Z" | |||
id="rect82" /> | |||
<path | |||
style="fill:none;stroke:#e4e4e4;stroke-width:0.5" | |||
d="M 1,1 H 89 V 379 H 1 V 1" | |||
id="polyline84" /> | |||
<path | |||
style="fill:none;stroke:#ebebeb;stroke-width:0.80000001" | |||
d="m 0.5,0.5 h 89 v 379 H 0.5 V 0.5" | |||
id="polyline86" /> | |||
<path | |||
style="fill:none;stroke:#f2f2f2;stroke-width:1" | |||
d="M 0,0 H 90 V 380 H 0 V 0" | |||
id="polyline88" /> | |||
<g | |||
aria-label="8:1" | |||
style="font-weight:normal;font-size:12px;font-family:Comfortaa, sans-serif;letter-spacing:3px;fill:#333333" | |||
id="text90"> | |||
<path | |||
d="m 67.932,11.744 q 0.66,0.348 1.044,0.984 0.384,0.624 0.384,1.416 0,0.816 -0.372,1.476 -0.36,0.66 -1.008,1.044 -0.636,0.384 -1.416,0.384 -0.792,0 -1.44,-0.372 -0.636,-0.384 -1.008,-1.032 -0.36,-0.66 -0.36,-1.464 0,-0.804 0.384,-1.44 0.396,-0.648 1.056,-0.996 -0.444,-0.312 -0.696,-0.792 -0.252,-0.492 -0.252,-1.08 0,-0.636 0.3,-1.152 0.312,-0.528 0.84,-0.816 0.54,-0.3 1.2,-0.3 0.648,0 1.164,0.3 0.528,0.288 0.816,0.804 0.3,0.504 0.3,1.14 0,0.588 -0.252,1.092 -0.252,0.492 -0.684,0.804 z m -2.796,-1.86 q 0,0.624 0.408,1.056 0.408,0.42 1.02,0.42 0.612,0 1.008,-0.432 0.408,-0.444 0.408,-1.092 0,-0.588 -0.408,-0.984 -0.408,-0.396 -1.008,-0.396 -0.612,0 -1.02,0.408 -0.408,0.408 -0.408,1.02 z m 3.288,4.272 q 0,-0.54 -0.252,-0.972 -0.24,-0.432 -0.672,-0.684 -0.42,-0.252 -0.936,-0.252 -0.528,0 -0.96,0.264 -0.432,0.252 -0.672,0.696 -0.24,0.444 -0.24,0.996 0,0.552 0.24,1.02 0.252,0.456 0.672,0.72 0.432,0.264 0.96,0.264 0.528,0 0.948,-0.264 0.432,-0.276 0.672,-0.744 0.24,-0.48 0.24,-1.044 z" | |||
style="font-weight:normal;font-size:12px;font-family:Comfortaa, sans-serif;letter-spacing:3px;fill:#333333" | |||
id="path291" /> | |||
<path | |||
d="m 74.205,11.912 q -0.288,0 -0.504,-0.204 -0.204,-0.204 -0.204,-0.492 0,-0.3 0.204,-0.504 0.204,-0.204 0.504,-0.204 0.288,0 0.48,0.216 0.204,0.204 0.204,0.492 0,0.288 -0.204,0.492 -0.192,0.204 -0.48,0.204 z m 0.024,5.28 q -0.288,0 -0.492,-0.204 -0.204,-0.204 -0.204,-0.492 0,-0.3 0.204,-0.504 0.216,-0.204 0.492,-0.204 0.288,0 0.492,0.216 0.204,0.204 0.204,0.492 0,0.288 -0.204,0.492 -0.204,0.204 -0.492,0.204 z" | |||
style="font-weight:normal;font-size:12px;font-family:Comfortaa, sans-serif;letter-spacing:3px;fill:#333333" | |||
id="path293" /> | |||
<path | |||
d="m 81.33675,17 q -0.192,0 -0.336,-0.132 -0.132,-0.144 -0.132,-0.336 v -7.8 l -1.2,0.42 q -0.12,0.06 -0.24,0.06 -0.204,0 -0.336,-0.12 -0.132,-0.132 -0.132,-0.336 0,-0.348 0.3,-0.444 l 1.848,-0.636 q 0.18,-0.06 0.24,-0.06 0.192,0 0.324,0.132 0.132,0.132 0.132,0.336 v 8.448 q 0,0.192 -0.132,0.336 -0.132,0.132 -0.336,0.132 z" | |||
style="font-weight:normal;font-size:12px;font-family:Comfortaa, sans-serif;letter-spacing:3px;fill:#333333" | |||
id="path295" /> | |||
</g> | |||
<g | |||
aria-label="BOGAUDIO" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text92"> | |||
<path | |||
d="m 12.194662,372.66699 q 0,0.20313 -0.07194,0.43587 -0.06771,0.23275 -0.228516,0.43165 -0.156576,0.19889 -0.410482,0.33431 Q 11.229818,374 10.861654,374 H 6.6848959 q -0.1184896,0 -0.2200521,-0.0423 -0.1015625,-0.0423 -0.1777344,-0.11426 -0.07194,-0.0762 -0.1142578,-0.17773 -0.042318,-0.10156 -0.042318,-0.22005 V 368.486 q 0,-0.11426 0.042318,-0.21582 0.042318,-0.10156 0.1142578,-0.17773 0.076172,-0.0762 0.1777344,-0.11849 0.1015625,-0.0423 0.2200521,-0.0423 h 3.6816411 q 0.203125,0 0.435872,0.0719 0.232747,0.0719 0.431641,0.23275 0.203125,0.15657 0.33431,0.41048 0.135416,0.25391 0.135416,0.62207 v 0.20736 q 0,0.29199 -0.09733,0.63053 -0.09733,0.33431 -0.313152,0.63477 0.186198,0.11425 0.347006,0.27506 0.165039,0.16081 0.28776,0.3724 0.122721,0.21159 0.194662,0.47819 0.07194,0.2666 0.07194,0.58821 z m -1.100261,-0.21159 q 0,-0.21582 -0.06771,-0.38509 -0.06771,-0.1735 -0.19043,-0.29622 -0.122721,-0.12272 -0.296224,-0.1862 -0.173502,-0.0677 -0.389323,-0.0677 H 7.6708985 v -1.10872 h 1.9847006 q 0.2158203,0 0.3893229,-0.0635 0.173503,-0.0677 0.296224,-0.19043 0.122721,-0.12272 0.186198,-0.29199 0.06771,-0.1735 0.06771,-0.38932 v -0.20736 q 0,-0.23698 -0.228515,-0.23698 H 7.2307943 v 3.86784 h 3.6308597 q 0.02962,0 0.07194,-0.004 0.04232,-0.004 0.07617,-0.0254 0.03385,-0.0212 0.05924,-0.0719 0.02539,-0.0508 0.02539,-0.13965 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path298" /> | |||
<path | |||
d="m 21.515625,371.54557 q 0,0.55436 -0.190429,1.01986 -0.19043,0.46549 -0.528972,0.80404 -0.338541,0.33854 -0.804036,0.52897 -0.461263,0.1862 -1.007162,0.1862 h -1.489583 q -0.545899,0 -1.011393,-0.1862 -0.465495,-0.19043 -0.804037,-0.52897 -0.338542,-0.33855 -0.533203,-0.80404 -0.19043,-0.4655 -0.19043,-1.01986 v -1.1595 q 0,-0.55013 0.19043,-1.01563 0.194661,-0.46972 0.533203,-0.80403 0.338542,-0.33855 0.804037,-0.52898 0.465494,-0.19043 1.011393,-0.19043 h 1.489583 q 0.545899,0 1.007162,0.19043 0.465495,0.19043 0.804036,0.52898 0.338542,0.33431 0.528972,0.80403 0.190429,0.4655 0.190429,1.01563 z m -1.10026,-1.1595 q 0,-0.32585 -0.105794,-0.58822 -0.101563,-0.2666 -0.291993,-0.4528 -0.186198,-0.19043 -0.452799,-0.29199 -0.26237,-0.10579 -0.579753,-0.10579 h -1.489583 q -0.321615,0 -0.588216,0.10579 -0.26237,0.10156 -0.4528,0.29199 -0.19043,0.1862 -0.296224,0.4528 -0.101562,0.26237 -0.101562,0.58822 v 1.1595 q 0,0.32585 0.101562,0.59245 0.105794,0.26237 0.296224,0.4528 0.19043,0.1862 0.4528,0.29199 0.266601,0.10156 0.588216,0.10156 h 1.48112 q 0.321614,0 0.583984,-0.10156 0.266602,-0.10579 0.457031,-0.29199 0.19043,-0.19043 0.291993,-0.4528 0.105794,-0.2666 0.105794,-0.59245 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path300" /> | |||
<path | |||
d="m 30.59961,373.44564 q 0,0.11849 -0.04232,0.22005 -0.04232,0.10156 -0.11849,0.17773 -0.07194,0.0719 -0.173502,0.11426 Q 30.163737,374 30.045248,374 h -3.969402 q -0.152343,0 -0.330078,-0.0338 -0.173502,-0.0381 -0.347005,-0.11426 -0.169271,-0.0762 -0.325846,-0.19466 -0.156576,-0.12272 -0.279297,-0.292 -0.11849,-0.1735 -0.19043,-0.39778 -0.07194,-0.22852 -0.07194,-0.51205 v -2.97916 q 0,-0.15235 0.03385,-0.32585 0.03809,-0.17773 0.114258,-0.347 0.07617,-0.17351 0.198893,-0.33008 0.122722,-0.15658 0.291992,-0.27507 0.173503,-0.12272 0.397787,-0.19466 0.224284,-0.0719 0.507812,-0.0719 h 4.472982 v 1.10026 h -4.472982 q -0.21582,0 -0.330078,0.11426 -0.114258,0.11426 -0.114258,0.33854 v 2.9707 q 0,0.21159 0.114258,0.33008 0.11849,0.11426 0.330078,0.11426 h 3.423503 v -1.37956 h -2.928385 v -1.10872 h 3.474284 q 0.118489,0 0.220052,0.0466 0.101562,0.0423 0.173502,0.11849 0.07617,0.0762 0.11849,0.17773 0.04232,0.0973 0.04232,0.21159 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path302" /> | |||
<path | |||
d="m 39.708986,374 h -1.100261 v -1.48958 H 34.740887 V 374 h -1.100261 v -3.03418 q 0,-0.66439 0.228516,-1.22298 0.228516,-0.5586 0.634766,-0.96061 0.40625,-0.40202 0.960612,-0.62631 0.554362,-0.22428 1.210286,-0.22428 h 2.479818 q 0.114258,0 0.21582,0.0423 0.101563,0.0423 0.177735,0.11849 0.07617,0.0762 0.118489,0.17773 0.04232,0.10156 0.04232,0.21582 z m -4.968099,-2.58984 h 3.867838 v -2.37826 h -1.933919 q -0.05078,0 -0.21582,0.0169 -0.160808,0.0127 -0.376628,0.0719 -0.211588,0.0592 -0.448568,0.18196 -0.236979,0.12273 -0.435872,0.33855 -0.198893,0.21582 -0.330078,0.54166 -0.126953,0.32162 -0.126953,0.78288 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path304" /> | |||
<path | |||
d="m 48.928386,373.44564 q 0,0.11849 -0.04232,0.22005 -0.04232,0.10156 -0.11849,0.17773 -0.07617,0.0719 -0.177734,0.11426 Q 48.488281,374 48.374024,374 h -2.479818 q -0.351237,0 -0.710938,-0.0762 -0.3597,-0.0762 -0.698242,-0.23275 -0.33431,-0.16081 -0.630534,-0.40625 -0.296224,-0.24544 -0.520508,-0.57975 -0.220052,-0.33854 -0.347005,-0.77018 -0.126953,-0.43588 -0.126953,-0.96908 v -3.03418 h 1.100261 v 3.03418 q 0,0.4655 0.126953,0.78711 0.131185,0.32161 0.330078,0.53743 0.198893,0.21582 0.435872,0.33855 0.236979,0.12272 0.448568,0.18196 0.21582,0.0592 0.376628,0.0762 0.165039,0.0127 0.21582,0.0127 h 1.933919 v -4.9681 h 1.100261 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path306" /> | |||
<path | |||
d="m 58.266279,371.46094 q 0,0.55436 -0.194662,1.01985 -0.190429,0.4655 -0.528971,0.80404 -0.338542,0.33431 -0.804036,0.52474 Q 56.273115,374 55.727216,374 h -2.970703 q -0.11849,0 -0.220052,-0.0423 -0.101563,-0.0423 -0.177734,-0.11426 -0.07194,-0.0762 -0.114258,-0.17773 -0.04232,-0.10156 -0.04232,-0.22005 V 368.486 q 0,-0.11426 0.04232,-0.21582 0.04232,-0.10156 0.114258,-0.17773 0.07617,-0.0762 0.177734,-0.11849 0.101562,-0.0423 0.220052,-0.0423 h 2.970703 q 0.545899,0 1.011394,0.19043 0.465494,0.19043 0.804036,0.52897 0.338542,0.33431 0.528971,0.80404 0.194662,0.46549 0.194662,1.01562 z m -1.100261,-0.99024 q 0,-0.32161 -0.105794,-0.58821 -0.101562,-0.2666 -0.291992,-0.4528 -0.19043,-0.19043 -0.457031,-0.29199 -0.26237,-0.1058 -0.583985,-0.1058 h -2.424805 v 3.86784 h 2.424805 q 0.321615,0 0.583985,-0.10156 0.266601,-0.1058 0.457031,-0.292 0.19043,-0.19042 0.291992,-0.45279 0.105794,-0.26661 0.105794,-0.59245 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path308" /> | |||
<path | |||
d="m 62.462565,374 h -1.10026 v -6.06836 h 1.10026 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path310" /> | |||
<path | |||
d="m 72.126305,371.54557 q 0,0.55436 -0.19043,1.01986 -0.19043,0.46549 -0.528971,0.80404 -0.338542,0.33854 -0.804037,0.52897 -0.461263,0.1862 -1.007161,0.1862 h -1.489584 q -0.545898,0 -1.011393,-0.1862 -0.465495,-0.19043 -0.804036,-0.52897 -0.338542,-0.33855 -0.533203,-0.80404 -0.19043,-0.4655 -0.19043,-1.01986 v -1.1595 q 0,-0.55013 0.19043,-1.01563 0.194661,-0.46972 0.533203,-0.80403 0.338541,-0.33855 0.804036,-0.52898 0.465495,-0.19043 1.011393,-0.19043 h 1.489584 q 0.545898,0 1.007161,0.19043 0.465495,0.19043 0.804037,0.52898 0.338541,0.33431 0.528971,0.80403 0.19043,0.4655 0.19043,1.01563 z m -1.100261,-1.1595 q 0,-0.32585 -0.105794,-0.58822 -0.101562,-0.2666 -0.291992,-0.4528 -0.186198,-0.19043 -0.4528,-0.29199 -0.262369,-0.10579 -0.579752,-0.10579 h -1.489584 q -0.321614,0 -0.588216,0.10579 -0.26237,0.10156 -0.452799,0.29199 -0.19043,0.1862 -0.296224,0.4528 -0.101563,0.26237 -0.101563,0.58822 v 1.1595 q 0,0.32585 0.101563,0.59245 0.105794,0.26237 0.296224,0.4528 0.190429,0.1862 0.452799,0.29199 0.266602,0.10156 0.588216,0.10156 h 1.48112 q 0.321615,0 0.583985,-0.10156 0.266601,-0.10579 0.457031,-0.29199 0.19043,-0.19043 0.291992,-0.4528 0.105794,-0.2666 0.105794,-0.59245 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path312" /> | |||
</g> | |||
<path | |||
style="fill:#dddddd" | |||
d="M 26.5,370 H 28 v 2 h -1.5 z" | |||
id="rect94" /> | |||
<path | |||
style="fill:#fafafa" | |||
d="m 11.5,23 h 24 c 2.77,0 5,2.23 5,5 v 327 c 0,2.77 -2.23,5 -5,5 h -24 c -2.77,0 -5,-2.23 -5,-5 V 28 c 0,-2.77 2.23,-5 5,-5 z" | |||
id="rect98" /> | |||
<g | |||
aria-label="IN" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text100"> | |||
<path | |||
d="m 20.461589,32 h -0.976563 v -4.739583 h 0.976563 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path317" /> | |||
<path | |||
d="M 27.217448,32 H 26.240885 L 24.339844,28.88151 V 32 h -0.976563 v -4.739583 h 0.976563 l 1.904296,3.125 v -3.125 h 0.973308 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path319" /> | |||
</g> | |||
<g | |||
aria-label="1" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text102"> | |||
<path | |||
d="m 20.107422,67 h -0.940755 v -3.626302 l -1.123047,0.348307 v -0.764974 l 1.96289,-0.703125 h 0.100912 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path322" /> | |||
</g> | |||
<g | |||
aria-label="2" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text104"> | |||
<path | |||
d="m 21.070963,108.3 h -3.248697 v -0.64453 l 1.533203,-1.63411 q 0.315755,-0.34505 0.465494,-0.60222 0.152995,-0.25716 0.152995,-0.48828 0,-0.31575 -0.159505,-0.49479 -0.159505,-0.18229 -0.455729,-0.18229 -0.31901,0 -0.504557,0.22135 -0.182292,0.2181 -0.182292,0.57618 h -0.94401 q 0,-0.43295 0.205078,-0.79102 0.208333,-0.35807 0.585937,-0.5599 0.377604,-0.20507 0.85612,-0.20507 0.732422,0 1.136068,0.35156 0.406901,0.35156 0.406901,0.99284 0,0.35156 -0.182292,0.71614 -0.182292,0.36459 -0.625,0.84961 l -1.077474,1.13607 h 2.03776 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path325" /> | |||
</g> | |||
<g | |||
aria-label="3" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text106"> | |||
<path | |||
d="m 18.779297,147.81355 h 0.501302 q 0.358073,0 0.530599,-0.17904 0.172526,-0.17904 0.172526,-0.47526 0,-0.28646 -0.172526,-0.44596 -0.169271,-0.15951 -0.46875,-0.15951 -0.270182,0 -0.452474,0.14974 -0.182292,0.14649 -0.182292,0.38412 h -0.940755 q 0,-0.3711 0.198568,-0.66407 0.201823,-0.29622 0.559896,-0.46224 0.361328,-0.16601 0.79427,-0.16601 0.751954,0 1.178386,0.36133 0.426432,0.35807 0.426432,0.98958 0,0.32552 -0.198568,0.59896 -0.198567,0.27344 -0.520833,0.41992 0.400391,0.14323 0.595703,0.42969 0.198568,0.28646 0.198568,0.67708 0,0.63151 -0.46224,1.01237 -0.458984,0.38086 -1.217448,0.38086 -0.709635,0 -1.162109,-0.37435 -0.449219,-0.37435 -0.449219,-0.98958 h 0.940756 q 0,0.26693 0.198567,0.4362 0.201823,0.16927 0.494792,0.16927 0.335286,0 0.524088,-0.17578 0.192058,-0.17904 0.192058,-0.47201 0,-0.70964 -0.78125,-0.70964 h -0.498047 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path328" /> | |||
</g> | |||
<g | |||
aria-label="4" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text108"> | |||
<path | |||
d="m 20.605469,189.11614 h 0.537109 v 0.75846 h -0.537109 v 1.02539 h -0.940756 v -1.02539 h -1.943359 l -0.04232,-0.59244 1.975912,-3.12175 h 0.950521 z m -1.988933,0 h 1.048177 v -1.67318 l -0.06185,0.10742 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path331" /> | |||
</g> | |||
<g | |||
aria-label="5" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text110"> | |||
<path | |||
d="m 17.96224,229.76928 0.273437,-2.40886 h 2.65625 v 0.78451 h -1.884766 l -0.117187,1.01888 q 0.335286,-0.17904 0.712891,-0.17904 0.677083,0 1.061197,0.41992 0.384115,0.41993 0.384115,1.17513 0,0.45899 -0.195312,0.82357 -0.192058,0.36133 -0.553386,0.56315 -0.361328,0.19857 -0.852864,0.19857 -0.429688,0 -0.797526,-0.17253 -0.367839,-0.17578 -0.582683,-0.49153 -0.211588,-0.31576 -0.224609,-0.7194 h 0.930989 q 0.0293,0.29622 0.205079,0.46224 0.179036,0.16276 0.465494,0.16276 0.319011,0 0.491537,-0.22787 0.172526,-0.23112 0.172526,-0.65104 0,-0.40365 -0.198568,-0.61849 -0.198568,-0.21484 -0.563151,-0.21484 -0.335286,0 -0.54362,0.17578 l -0.09115,0.0846 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path334" /> | |||
</g> | |||
<g | |||
aria-label="6" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text112"> | |||
<path | |||
d="m 20.374349,268.61158 v 0.77474 h -0.09115 q -0.638021,0.01 -1.028646,0.33203 -0.38737,0.32227 -0.465495,0.89519 0.377605,-0.38412 0.953776,-0.38412 0.61849,0 0.983073,0.44271 0.364584,0.44271 0.364584,1.16536 0,0.46224 -0.201823,0.83659 -0.198568,0.37435 -0.566406,0.58268 -0.364584,0.20834 -0.826823,0.20834 -0.748698,0 -1.210938,-0.52084 -0.458984,-0.52083 -0.458984,-1.38997 v -0.33854 q 0,-0.77149 0.289713,-1.36068 0.292969,-0.59245 0.836589,-0.91471 0.546875,-0.32552 1.266276,-0.32878 z m -0.917969,2.37305 q -0.227864,0 -0.413411,0.12044 -0.185547,0.11719 -0.273438,0.3125 v 0.28646 q 0,0.47201 0.185547,0.73893 0.185547,0.26367 0.520833,0.26367 0.302735,0 0.488282,-0.23763 0.188802,-0.24088 0.188802,-0.62174 0,-0.38737 -0.188802,-0.625 -0.188802,-0.23763 -0.507813,-0.23763 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path337" /> | |||
</g> | |||
<g | |||
aria-label="7" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text114"> | |||
<path | |||
d="m 21.044922,310.48777 -1.832682,4.21224 h -0.992839 l 1.835937,-3.97786 h -2.35677 v -0.76172 h 3.346354 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path340" /> | |||
</g> | |||
<g | |||
aria-label="8" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text116"> | |||
<path | |||
d="m 20.911458,352.52018 q 0,0.34505 -0.172526,0.61198 -0.172526,0.26693 -0.47526,0.42643 0.345052,0.16602 0.546875,0.45899 0.201823,0.28971 0.201823,0.68359 0,0.63151 -0.429688,0.99935 -0.429687,0.36458 -1.16862,0.36458 -0.738932,0 -1.171875,-0.36783 -0.432942,-0.36784 -0.432942,-0.9961 0,-0.39388 0.201823,-0.68685 0.201823,-0.29297 0.543619,-0.45573 -0.302734,-0.1595 -0.47526,-0.42643 -0.169271,-0.26693 -0.169271,-0.61198 0,-0.60547 0.403646,-0.96354 0.403646,-0.36133 1.097005,-0.36133 0.690104,0 1.09375,0.35808 0.406901,0.35481 0.406901,0.96679 z m -0.843099,2.11263 q 0,-0.30924 -0.179036,-0.49479 -0.179037,-0.18555 -0.481771,-0.18555 -0.299479,0 -0.478516,0.18555 -0.179036,0.18229 -0.179036,0.49479 0,0.30274 0.175781,0.48828 0.175781,0.18555 0.488281,0.18555 0.30599,0 0.478516,-0.17904 0.175781,-0.17903 0.175781,-0.49479 z m -0.09766,-2.06705 q 0,-0.2767 -0.146484,-0.44271 -0.146485,-0.16927 -0.413412,-0.16927 -0.263672,0 -0.410156,0.16276 -0.146484,0.16276 -0.146484,0.44922 0,0.2832 0.146484,0.45572 0.146484,0.17253 0.413411,0.17253 0.266928,0 0.410157,-0.17253 0.146484,-0.17252 0.146484,-0.45572 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path343" /> | |||
</g> | |||
<path | |||
style="fill:#fafafa" | |||
d="m 54.5,32 h 24 c 2.77,0 5,2.23 5,5 v 29 c 0,2.77 -2.23,5 -5,5 h -24 c -2.77,0 -5,-2.23 -5,-5 V 37 c 0,-2.77 2.23,-5 5,-5 z" | |||
id="rect120" /> | |||
<path | |||
style="fill:#fafafa" | |||
d="m 49.5,62 h 34 v 10 h -34 z" | |||
id="rect122" /> | |||
<g | |||
aria-label="CLOCK" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="text124"> | |||
<path | |||
d="m 57.64388,65.421224 q -0.05534,0.764974 -0.566406,1.204427 -0.507813,0.439453 -1.341146,0.439453 -0.911458,0 -1.435547,-0.611979 -0.520833,-0.615234 -0.520833,-1.686198 v -0.289713 q 0,-0.683594 0.240885,-1.204427 0.240886,-0.520834 0.686849,-0.797526 0.449219,-0.279948 1.041667,-0.279948 0.820312,0 1.321614,0.439453 0.501303,0.439453 0.579428,1.233724 h -0.976563 q -0.03581,-0.458985 -0.257161,-0.664063 -0.218099,-0.208333 -0.667318,-0.208333 -0.488281,0 -0.732422,0.351562 -0.240885,0.348308 -0.247396,1.083985 v 0.358073 q 0,0.768229 0.23112,1.123046 0.234375,0.354818 0.735677,0.354818 0.452474,0 0.673828,-0.205078 0.22461,-0.208333 0.257162,-0.641276 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path348" /> | |||
<path | |||
d="m 60.261719,66.215495 h 2.073567 V 67 h -3.05013 v -4.739583 h 0.976563 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path350" /> | |||
<path | |||
d="m 67.576822,64.73763 q 0,0.69987 -0.247396,1.227214 -0.247395,0.527344 -0.709635,0.813802 -0.458984,0.286458 -1.054688,0.286458 -0.589192,0 -1.051432,-0.283203 -0.462239,-0.283203 -0.716146,-0.807292 -0.253906,-0.527343 -0.257161,-1.210937 v -0.234375 q 0,-0.69987 0.250651,-1.230469 0.253906,-0.533854 0.712891,-0.817057 0.462239,-0.286458 1.054687,-0.286458 0.592448,0 1.051432,0.286458 0.46224,0.283203 0.712891,0.817057 0.253906,0.530599 0.253906,1.227214 z m -0.989583,-0.214843 q 0,-0.745443 -0.266927,-1.132813 -0.266927,-0.38737 -0.761719,-0.38737 -0.491536,0 -0.758463,0.384115 -0.266928,0.380859 -0.270183,1.119791 v 0.23112 q 0,0.725912 0.266927,1.126302 0.266927,0.400391 0.768229,0.400391 0.491537,0 0.755209,-0.384115 0.263672,-0.387369 0.266927,-1.126302 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path352" /> | |||
<path | |||
d="m 73.013671,65.421224 q -0.05534,0.764974 -0.566406,1.204427 -0.507813,0.439453 -1.341146,0.439453 -0.911458,0 -1.435547,-0.611979 -0.520833,-0.615234 -0.520833,-1.686198 v -0.289713 q 0,-0.683594 0.240885,-1.204427 0.240886,-0.520834 0.686849,-0.797526 0.449219,-0.279948 1.041667,-0.279948 0.820312,0 1.321614,0.439453 0.501303,0.439453 0.579428,1.233724 h -0.976563 q -0.03581,-0.458985 -0.257161,-0.664063 -0.218099,-0.208333 -0.667318,-0.208333 -0.488281,0 -0.732422,0.351562 -0.240885,0.348308 -0.247396,1.083985 v 0.358073 q 0,0.768229 0.23112,1.123046 0.234375,0.354818 0.735677,0.354818 0.452474,0 0.673828,-0.205078 0.22461,-0.208333 0.257162,-0.641276 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path354" /> | |||
<path | |||
d="m 76.139322,65.098958 -0.507813,0.546875 V 67 h -0.976562 v -4.739583 h 0.976562 v 2.148437 l 0.429688,-0.589192 1.207682,-1.559245 h 1.201172 L 76.787108,64.366537 78.518879,67 h -1.16211 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path356" /> | |||
</g> | |||
<path | |||
style="fill:#fafafa" | |||
d="m 54.5,69 h 24 c 2.77,0 5,2.23 5,5 v 29 c 0,2.77 -2.23,5 -5,5 h -24 c -2.77,0 -5,-2.23 -5,-5 V 74 c 0,-2.77 2.23,-5 5,-5 z" | |||
id="rect128" /> | |||
<g | |||
aria-label="RESET" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="text130"> | |||
<path | |||
d="M 56.677734,102.26497 H 55.89974 V 104 h -0.976563 v -4.739583 h 1.761068 q 0.839843,0 1.295573,0.374349 0.455729,0.374344 0.455729,1.057944 0,0.48502 -0.211589,0.81055 -0.208333,0.32226 -0.634765,0.51432 l 1.02539,1.93685 V 104 h -1.048177 z m -0.777994,-0.79101 h 0.78776 q 0.367838,0 0.569661,-0.18555 0.201823,-0.1888 0.201823,-0.51758 0,-0.33528 -0.192057,-0.52734 -0.188802,-0.19206 -0.582682,-0.19206 H 55.89974 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path360" /> | |||
<path | |||
d="m 63.032552,101.94596 h -1.875 v 1.26953 h 2.200521 V 104 H 60.18099 v -4.739583 h 3.170572 v 0.791013 h -2.19401 v 1.12956 h 1.875 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path362" /> | |||
<path | |||
d="m 67.388672,102.75651 q 0,-0.27669 -0.195313,-0.42318 -0.195312,-0.14974 -0.703125,-0.3125 -0.507812,-0.16601 -0.804036,-0.32552 -0.807292,-0.4362 -0.807292,-1.17513 0,-0.38411 0.214844,-0.683591 0.218099,-0.302735 0.621745,-0.472006 0.406901,-0.16927 0.911458,-0.16927 0.507813,0 0.904948,0.185546 0.397135,0.182292 0.615234,0.517579 0.221354,0.335282 0.221354,0.761722 h -0.976562 q 0,-0.32552 -0.205078,-0.50456 -0.205078,-0.182293 -0.576172,-0.182293 -0.358073,0 -0.556641,0.152993 -0.198567,0.14974 -0.198567,0.39714 0,0.23112 0.23112,0.38737 0.234374,0.15625 0.686848,0.29297 0.833334,0.25065 1.214193,0.62174 0.380859,0.37109 0.380859,0.92448 0,0.61523 -0.465494,0.9668 -0.465495,0.3483 -1.253255,0.3483 -0.546875,0 -0.996094,-0.19856 -0.449219,-0.20183 -0.686849,-0.55013 -0.234375,-0.34831 -0.234375,-0.8073 h 0.979818 q 0,0.78451 0.9375,0.78451 0.348307,0 0.543619,-0.13997 0.195313,-0.14323 0.195313,-0.39714 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path364" /> | |||
<path | |||
d="m 72.884115,101.94596 h -1.875 v 1.26953 h 2.20052 V 104 h -3.177083 v -4.739583 h 3.170573 v 0.791013 h -2.19401 v 1.12956 h 1.875 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path366" /> | |||
<path | |||
d="M 78.415364,100.05143 H 76.963541 V 104 h -0.976563 v -3.94857 h -1.432291 v -0.791013 h 3.860677 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path368" /> | |||
</g> | |||
<g | |||
aria-label="STEPS" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="text134"> | |||
<path | |||
d="m 54.957031,119.50781 q 0,-0.33203 -0.234375,-0.50781 -0.234375,-0.17969 -0.84375,-0.375 -0.609375,-0.19922 -0.964844,-0.39062 -0.96875,-0.52344 -0.96875,-1.41016 0,-0.46094 0.257813,-0.82031 0.261719,-0.36328 0.746094,-0.56641 0.488281,-0.20312 1.09375,-0.20312 0.609375,0 1.085937,0.22265 0.476563,0.21875 0.738281,0.6211 0.265625,0.40234 0.265625,0.91406 h -1.171875 q 0,-0.39063 -0.246093,-0.60547 -0.246094,-0.21875 -0.691407,-0.21875 -0.429687,0 -0.667968,0.18359 -0.238282,0.17969 -0.238282,0.47657 0,0.27734 0.277344,0.46484 0.28125,0.1875 0.824219,0.35156 1,0.30078 1.457031,0.7461 0.457031,0.44531 0.457031,1.10937 0,0.73828 -0.558593,1.16016 -0.558594,0.41797 -1.503907,0.41797 -0.65625,0 -1.195312,-0.23829 -0.539063,-0.24218 -0.824219,-0.66015 -0.28125,-0.41797 -0.28125,-0.96875 h 1.175781 q 0,0.9414 1.125,0.9414 0.417969,0 0.652344,-0.16796 0.234375,-0.17188 0.234375,-0.47657 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path371" /> | |||
<path | |||
d="M 62.710937,116.26172 H 60.96875 V 121 h -1.171875 v -4.73828 h -1.71875 v -0.94922 h 4.632812 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path373" /> | |||
<path | |||
d="m 68.304687,118.53516 h -2.25 v 1.52343 h 2.640625 V 121 h -3.8125 v -5.6875 H 68.6875 v 0.94922 h -2.632813 v 1.35547 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path375" /> | |||
<path | |||
d="M 72.054687,118.99609 V 121 h -1.171875 v -5.6875 h 2.21875 q 0.640625,0 1.125,0.23438 0.488282,0.23437 0.75,0.66796 0.261719,0.42969 0.261719,0.98047 0,0.83594 -0.574219,1.32032 -0.570312,0.48046 -1.582031,0.48046 z m 0,-0.94921 h 1.046875 q 0.464844,0 0.707032,-0.21875 0.246093,-0.21875 0.246093,-0.625 0,-0.41797 -0.246093,-0.67579 -0.246094,-0.25781 -0.679688,-0.26562 h -1.074219 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path377" /> | |||
<path | |||
d="m 80.488281,119.50781 q 0,-0.33203 -0.234375,-0.50781 -0.234375,-0.17969 -0.84375,-0.375 -0.609375,-0.19922 -0.964844,-0.39062 -0.96875,-0.52344 -0.96875,-1.41016 0,-0.46094 0.257813,-0.82031 0.261719,-0.36328 0.746094,-0.56641 0.488281,-0.20312 1.09375,-0.20312 0.609375,0 1.085937,0.22265 0.476563,0.21875 0.738281,0.6211 0.265625,0.40234 0.265625,0.91406 h -1.171875 q 0,-0.39063 -0.246093,-0.60547 Q 80,116.16797 79.554687,116.16797 q -0.429687,0 -0.667968,0.18359 -0.238282,0.17969 -0.238282,0.47657 0,0.27734 0.277344,0.46484 0.28125,0.1875 0.824219,0.35156 1,0.30078 1.457031,0.7461 0.457031,0.44531 0.457031,1.10937 0,0.73828 -0.558593,1.16016 -0.558594,0.41797 -1.503907,0.41797 -0.65625,0 -1.195312,-0.23829 -0.539063,-0.24218 -0.824219,-0.66015 -0.28125,-0.41797 -0.28125,-0.96875 h 1.175781 q 0,0.9414 1.125,0.9414 0.417969,0 0.652344,-0.16796 0.234375,-0.17188 0.234375,-0.47657 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path379" /> | |||
</g> | |||
<g | |||
id="use136" | |||
transform="translate(46.5,120)"> | |||
<g | |||
id="g212" | |||
transform="translate(20,20)"> | |||
<g | |||
aria-label="2" | |||
transform="translate(-8.5,13.25833)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text198"> | |||
<path | |||
d="M 3.5709635,0 H 0.32226562 V -0.64453123 L 1.8554687,-2.2786458 q 0.3157552,-0.3450521 0.4654948,-0.6022135 0.1529948,-0.2571615 0.1529948,-0.4882812 0,-0.3157552 -0.1595052,-0.4947917 -0.1595052,-0.1822917 -0.4557292,-0.1822917 -0.3190104,0 -0.5045573,0.2213542 -0.1822916,0.218099 -0.1822916,0.5761719 H 0.22786458 q 0,-0.4329427 0.20507812,-0.7910156 0.20833333,-0.358073 0.5859375,-0.5598959 0.3776041,-0.2050781 0.8561198,-0.2050781 0.7324218,0 1.1360676,0.3515625 0.4069011,0.3515625 0.4069011,0.9928385 0,0.3515625 -0.1822917,0.7161458 -0.1822917,0.3645834 -0.625,0.8496094 l -1.0774739,1.13606768 h 2.0377604 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path382" /> | |||
</g> | |||
<g | |||
aria-label="3" | |||
transform="translate(-14.802501,4.2574263)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text200"> | |||
<path | |||
d="m 1.2792968,-2.7864583 h 0.5013021 q 0.3580729,0 0.530599,-0.1790364 0.172526,-0.1790365 0.172526,-0.4752604 0,-0.2864584 -0.172526,-0.4459636 -0.1692709,-0.1595052 -0.46875,-0.1595052 -0.2701823,0 -0.452474,0.1497396 -0.1822916,0.1464844 -0.1822916,0.3841146 H 0.26692708 q 0,-0.3710937 0.1985677,-0.6640625 0.20182291,-0.2962239 0.55989582,-0.4622396 0.3613281,-0.1660156 0.7942708,-0.1660156 0.7519531,0 1.1783854,0.3613281 0.4264323,0.3580729 0.4264323,0.9895833 0,0.3255209 -0.1985677,0.5989584 -0.1985677,0.2734375 -0.5208333,0.4199218 0.4003906,0.1432292 0.5957031,0.4296875 0.1985677,0.2864583 0.1985677,0.6770833 0,0.63151043 -0.4622396,1.0123698 -0.4589844,0.38085937 -1.2174479,0.38085937 -0.7096354,0 -1.16210933,-0.37434895 Q 0.20833333,-0.68359373 0.20833333,-1.2988281 H 1.1490885 q 0,0.2669271 0.1985677,0.43619791 0.2018229,0.16927083 0.4947917,0.16927083 0.3352864,0 0.5240885,-0.17578124 0.1920573,-0.1790365 0.1920573,-0.4720052 0,-0.7096354 -0.78125,-0.7096354 H 1.2792968 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path385" /> | |||
</g> | |||
<g | |||
aria-label="4" | |||
transform="translate(-11.958578,-6.3562389)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text202"> | |||
<path | |||
d="M 3.1054687,-1.7838541 H 3.642578 v 0.7584635 H 3.1054687 V 0 H 2.1647135 V -1.0253906 H 0.22135416 L 0.17903645,-1.6178385 2.1549479,-4.7395832 h 0.9505208 z m -1.9889323,0 h 1.0481771 v -1.6731771 l -0.061849,0.1074219 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path388" /> | |||
</g> | |||
<g | |||
aria-label="5" | |||
transform="translate(-2,-11)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text204"> | |||
<path | |||
d="m 0.46223957,-2.3307291 0.2734375,-2.4088541 H 3.391927 V -3.955078 H 1.5071614 l -0.1171875,1.0188802 q 0.3352865,-0.1790365 0.7128906,-0.1790365 0.6770834,0 1.0611979,0.4199219 0.3841146,0.4199218 0.3841146,1.1751301 0,0.4589844 -0.1953125,0.82356773 -0.1920573,0.36132812 -0.5533854,0.56315103 -0.3613281,0.19856771 -0.8528646,0.19856771 -0.4296875,0 -0.797526,-0.17252604 Q 0.78124998,-0.28320312 0.56640624,-0.59895832 0.3548177,-0.91471352 0.34179687,-1.3183593 H 1.2727864 q 0.029297,0.2962239 0.2050781,0.46223953 0.1790365,0.16276041 0.4654948,0.16276041 0.3190104,0 0.4915365,-0.22786458 0.172526,-0.23111976 0.172526,-0.65104166 0,-0.4036458 -0.1985677,-0.6184896 -0.1985677,-0.2148437 -0.563151,-0.2148437 -0.3352865,0 -0.5436198,0.1757812 l -0.091146,0.084636 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path391" /> | |||
</g> | |||
<g | |||
aria-label="6" | |||
transform="translate(7.9585778,-6.3562389)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text206"> | |||
<path | |||
d="m 2.8743489,-4.7884113 v 0.7747395 h -0.091146 q -0.6380209,0.00977 -1.0286459,0.3320313 -0.3873697,0.3222656 -0.4654947,0.8951822 0.3776041,-0.3841145 0.953776,-0.3841145 0.6184896,0 0.9830729,0.4427083 0.3645833,0.4427083 0.3645833,1.1653645 0,0.4622396 -0.2018229,0.83658856 -0.1985677,0.37434895 -0.5664062,0.58268228 -0.3645834,0.20833333 -0.8268229,0.20833333 -0.7486979,0 -1.21093751,-0.52083333 Q 0.32552083,-0.97656248 0.32552083,-1.8457031 v -0.3385416 q 0,-0.7714844 0.28971353,-1.3606771 0.29296874,-0.5924479 0.83658854,-0.9147135 0.546875,-0.3255208 1.266276,-0.328776 z m -0.9179687,2.3730468 q -0.2278646,0 -0.4134115,0.1204427 -0.1855469,0.1171875 -0.2734375,0.3125 v 0.2864583 q 0,0.4720052 0.1855469,0.73893227 0.1855469,0.26367187 0.5208333,0.26367187 0.3027344,0 0.4882812,-0.2376302 0.1888021,-0.24088544 0.1888021,-0.62174474 0,-0.3873698 -0.1888021,-0.625 -0.188802,-0.2376302 -0.5078124,-0.2376302 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path394" /> | |||
</g> | |||
<g | |||
aria-label="7" | |||
transform="translate(10.802501,4.2574263)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text208"> | |||
<path | |||
d="M 3.5449218,-4.2122395 1.7122395,0 H 0.71940102 L 2.5553385,-3.9778645 H 0.1985677 v -0.7617187 h 3.3463541 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path397" /> | |||
</g> | |||
<g | |||
aria-label="8" | |||
transform="translate(4.5,13.25833)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text210"> | |||
<path | |||
d="m 3.4114583,-3.4798176 q 0,0.345052 -0.1725261,0.6119791 -0.172526,0.2669271 -0.4752604,0.4264323 0.3450521,0.1660156 0.546875,0.4589844 0.2018229,0.2897135 0.2018229,0.6835937 0,0.63151041 -0.4296875,0.99934894 -0.4296875,0.36458333 -1.1686197,0.36458333 -0.7389323,0 -1.17187502,-0.36783854 -0.4329427,-0.36783853 -0.4329427,-0.99609373 0,-0.3938802 0.20182292,-0.6868489 0.20182291,-0.2929688 0.5436198,-0.4557292 -0.30273439,-0.1595052 -0.47526043,-0.4264323 -0.16927083,-0.2669271 -0.16927083,-0.6119791 0,-0.6054688 0.40364582,-0.9635417 0.40364584,-0.3613281 1.09700514,-0.3613281 0.6901042,0 1.09375,0.3580729 0.4069011,0.3548177 0.4069011,0.9667969 z m -0.843099,2.1126301 q 0,-0.3092448 -0.1790364,-0.4947916 Q 2.2102864,-2.047526 1.907552,-2.047526 q -0.2994791,0 -0.4785156,0.1855469 Q 1.25,-1.6796875 1.25,-1.3671875 q 0,0.3027344 0.1757812,0.48828127 0.1757813,0.18554687 0.4882813,0.18554687 0.3059895,0 0.4785156,-0.17903645 0.1757812,-0.17903649 0.1757812,-0.49479169 z m -0.097656,-2.0670572 q 0,-0.2766927 -0.1464844,-0.4427083 -0.1464844,-0.1692709 -0.4134115,-0.1692709 -0.2636718,0 -0.4101562,0.1627605 -0.1464844,0.1627604 -0.1464844,0.4492187 0,0.2832031 0.1464844,0.4557291 0.1464844,0.1725261 0.4134115,0.1725261 0.266927,0 0.4101562,-0.1725261 0.1464844,-0.172526 0.1464844,-0.4557291 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path400" /> | |||
</g> | |||
</g> | |||
</g> | |||
<g | |||
aria-label="FWD" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text140"> | |||
<path | |||
d="m 60.47474,163.06315 h -1.875 V 165 h -0.976562 v -4.73958 h 3.085937 v 0.79101 H 58.59974 v 1.22396 h 1.875 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path403" /> | |||
<path | |||
d="m 66.973438,163.63281 0.638021,-3.37239 h 0.973307 L 67.533334,165 H 66.550261 L 65.778777,161.82943 65.007292,165 h -0.983073 l -1.051432,-4.73958 h 0.973307 l 0.641276,3.36588 0.78125,-3.36588 h 0.826823 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path405" /> | |||
<path | |||
d="m 71.115365,165 v -4.73958 h 1.458334 q 0.625,0 1.116536,0.2832 0.494792,0.27995 0.771484,0.80078 0.276693,0.51758 0.276693,1.17839 v 0.2181 q 0,0.6608 -0.273437,1.17513 -0.270183,0.51432 -0.764974,0.79752 -0.494792,0.2832 -1.116537,0.28646 z m 0.976563,-3.94857 v 3.16406 h 0.472005 q 0.572917,0 0.875651,-0.37434 0.302734,-0.37435 0.309245,-1.07097 v -0.25065 q 0,-0.72265 -0.299479,-1.09375 -0.29948,-0.37435 -0.875651,-0.37435 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path407" /> | |||
</g> | |||
<g | |||
aria-label="REV" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text142"> | |||
<path | |||
d="M 59.877735,198.26497 H 59.09974 V 200 h -0.976562 v -4.73958 h 1.761068 q 0.839843,0 1.295572,0.37435 0.45573,0.37434 0.45573,1.05794 0,0.48502 -0.211589,0.81055 -0.208333,0.32226 -0.634766,0.51432 l 1.025391,1.93685 V 200 h -1.048177 z m -0.777995,-0.79101 h 0.787761 q 0.367838,0 0.569661,-0.18555 0.201823,-0.1888 0.201823,-0.51758 0,-0.33528 -0.192057,-0.52734 -0.188802,-0.19206 -0.582682,-0.19206 H 59.09974 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path410" /> | |||
<path | |||
d="m 67.232553,197.94596 h -1.875 v 1.26953 h 2.200521 V 200 H 64.38099 v -4.73958 h 3.170573 v 0.79101 h -2.19401 v 1.12956 h 1.875 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path412" /> | |||
<path | |||
d="m 71.882292,198.82487 1.074219,-3.56445 h 1.08724 L 72.39336,200 h -1.01888 l -1.64388,-4.73958 h 1.083984 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path414" /> | |||
</g> | |||
<!-- <rect width="45" height="14" fill="#0f0" transform="translate(0 200)" /> --> | |||
<!-- <rect width="45" height="14" fill="#0f0" transform="translate(0 307)" /> --> | |||
<g | |||
aria-label="SELECT" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="text146"> | |||
<path | |||
d="m 51.957031,218.50781 q 0,-0.33203 -0.234375,-0.50781 -0.234375,-0.17969 -0.84375,-0.375 -0.609375,-0.19922 -0.964844,-0.39063 -0.96875,-0.52343 -0.96875,-1.41015 0,-0.46094 0.257813,-0.82031 0.261719,-0.36329 0.746094,-0.56641 0.488281,-0.20313 1.09375,-0.20313 0.609375,0 1.085937,0.22266 0.476563,0.21875 0.738281,0.62109 0.265625,0.40235 0.265625,0.91407 h -1.171875 q 0,-0.39063 -0.246093,-0.60547 -0.246094,-0.21875 -0.691407,-0.21875 -0.429687,0 -0.667968,0.18359 -0.238282,0.17969 -0.238282,0.47656 0,0.27735 0.277344,0.46485 0.28125,0.1875 0.824219,0.35156 1,0.30078 1.457031,0.74609 0.457031,0.44532 0.457031,1.10938 0,0.73828 -0.558593,1.16016 -0.558594,0.41796 -1.503907,0.41796 -0.65625,0 -1.195312,-0.23828 -0.539063,-0.24218 -0.824219,-0.66015 -0.28125,-0.41797 -0.28125,-0.96875 h 1.175781 q 0,0.9414 1.125,0.9414 0.417969,0 0.652344,-0.16797 0.234375,-0.17187 0.234375,-0.47656 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path236" /> | |||
<path | |||
d="m 58.851562,217.53516 h -2.25 v 1.52343 h 2.640625 V 220 h -3.8125 v -5.6875 h 3.804688 v 0.94922 h -2.632813 v 1.35547 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path238" /> | |||
<path | |||
d="m 62.601562,219.05859 h 2.488282 V 220 h -3.660157 v -5.6875 h 1.171875 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path240" /> | |||
<path | |||
d="m 70.679687,217.53516 h -2.25 v 1.52343 h 2.640625 V 220 h -3.8125 v -5.6875 H 71.0625 v 0.94922 h -2.632813 v 1.35547 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path242" /> | |||
<path | |||
d="m 77.722656,218.10547 q -0.06641,0.91797 -0.679687,1.44531 -0.609375,0.52734 -1.609375,0.52734 -1.09375,0 -1.722657,-0.73437 -0.625,-0.73828 -0.625,-2.02344 v -0.34765 q 0,-0.82032 0.289063,-1.44532 0.289062,-0.625 0.824219,-0.95703 0.539062,-0.33594 1.25,-0.33594 0.984375,0 1.585937,0.52735 0.601563,0.52734 0.695313,1.48047 h -1.171875 q -0.04297,-0.55078 -0.308594,-0.79688 -0.261719,-0.25 -0.800781,-0.25 -0.585938,0 -0.878907,0.42188 -0.289062,0.41797 -0.296875,1.30078 v 0.42969 q 0,0.92187 0.277344,1.34765 0.28125,0.42578 0.882813,0.42578 0.542968,0 0.808593,-0.24609 0.269532,-0.25 0.308594,-0.76953 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path244" /> | |||
<path | |||
d="M 84.164062,215.26172 H 82.421875 V 220 H 81.25 v -4.73828 h -1.71875 v -0.94922 h 4.632812 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path246" /> | |||
</g> | |||
<g | |||
id="use148" | |||
transform="translate(44,222)"> | |||
<g | |||
id="g232" | |||
transform="translate(22.5,22.5)"> | |||
<g | |||
aria-label="1" | |||
transform="translate(-12,19.320508)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text216"> | |||
<path | |||
d="M 2.6074218,0 H 1.6666666 v -3.626302 l -1.12304682,0.3483073 v -0.764974 L 2.5065104,-4.7460936 h 0.1009114 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path249" /> | |||
</g> | |||
<g | |||
aria-label="2" | |||
transform="translate(-21.11586,7.8808065)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text218"> | |||
<path | |||
d="M 3.5709635,0 H 0.32226562 V -0.64453123 L 1.8554687,-2.2786458 q 0.3157552,-0.3450521 0.4654948,-0.6022135 0.1529948,-0.2571615 0.1529948,-0.4882812 0,-0.3157552 -0.1595052,-0.4947917 -0.1595052,-0.1822917 -0.4557292,-0.1822917 -0.3190104,0 -0.5045573,0.2213542 -0.1822916,0.218099 -0.1822916,0.5761719 H 0.22786458 q 0,-0.4329427 0.20507812,-0.7910156 0.20833333,-0.358073 0.5859375,-0.5598959 0.3776041,-0.2050781 0.8561198,-0.2050781 0.7324218,0 1.1360676,0.3515625 0.4069011,0.3515625 0.4069011,0.9928385 0,0.3515625 -0.1822917,0.7161458 -0.1822917,0.3645834 -0.625,0.8496094 l -1.0774739,1.13606768 h 2.0377604 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path252" /> | |||
</g> | |||
<g | |||
aria-label="3" | |||
transform="translate(-20.02154,-6.6731817)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text220"> | |||
<path | |||
d="m 1.2792968,-2.7864583 h 0.5013021 q 0.3580729,0 0.530599,-0.1790364 0.172526,-0.1790365 0.172526,-0.4752604 0,-0.2864584 -0.172526,-0.4459636 -0.1692709,-0.1595052 -0.46875,-0.1595052 -0.2701823,0 -0.452474,0.1497396 -0.1822916,0.1464844 -0.1822916,0.3841146 H 0.26692708 q 0,-0.3710937 0.1985677,-0.6640625 0.20182291,-0.2962239 0.55989582,-0.4622396 0.3613281,-0.1660156 0.7942708,-0.1660156 0.7519531,0 1.1783854,0.3613281 0.4264323,0.3580729 0.4264323,0.9895833 0,0.3255209 -0.1985677,0.5989584 -0.1985677,0.2734375 -0.5208333,0.4199218 0.4003906,0.1432292 0.5957031,0.4296875 0.1985677,0.2864583 0.1985677,0.6770833 0,0.63151043 -0.4622396,1.0123698 -0.4589844,0.38085937 -1.2174479,0.38085937 -0.7096354,0 -1.16210933,-0.37434895 Q 0.20833333,-0.68359373 0.20833333,-1.2988281 H 1.1490885 q 0,0.2669271 0.1985677,0.43619791 0.2018229,0.16927083 0.4947917,0.16927083 0.3352864,0 0.5240885,-0.17578124 0.1920573,-0.1790365 0.1920573,-0.4720052 0,-0.7096354 -0.78125,-0.7096354 H 1.2792968 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path255" /> | |||
</g> | |||
<g | |||
aria-label="4" | |||
transform="translate(-9.2975357,-16.621116)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text222"> | |||
<path | |||
d="M 3.1054687,-1.7838541 H 3.642578 v 0.7584635 H 3.1054687 V 0 H 2.1647135 V -1.0253906 H 0.22135416 L 0.17903645,-1.6178385 2.1549479,-4.7395832 h 0.9505208 z m -1.9889323,0 h 1.0481771 v -1.6731771 l -0.061849,0.1074219 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path258" /> | |||
</g> | |||
<g | |||
aria-label="5" | |||
transform="translate(5.2975357,-16.621116)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text224"> | |||
<path | |||
d="m 0.46223957,-2.3307291 0.2734375,-2.4088541 H 3.391927 V -3.955078 H 1.5071614 l -0.1171875,1.0188802 q 0.3352865,-0.1790365 0.7128906,-0.1790365 0.6770834,0 1.0611979,0.4199219 0.3841146,0.4199218 0.3841146,1.1751301 0,0.4589844 -0.1953125,0.82356773 -0.1920573,0.36132812 -0.5533854,0.56315103 -0.3613281,0.19856771 -0.8528646,0.19856771 -0.4296875,0 -0.797526,-0.17252604 Q 0.78124998,-0.28320312 0.56640624,-0.59895832 0.3548177,-0.91471352 0.34179687,-1.3183593 H 1.2727864 q 0.029297,0.2962239 0.2050781,0.46223953 0.1790365,0.16276041 0.4654948,0.16276041 0.3190104,0 0.4915365,-0.22786458 0.172526,-0.23111976 0.172526,-0.65104166 0,-0.4036458 -0.1985677,-0.6184896 -0.1985677,-0.2148437 -0.563151,-0.2148437 -0.3352865,0 -0.5436198,0.1757812 l -0.091146,0.084636 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path261" /> | |||
</g> | |||
<g | |||
aria-label="6" | |||
transform="translate(16.02154,-6.6731817)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text226"> | |||
<path | |||
d="m 2.8743489,-4.7884113 v 0.7747395 h -0.091146 q -0.6380209,0.00977 -1.0286459,0.3320313 -0.3873697,0.3222656 -0.4654947,0.8951822 0.3776041,-0.3841145 0.953776,-0.3841145 0.6184896,0 0.9830729,0.4427083 0.3645833,0.4427083 0.3645833,1.1653645 0,0.4622396 -0.2018229,0.83658856 -0.1985677,0.37434895 -0.5664062,0.58268228 -0.3645834,0.20833333 -0.8268229,0.20833333 -0.7486979,0 -1.21093751,-0.52083333 Q 0.32552083,-0.97656248 0.32552083,-1.8457031 v -0.3385416 q 0,-0.7714844 0.28971353,-1.3606771 0.29296874,-0.5924479 0.83658854,-0.9147135 0.546875,-0.3255208 1.266276,-0.328776 z m -0.9179687,2.3730468 q -0.2278646,0 -0.4134115,0.1204427 -0.1855469,0.1171875 -0.2734375,0.3125 v 0.2864583 q 0,0.4720052 0.1855469,0.73893227 0.1855469,0.26367187 0.5208333,0.26367187 0.3027344,0 0.4882812,-0.2376302 0.1888021,-0.24088544 0.1888021,-0.62174474 0,-0.3873698 -0.1888021,-0.625 -0.188802,-0.2376302 -0.5078124,-0.2376302 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path264" /> | |||
</g> | |||
<g | |||
aria-label="7" | |||
transform="translate(17.11586,7.8808065)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text228"> | |||
<path | |||
d="M 3.5449218,-4.2122395 1.7122395,0 H 0.71940102 L 2.5553385,-3.9778645 H 0.1985677 v -0.7617187 h 3.3463541 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path267" /> | |||
</g> | |||
<g | |||
aria-label="8" | |||
transform="translate(8,19.320508)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text230"> | |||
<path | |||
d="m 3.4114583,-3.4798176 q 0,0.345052 -0.1725261,0.6119791 -0.172526,0.2669271 -0.4752604,0.4264323 0.3450521,0.1660156 0.546875,0.4589844 0.2018229,0.2897135 0.2018229,0.6835937 0,0.63151041 -0.4296875,0.99934894 -0.4296875,0.36458333 -1.1686197,0.36458333 -0.7389323,0 -1.17187502,-0.36783854 -0.4329427,-0.36783853 -0.4329427,-0.99609373 0,-0.3938802 0.20182292,-0.6868489 0.20182291,-0.2929688 0.5436198,-0.4557292 -0.30273439,-0.1595052 -0.47526043,-0.4264323 -0.16927083,-0.2669271 -0.16927083,-0.6119791 0,-0.6054688 0.40364582,-0.9635417 0.40364584,-0.3613281 1.09700514,-0.3613281 0.6901042,0 1.09375,0.3580729 0.4069011,0.3548177 0.4069011,0.9667969 z m -0.843099,2.1126301 q 0,-0.3092448 -0.1790364,-0.4947916 Q 2.2102864,-2.047526 1.907552,-2.047526 q -0.2994791,0 -0.4785156,0.1855469 Q 1.25,-1.6796875 1.25,-1.3671875 q 0,0.3027344 0.1757812,0.48828127 0.1757813,0.18554687 0.4882813,0.18554687 0.3059895,0 0.4785156,-0.17903645 0.1757812,-0.17903649 0.1757812,-0.49479169 z m -0.097656,-2.0670572 q 0,-0.2766927 -0.1464844,-0.4427083 -0.1464844,-0.1692709 -0.4134115,-0.1692709 -0.2636718,0 -0.4101562,0.1627605 -0.1464844,0.1627604 -0.1464844,0.4492187 0,0.2832031 0.1464844,0.4557291 0.1464844,0.1725261 0.4134115,0.1725261 0.266927,0 0.4101562,-0.1725261 0.1464844,-0.172526 0.1464844,-0.4557291 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path270" /> | |||
</g> | |||
</g> | |||
</g> | |||
<g | |||
id="g154" | |||
transform="translate(49.5,267)"> | |||
<path | |||
style="fill:#fafafa" | |||
d="m 5,0 h 24 c 2.77,0 5,2.23 5,5 v 29 c 0,2.77 -2.23,5 -5,5 H 5 C 2.23,39 0,36.77 0,34 V 5 C 0,2.23 2.23,0 5,0 Z" | |||
id="rect150" /> | |||
<g | |||
aria-label="CV" | |||
transform="translate(11.5,35)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text152"> | |||
<path | |||
d="m 4.1438801,-1.578776 q -0.055338,0.76497394 -0.5664062,1.20442705 -0.5078125,0.43945312 -1.3411458,0.43945312 -0.9114583,0 -1.43554687,-0.61197916 Q 0.27994791,-1.1621093 0.27994791,-2.2330729 v -0.2897135 q 0,-0.6835937 0.24088541,-1.2044271 0.24088541,-0.5208333 0.68684898,-0.797526 0.4492187,-0.2799479 1.0416666,-0.2799479 0.8203125,0 1.3216146,0.4394531 0.501302,0.4394531 0.579427,1.233724 H 3.173828 q -0.035807,-0.4589844 -0.2571614,-0.6640625 -0.218099,-0.2083334 -0.6673177,-0.2083334 -0.4882812,0 -0.7324219,0.3515625 -0.2408854,0.3483073 -0.2473958,1.0839844 v 0.3580729 q 0,0.7682291 0.2311198,1.1230468 0.234375,0.35481774 0.7356771,0.35481774 0.4524739,0 0.6738281,-0.20507812 Q 3.1347656,-1.1458333 3.1673176,-1.578776 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path274" /> | |||
<path | |||
d="m 8.5364581,-1.1751302 1.0742187,-3.564453 H 10.697916 L 9.0475258,0 H 8.0286456 L 6.3847655,-4.7395832 h 1.0839843 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path276" /> | |||
</g> | |||
</g> | |||
<path | |||
style="fill:#bbbbbb" | |||
d="m 54.5,321 h 24 c 2.77,0 5,2.23 5,5 v 29 c 0,2.77 -2.23,5 -5,5 h -24 c -2.77,0 -5,-2.23 -5,-5 v -29 c 0,-2.77 2.23,-5 5,-5 z" | |||
id="rect158" /> | |||
<g | |||
aria-label="OUT" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text160"> | |||
<path | |||
d="m 61.816406,353.73763 q 0,0.69987 -0.247396,1.22721 -0.247396,0.52735 -0.709635,0.81381 -0.458984,0.28645 -1.054688,0.28645 -0.589192,0 -1.051432,-0.2832 -0.462239,-0.2832 -0.716146,-0.80729 -0.253906,-0.52734 -0.257161,-1.21094 v -0.23437 q 0,-0.69987 0.250651,-1.23047 0.253906,-0.53386 0.712891,-0.81706 0.462239,-0.28646 1.054687,-0.28646 0.592448,0 1.051432,0.28646 0.46224,0.2832 0.712891,0.81706 0.253906,0.5306 0.253906,1.22721 z m -0.989583,-0.21484 q 0,-0.74545 -0.266927,-1.13282 -0.266927,-0.38737 -0.761719,-0.38737 -0.491536,0 -0.758463,0.38412 -0.266928,0.38086 -0.270183,1.11979 v 0.23112 q 0,0.72591 0.266927,1.1263 0.266927,0.40039 0.768229,0.40039 0.491537,0 0.755209,-0.38411 0.263672,-0.38737 0.266927,-1.1263 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path280" /> | |||
<path | |||
d="m 68.119792,351.26042 v 3.12174 q 0,0.778 -0.488282,1.23047 -0.485026,0.45247 -1.328125,0.45247 -0.830078,0 -1.318359,-0.43945 -0.488281,-0.43945 -0.498047,-1.20768 v -3.15755 h 0.976563 v 3.12825 q 0,0.4655 0.221354,0.68034 0.224609,0.21159 0.618489,0.21159 0.823568,0 0.836589,-0.86589 v -3.15429 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path282" /> | |||
<path | |||
d="M 74.488281,352.05143 H 73.036458 V 356 h -0.976563 v -3.94857 h -1.432291 v -0.79101 h 3.860677 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path284" /> | |||
</g> | |||
<!-- <polyline points="0,0 90,0" stroke="#f00" stroke-width="1" fill="none" transform="translate(0 47)" /> --> | |||
<!-- <polyline points="0,0 90,0" stroke="#f00" stroke-width="1" fill="none" transform="translate(0 336)" /> --> | |||
<!-- <polyline points="0,0 90,0" stroke="#f00" stroke-width="1" fill="none" transform="translate(0 351)" /> --> | |||
<!-- <polyline points="0,0 0,360" stroke="#f00" stroke-width="1" fill="none" transform="translate(66.50 0)" /> --> | |||
</svg> |
@@ -0,0 +1,854 @@ | |||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
<svg | |||
xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
xmlns:cc="http://creativecommons.org/ns#" | |||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
xmlns:svg="http://www.w3.org/2000/svg" | |||
xmlns="http://www.w3.org/2000/svg" | |||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |||
version="1.1" | |||
width="45" | |||
height="380" | |||
viewBox="0 0 45 380" | |||
id="svg205" | |||
sodipodi:docname="svg_render_tmp.svg" | |||
inkscape:version="0.92.2 5c3e80d, 2017-08-06"> | |||
<metadata | |||
id="metadata209"> | |||
<rdf:RDF> | |||
<cc:Work | |||
rdf:about=""> | |||
<dc:format>image/svg+xml</dc:format> | |||
<dc:type | |||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
</cc:Work> | |||
</rdf:RDF> | |||
</metadata> | |||
<sodipodi:namedview | |||
pagecolor="#ffffff" | |||
bordercolor="#666666" | |||
borderopacity="1" | |||
objecttolerance="10" | |||
gridtolerance="10" | |||
guidetolerance="10" | |||
inkscape:pageopacity="0" | |||
inkscape:pageshadow="2" | |||
inkscape:window-width="468" | |||
inkscape:window-height="449" | |||
id="namedview207" | |||
showgrid="false" | |||
inkscape:zoom="0.62105263" | |||
inkscape:cx="22.5" | |||
inkscape:cy="190" | |||
inkscape:window-x="0" | |||
inkscape:window-y="0" | |||
inkscape:window-maximized="0" | |||
inkscape:current-layer="svg205" /> | |||
<style | |||
id="style2"> | |||
text { | |||
fill: #333; | |||
font-family: 'Roboto', sans-serif; | |||
font-weight: bold; | |||
} | |||
text.title { | |||
font-family: 'Comfortaa', sans-serif; | |||
font-weight: normal; | |||
} | |||
text.brand { | |||
font-family: 'Audiowide', sans-serif; | |||
font-weight: bold; | |||
} | |||
</style> | |||
<defs | |||
id="defs101"> | |||
<symbol | |||
id="knob-medium" | |||
viewBox="0 0 26px 26px"> | |||
<g | |||
transform="translate(13 13)" | |||
id="g10"> | |||
<polyline | |||
points="-3,0 3,0" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline4" /> | |||
<polyline | |||
points="0,-3 0,3" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline6" /> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="12.5" | |||
stroke-width="1" | |||
stroke="#00f" | |||
fill="none" | |||
id="circle8" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="knob-smallest" | |||
viewBox="0 0 16px 16px"> | |||
<g | |||
transform="translate(8 8)" | |||
id="g19"> | |||
<polyline | |||
points="-3,0 3,0" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline13" /> | |||
<polyline | |||
points="0,-3 0,3" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline15" /> | |||
<circle | |||
r="7.5" | |||
stroke-width="1" | |||
stroke="#00f" | |||
fill="none" | |||
id="circle17" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="knobguide-frequency-llfo" | |||
viewBox="0 0 45px 45px"> | |||
<g | |||
transform="translate(22.5 22.5)" | |||
id="g46"> | |||
<polyline | |||
points="0,0 3.5,0" | |||
stroke-width="0.7" | |||
stroke="#333" | |||
transform="rotate(-240) translate(15 0)" | |||
id="polyline22" /> | |||
<polyline | |||
points="0,0 3.5,0" | |||
stroke-width="0.7" | |||
stroke="#333" | |||
transform="rotate(60) translate(15 0)" | |||
id="polyline24" /> | |||
<g | |||
transform="rotate(-148.42) translate(14 0)" | |||
id="g30"> | |||
<polyline | |||
points="0,0 2.5,0" | |||
stroke-width="0.3" | |||
stroke="#333" | |||
transform="translate(0 0)" | |||
id="polyline26" /> | |||
<text | |||
font-size="5.0pt" | |||
transform="translate(5 0) rotate(148.42) translate(-2.2 2.3)" | |||
id="text28">1</text> | |||
</g> | |||
<g | |||
transform="rotate(-55.39) translate(14 0)" | |||
id="g36"> | |||
<polyline | |||
points="0,0 2.5,0" | |||
stroke-width="0.3" | |||
stroke="#333" | |||
transform="translate(0 0)" | |||
id="polyline32" /> | |||
<text | |||
font-size="5.0pt" | |||
transform="translate(5 0) rotate(55.39) translate(-1.0 2.3)" | |||
id="text34">0V</text> | |||
</g> | |||
<g | |||
transform="rotate(27.98) translate(14 0)" | |||
id="g42"> | |||
<polyline | |||
points="0,0 2.5,0" | |||
stroke-width="0.3" | |||
stroke="#333" | |||
transform="translate(0 0)" | |||
id="polyline38" /> | |||
<text | |||
font-size="5.0pt" | |||
transform="translate(5 0) rotate(-27.98) translate(-2.3 -0.5) rotate(90)" | |||
id="text40">200</text> | |||
</g> | |||
<text | |||
font-size="5.0pt" | |||
transform="translate(-4.5 22)" | |||
id="text44">HZ</text> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="knobguide-maxtick" | |||
viewBox="0 0 40px 40px"> | |||
<g | |||
transform="translate(20 20)" | |||
id="g61"> | |||
<g | |||
transform="rotate(60) translate(10 0)" | |||
id="g51"> | |||
<polyline | |||
points="0,0 4,0" | |||
stroke-width="1" | |||
stroke="#333" | |||
id="polyline49" /> | |||
</g> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(0)" | |||
id="path53" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(43)" | |||
id="path55" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(0)" | |||
id="path57" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(-43)" | |||
id="path59" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="knobguide-centertick" | |||
viewBox="0 0 40px 40px"> | |||
<g | |||
transform="translate(20 20)" | |||
id="g76"> | |||
<g | |||
transform="rotate(-90) translate(10 0)" | |||
id="g66"> | |||
<polyline | |||
points="0,0 4,0" | |||
stroke-width="1" | |||
stroke="#333" | |||
id="polyline64" /> | |||
</g> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(20)" | |||
id="path68" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(43)" | |||
id="path70" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(-20)" | |||
id="path72" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(-43)" | |||
id="path74" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="input" | |||
viewBox="0 0 24px 24px"> | |||
<g | |||
transform="translate(12 12)" | |||
id="g83"> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="5" | |||
stroke-width="1" | |||
stroke="#0f0" | |||
fill="#0f0" | |||
id="circle79" /> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="10.5" | |||
stroke-width="3" | |||
stroke="#0f0" | |||
fill="none" | |||
id="circle81" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="output" | |||
viewBox="0 0 24px 24px"> | |||
<g | |||
transform="translate(12 12)" | |||
id="g90"> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="5" | |||
stroke-width="1" | |||
stroke="#f00" | |||
fill="#f00" | |||
id="circle86" /> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="10.5" | |||
stroke-width="3" | |||
stroke="#f00" | |||
fill="none" | |||
id="circle88" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="button-small" | |||
viewBox="0 0 9px 9px"> | |||
<g | |||
transform="translate(4.5 4.5)" | |||
id="g95"> | |||
<circle | |||
r="4" | |||
stroke-width="1" | |||
stroke="#00f" | |||
fill="#f00" | |||
id="circle93" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="light-small" | |||
viewBox="0 0 6.4px 6.4px"> | |||
<rect | |||
width="6.4" | |||
height="6.4" | |||
fill="#0f0" | |||
id="rect98" /> | |||
</symbol> | |||
</defs> | |||
<path | |||
style="fill:#dddddd" | |||
d="M 0,0 H 45 V 380 H 0 Z" | |||
id="rect103" /> | |||
<path | |||
style="fill:none;stroke:#e4e4e4;stroke-width:0.5" | |||
d="M 1,1 H 44 V 379 H 1 V 1" | |||
id="polyline105" /> | |||
<path | |||
style="fill:none;stroke:#ebebeb;stroke-width:0.80000001" | |||
d="m 0.5,0.5 h 44 v 379 H 0.5 V 0.5" | |||
id="polyline107" /> | |||
<path | |||
style="fill:none;stroke:#f2f2f2;stroke-width:1" | |||
d="M 0,0 H 45 V 380 H 0 V 0" | |||
id="polyline109" /> | |||
<g | |||
aria-label="LLFO" | |||
transform="rotate(-90)" | |||
style="font-weight:normal;font-size:9.33333302px;font-family:Comfortaa, sans-serif;letter-spacing:2.5px;fill:#333333" | |||
id="text111"> | |||
<path | |||
d="m -374.70267,13 q -0.14933,0 -0.26133,-0.102667 -0.10267,-0.112 -0.10267,-0.261333 V 6.0746669 q 0,-0.1493333 0.10267,-0.252 0.112,-0.112 0.26133,-0.112 0.15867,0 0.26134,0.1026667 0.10266,0.1026666 0.10266,0.2613333 v 6.2346661 h 3.64934 q 0.15866,0 0.26133,0.102667 0.10267,0.09333 0.10267,0.242667 0,0.149333 -0.10267,0.252 Q -370.53067,13 -370.68933,13 Z" | |||
style="font-weight:normal;font-size:9.33333302px;font-family:Comfortaa, sans-serif;letter-spacing:2.5px;fill:#333333" | |||
id="path413" /> | |||
<path | |||
d="m -366.29642,13 q -0.14933,0 -0.26133,-0.102667 -0.10267,-0.112 -0.10267,-0.261333 V 6.0746669 q 0,-0.1493333 0.10267,-0.252 0.112,-0.112 0.26133,-0.112 0.15867,0 0.26134,0.1026667 0.10266,0.1026666 0.10266,0.2613333 v 6.2346661 h 3.64934 q 0.15866,0 0.26133,0.102667 0.10267,0.09333 0.10267,0.242667 0,0.149333 -0.10267,0.252 Q -362.12442,13 -362.28308,13 Z" | |||
style="font-weight:normal;font-size:9.33333302px;font-family:Comfortaa, sans-serif;letter-spacing:2.5px;fill:#333333" | |||
id="path415" /> | |||
<path | |||
d="m -358.46883,13 q -0.14934,0 -0.26134,-0.102667 -0.10266,-0.112 -0.10266,-0.261333 V 6.0746669 q 0,-0.1586667 0.10266,-0.2613333 0.112,-0.1026667 0.26134,-0.1026667 h 4.37733 q 0.15867,0 0.26133,0.1026667 0.10267,0.1026666 0.10267,0.252 0,0.1493333 -0.10267,0.252 -0.10266,0.093333 -0.26133,0.093333 h -4.01333 v 2.5759999 h 2.92133 q 0.15867,0 0.26133,0.1026667 0.10267,0.093333 0.10267,0.252 0,0.1493333 -0.10267,0.2519999 -0.10266,0.1026667 -0.26133,0.1026667 h -2.92133 V 12.636 q 0,0.149333 -0.10267,0.261333 Q -358.31017,13 -358.46883,13 Z" | |||
style="font-weight:normal;font-size:9.33333302px;font-family:Comfortaa, sans-serif;letter-spacing:2.5px;fill:#333333" | |||
id="path417" /> | |||
<path | |||
d="m -346.5515,13.093333 q -1.064,0 -1.91333,-0.485333 -0.84934,-0.485333 -1.33467,-1.334667 -0.476,-0.858666 -0.476,-1.9226662 0,-1.064 0.476,-1.9133333 0.48533,-0.8493333 1.33467,-1.3346666 0.84933,-0.4853333 1.91333,-0.4853333 1.05467,0 1.904,0.4853333 0.85867,0.4853333 1.33467,1.3346666 0.48533,0.8493333 0.48533,1.9133333 0,1.0640002 -0.48533,1.9226662 -0.476,0.849334 -1.33467,1.334667 -0.84933,0.485333 -1.904,0.485333 z m 0,-0.690666 q 0.84933,0 1.53067,-0.401334 0.69066,-0.401333 1.08266,-1.092 0.392,-0.7 0.392,-1.5586662 0,-0.8493333 -0.392,-1.54 -0.392,-0.6999999 -1.08266,-1.1013333 -0.68134,-0.4013333 -1.53067,-0.4013333 -0.85867,0 -1.54933,0.4013333 -0.68134,0.4013334 -1.07334,1.1013333 -0.392,0.6906667 -0.392,1.54 0,0.8586662 0.392,1.5586662 0.392,0.690667 1.07334,1.092 0.69066,0.401334 1.54933,0.401334 z" | |||
style="font-weight:normal;font-size:9.33333302px;font-family:Comfortaa, sans-serif;letter-spacing:2.5px;fill:#333333" | |||
id="path419" /> | |||
</g> | |||
<g | |||
id="g117" | |||
transform="rotate(-90,200.5,175.5)"> | |||
<g | |||
aria-label="BGA" | |||
style="font-weight:bold;font-size:9.33333302px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text113"> | |||
<path | |||
d="m 7.2096352,-1.4355468 q 0,0.21875 -0.077474,0.469401 -0.072917,0.25065103 -0.2460937,0.46484373 -0.1686198,0.2141927 -0.4420573,0.36002603 Q 6.1705727,0 5.7740883,0 H 1.2760416 Q 1.1484375,0 1.0390625,-0.04557292 0.92968747,-0.09114583 0.84765622,-0.16861979 q -0.077474,-0.0820312 -0.12304687,-0.19140624 -0.0455729,-0.109375 -0.0455729,-0.23697916 V -5.9381508 q 0,-0.1230469 0.0455729,-0.2324219 0.0455729,-0.109375 0.12304687,-0.1914062 0.0820313,-0.082031 0.19140628,-0.1276042 0.109375,-0.045573 0.2369791,-0.045573 h 3.9648436 q 0.21875,0 0.4694011,0.077474 0.250651,0.077474 0.4648437,0.2506511 0.21875,0.1686197 0.360026,0.4420572 0.1458334,0.2734375 0.1458334,0.6699219 v 0.2233073 q 0,0.3144531 -0.1048177,0.6790364 -0.1048178,0.360026 -0.3372396,0.6835937 0.2005208,0.1230469 0.3736979,0.296224 0.1777344,0.1731771 0.3098958,0.4010416 0.1321615,0.2278646 0.2096354,0.514974 0.077474,0.2871093 0.077474,0.6334635 z M 6.0247394,-1.6634114 q 0,-0.2324219 -0.072917,-0.4147135 Q 5.878906,-2.2649739 5.7467446,-2.3971353 5.6145831,-2.5292968 5.4277342,-2.5976562 5.2408852,-2.6705728 5.0084634,-2.6705728 H 2.3378905 v -1.1940104 h 2.1373698 q 0.2324218,0 0.4192708,-0.068359 0.1868489,-0.072917 0.3190104,-0.2050781 0.1321614,-0.1321614 0.2005208,-0.3144531 0.072917,-0.186849 0.072917,-0.4192708 v -0.2233073 q 0,-0.2552083 -0.2460938,-0.2552083 h -3.376953 v 4.1653644 h 3.9101561 q 0.031901,0 0.077474,-0.00456 0.045573,-0.00456 0.082031,-0.027344 0.036458,-0.022787 0.063802,-0.077474 0.027344,-0.054687 0.027344,-0.1503906 z" | |||
style="font-weight:bold;font-size:9.33333302px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path422" /> | |||
<path | |||
d="m 16.683594,-0.59700519 q 0,0.12760416 -0.04557,0.23697916 -0.04557,0.109375 -0.127605,0.19140624 -0.07747,0.07747396 -0.186849,0.12304687 Q 16.214192,0 16.086588,0 h -4.274739 q -0.164063,0 -0.355469,-0.03645833 -0.186849,-0.04101563 -0.373698,-0.12304687 -0.182291,-0.0820313 -0.350911,-0.20963541 -0.16862,-0.13216146 -0.300781,-0.31445312 -0.127605,-0.18684895 -0.205079,-0.42838537 -0.07747,-0.2460938 -0.07747,-0.5514323 v -3.2083332 q 0,-0.1640625 0.03646,-0.3509115 0.04101,-0.1914062 0.123047,-0.3736979 0.08203,-0.1868489 0.214192,-0.3554687 0.132162,-0.1686198 0.314453,-0.296224 0.186849,-0.1321614 0.428386,-0.2096354 0.241536,-0.077474 0.546875,-0.077474 h 4.817057 v 1.1848958 h -4.817057 q -0.232422,0 -0.355469,0.1230468 -0.123047,0.1230469 -0.123047,0.3645834 v 3.1992186 q 0,0.2278646 0.123047,0.3554687 0.127604,0.1230469 0.355469,0.1230469 h 3.686849 v -1.485677 h -3.153646 v -1.1940104 h 3.741536 q 0.127604,0 0.236979,0.05013 0.109375,0.045573 0.186849,0.1276042 0.08203,0.082031 0.127605,0.1914062 0.04557,0.1048177 0.04557,0.2278646 z" | |||
style="font-weight:bold;font-size:9.33333302px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path424" /> | |||
<path | |||
d="M 26.339842,0 H 25.154946 V -1.6041666 H 20.989582 V 0 h -1.184896 v -3.267578 q 0,-0.7154948 0.246094,-1.3170573 0.246094,-0.6015624 0.683594,-1.0345051 0.4375,-0.4329427 1.034505,-0.6744792 0.597005,-0.2415364 1.303385,-0.2415364 h 2.670573 q 0.123047,0 0.232422,0.045573 0.109375,0.045573 0.191406,0.1276042 0.08203,0.082031 0.127604,0.1914062 0.04557,0.109375 0.04557,0.2324219 z m -5.35026,-2.7890624 h 4.165364 v -2.5611978 h -2.082682 q -0.05469,0 -0.232422,0.018229 -0.173177,0.013672 -0.405599,0.077474 -0.227864,0.063802 -0.483072,0.1959635 -0.255209,0.1321615 -0.469402,0.3645833 -0.214192,0.2324219 -0.355468,0.5833334 -0.136719,0.3463541 -0.136719,0.8430989 z" | |||
style="font-weight:bold;font-size:9.33333302px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path426" /> | |||
</g> | |||
<path | |||
transform="translate(11.5,-5)" | |||
style="fill:#dddddd" | |||
d="M 0,0 H 3 V 3 H 0 Z" | |||
id="rect115" /> | |||
</g> | |||
<!-- <polyline points="0,0 0,380" stroke="#0f0" stroke-width="1" fill="none" transform="translate(22.5 0)" /> --> | |||
<g | |||
id="use121" | |||
transform="translate(0,17.5)"> | |||
<g | |||
id="g307" | |||
transform="translate(22.5,22.5)"> | |||
<path | |||
transform="rotate(120,-7.5,4.330127)" | |||
style="stroke:#333333;stroke-width:0.69999999" | |||
d="M 0,0 H 3.5" | |||
id="polyline283" /> | |||
<path | |||
transform="rotate(60,-7.5,12.990381)" | |||
style="stroke:#333333;stroke-width:0.69999999" | |||
d="M 0,0 H 3.5" | |||
id="polyline285" /> | |||
<g | |||
id="g291" | |||
transform="rotate(-148.42,-7,-1.9794808)"> | |||
<path | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline287" /> | |||
<g | |||
aria-label="1" | |||
transform="rotate(148.42,3.2747996,-0.75410383)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text289"> | |||
<path | |||
d="M 2.6074218,0 H 1.6666666 v -3.626302 l -1.12304682,0.3483073 v -0.764974 L 2.5065104,-4.7460936 h 0.1009114 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path314" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g297" | |||
transform="rotate(-55.39,-7,-13.335863)"> | |||
<path | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline293" /> | |||
<g | |||
aria-label="0V" | |||
transform="rotate(55.39,0.80910826,2.6602465)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text295"> | |||
<path | |||
d="m 3.5123697,-1.9596354 q 0,0.98307292 -0.406901,1.50390624 -0.4069011,0.52083333 -1.1914062,0.52083333 -0.7747396,0 -1.18489585,-0.5110677 -0.41015624,-0.5110677 -0.41992187,-1.46484367 v -0.8723959 q 0,-0.9928385 0.41015624,-1.5071614 0.41341148,-0.5143229 1.18815098,-0.5143229 0.7747396,0 1.1848958,0.5110677 0.4101563,0.5078125 0.4199219,1.4615885 z M 2.5716145,-2.9166666 q 0,-0.5891927 -0.1627604,-0.8561198 -0.1595052,-0.2701823 -0.5013021,-0.2701823 -0.3320312,0 -0.4915364,0.2571615 Q 1.2597656,-3.531901 1.25,-2.9882812 v 1.1523437 q 0,0.5794271 0.15625,0.86263023 0.1595052,0.27994791 0.5078125,0.27994791 0.345052,0 0.4980468,-0.27018228 0.1529948,-0.27018226 0.1595052,-0.82682286 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path318" /> | |||
<path | |||
d="m 6.0026041,-1.1751302 1.0742187,-3.564453 H 8.1640624 L 6.5136718,0 H 5.4947916 L 3.8509115,-4.7395832 h 1.0839843 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path320" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g303" | |||
transform="rotate(27.98,-7,28.096356)"> | |||
<path | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline299" /> | |||
<g | |||
aria-label="200" | |||
transform="rotate(62.02,0.83683503,2.5931489)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text301"> | |||
<path | |||
d="M 3.5709635,0 H 0.32226562 V -0.64453123 L 1.8554687,-2.2786458 q 0.3157552,-0.3450521 0.4654948,-0.6022135 0.1529948,-0.2571615 0.1529948,-0.4882812 0,-0.3157552 -0.1595052,-0.4947917 -0.1595052,-0.1822917 -0.4557292,-0.1822917 -0.3190104,0 -0.5045573,0.2213542 -0.1822916,0.218099 -0.1822916,0.5761719 H 0.22786458 q 0,-0.4329427 0.20507812,-0.7910156 0.20833333,-0.358073 0.5859375,-0.5598959 0.3776041,-0.2050781 0.8561198,-0.2050781 0.7324218,0 1.1360676,0.3515625 0.4069011,0.3515625 0.4069011,0.9928385 0,0.3515625 -0.1822917,0.7161458 -0.1822917,0.3645834 -0.625,0.8496094 l -1.0774739,1.13606768 h 2.0377604 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path324" /> | |||
<path | |||
d="m 7.3404947,-1.9596354 q 0,0.98307292 -0.406901,1.50390624 -0.4069011,0.52083333 -1.1914062,0.52083333 -0.7747396,0 -1.1848959,-0.5110677 -0.4101562,-0.5110677 -0.4199218,-1.46484367 v -0.8723959 q 0,-0.9928385 0.4101562,-1.5071614 0.4134115,-0.5143229 1.188151,-0.5143229 0.7747396,0 1.1848958,0.5110677 0.4101563,0.5078125 0.4199219,1.4615885 z M 6.3997395,-2.9166666 q 0,-0.5891927 -0.1627604,-0.8561198 -0.1595052,-0.2701823 -0.5013021,-0.2701823 -0.3320312,0 -0.4915364,0.2571615 -0.15625,0.2539062 -0.1660156,0.797526 v 1.1523437 q 0,0.5794271 0.15625,0.86263023 0.1595052,0.27994791 0.5078125,0.27994791 0.345052,0 0.4980468,-0.27018228 0.1529948,-0.27018226 0.1595052,-0.82682286 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path326" /> | |||
<path | |||
d="m 11.16862,-1.9596354 q 0,0.98307292 -0.406901,1.50390624 -0.406901,0.52083333 -1.1914065,0.52083333 -0.7747396,0 -1.1848959,-0.5110677 -0.4101562,-0.5110677 -0.4199218,-1.46484367 v -0.8723959 q 0,-0.9928385 0.4101562,-1.5071614 0.4134115,-0.5143229 1.188151,-0.5143229 0.77474,0 1.184896,0.5110677 0.410156,0.5078125 0.419922,1.4615885 z m -0.940755,-0.9570312 q 0,-0.5891927 -0.162761,-0.8561198 -0.1595051,-0.2701823 -0.501302,-0.2701823 -0.3320312,0 -0.4915364,0.2571615 -0.15625,0.2539062 -0.1660156,0.797526 v 1.1523437 q 0,0.5794271 0.15625,0.86263023 0.1595052,0.27994791 0.5078125,0.27994791 0.345052,0 0.4980465,-0.27018228 0.152995,-0.27018226 0.159506,-0.82682286 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path328" /> | |||
</g> | |||
</g> | |||
<g | |||
aria-label="HZ" | |||
transform="translate(-4.5,22)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text305"> | |||
<path | |||
d="M 4.2805989,0 H 3.3040364 V -2.03125 H 1.3997395 V 0 H 0.42317707 V -4.7395832 H 1.3997395 v 1.9205729 h 1.9042969 v -1.9205729 h 0.9765625 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path331" /> | |||
<path | |||
d="M 6.1718748,-0.78450519 H 8.5611977 V 0 h -3.610026 v -0.57291665 l 2.34375,-3.37565095 H 4.9544269 v -0.7910156 h 3.5546874 v 0.5598958 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path333" /> | |||
</g> | |||
</g> | |||
</g> | |||
<g | |||
aria-label="SLOW" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:0.5px;fill:#333333" | |||
id="text125"> | |||
<path | |||
d="m 13.457031,76.607811 q 0,-0.332031 -0.234375,-0.507813 -0.234375,-0.179687 -0.84375,-0.375 -0.609375,-0.199218 -0.964843,-0.390625 -0.96875,-0.523437 -0.96875,-1.410156 0,-0.460937 0.257812,-0.820312 0.261719,-0.363282 0.746094,-0.566407 0.488281,-0.203125 1.09375,-0.203125 0.609375,0 1.085937,0.222657 0.476563,0.21875 0.738282,0.621093 0.265625,0.402344 0.265625,0.914063 h -1.171875 q 0,-0.390625 -0.246094,-0.605469 -0.246094,-0.21875 -0.691406,-0.21875 -0.429688,0 -0.667969,0.183594 -0.238281,0.179687 -0.238281,0.476562 0,0.277344 0.277343,0.464844 0.28125,0.1875 0.824219,0.351563 1,0.300781 1.457031,0.746093 0.457032,0.445313 0.457032,1.109375 0,0.738282 -0.558594,1.160157 -0.558594,0.417968 -1.503906,0.417968 -0.65625,0 -1.195313,-0.238281 -0.539062,-0.242187 -0.824219,-0.660156 -0.28125,-0.417969 -0.28125,-0.96875 h 1.175782 q 0,0.941406 1.125,0.941406 0.417968,0 0.652343,-0.167969 0.234375,-0.171875 0.234375,-0.476562 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:0.5px;fill:#333333" | |||
id="path336" /> | |||
<path | |||
d="m 17.101562,77.158592 h 2.488282 v 0.941406 h -3.660156 v -5.6875 h 1.171874 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:0.5px;fill:#333333" | |||
id="path338" /> | |||
<path | |||
d="m 25.179687,75.385155 q 0,0.839843 -0.296875,1.472656 -0.296875,0.632812 -0.851562,0.976562 -0.550781,0.34375 -1.265625,0.34375 -0.707031,0 -1.261719,-0.339843 -0.554687,-0.339844 -0.859375,-0.96875 -0.304687,-0.632813 -0.308594,-1.453125 v -0.28125 q 0,-0.839844 0.300782,-1.476563 0.304687,-0.640625 0.855468,-0.980469 0.554688,-0.34375 1.265625,-0.34375 0.710938,0 1.261719,0.34375 0.554688,0.339844 0.855469,0.980469 0.304687,0.636719 0.304687,1.472656 z m -1.1875,-0.257813 q 0,-0.894531 -0.320312,-1.359375 -0.320313,-0.464844 -0.914063,-0.464844 -0.589843,0 -0.910156,0.460938 -0.320312,0.457031 -0.324219,1.34375 v 0.277344 q 0,0.871093 0.320313,1.351562 0.320312,0.480469 0.921875,0.480469 0.589844,0 0.90625,-0.460938 0.316406,-0.464843 0.320312,-1.351562 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:0.5px;fill:#333333" | |||
id="path340" /> | |||
<path | |||
d="m 30.96875,76.459373 0.765625,-4.046875 h 1.167969 l -1.261719,5.6875 h -1.179688 l -0.925781,-3.804687 -0.925781,3.804687 h -1.179688 l -1.261718,-5.6875 h 1.167968 l 0.769532,4.039063 0.9375,-4.039063 h 0.992187 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:0.5px;fill:#333333" | |||
id="path342" /> | |||
</g> | |||
<g | |||
id="g149" | |||
transform="translate(9.5,88)"> | |||
<g | |||
id="g135"> | |||
<g | |||
id="g133" | |||
transform="matrix(0.8,0,0,0.8,1,1)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#f0f" /> --> | |||
<path | |||
style="fill:none;stroke:#333333;stroke-width:1" | |||
inkscape:connector-curvature="0" | |||
id="path129" | |||
d="M 0,4 A 3,4.5 0 0 1 6,4" /> | |||
<path | |||
style="fill:none;stroke:#333333;stroke-width:1" | |||
inkscape:connector-curvature="0" | |||
id="path131" | |||
d="m 6,4 a 3,4.5 0 0 0 6,0" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g141" | |||
transform="translate(0,13)"> | |||
<g | |||
id="g139" | |||
transform="matrix(0.8,0,0,0.8,1,1)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#f0f" /> --> | |||
<path | |||
style="fill:none;stroke:#333333;stroke-width:1" | |||
d="M 0,8 12,0 v 8" | |||
id="polyline137" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g147" | |||
transform="translate(0,26)"> | |||
<g | |||
id="g145" | |||
transform="matrix(0.8,0,0,0.8,1,1)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#f0f" /> --> | |||
<path | |||
style="fill:none;stroke:#333333;stroke-width:1" | |||
d="M 0,4 V 0 h 6 v 8 h 6 V 4" | |||
id="polyline143" /> | |||
</g> | |||
</g> | |||
</g> | |||
<g | |||
id="g169" | |||
transform="translate(31.5,88)"> | |||
<g | |||
id="g155"> | |||
<g | |||
id="g153" | |||
transform="matrix(0.8,0,0,0.8,1,1)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#f0f" /> --> | |||
<path | |||
style="fill:none;stroke:#333333;stroke-width:1" | |||
d="M 0,4 3,0 9,8 12,4" | |||
id="polyline151" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g161" | |||
transform="translate(0,13)"> | |||
<g | |||
id="g159" | |||
transform="matrix(0.8,0,0,0.8,1,1)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#f0f" /> --> | |||
<path | |||
style="fill:none;stroke:#333333;stroke-width:1" | |||
d="M 0,8 V 0 l 12,8" | |||
id="polyline157" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g167" | |||
transform="translate(0,26)"> | |||
<g | |||
id="g165" | |||
transform="matrix(0.8,0,0,0.8,1,1)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#f0f" /> --> | |||
<path | |||
style="fill:none;stroke:#333333;stroke-width:1" | |||
d="M 0,4 V 0 h 3 v 8 h 9 V 4" | |||
id="polyline163" /> | |||
</g> | |||
</g> | |||
</g> | |||
<g | |||
aria-label="OFFSET" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text173"> | |||
<path | |||
d="m 8.1796875,146.28516 q 0,0.83984 -0.296875,1.47265 -0.296875,0.63281 -0.8515625,0.97656 -0.5507813,0.34375 -1.265625,0.34375 -0.7070313,0 -1.2617188,-0.33984 -0.5546874,-0.33984 -0.8593749,-0.96875 -0.3046875,-0.63281 -0.3085938,-1.45312 v -0.28125 q 0,-0.83985 0.3007813,-1.47657 0.3046875,-0.64062 0.8554687,-0.98047 0.5546875,-0.34375 1.265625,-0.34375 0.7109375,0 1.2617187,0.34375 0.5546875,0.33985 0.8554688,0.98047 0.3046875,0.63672 0.3046875,1.47266 z m -1.1875,-0.25782 q 0,-0.89453 -0.3203125,-1.35937 -0.3203125,-0.46485 -0.9140625,-0.46485 -0.5898438,0 -0.9101563,0.46094 -0.3203125,0.45703 -0.3242187,1.34375 v 0.27735 q 0,0.87109 0.3203125,1.35156 0.3203125,0.48047 0.921875,0.48047 0.5898437,0 0.90625,-0.46094 0.3164062,-0.46484 0.3203125,-1.35156 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path350" /> | |||
<path | |||
d="m 14.460938,146.67578 h -2.25 V 149 h -1.171875 v -5.6875 h 3.703125 v 0.94922 h -2.53125 v 1.46875 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path352" /> | |||
<path | |||
d="m 20.851562,146.67578 h -2.25 V 149 h -1.171875 v -5.6875 h 3.703125 v 0.94922 h -2.53125 v 1.46875 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path354" /> | |||
<path | |||
d="m 26.769531,147.50781 q 0,-0.33203 -0.234375,-0.50781 -0.234375,-0.17969 -0.84375,-0.375 -0.609375,-0.19922 -0.964844,-0.39063 -0.96875,-0.52343 -0.96875,-1.41015 0,-0.46094 0.257813,-0.82031 0.261719,-0.36329 0.746094,-0.56641 0.488281,-0.20313 1.09375,-0.20313 0.609375,0 1.085937,0.22266 0.476563,0.21875 0.738281,0.62109 0.265625,0.40235 0.265625,0.91407 h -1.171875 q 0,-0.39063 -0.246093,-0.60547 -0.246094,-0.21875 -0.691407,-0.21875 -0.429687,0 -0.667968,0.18359 -0.238282,0.17969 -0.238282,0.47656 0,0.27735 0.277344,0.46485 0.28125,0.1875 0.824219,0.35156 1,0.30078 1.457031,0.74609 0.457031,0.44532 0.457031,1.10938 0,0.73828 -0.558593,1.16016 -0.558594,0.41796 -1.503907,0.41796 -0.65625,0 -1.195312,-0.23828 -0.539063,-0.24218 -0.824219,-0.66015 -0.28125,-0.41797 -0.28125,-0.96875 h 1.175781 q 0,0.9414 1.125,0.9414 0.417969,0 0.652344,-0.16797 0.234375,-0.17187 0.234375,-0.47656 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path356" /> | |||
<path | |||
d="m 34.164062,146.53516 h -2.25 v 1.52343 h 2.640625 V 149 h -3.8125 v -5.6875 h 3.804688 v 0.94922 h -2.632813 v 1.35547 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path358" /> | |||
<path | |||
d="M 41.601562,144.26172 H 39.859375 V 149 H 38.6875 v -4.73828 h -1.71875 v -0.94922 h 4.632812 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path360" /> | |||
</g> | |||
<g | |||
id="use175" | |||
transform="translate(2.2,146.5)"> | |||
<g | |||
id="g279" | |||
transform="translate(20,20)"> | |||
<g | |||
id="g269" | |||
transform="rotate(-90,-5,-5)"> | |||
<path | |||
style="stroke:#333333;stroke-width:1" | |||
d="M 0,0 H 4" | |||
id="polyline267" /> | |||
</g> | |||
<path | |||
id="path271" | |||
transform="rotate(20)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 1 12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path273" | |||
transform="rotate(43)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 1 12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path275" | |||
transform="rotate(-20)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 0 -12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path277" | |||
transform="rotate(-43)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 0 -12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
</g> | |||
</g> | |||
<g | |||
aria-label="SCALE" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text179"> | |||
<path | |||
d="m 10.057031,188.50781 q 0,-0.33203 -0.2343748,-0.50781 -0.234375,-0.17969 -0.84375,-0.375 -0.609375,-0.19922 -0.9648438,-0.39063 -0.96875,-0.52343 -0.96875,-1.41015 0,-0.46094 0.2578125,-0.82031 0.2617188,-0.36329 0.7460938,-0.56641 0.4882812,-0.20313 1.09375,-0.20313 0.609375,0 1.0859373,0.22266 0.476563,0.21875 0.738281,0.62109 0.265625,0.40235 0.265625,0.91407 h -1.171875 q 0,-0.39063 -0.2460933,-0.60547 -0.2460938,-0.21875 -0.6914063,-0.21875 -0.4296875,0 -0.6679687,0.18359 -0.2382813,0.17969 -0.2382813,0.47656 0,0.27735 0.2773438,0.46485 0.28125,0.1875 0.8242187,0.35156 1.0000001,0.30078 1.4570311,0.74609 0.457031,0.44532 0.457031,1.10938 0,0.73828 -0.558593,1.16016 -0.558594,0.41796 -1.5039066,0.41796 -0.65625,0 -1.1953125,-0.23828 -0.5390625,-0.24218 -0.8242187,-0.66015 -0.28125,-0.41797 -0.28125,-0.96875 h 1.1757812 q 0,0.9414 1.125,0.9414 0.4179688,0 0.6523438,-0.16797 0.2343748,-0.17187 0.2343748,-0.47656 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path364" /> | |||
<path | |||
d="m 18.494531,188.10547 q -0.06641,0.91797 -0.679687,1.44531 -0.609375,0.52734 -1.609375,0.52734 -1.09375,0 -1.722657,-0.73437 -0.625,-0.73828 -0.625,-2.02344 v -0.34765 q 0,-0.82032 0.289063,-1.44532 0.289062,-0.625 0.824219,-0.95703 0.539062,-0.33594 1.25,-0.33594 0.984375,0 1.585937,0.52735 0.601563,0.52734 0.695313,1.48047 h -1.171875 q -0.04297,-0.55078 -0.308594,-0.79688 -0.261719,-0.25 -0.800781,-0.25 -0.585938,0 -0.878907,0.42188 -0.289062,0.41797 -0.296875,1.30078 v 0.42969 q 0,0.92187 0.277344,1.34765 0.28125,0.42578 0.882813,0.42578 0.542968,0 0.808593,-0.24609 0.269532,-0.25 0.308594,-0.76953 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path366" /> | |||
<path | |||
d="M 24.475,188.82812 H 22.420312 L 22.029687,190 h -1.246093 l 2.117187,-5.6875 h 1.085938 L 26.115625,190 h -1.246094 z m -1.738281,-0.94921 h 1.421875 L 23.44375,185.75 Z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path368" /> | |||
<path | |||
d="m 29.826562,189.05859 h 2.488282 V 190 h -3.660157 v -5.6875 h 1.171875 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path370" /> | |||
<path | |||
d="m 38.404687,187.53516 h -2.25 v 1.52343 h 2.640625 V 190 h -3.8125 v -5.6875 H 38.7875 v 0.94922 h -2.632813 v 1.35547 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path372" /> | |||
</g> | |||
<g | |||
id="use181" | |||
transform="translate(2.2,187.5)"> | |||
<g | |||
id="g263" | |||
transform="translate(20,20)"> | |||
<g | |||
id="g253" | |||
transform="rotate(60,-5,8.660254)"> | |||
<path | |||
style="stroke:#333333;stroke-width:1" | |||
d="M 0,0 H 4" | |||
id="polyline251" /> | |||
</g> | |||
<path | |||
id="path255" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 1 12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path257" | |||
transform="rotate(43)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 1 12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path259" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 0 -12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path261" | |||
transform="rotate(-43)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 0 -12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g193" | |||
transform="translate(5.5,228)"> | |||
<path | |||
transform="translate(0,63)" | |||
style="fill:#fafafa" | |||
d="M 0,0 H 34 V 10 H 0 Z" | |||
id="rect185" /> | |||
<path | |||
style="fill:#fafafa" | |||
d="m 5,0 h 24 c 2.77,0 5,2.23 5,5 v 60 c 0,2.77 -2.23,5 -5,5 H 5 C 2.23,70 0,67.77 0,65 V 5 C 0,2.23 2.23,0 5,0 Z" | |||
id="rect187" /> | |||
<g | |||
aria-label="V/OCT" | |||
transform="translate(3.5,35)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text189"> | |||
<path | |||
d="m 2.1744791,-1.1751302 1.0742187,-3.564453 H 4.3359374 L 2.6855468,0 H 1.6666666 L 0.02278646,-4.7395832 H 1.1067708 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path378" /> | |||
<path | |||
d="M 7.0195311,0.40690103 H 6.3196613 L 8.0644529,-4.7395832 h 0.6998698 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path380" /> | |||
<path | |||
d="m 15.165364,-2.2623697 q 0,0.6998697 -0.247396,1.2272135 -0.247395,0.52734371 -0.709635,0.81380204 -0.458984,0.28645833 -1.054688,0.28645833 -0.589192,0 -1.051432,-0.28320312 -0.462239,-0.28320312 -0.716146,-0.80729165 -0.253906,-0.5273437 -0.257161,-1.2109375 v -0.234375 q 0,-0.6998697 0.250651,-1.2304687 0.253906,-0.5338541 0.712891,-0.8170573 0.462239,-0.2864583 1.054687,-0.2864583 0.592448,0 1.051432,0.2864583 0.46224,0.2832032 0.712891,0.8170573 0.253906,0.530599 0.253906,1.2272135 z m -0.989583,-0.2148438 q 0,-0.7454427 -0.266927,-1.1328125 -0.266927,-0.3873697 -0.761719,-0.3873697 -0.491536,0 -0.758463,0.3841145 -0.266928,0.3808594 -0.270183,1.1197917 v 0.2311198 q 0,0.7259114 0.266927,1.126302 0.266927,0.40039063 0.768229,0.40039063 0.491537,0 0.755209,-0.38411453 0.263672,-0.3873698 0.266927,-1.1263021 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path382" /> | |||
<path | |||
d="m 21.602212,-1.578776 q -0.05534,0.76497394 -0.566406,1.20442705 -0.507813,0.43945312 -1.341146,0.43945312 -0.911458,0 -1.435547,-0.61197916 Q 17.73828,-1.1621093 17.73828,-2.2330729 v -0.2897135 q 0,-0.6835937 0.240885,-1.2044271 0.240886,-0.5208333 0.686849,-0.797526 0.449219,-0.2799479 1.041667,-0.2799479 0.820312,0 1.321615,0.4394531 0.501302,0.4394531 0.579427,1.233724 H 20.63216 q -0.03581,-0.4589844 -0.257161,-0.6640625 -0.218099,-0.2083334 -0.667318,-0.2083334 -0.488281,0 -0.732422,0.3515625 -0.240885,0.3483073 -0.247396,1.0839844 v 0.3580729 q 0,0.7682291 0.23112,1.1230468 0.234375,0.35481774 0.735677,0.35481774 0.452474,0 0.673828,-0.20507812 0.22461,-0.20833332 0.257162,-0.64127602 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path384" /> | |||
<path | |||
d="M 27.720051,-3.9485676 H 26.268228 V 0 h -0.976562 v -3.9485676 h -1.432292 v -0.7910156 h 3.860677 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path386" /> | |||
</g> | |||
<g | |||
aria-label="RESET" | |||
transform="translate(3.5,70)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text191"> | |||
<path | |||
d="M 2.1777343,-1.735026 H 1.3997395 V 0 H 0.42317707 V -4.7395832 H 2.1842447 q 0.8398438,0 1.2955729,0.3743489 0.4557292,0.374349 0.4557292,1.0579427 0,0.485026 -0.2115886,0.8105469 -0.2083333,0.3222656 -0.6347656,0.5143229 l 1.0253906,1.93684888 V 0 H 3.0664062 Z M 1.3997395,-2.5260416 h 0.7877604 q 0.3678386,0 0.5696615,-0.1855469 0.2018229,-0.1888021 0.2018229,-0.5175781 0,-0.3352864 -0.1920573,-0.5273437 Q 2.5781249,-3.9485676 2.1842447,-3.9485676 H 1.3997395 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path389" /> | |||
<path | |||
d="m 9.532552,-2.0540364 h -1.875 v 1.26953121 H 9.8580728 V 0 H 6.6809896 v -4.7395832 h 3.1705728 v 0.7910156 H 7.657552 v 1.1295573 h 1.875 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path391" /> | |||
<path | |||
d="m 14.888672,-1.2434896 q 0,-0.2766927 -0.195313,-0.423177 -0.195312,-0.1497396 -0.703125,-0.3125 -0.507812,-0.1660156 -0.804036,-0.3255208 -0.807292,-0.436198 -0.807292,-1.1751302 0,-0.3841146 0.214844,-0.6835938 0.218099,-0.3027343 0.621745,-0.4720052 0.406901,-0.1692708 0.911458,-0.1692708 0.507813,0 0.904948,0.1855469 0.397135,0.1822916 0.615234,0.5175781 0.221354,0.3352864 0.221354,0.7617187 h -0.976562 q 0,-0.3255208 -0.205078,-0.5045573 -0.205078,-0.1822916 -0.576172,-0.1822916 -0.358073,0 -0.556641,0.1529948 -0.198567,0.1497396 -0.198567,0.3971354 0,0.2311198 0.23112,0.3873698 0.234374,0.15625 0.686848,0.2929687 0.833334,0.250651 1.214193,0.6217448 0.380859,0.3710937 0.380859,0.9244791 0,0.61523439 -0.465494,0.96679688 -0.465495,0.34830729 -1.253255,0.34830729 -0.546875,0 -0.996094,-0.19856771 Q 12.704427,-0.33528645 12.466797,-0.68359373 12.232422,-1.031901 12.232422,-1.4908854 h 0.979818 q 0,0.78450521 0.9375,0.78450521 0.348307,0 0.543619,-0.13997396 0.195313,-0.14322916 0.195313,-0.39713545 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path393" /> | |||
<path | |||
d="m 21.384115,-2.0540364 h -1.875 v 1.26953121 h 2.20052 V 0 h -3.177083 v -4.7395832 h 3.170573 v 0.7910156 h -2.19401 v 1.1295573 h 1.875 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path395" /> | |||
<path | |||
d="M 27.915364,-3.9485676 H 26.463541 V 0 h -0.976563 v -3.9485676 h -1.432291 v -0.7910156 h 3.860677 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path397" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g201" | |||
transform="translate(5.5,304)"> | |||
<path | |||
transform="translate(0,-3)" | |||
style="fill:#bbbbbb" | |||
d="M 0,0 H 34 V 10 H 0 Z" | |||
id="rect195" /> | |||
<path | |||
style="fill:#bbbbbb" | |||
d="m 5,0 h 24 c 2.77,0 5,2.23 5,5 v 25 c 0,2.77 -2.23,5 -5,5 H 5 C 2.23,35 0,32.77 0,30 V 5 C 0,2.23 2.23,0 5,0 Z" | |||
id="rect197" /> | |||
<g | |||
aria-label="OUT" | |||
transform="translate(8.3,32)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text199"> | |||
<path | |||
d="m 4.3164061,-2.2623697 q 0,0.6998697 -0.2473958,1.2272135 -0.2473958,0.52734371 -0.7096354,0.81380204 -0.4589843,0.28645833 -1.0546875,0.28645833 -0.5891926,0 -1.0514322,-0.28320312 Q 0.79101561,-0.50130207 0.53710936,-1.0253906 0.28320312,-1.5527343 0.27994791,-2.2363281 v -0.234375 q 0,-0.6998697 0.25065104,-1.2304687 0.25390624,-0.5338541 0.71289065,-0.8170573 0.4622395,-0.2864583 1.0546874,-0.2864583 0.5924479,0 1.0514323,0.2864583 0.4622396,0.2832032 0.7128906,0.8170573 0.2539062,0.530599 0.2539062,1.2272135 z M 3.3268228,-2.4772135 q 0,-0.7454427 -0.266927,-1.1328125 -0.2669271,-0.3873697 -0.7617188,-0.3873697 -0.4915364,0 -0.7584635,0.3841145 -0.2669271,0.3808594 -0.2701823,1.1197917 v 0.2311198 q 0,0.7259114 0.2669271,1.126302 0.2669271,0.40039063 0.7682291,0.40039063 0.4915365,0 0.7552084,-0.38411453 0.2636718,-0.3873698 0.266927,-1.1263021 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path402" /> | |||
<path | |||
d="m 10.619792,-4.7395832 v 3.1217447 q 0,0.77799477 -0.488282,1.23046872 -0.4850257,0.45247395 -1.3281246,0.45247395 -0.8300781,0 -1.3183594,-0.43945312 Q 6.9967448,-0.81380206 6.9869792,-1.5820312 v -3.157552 h 0.9765624 v 3.1282551 q 0,0.4654948 0.2213542,0.68033854 0.2246094,0.21158854 0.6184896,0.21158854 0.8235677,0 0.8365885,-0.86588538 v -3.1542968 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path404" /> | |||
<path | |||
d="M 16.988281,-3.9485676 H 15.536458 V 0 h -0.976563 v -3.9485676 h -1.432291 v -0.7910156 h 3.860677 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path406" /> | |||
</g> | |||
</g> | |||
</svg> |
@@ -11,11 +11,11 @@ | |||
width="45" | |||
height="380" | |||
viewBox="0 0 45 380" | |||
id="svg205" | |||
id="svg211" | |||
sodipodi:docname="svg_render_tmp.svg" | |||
inkscape:version="0.92.2 5c3e80d, 2017-08-06"> | |||
<metadata | |||
id="metadata209"> | |||
id="metadata215"> | |||
<rdf:RDF> | |||
<cc:Work | |||
rdf:about=""> | |||
@@ -36,7 +36,7 @@ | |||
inkscape:pageshadow="2" | |||
inkscape:window-width="468" | |||
inkscape:window-height="449" | |||
id="namedview207" | |||
id="namedview213" | |||
showgrid="false" | |||
inkscape:zoom="0.62105263" | |||
inkscape:cx="22.5" | |||
@@ -44,7 +44,7 @@ | |||
inkscape:window-x="0" | |||
inkscape:window-y="0" | |||
inkscape:window-maximized="0" | |||
inkscape:current-layer="svg205" /> | |||
inkscape:current-layer="svg211" /> | |||
<style | |||
id="style2"> | |||
text { | |||
@@ -62,7 +62,7 @@ | |||
} | |||
</style> | |||
<defs | |||
id="defs101"> | |||
id="defs107"> | |||
<symbol | |||
id="knob-medium" | |||
viewBox="0 0 26px 26px"> | |||
@@ -118,7 +118,7 @@ | |||
viewBox="0 0 45px 45px"> | |||
<g | |||
transform="translate(22.5 22.5)" | |||
id="g46"> | |||
id="g52"> | |||
<polyline | |||
points="0,0 3.5,0" | |||
stroke-width="0.7" | |||
@@ -132,7 +132,7 @@ | |||
transform="rotate(60) translate(15 0)" | |||
id="polyline24" /> | |||
<g | |||
transform="rotate(-148.42) translate(14 0)" | |||
transform="rotate(-202) translate(14 0)" | |||
id="g30"> | |||
<polyline | |||
points="0,0 2.5,0" | |||
@@ -142,11 +142,11 @@ | |||
id="polyline26" /> | |||
<text | |||
font-size="5.0pt" | |||
transform="translate(5 0) rotate(148.42) translate(-2.2 2.3)" | |||
id="text28">1</text> | |||
transform="translate(5 0) rotate(202) translate(3 9.5) rotate(-90)" | |||
id="text28">0.2</text> | |||
</g> | |||
<g | |||
transform="rotate(-55.39) translate(14 0)" | |||
transform="rotate(-48.68) translate(14 0)" | |||
id="g36"> | |||
<polyline | |||
points="0,0 2.5,0" | |||
@@ -156,11 +156,11 @@ | |||
id="polyline32" /> | |||
<text | |||
font-size="5.0pt" | |||
transform="translate(5 0) rotate(55.39) translate(-1.0 2.3)" | |||
id="text34">0V</text> | |||
transform="translate(5 0) rotate(48.68) translate(-1 2.3)" | |||
id="text34">20</text> | |||
</g> | |||
<g | |||
transform="rotate(27.98) translate(14 0)" | |||
transform="rotate(-124.62) translate(14 0)" | |||
id="g42"> | |||
<polyline | |||
points="0,0 2.5,0" | |||
@@ -168,15 +168,29 @@ | |||
stroke="#333" | |||
transform="translate(0 0)" | |||
id="polyline38" /> | |||
<text | |||
font-size="5.0pt" | |||
transform="translate(5 0) rotate(124.62) translate(-3.0 2.3)" | |||
id="text40">2</text> | |||
</g> | |||
<g | |||
transform="rotate(27.98) translate(14 0)" | |||
id="g48"> | |||
<polyline | |||
points="0,0 2.5,0" | |||
stroke-width="0.3" | |||
stroke="#333" | |||
transform="translate(0 0)" | |||
id="polyline44" /> | |||
<text | |||
font-size="5.0pt" | |||
transform="translate(5 0) rotate(-27.98) translate(-2.3 -0.5) rotate(90)" | |||
id="text40">200</text> | |||
id="text46">200</text> | |||
</g> | |||
<text | |||
font-size="5.0pt" | |||
transform="translate(-4.5 22)" | |||
id="text44">HZ</text> | |||
id="text50">HZ</text> | |||
</g> | |||
</symbol> | |||
<symbol | |||
@@ -184,15 +198,15 @@ | |||
viewBox="0 0 40px 40px"> | |||
<g | |||
transform="translate(20 20)" | |||
id="g61"> | |||
id="g67"> | |||
<g | |||
transform="rotate(60) translate(10 0)" | |||
id="g51"> | |||
id="g57"> | |||
<polyline | |||
points="0,0 4,0" | |||
stroke-width="1" | |||
stroke="#333" | |||
id="polyline49" /> | |||
id="polyline55" /> | |||
</g> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" | |||
@@ -201,7 +215,7 @@ | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(0)" | |||
id="path53" /> | |||
id="path59" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" | |||
stroke="#333" | |||
@@ -209,7 +223,7 @@ | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(43)" | |||
id="path55" /> | |||
id="path61" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" | |||
stroke="#333" | |||
@@ -217,7 +231,7 @@ | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(0)" | |||
id="path57" /> | |||
id="path63" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" | |||
stroke="#333" | |||
@@ -225,7 +239,7 @@ | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(-43)" | |||
id="path59" /> | |||
id="path65" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
@@ -233,15 +247,15 @@ | |||
viewBox="0 0 40px 40px"> | |||
<g | |||
transform="translate(20 20)" | |||
id="g76"> | |||
id="g82"> | |||
<g | |||
transform="rotate(-90) translate(10 0)" | |||
id="g66"> | |||
id="g72"> | |||
<polyline | |||
points="0,0 4,0" | |||
stroke-width="1" | |||
stroke="#333" | |||
id="polyline64" /> | |||
id="polyline70" /> | |||
</g> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" | |||
@@ -250,7 +264,7 @@ | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(20)" | |||
id="path68" /> | |||
id="path74" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" | |||
stroke="#333" | |||
@@ -258,7 +272,7 @@ | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(43)" | |||
id="path70" /> | |||
id="path76" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" | |||
stroke="#333" | |||
@@ -266,7 +280,7 @@ | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(-20)" | |||
id="path72" /> | |||
id="path78" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" | |||
stroke="#333" | |||
@@ -274,7 +288,7 @@ | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(-43)" | |||
id="path74" /> | |||
id="path80" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
@@ -282,7 +296,7 @@ | |||
viewBox="0 0 24px 24px"> | |||
<g | |||
transform="translate(12 12)" | |||
id="g83"> | |||
id="g89"> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
@@ -290,7 +304,7 @@ | |||
stroke-width="1" | |||
stroke="#0f0" | |||
fill="#0f0" | |||
id="circle79" /> | |||
id="circle85" /> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
@@ -298,7 +312,7 @@ | |||
stroke-width="3" | |||
stroke="#0f0" | |||
fill="none" | |||
id="circle81" /> | |||
id="circle87" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
@@ -306,7 +320,7 @@ | |||
viewBox="0 0 24px 24px"> | |||
<g | |||
transform="translate(12 12)" | |||
id="g90"> | |||
id="g96"> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
@@ -314,7 +328,7 @@ | |||
stroke-width="1" | |||
stroke="#f00" | |||
fill="#f00" | |||
id="circle86" /> | |||
id="circle92" /> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
@@ -322,7 +336,7 @@ | |||
stroke-width="3" | |||
stroke="#f00" | |||
fill="none" | |||
id="circle88" /> | |||
id="circle94" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
@@ -330,13 +344,13 @@ | |||
viewBox="0 0 9px 9px"> | |||
<g | |||
transform="translate(4.5 4.5)" | |||
id="g95"> | |||
id="g101"> | |||
<circle | |||
r="4" | |||
stroke-width="1" | |||
stroke="#00f" | |||
fill="#f00" | |||
id="circle93" /> | |||
id="circle99" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
@@ -346,346 +360,372 @@ | |||
width="6.4" | |||
height="6.4" | |||
fill="#0f0" | |||
id="rect98" /> | |||
id="rect104" /> | |||
</symbol> | |||
</defs> | |||
<path | |||
style="fill:#dddddd" | |||
d="M 0,0 H 45 V 380 H 0 Z" | |||
id="rect103" /> | |||
id="rect109" /> | |||
<path | |||
style="fill:none;stroke:#e4e4e4;stroke-width:0.5" | |||
d="M 1,1 H 44 V 379 H 1 V 1" | |||
id="polyline105" /> | |||
id="polyline111" /> | |||
<path | |||
style="fill:none;stroke:#ebebeb;stroke-width:0.80000001" | |||
d="m 0.5,0.5 h 44 v 379 H 0.5 V 0.5" | |||
id="polyline107" /> | |||
id="polyline113" /> | |||
<path | |||
style="fill:none;stroke:#f2f2f2;stroke-width:1" | |||
d="M 0,0 H 45 V 380 H 0 V 0" | |||
id="polyline109" /> | |||
id="polyline115" /> | |||
<g | |||
aria-label="LLFO" | |||
transform="rotate(-90)" | |||
style="font-weight:normal;font-size:9.33333302px;font-family:Comfortaa, sans-serif;letter-spacing:2.5px;fill:#333333" | |||
id="text111"> | |||
id="text117"> | |||
<path | |||
d="m -374.70267,13 q -0.14933,0 -0.26133,-0.102667 -0.10267,-0.112 -0.10267,-0.261333 V 6.0746669 q 0,-0.1493333 0.10267,-0.252 0.112,-0.112 0.26133,-0.112 0.15867,0 0.26134,0.1026667 0.10266,0.1026666 0.10266,0.2613333 v 6.2346661 h 3.64934 q 0.15866,0 0.26133,0.102667 0.10267,0.09333 0.10267,0.242667 0,0.149333 -0.10267,0.252 Q -370.53067,13 -370.68933,13 Z" | |||
style="font-weight:normal;font-size:9.33333302px;font-family:Comfortaa, sans-serif;letter-spacing:2.5px;fill:#333333" | |||
id="path413" /> | |||
id="path433" /> | |||
<path | |||
d="m -366.29642,13 q -0.14933,0 -0.26133,-0.102667 -0.10267,-0.112 -0.10267,-0.261333 V 6.0746669 q 0,-0.1493333 0.10267,-0.252 0.112,-0.112 0.26133,-0.112 0.15867,0 0.26134,0.1026667 0.10266,0.1026666 0.10266,0.2613333 v 6.2346661 h 3.64934 q 0.15866,0 0.26133,0.102667 0.10267,0.09333 0.10267,0.242667 0,0.149333 -0.10267,0.252 Q -362.12442,13 -362.28308,13 Z" | |||
style="font-weight:normal;font-size:9.33333302px;font-family:Comfortaa, sans-serif;letter-spacing:2.5px;fill:#333333" | |||
id="path415" /> | |||
id="path435" /> | |||
<path | |||
d="m -358.46883,13 q -0.14934,0 -0.26134,-0.102667 -0.10266,-0.112 -0.10266,-0.261333 V 6.0746669 q 0,-0.1586667 0.10266,-0.2613333 0.112,-0.1026667 0.26134,-0.1026667 h 4.37733 q 0.15867,0 0.26133,0.1026667 0.10267,0.1026666 0.10267,0.252 0,0.1493333 -0.10267,0.252 -0.10266,0.093333 -0.26133,0.093333 h -4.01333 v 2.5759999 h 2.92133 q 0.15867,0 0.26133,0.1026667 0.10267,0.093333 0.10267,0.252 0,0.1493333 -0.10267,0.2519999 -0.10266,0.1026667 -0.26133,0.1026667 h -2.92133 V 12.636 q 0,0.149333 -0.10267,0.261333 Q -358.31017,13 -358.46883,13 Z" | |||
style="font-weight:normal;font-size:9.33333302px;font-family:Comfortaa, sans-serif;letter-spacing:2.5px;fill:#333333" | |||
id="path417" /> | |||
id="path437" /> | |||
<path | |||
d="m -346.5515,13.093333 q -1.064,0 -1.91333,-0.485333 -0.84934,-0.485333 -1.33467,-1.334667 -0.476,-0.858666 -0.476,-1.9226662 0,-1.064 0.476,-1.9133333 0.48533,-0.8493333 1.33467,-1.3346666 0.84933,-0.4853333 1.91333,-0.4853333 1.05467,0 1.904,0.4853333 0.85867,0.4853333 1.33467,1.3346666 0.48533,0.8493333 0.48533,1.9133333 0,1.0640002 -0.48533,1.9226662 -0.476,0.849334 -1.33467,1.334667 -0.84933,0.485333 -1.904,0.485333 z m 0,-0.690666 q 0.84933,0 1.53067,-0.401334 0.69066,-0.401333 1.08266,-1.092 0.392,-0.7 0.392,-1.5586662 0,-0.8493333 -0.392,-1.54 -0.392,-0.6999999 -1.08266,-1.1013333 -0.68134,-0.4013333 -1.53067,-0.4013333 -0.85867,0 -1.54933,0.4013333 -0.68134,0.4013334 -1.07334,1.1013333 -0.392,0.6906667 -0.392,1.54 0,0.8586662 0.392,1.5586662 0.392,0.690667 1.07334,1.092 0.69066,0.401334 1.54933,0.401334 z" | |||
style="font-weight:normal;font-size:9.33333302px;font-family:Comfortaa, sans-serif;letter-spacing:2.5px;fill:#333333" | |||
id="path419" /> | |||
id="path439" /> | |||
</g> | |||
<g | |||
id="g117" | |||
id="g123" | |||
transform="rotate(-90,200.5,175.5)"> | |||
<g | |||
aria-label="BGA" | |||
style="font-weight:bold;font-size:9.33333302px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text113"> | |||
id="text119"> | |||
<path | |||
d="m 7.2096352,-1.4355468 q 0,0.21875 -0.077474,0.469401 -0.072917,0.25065103 -0.2460937,0.46484373 -0.1686198,0.2141927 -0.4420573,0.36002603 Q 6.1705727,0 5.7740883,0 H 1.2760416 Q 1.1484375,0 1.0390625,-0.04557292 0.92968747,-0.09114583 0.84765622,-0.16861979 q -0.077474,-0.0820312 -0.12304687,-0.19140624 -0.0455729,-0.109375 -0.0455729,-0.23697916 V -5.9381508 q 0,-0.1230469 0.0455729,-0.2324219 0.0455729,-0.109375 0.12304687,-0.1914062 0.0820313,-0.082031 0.19140628,-0.1276042 0.109375,-0.045573 0.2369791,-0.045573 h 3.9648436 q 0.21875,0 0.4694011,0.077474 0.250651,0.077474 0.4648437,0.2506511 0.21875,0.1686197 0.360026,0.4420572 0.1458334,0.2734375 0.1458334,0.6699219 v 0.2233073 q 0,0.3144531 -0.1048177,0.6790364 -0.1048178,0.360026 -0.3372396,0.6835937 0.2005208,0.1230469 0.3736979,0.296224 0.1777344,0.1731771 0.3098958,0.4010416 0.1321615,0.2278646 0.2096354,0.514974 0.077474,0.2871093 0.077474,0.6334635 z M 6.0247394,-1.6634114 q 0,-0.2324219 -0.072917,-0.4147135 Q 5.878906,-2.2649739 5.7467446,-2.3971353 5.6145831,-2.5292968 5.4277342,-2.5976562 5.2408852,-2.6705728 5.0084634,-2.6705728 H 2.3378905 v -1.1940104 h 2.1373698 q 0.2324218,0 0.4192708,-0.068359 0.1868489,-0.072917 0.3190104,-0.2050781 0.1321614,-0.1321614 0.2005208,-0.3144531 0.072917,-0.186849 0.072917,-0.4192708 v -0.2233073 q 0,-0.2552083 -0.2460938,-0.2552083 h -3.376953 v 4.1653644 h 3.9101561 q 0.031901,0 0.077474,-0.00456 0.045573,-0.00456 0.082031,-0.027344 0.036458,-0.022787 0.063802,-0.077474 0.027344,-0.054687 0.027344,-0.1503906 z" | |||
style="font-weight:bold;font-size:9.33333302px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path422" /> | |||
id="path442" /> | |||
<path | |||
d="m 16.683594,-0.59700519 q 0,0.12760416 -0.04557,0.23697916 -0.04557,0.109375 -0.127605,0.19140624 -0.07747,0.07747396 -0.186849,0.12304687 Q 16.214192,0 16.086588,0 h -4.274739 q -0.164063,0 -0.355469,-0.03645833 -0.186849,-0.04101563 -0.373698,-0.12304687 -0.182291,-0.0820313 -0.350911,-0.20963541 -0.16862,-0.13216146 -0.300781,-0.31445312 -0.127605,-0.18684895 -0.205079,-0.42838537 -0.07747,-0.2460938 -0.07747,-0.5514323 v -3.2083332 q 0,-0.1640625 0.03646,-0.3509115 0.04101,-0.1914062 0.123047,-0.3736979 0.08203,-0.1868489 0.214192,-0.3554687 0.132162,-0.1686198 0.314453,-0.296224 0.186849,-0.1321614 0.428386,-0.2096354 0.241536,-0.077474 0.546875,-0.077474 h 4.817057 v 1.1848958 h -4.817057 q -0.232422,0 -0.355469,0.1230468 -0.123047,0.1230469 -0.123047,0.3645834 v 3.1992186 q 0,0.2278646 0.123047,0.3554687 0.127604,0.1230469 0.355469,0.1230469 h 3.686849 v -1.485677 h -3.153646 v -1.1940104 h 3.741536 q 0.127604,0 0.236979,0.05013 0.109375,0.045573 0.186849,0.1276042 0.08203,0.082031 0.127605,0.1914062 0.04557,0.1048177 0.04557,0.2278646 z" | |||
style="font-weight:bold;font-size:9.33333302px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path424" /> | |||
id="path444" /> | |||
<path | |||
d="M 26.339842,0 H 25.154946 V -1.6041666 H 20.989582 V 0 h -1.184896 v -3.267578 q 0,-0.7154948 0.246094,-1.3170573 0.246094,-0.6015624 0.683594,-1.0345051 0.4375,-0.4329427 1.034505,-0.6744792 0.597005,-0.2415364 1.303385,-0.2415364 h 2.670573 q 0.123047,0 0.232422,0.045573 0.109375,0.045573 0.191406,0.1276042 0.08203,0.082031 0.127604,0.1914062 0.04557,0.109375 0.04557,0.2324219 z m -5.35026,-2.7890624 h 4.165364 v -2.5611978 h -2.082682 q -0.05469,0 -0.232422,0.018229 -0.173177,0.013672 -0.405599,0.077474 -0.227864,0.063802 -0.483072,0.1959635 -0.255209,0.1321615 -0.469402,0.3645833 -0.214192,0.2324219 -0.355468,0.5833334 -0.136719,0.3463541 -0.136719,0.8430989 z" | |||
style="font-weight:bold;font-size:9.33333302px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path426" /> | |||
id="path446" /> | |||
</g> | |||
<path | |||
transform="translate(11.5,-5)" | |||
style="fill:#dddddd" | |||
d="M 0,0 H 3 V 3 H 0 Z" | |||
id="rect115" /> | |||
id="rect121" /> | |||
</g> | |||
<!-- <polyline points="0,0 0,380" stroke="#0f0" stroke-width="1" fill="none" transform="translate(22.5 0)" /> --> | |||
<g | |||
id="use121" | |||
id="use127" | |||
transform="translate(0,17.5)"> | |||
<g | |||
id="g307" | |||
id="g319" | |||
transform="translate(22.5,22.5)"> | |||
<path | |||
transform="rotate(120,-7.5,4.330127)" | |||
style="stroke:#333333;stroke-width:0.69999999" | |||
d="M 0,0 H 3.5" | |||
id="polyline283" /> | |||
id="polyline289" /> | |||
<path | |||
transform="rotate(60,-7.5,12.990381)" | |||
style="stroke:#333333;stroke-width:0.69999999" | |||
d="M 0,0 H 3.5" | |||
id="polyline285" /> | |||
id="polyline291" /> | |||
<g | |||
id="g291" | |||
transform="rotate(-148.42,-7,-1.9794808)"> | |||
id="g297" | |||
transform="rotate(158,-7,1.3606622)"> | |||
<path | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline287" /> | |||
id="polyline293" /> | |||
<g | |||
aria-label="1" | |||
transform="rotate(148.42,3.2747996,-0.75410383)" | |||
aria-label="0.2" | |||
transform="rotate(112,6.2382372,-3.0176442)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text289"> | |||
id="text295"> | |||
<path | |||
d="m 3.5123697,-1.9596354 q 0,0.98307292 -0.406901,1.50390624 -0.4069011,0.52083333 -1.1914062,0.52083333 -0.7747396,0 -1.18489585,-0.5110677 -0.41015624,-0.5110677 -0.41992187,-1.46484367 v -0.8723959 q 0,-0.9928385 0.41015624,-1.5071614 0.41341148,-0.5143229 1.18815098,-0.5143229 0.7747396,0 1.1848958,0.5110677 0.4101563,0.5078125 0.4199219,1.4615885 z M 2.5716145,-2.9166666 q 0,-0.5891927 -0.1627604,-0.8561198 -0.1595052,-0.2701823 -0.5013021,-0.2701823 -0.3320312,0 -0.4915364,0.2571615 Q 1.2597656,-3.531901 1.25,-2.9882812 v 1.1523437 q 0,0.5794271 0.15625,0.86263023 0.1595052,0.27994791 0.5078125,0.27994791 0.345052,0 0.4980468,-0.27018228 0.1529948,-0.27018226 0.1595052,-0.82682286 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path326" /> | |||
<path | |||
d="M 2.6074218,0 H 1.6666666 v -3.626302 l -1.12304682,0.3483073 v -0.764974 L 2.5065104,-4.7460936 h 0.1009114 z" | |||
d="m 4.2382812,-0.46223957 q 0,-0.22460937 0.1497396,-0.36458333 0.1529948,-0.13997395 0.3808594,-0.13997395 0.2311198,0 0.3808594,0.13997395 0.1529947,0.13997396 0.1529947,0.36458333 0,0.22135416 -0.1497395,0.36132811 -0.1497396,0.13671875 -0.3841146,0.13671875 -0.2311198,0 -0.3808594,-0.13671875 -0.1497396,-0.13997395 -0.1497396,-0.36132811 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path314" /> | |||
id="path328" /> | |||
<path | |||
d="M 9.3391925,0 H 6.0904946 V -0.64453123 L 7.6236977,-2.2786458 q 0.3157552,-0.3450521 0.4654948,-0.6022135 0.1529948,-0.2571615 0.1529948,-0.4882812 0,-0.3157552 -0.1595052,-0.4947917 -0.1595052,-0.1822917 -0.4557292,-0.1822917 -0.3190104,0 -0.5045573,0.2213542 -0.1822916,0.218099 -0.1822916,0.5761719 H 5.9960936 q 0,-0.4329427 0.2050781,-0.7910156 0.2083333,-0.358073 0.5859375,-0.5598959 0.3776041,-0.2050781 0.8561198,-0.2050781 0.7324218,0 1.1360676,0.3515625 0.4069011,0.3515625 0.4069011,0.9928385 0,0.3515625 -0.1822917,0.7161458 -0.1822916,0.3645834 -0.625,0.8496094 l -1.0774739,1.13606768 h 2.0377604 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path330" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g297" | |||
transform="rotate(-55.39,-7,-13.335863)"> | |||
id="g303" | |||
transform="rotate(-48.68,-7,-15.474468)"> | |||
<path | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline293" /> | |||
id="polyline299" /> | |||
<g | |||
aria-label="0V" | |||
transform="rotate(55.39,0.80910826,2.6602465)" | |||
aria-label="20" | |||
transform="rotate(48.68,0.45776596,3.2712766)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text295"> | |||
id="text301"> | |||
<path | |||
d="m 3.5123697,-1.9596354 q 0,0.98307292 -0.406901,1.50390624 -0.4069011,0.52083333 -1.1914062,0.52083333 -0.7747396,0 -1.18489585,-0.5110677 -0.41015624,-0.5110677 -0.41992187,-1.46484367 v -0.8723959 q 0,-0.9928385 0.41015624,-1.5071614 0.41341148,-0.5143229 1.18815098,-0.5143229 0.7747396,0 1.1848958,0.5110677 0.4101563,0.5078125 0.4199219,1.4615885 z M 2.5716145,-2.9166666 q 0,-0.5891927 -0.1627604,-0.8561198 -0.1595052,-0.2701823 -0.5013021,-0.2701823 -0.3320312,0 -0.4915364,0.2571615 Q 1.2597656,-3.531901 1.25,-2.9882812 v 1.1523437 q 0,0.5794271 0.15625,0.86263023 0.1595052,0.27994791 0.5078125,0.27994791 0.345052,0 0.4980468,-0.27018228 0.1529948,-0.27018226 0.1595052,-0.82682286 z" | |||
d="M 3.5709635,0 H 0.32226562 V -0.64453123 L 1.8554687,-2.2786458 q 0.3157552,-0.3450521 0.4654948,-0.6022135 0.1529948,-0.2571615 0.1529948,-0.4882812 0,-0.3157552 -0.1595052,-0.4947917 -0.1595052,-0.1822917 -0.4557292,-0.1822917 -0.3190104,0 -0.5045573,0.2213542 -0.1822916,0.218099 -0.1822916,0.5761719 H 0.22786458 q 0,-0.4329427 0.20507812,-0.7910156 0.20833333,-0.358073 0.5859375,-0.5598959 0.3776041,-0.2050781 0.8561198,-0.2050781 0.7324218,0 1.1360676,0.3515625 0.4069011,0.3515625 0.4069011,0.9928385 0,0.3515625 -0.1822917,0.7161458 -0.1822917,0.3645834 -0.625,0.8496094 l -1.0774739,1.13606768 h 2.0377604 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path334" /> | |||
<path | |||
d="m 7.3404947,-1.9596354 q 0,0.98307292 -0.406901,1.50390624 -0.4069011,0.52083333 -1.1914062,0.52083333 -0.7747396,0 -1.1848959,-0.5110677 -0.4101562,-0.5110677 -0.4199218,-1.46484367 v -0.8723959 q 0,-0.9928385 0.4101562,-1.5071614 0.4134115,-0.5143229 1.188151,-0.5143229 0.7747396,0 1.1848958,0.5110677 0.4101563,0.5078125 0.4199219,1.4615885 z M 6.3997395,-2.9166666 q 0,-0.5891927 -0.1627604,-0.8561198 -0.1595052,-0.2701823 -0.5013021,-0.2701823 -0.3320312,0 -0.4915364,0.2571615 -0.15625,0.2539062 -0.1660156,0.797526 v 1.1523437 q 0,0.5794271 0.15625,0.86263023 0.1595052,0.27994791 0.5078125,0.27994791 0.345052,0 0.4980468,-0.27018228 0.1529948,-0.27018226 0.1595052,-0.82682286 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path318" /> | |||
id="path336" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g309" | |||
transform="rotate(-124.62,-7,-3.6735238)"> | |||
<path | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline305" /> | |||
<g | |||
aria-label="2" | |||
transform="rotate(124.62,3.3964925,-0.62521088)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text307"> | |||
<path | |||
d="m 6.0026041,-1.1751302 1.0742187,-3.564453 H 8.1640624 L 6.5136718,0 H 5.4947916 L 3.8509115,-4.7395832 h 1.0839843 z" | |||
d="M 3.5709635,0 H 0.32226562 V -0.64453123 L 1.8554687,-2.2786458 q 0.3157552,-0.3450521 0.4654948,-0.6022135 0.1529948,-0.2571615 0.1529948,-0.4882812 0,-0.3157552 -0.1595052,-0.4947917 -0.1595052,-0.1822917 -0.4557292,-0.1822917 -0.3190104,0 -0.5045573,0.2213542 -0.1822916,0.218099 -0.1822916,0.5761719 H 0.22786458 q 0,-0.4329427 0.20507812,-0.7910156 0.20833333,-0.358073 0.5859375,-0.5598959 0.3776041,-0.2050781 0.8561198,-0.2050781 0.7324218,0 1.1360676,0.3515625 0.4069011,0.3515625 0.4069011,0.9928385 0,0.3515625 -0.1822917,0.7161458 -0.1822917,0.3645834 -0.625,0.8496094 l -1.0774739,1.13606768 h 2.0377604 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path320" /> | |||
id="path340" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g303" | |||
id="g315" | |||
transform="rotate(27.98,-7,28.096356)"> | |||
<path | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline299" /> | |||
id="polyline311" /> | |||
<g | |||
aria-label="200" | |||
transform="rotate(62.02,0.83683503,2.5931489)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text301"> | |||
id="text313"> | |||
<path | |||
d="M 3.5709635,0 H 0.32226562 V -0.64453123 L 1.8554687,-2.2786458 q 0.3157552,-0.3450521 0.4654948,-0.6022135 0.1529948,-0.2571615 0.1529948,-0.4882812 0,-0.3157552 -0.1595052,-0.4947917 -0.1595052,-0.1822917 -0.4557292,-0.1822917 -0.3190104,0 -0.5045573,0.2213542 -0.1822916,0.218099 -0.1822916,0.5761719 H 0.22786458 q 0,-0.4329427 0.20507812,-0.7910156 0.20833333,-0.358073 0.5859375,-0.5598959 0.3776041,-0.2050781 0.8561198,-0.2050781 0.7324218,0 1.1360676,0.3515625 0.4069011,0.3515625 0.4069011,0.9928385 0,0.3515625 -0.1822917,0.7161458 -0.1822917,0.3645834 -0.625,0.8496094 l -1.0774739,1.13606768 h 2.0377604 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path324" /> | |||
id="path344" /> | |||
<path | |||
d="m 7.3404947,-1.9596354 q 0,0.98307292 -0.406901,1.50390624 -0.4069011,0.52083333 -1.1914062,0.52083333 -0.7747396,0 -1.1848959,-0.5110677 -0.4101562,-0.5110677 -0.4199218,-1.46484367 v -0.8723959 q 0,-0.9928385 0.4101562,-1.5071614 0.4134115,-0.5143229 1.188151,-0.5143229 0.7747396,0 1.1848958,0.5110677 0.4101563,0.5078125 0.4199219,1.4615885 z M 6.3997395,-2.9166666 q 0,-0.5891927 -0.1627604,-0.8561198 -0.1595052,-0.2701823 -0.5013021,-0.2701823 -0.3320312,0 -0.4915364,0.2571615 -0.15625,0.2539062 -0.1660156,0.797526 v 1.1523437 q 0,0.5794271 0.15625,0.86263023 0.1595052,0.27994791 0.5078125,0.27994791 0.345052,0 0.4980468,-0.27018228 0.1529948,-0.27018226 0.1595052,-0.82682286 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path326" /> | |||
id="path346" /> | |||
<path | |||
d="m 11.16862,-1.9596354 q 0,0.98307292 -0.406901,1.50390624 -0.406901,0.52083333 -1.1914065,0.52083333 -0.7747396,0 -1.1848959,-0.5110677 -0.4101562,-0.5110677 -0.4199218,-1.46484367 v -0.8723959 q 0,-0.9928385 0.4101562,-1.5071614 0.4134115,-0.5143229 1.188151,-0.5143229 0.77474,0 1.184896,0.5110677 0.410156,0.5078125 0.419922,1.4615885 z m -0.940755,-0.9570312 q 0,-0.5891927 -0.162761,-0.8561198 -0.1595051,-0.2701823 -0.501302,-0.2701823 -0.3320312,0 -0.4915364,0.2571615 -0.15625,0.2539062 -0.1660156,0.797526 v 1.1523437 q 0,0.5794271 0.15625,0.86263023 0.1595052,0.27994791 0.5078125,0.27994791 0.345052,0 0.4980465,-0.27018228 0.152995,-0.27018226 0.159506,-0.82682286 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path328" /> | |||
id="path348" /> | |||
</g> | |||
</g> | |||
<g | |||
aria-label="HZ" | |||
transform="translate(-4.5,22)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text305"> | |||
id="text317"> | |||
<path | |||
d="M 4.2805989,0 H 3.3040364 V -2.03125 H 1.3997395 V 0 H 0.42317707 V -4.7395832 H 1.3997395 v 1.9205729 h 1.9042969 v -1.9205729 h 0.9765625 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path331" /> | |||
id="path351" /> | |||
<path | |||
d="M 6.1718748,-0.78450519 H 8.5611977 V 0 h -3.610026 v -0.57291665 l 2.34375,-3.37565095 H 4.9544269 v -0.7910156 h 3.5546874 v 0.5598958 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path333" /> | |||
id="path353" /> | |||
</g> | |||
</g> | |||
</g> | |||
<g | |||
aria-label="SLOW" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:0.5px;fill:#333333" | |||
id="text125"> | |||
id="text131"> | |||
<path | |||
d="m 13.457031,76.607811 q 0,-0.332031 -0.234375,-0.507813 -0.234375,-0.179687 -0.84375,-0.375 -0.609375,-0.199218 -0.964843,-0.390625 -0.96875,-0.523437 -0.96875,-1.410156 0,-0.460937 0.257812,-0.820312 0.261719,-0.363282 0.746094,-0.566407 0.488281,-0.203125 1.09375,-0.203125 0.609375,0 1.085937,0.222657 0.476563,0.21875 0.738282,0.621093 0.265625,0.402344 0.265625,0.914063 h -1.171875 q 0,-0.390625 -0.246094,-0.605469 -0.246094,-0.21875 -0.691406,-0.21875 -0.429688,0 -0.667969,0.183594 -0.238281,0.179687 -0.238281,0.476562 0,0.277344 0.277343,0.464844 0.28125,0.1875 0.824219,0.351563 1,0.300781 1.457031,0.746093 0.457032,0.445313 0.457032,1.109375 0,0.738282 -0.558594,1.160157 -0.558594,0.417968 -1.503906,0.417968 -0.65625,0 -1.195313,-0.238281 -0.539062,-0.242187 -0.824219,-0.660156 -0.28125,-0.417969 -0.28125,-0.96875 h 1.175782 q 0,0.941406 1.125,0.941406 0.417968,0 0.652343,-0.167969 0.234375,-0.171875 0.234375,-0.476562 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:0.5px;fill:#333333" | |||
id="path336" /> | |||
id="path356" /> | |||
<path | |||
d="m 17.101562,77.158592 h 2.488282 v 0.941406 h -3.660156 v -5.6875 h 1.171874 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:0.5px;fill:#333333" | |||
id="path338" /> | |||
id="path358" /> | |||
<path | |||
d="m 25.179687,75.385155 q 0,0.839843 -0.296875,1.472656 -0.296875,0.632812 -0.851562,0.976562 -0.550781,0.34375 -1.265625,0.34375 -0.707031,0 -1.261719,-0.339843 -0.554687,-0.339844 -0.859375,-0.96875 -0.304687,-0.632813 -0.308594,-1.453125 v -0.28125 q 0,-0.839844 0.300782,-1.476563 0.304687,-0.640625 0.855468,-0.980469 0.554688,-0.34375 1.265625,-0.34375 0.710938,0 1.261719,0.34375 0.554688,0.339844 0.855469,0.980469 0.304687,0.636719 0.304687,1.472656 z m -1.1875,-0.257813 q 0,-0.894531 -0.320312,-1.359375 -0.320313,-0.464844 -0.914063,-0.464844 -0.589843,0 -0.910156,0.460938 -0.320312,0.457031 -0.324219,1.34375 v 0.277344 q 0,0.871093 0.320313,1.351562 0.320312,0.480469 0.921875,0.480469 0.589844,0 0.90625,-0.460938 0.316406,-0.464843 0.320312,-1.351562 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:0.5px;fill:#333333" | |||
id="path340" /> | |||
id="path360" /> | |||
<path | |||
d="m 30.96875,76.459373 0.765625,-4.046875 h 1.167969 l -1.261719,5.6875 h -1.179688 l -0.925781,-3.804687 -0.925781,3.804687 h -1.179688 l -1.261718,-5.6875 h 1.167968 l 0.769532,4.039063 0.9375,-4.039063 h 0.992187 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:0.5px;fill:#333333" | |||
id="path342" /> | |||
id="path362" /> | |||
</g> | |||
<g | |||
id="g149" | |||
id="g155" | |||
transform="translate(9.5,88)"> | |||
<g | |||
id="g135"> | |||
id="g141"> | |||
<g | |||
id="g133" | |||
id="g139" | |||
transform="matrix(0.8,0,0,0.8,1,1)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#f0f" /> --> | |||
<path | |||
style="fill:none;stroke:#333333;stroke-width:1" | |||
inkscape:connector-curvature="0" | |||
id="path129" | |||
id="path135" | |||
d="M 0,4 A 3,4.5 0 0 1 6,4" /> | |||
<path | |||
style="fill:none;stroke:#333333;stroke-width:1" | |||
inkscape:connector-curvature="0" | |||
id="path131" | |||
id="path137" | |||
d="m 6,4 a 3,4.5 0 0 0 6,0" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g141" | |||
id="g147" | |||
transform="translate(0,13)"> | |||
<g | |||
id="g139" | |||
id="g145" | |||
transform="matrix(0.8,0,0,0.8,1,1)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#f0f" /> --> | |||
<path | |||
style="fill:none;stroke:#333333;stroke-width:1" | |||
d="M 0,8 12,0 v 8" | |||
id="polyline137" /> | |||
id="polyline143" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g147" | |||
id="g153" | |||
transform="translate(0,26)"> | |||
<g | |||
id="g145" | |||
id="g151" | |||
transform="matrix(0.8,0,0,0.8,1,1)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#f0f" /> --> | |||
<path | |||
style="fill:none;stroke:#333333;stroke-width:1" | |||
d="M 0,4 V 0 h 6 v 8 h 6 V 4" | |||
id="polyline143" /> | |||
id="polyline149" /> | |||
</g> | |||
</g> | |||
</g> | |||
<g | |||
id="g169" | |||
id="g175" | |||
transform="translate(31.5,88)"> | |||
<g | |||
id="g155"> | |||
id="g161"> | |||
<g | |||
id="g153" | |||
id="g159" | |||
transform="matrix(0.8,0,0,0.8,1,1)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#f0f" /> --> | |||
<path | |||
style="fill:none;stroke:#333333;stroke-width:1" | |||
d="M 0,4 3,0 9,8 12,4" | |||
id="polyline151" /> | |||
id="polyline157" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g161" | |||
id="g167" | |||
transform="translate(0,13)"> | |||
<g | |||
id="g159" | |||
id="g165" | |||
transform="matrix(0.8,0,0,0.8,1,1)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#f0f" /> --> | |||
<path | |||
style="fill:none;stroke:#333333;stroke-width:1" | |||
d="M 0,8 V 0 l 12,8" | |||
id="polyline157" /> | |||
id="polyline163" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g167" | |||
id="g173" | |||
transform="translate(0,26)"> | |||
<g | |||
id="g165" | |||
id="g171" | |||
transform="matrix(0.8,0,0,0.8,1,1)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#f0f" /> --> | |||
<path | |||
style="fill:none;stroke:#333333;stroke-width:1" | |||
d="M 0,4 V 0 h 3 v 8 h 9 V 4" | |||
id="polyline163" /> | |||
id="polyline169" /> | |||
</g> | |||
</g> | |||
</g> | |||
<g | |||
aria-label="OFFSET" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text173"> | |||
id="text179"> | |||
<path | |||
d="m 8.1796875,146.28516 q 0,0.83984 -0.296875,1.47265 -0.296875,0.63281 -0.8515625,0.97656 -0.5507813,0.34375 -1.265625,0.34375 -0.7070313,0 -1.2617188,-0.33984 -0.5546874,-0.33984 -0.8593749,-0.96875 -0.3046875,-0.63281 -0.3085938,-1.45312 v -0.28125 q 0,-0.83985 0.3007813,-1.47657 0.3046875,-0.64062 0.8554687,-0.98047 0.5546875,-0.34375 1.265625,-0.34375 0.7109375,0 1.2617187,0.34375 0.5546875,0.33985 0.8554688,0.98047 0.3046875,0.63672 0.3046875,1.47266 z m -1.1875,-0.25782 q 0,-0.89453 -0.3203125,-1.35937 -0.3203125,-0.46485 -0.9140625,-0.46485 -0.5898438,0 -0.9101563,0.46094 -0.3203125,0.45703 -0.3242187,1.34375 v 0.27735 q 0,0.87109 0.3203125,1.35156 0.3203125,0.48047 0.921875,0.48047 0.5898437,0 0.90625,-0.46094 0.3164062,-0.46484 0.3203125,-1.35156 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path350" /> | |||
id="path370" /> | |||
<path | |||
d="m 14.460938,146.67578 h -2.25 V 149 h -1.171875 v -5.6875 h 3.703125 v 0.94922 h -2.53125 v 1.46875 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path352" /> | |||
id="path372" /> | |||
<path | |||
d="m 20.851562,146.67578 h -2.25 V 149 h -1.171875 v -5.6875 h 3.703125 v 0.94922 h -2.53125 v 1.46875 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path354" /> | |||
id="path374" /> | |||
<path | |||
d="m 26.769531,147.50781 q 0,-0.33203 -0.234375,-0.50781 -0.234375,-0.17969 -0.84375,-0.375 -0.609375,-0.19922 -0.964844,-0.39063 -0.96875,-0.52343 -0.96875,-1.41015 0,-0.46094 0.257813,-0.82031 0.261719,-0.36329 0.746094,-0.56641 0.488281,-0.20313 1.09375,-0.20313 0.609375,0 1.085937,0.22266 0.476563,0.21875 0.738281,0.62109 0.265625,0.40235 0.265625,0.91407 h -1.171875 q 0,-0.39063 -0.246093,-0.60547 -0.246094,-0.21875 -0.691407,-0.21875 -0.429687,0 -0.667968,0.18359 -0.238282,0.17969 -0.238282,0.47656 0,0.27735 0.277344,0.46485 0.28125,0.1875 0.824219,0.35156 1,0.30078 1.457031,0.74609 0.457031,0.44532 0.457031,1.10938 0,0.73828 -0.558593,1.16016 -0.558594,0.41796 -1.503907,0.41796 -0.65625,0 -1.195312,-0.23828 -0.539063,-0.24218 -0.824219,-0.66015 -0.28125,-0.41797 -0.28125,-0.96875 h 1.175781 q 0,0.9414 1.125,0.9414 0.417969,0 0.652344,-0.16797 0.234375,-0.17187 0.234375,-0.47656 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path356" /> | |||
id="path376" /> | |||
<path | |||
d="m 34.164062,146.53516 h -2.25 v 1.52343 h 2.640625 V 149 h -3.8125 v -5.6875 h 3.804688 v 0.94922 h -2.632813 v 1.35547 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path358" /> | |||
id="path378" /> | |||
<path | |||
d="M 41.601562,144.26172 H 39.859375 V 149 H 38.6875 v -4.73828 h -1.71875 v -0.94922 h 4.632812 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path360" /> | |||
id="path380" /> | |||
</g> | |||
<g | |||
id="use175" | |||
id="use181" | |||
transform="translate(2.2,146.5)"> | |||
<g | |||
id="g279" | |||
id="g285" | |||
transform="translate(20,20)"> | |||
<g | |||
id="g269" | |||
id="g275" | |||
transform="rotate(-90,-5,-5)"> | |||
<path | |||
style="stroke:#333333;stroke-width:1" | |||
d="M 0,0 H 4" | |||
id="polyline267" /> | |||
id="polyline273" /> | |||
</g> | |||
<path | |||
id="path271" | |||
id="path277" | |||
transform="rotate(20)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 1 12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path273" | |||
id="path279" | |||
transform="rotate(43)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 1 12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path275" | |||
id="path281" | |||
transform="rotate(-20)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 0 -12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path277" | |||
id="path283" | |||
transform="rotate(-43)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 0 -12.5,0" | |||
inkscape:connector-curvature="0" | |||
@@ -693,62 +733,62 @@ | |||
</g> | |||
</g> | |||
<g | |||
aria-label="LEVEL" | |||
aria-label="SCALE" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text179"> | |||
id="text185"> | |||
<path | |||
d="M 8.6796875,189.05859 H 11.167969 V 190 H 7.5078125 v -5.6875 h 1.171875 z" | |||
d="m 10.057031,188.50781 q 0,-0.33203 -0.2343748,-0.50781 -0.234375,-0.17969 -0.84375,-0.375 -0.609375,-0.19922 -0.9648438,-0.39063 -0.96875,-0.52343 -0.96875,-1.41015 0,-0.46094 0.2578125,-0.82031 0.2617188,-0.36329 0.7460938,-0.56641 0.4882812,-0.20313 1.09375,-0.20313 0.609375,0 1.0859373,0.22266 0.476563,0.21875 0.738281,0.62109 0.265625,0.40235 0.265625,0.91407 h -1.171875 q 0,-0.39063 -0.2460933,-0.60547 -0.2460938,-0.21875 -0.6914063,-0.21875 -0.4296875,0 -0.6679687,0.18359 -0.2382813,0.17969 -0.2382813,0.47656 0,0.27735 0.2773438,0.46485 0.28125,0.1875 0.8242187,0.35156 1.0000001,0.30078 1.4570311,0.74609 0.457031,0.44532 0.457031,1.10938 0,0.73828 -0.558593,1.16016 -0.558594,0.41796 -1.5039066,0.41796 -0.65625,0 -1.1953125,-0.23828 -0.5390625,-0.24218 -0.8242187,-0.66015 -0.28125,-0.41797 -0.28125,-0.96875 h 1.1757812 q 0,0.9414 1.125,0.9414 0.4179688,0 0.6523438,-0.16797 0.2343748,-0.17187 0.2343748,-0.47656 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path364" /> | |||
id="path384" /> | |||
<path | |||
d="m 17.257812,187.53516 h -2.249999 v 1.52343 h 2.640624 V 190 h -3.812499 v -5.6875 h 3.804687 v 0.94922 h -2.632812 v 1.35547 h 2.249999 z" | |||
d="m 18.494531,188.10547 q -0.06641,0.91797 -0.679687,1.44531 -0.609375,0.52734 -1.609375,0.52734 -1.09375,0 -1.722657,-0.73437 -0.625,-0.73828 -0.625,-2.02344 v -0.34765 q 0,-0.82032 0.289063,-1.44532 0.289062,-0.625 0.824219,-0.95703 0.539062,-0.33594 1.25,-0.33594 0.984375,0 1.585937,0.52735 0.601563,0.52734 0.695313,1.48047 h -1.171875 q -0.04297,-0.55078 -0.308594,-0.79688 -0.261719,-0.25 -0.800781,-0.25 -0.585938,0 -0.878907,0.42188 -0.289062,0.41797 -0.296875,1.30078 v 0.42969 q 0,0.92187 0.277344,1.34765 0.28125,0.42578 0.882813,0.42578 0.542968,0 0.808593,-0.24609 0.269532,-0.25 0.308594,-0.76953 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path366" /> | |||
id="path386" /> | |||
<path | |||
d="m 22.4375,188.58984 1.289062,-4.27734 H 25.03125 L 23.050781,190 h -1.222656 l -1.972656,-5.6875 h 1.300781 z" | |||
d="M 24.475,188.82812 H 22.420312 L 22.029687,190 h -1.246093 l 2.117187,-5.6875 h 1.085938 L 26.115625,190 h -1.246094 z m -1.738281,-0.94921 h 1.421875 L 23.44375,185.75 Z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path368" /> | |||
id="path388" /> | |||
<path | |||
d="m 30.992187,187.53516 h -2.25 v 1.52343 h 2.640625 V 190 h -3.8125 v -5.6875 H 31.375 v 0.94922 h -2.632813 v 1.35547 h 2.25 z" | |||
d="m 29.826562,189.05859 h 2.488282 V 190 h -3.660157 v -5.6875 h 1.171875 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path370" /> | |||
id="path390" /> | |||
<path | |||
d="m 35.242187,189.05859 h 2.488282 V 190 h -3.660157 v -5.6875 h 1.171875 z" | |||
d="m 38.404687,187.53516 h -2.25 v 1.52343 h 2.640625 V 190 h -3.8125 v -5.6875 H 38.7875 v 0.94922 h -2.632813 v 1.35547 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path372" /> | |||
id="path392" /> | |||
</g> | |||
<g | |||
id="use181" | |||
id="use187" | |||
transform="translate(2.2,187.5)"> | |||
<g | |||
id="g263" | |||
id="g269" | |||
transform="translate(20,20)"> | |||
<g | |||
id="g253" | |||
id="g259" | |||
transform="rotate(60,-5,8.660254)"> | |||
<path | |||
style="stroke:#333333;stroke-width:1" | |||
d="M 0,0 H 4" | |||
id="polyline251" /> | |||
id="polyline257" /> | |||
</g> | |||
<path | |||
id="path255" | |||
id="path261" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 1 12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path257" | |||
id="path263" | |||
transform="rotate(43)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 1 12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path259" | |||
id="path265" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 0 -12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path261" | |||
id="path267" | |||
transform="rotate(-43)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 0 -12.5,0" | |||
inkscape:connector-curvature="0" | |||
@@ -756,99 +796,99 @@ | |||
</g> | |||
</g> | |||
<g | |||
id="g193" | |||
id="g199" | |||
transform="translate(5.5,228)"> | |||
<path | |||
transform="translate(0,63)" | |||
style="fill:#fafafa" | |||
d="M 0,0 H 34 V 10 H 0 Z" | |||
id="rect185" /> | |||
id="rect191" /> | |||
<path | |||
style="fill:#fafafa" | |||
d="m 5,0 h 24 c 2.77,0 5,2.23 5,5 v 60 c 0,2.77 -2.23,5 -5,5 H 5 C 2.23,70 0,67.77 0,65 V 5 C 0,2.23 2.23,0 5,0 Z" | |||
id="rect187" /> | |||
id="rect193" /> | |||
<g | |||
aria-label="V/OCT" | |||
transform="translate(3.5,35)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text189"> | |||
id="text195"> | |||
<path | |||
d="m 2.1744791,-1.1751302 1.0742187,-3.564453 H 4.3359374 L 2.6855468,0 H 1.6666666 L 0.02278646,-4.7395832 H 1.1067708 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path378" /> | |||
id="path398" /> | |||
<path | |||
d="M 7.0195311,0.40690103 H 6.3196613 L 8.0644529,-4.7395832 h 0.6998698 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path380" /> | |||
id="path400" /> | |||
<path | |||
d="m 15.165364,-2.2623697 q 0,0.6998697 -0.247396,1.2272135 -0.247395,0.52734371 -0.709635,0.81380204 -0.458984,0.28645833 -1.054688,0.28645833 -0.589192,0 -1.051432,-0.28320312 -0.462239,-0.28320312 -0.716146,-0.80729165 -0.253906,-0.5273437 -0.257161,-1.2109375 v -0.234375 q 0,-0.6998697 0.250651,-1.2304687 0.253906,-0.5338541 0.712891,-0.8170573 0.462239,-0.2864583 1.054687,-0.2864583 0.592448,0 1.051432,0.2864583 0.46224,0.2832032 0.712891,0.8170573 0.253906,0.530599 0.253906,1.2272135 z m -0.989583,-0.2148438 q 0,-0.7454427 -0.266927,-1.1328125 -0.266927,-0.3873697 -0.761719,-0.3873697 -0.491536,0 -0.758463,0.3841145 -0.266928,0.3808594 -0.270183,1.1197917 v 0.2311198 q 0,0.7259114 0.266927,1.126302 0.266927,0.40039063 0.768229,0.40039063 0.491537,0 0.755209,-0.38411453 0.263672,-0.3873698 0.266927,-1.1263021 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path382" /> | |||
id="path402" /> | |||
<path | |||
d="m 21.602212,-1.578776 q -0.05534,0.76497394 -0.566406,1.20442705 -0.507813,0.43945312 -1.341146,0.43945312 -0.911458,0 -1.435547,-0.61197916 Q 17.73828,-1.1621093 17.73828,-2.2330729 v -0.2897135 q 0,-0.6835937 0.240885,-1.2044271 0.240886,-0.5208333 0.686849,-0.797526 0.449219,-0.2799479 1.041667,-0.2799479 0.820312,0 1.321615,0.4394531 0.501302,0.4394531 0.579427,1.233724 H 20.63216 q -0.03581,-0.4589844 -0.257161,-0.6640625 -0.218099,-0.2083334 -0.667318,-0.2083334 -0.488281,0 -0.732422,0.3515625 -0.240885,0.3483073 -0.247396,1.0839844 v 0.3580729 q 0,0.7682291 0.23112,1.1230468 0.234375,0.35481774 0.735677,0.35481774 0.452474,0 0.673828,-0.20507812 0.22461,-0.20833332 0.257162,-0.64127602 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path384" /> | |||
id="path404" /> | |||
<path | |||
d="M 27.720051,-3.9485676 H 26.268228 V 0 h -0.976562 v -3.9485676 h -1.432292 v -0.7910156 h 3.860677 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path386" /> | |||
id="path406" /> | |||
</g> | |||
<g | |||
aria-label="RESET" | |||
transform="translate(3.5,70)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text191"> | |||
id="text197"> | |||
<path | |||
d="M 2.1777343,-1.735026 H 1.3997395 V 0 H 0.42317707 V -4.7395832 H 2.1842447 q 0.8398438,0 1.2955729,0.3743489 0.4557292,0.374349 0.4557292,1.0579427 0,0.485026 -0.2115886,0.8105469 -0.2083333,0.3222656 -0.6347656,0.5143229 l 1.0253906,1.93684888 V 0 H 3.0664062 Z M 1.3997395,-2.5260416 h 0.7877604 q 0.3678386,0 0.5696615,-0.1855469 0.2018229,-0.1888021 0.2018229,-0.5175781 0,-0.3352864 -0.1920573,-0.5273437 Q 2.5781249,-3.9485676 2.1842447,-3.9485676 H 1.3997395 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path389" /> | |||
id="path409" /> | |||
<path | |||
d="m 9.532552,-2.0540364 h -1.875 v 1.26953121 H 9.8580728 V 0 H 6.6809896 v -4.7395832 h 3.1705728 v 0.7910156 H 7.657552 v 1.1295573 h 1.875 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path391" /> | |||
id="path411" /> | |||
<path | |||
d="m 14.888672,-1.2434896 q 0,-0.2766927 -0.195313,-0.423177 -0.195312,-0.1497396 -0.703125,-0.3125 -0.507812,-0.1660156 -0.804036,-0.3255208 -0.807292,-0.436198 -0.807292,-1.1751302 0,-0.3841146 0.214844,-0.6835938 0.218099,-0.3027343 0.621745,-0.4720052 0.406901,-0.1692708 0.911458,-0.1692708 0.507813,0 0.904948,0.1855469 0.397135,0.1822916 0.615234,0.5175781 0.221354,0.3352864 0.221354,0.7617187 h -0.976562 q 0,-0.3255208 -0.205078,-0.5045573 -0.205078,-0.1822916 -0.576172,-0.1822916 -0.358073,0 -0.556641,0.1529948 -0.198567,0.1497396 -0.198567,0.3971354 0,0.2311198 0.23112,0.3873698 0.234374,0.15625 0.686848,0.2929687 0.833334,0.250651 1.214193,0.6217448 0.380859,0.3710937 0.380859,0.9244791 0,0.61523439 -0.465494,0.96679688 -0.465495,0.34830729 -1.253255,0.34830729 -0.546875,0 -0.996094,-0.19856771 Q 12.704427,-0.33528645 12.466797,-0.68359373 12.232422,-1.031901 12.232422,-1.4908854 h 0.979818 q 0,0.78450521 0.9375,0.78450521 0.348307,0 0.543619,-0.13997396 0.195313,-0.14322916 0.195313,-0.39713545 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path393" /> | |||
id="path413" /> | |||
<path | |||
d="m 21.384115,-2.0540364 h -1.875 v 1.26953121 h 2.20052 V 0 h -3.177083 v -4.7395832 h 3.170573 v 0.7910156 h -2.19401 v 1.1295573 h 1.875 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path395" /> | |||
id="path415" /> | |||
<path | |||
d="M 27.915364,-3.9485676 H 26.463541 V 0 h -0.976563 v -3.9485676 h -1.432291 v -0.7910156 h 3.860677 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path397" /> | |||
id="path417" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g201" | |||
id="g207" | |||
transform="translate(5.5,304)"> | |||
<path | |||
transform="translate(0,-3)" | |||
style="fill:#bbbbbb" | |||
d="M 0,0 H 34 V 10 H 0 Z" | |||
id="rect195" /> | |||
id="rect201" /> | |||
<path | |||
style="fill:#bbbbbb" | |||
d="m 5,0 h 24 c 2.77,0 5,2.23 5,5 v 25 c 0,2.77 -2.23,5 -5,5 H 5 C 2.23,35 0,32.77 0,30 V 5 C 0,2.23 2.23,0 5,0 Z" | |||
id="rect197" /> | |||
id="rect203" /> | |||
<g | |||
aria-label="OUT" | |||
transform="translate(8.3,32)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text199"> | |||
id="text205"> | |||
<path | |||
d="m 4.3164061,-2.2623697 q 0,0.6998697 -0.2473958,1.2272135 -0.2473958,0.52734371 -0.7096354,0.81380204 -0.4589843,0.28645833 -1.0546875,0.28645833 -0.5891926,0 -1.0514322,-0.28320312 Q 0.79101561,-0.50130207 0.53710936,-1.0253906 0.28320312,-1.5527343 0.27994791,-2.2363281 v -0.234375 q 0,-0.6998697 0.25065104,-1.2304687 0.25390624,-0.5338541 0.71289065,-0.8170573 0.4622395,-0.2864583 1.0546874,-0.2864583 0.5924479,0 1.0514323,0.2864583 0.4622396,0.2832032 0.7128906,0.8170573 0.2539062,0.530599 0.2539062,1.2272135 z M 3.3268228,-2.4772135 q 0,-0.7454427 -0.266927,-1.1328125 -0.2669271,-0.3873697 -0.7617188,-0.3873697 -0.4915364,0 -0.7584635,0.3841145 -0.2669271,0.3808594 -0.2701823,1.1197917 v 0.2311198 q 0,0.7259114 0.2669271,1.126302 0.2669271,0.40039063 0.7682291,0.40039063 0.4915365,0 0.7552084,-0.38411453 0.2636718,-0.3873698 0.266927,-1.1263021 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path402" /> | |||
id="path422" /> | |||
<path | |||
d="m 10.619792,-4.7395832 v 3.1217447 q 0,0.77799477 -0.488282,1.23046872 -0.4850257,0.45247395 -1.3281246,0.45247395 -0.8300781,0 -1.3183594,-0.43945312 Q 6.9967448,-0.81380206 6.9869792,-1.5820312 v -3.157552 h 0.9765624 v 3.1282551 q 0,0.4654948 0.2213542,0.68033854 0.2246094,0.21158854 0.6184896,0.21158854 0.8235677,0 0.8365885,-0.86588538 v -3.1542968 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path404" /> | |||
id="path424" /> | |||
<path | |||
d="M 16.988281,-3.9485676 H 15.536458 V 0 h -0.976563 v -3.9485676 h -1.432291 v -0.7910156 h 3.860677 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path406" /> | |||
id="path426" /> | |||
</g> | |||
</g> | |||
</svg> |
@@ -0,0 +1,795 @@ | |||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
<svg | |||
xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
xmlns:cc="http://creativecommons.org/ns#" | |||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
xmlns:svg="http://www.w3.org/2000/svg" | |||
xmlns="http://www.w3.org/2000/svg" | |||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |||
version="1.1" | |||
width="90" | |||
height="380" | |||
viewBox="0 0 90 380" | |||
id="svg164" | |||
sodipodi:docname="svg_render_tmp.svg" | |||
inkscape:version="0.92.2 5c3e80d, 2017-08-06"> | |||
<metadata | |||
id="metadata168"> | |||
<rdf:RDF> | |||
<cc:Work | |||
rdf:about=""> | |||
<dc:format>image/svg+xml</dc:format> | |||
<dc:type | |||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
</cc:Work> | |||
</rdf:RDF> | |||
</metadata> | |||
<sodipodi:namedview | |||
pagecolor="#ffffff" | |||
bordercolor="#666666" | |||
borderopacity="1" | |||
objecttolerance="10" | |||
gridtolerance="10" | |||
guidetolerance="10" | |||
inkscape:pageopacity="0" | |||
inkscape:pageshadow="2" | |||
inkscape:window-width="468" | |||
inkscape:window-height="449" | |||
id="namedview166" | |||
showgrid="false" | |||
inkscape:zoom="0.62105263" | |||
inkscape:cx="45" | |||
inkscape:cy="190" | |||
inkscape:window-x="0" | |||
inkscape:window-y="0" | |||
inkscape:window-maximized="0" | |||
inkscape:current-layer="svg164" /> | |||
<style | |||
id="style2"> | |||
text { | |||
fill: #333; | |||
font-family: 'Roboto', sans-serif; | |||
font-weight: bold; | |||
} | |||
text.title { | |||
font-family: 'Comfortaa', sans-serif; | |||
font-weight: normal; | |||
} | |||
text.brand { | |||
font-family: 'Audiowide', sans-serif; | |||
font-weight: bold; | |||
} | |||
</style> | |||
<defs | |||
id="defs80"> | |||
<symbol | |||
id="knob" | |||
viewBox="0 0 45px 45px"> | |||
<g | |||
transform="translate(22.5 22.5)" | |||
id="g10"> | |||
<polyline | |||
points="-5,0 5,0" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline4" /> | |||
<polyline | |||
points="0,-5 0,5" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline6" /> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="14" | |||
stroke-width="1" | |||
stroke="#00f" | |||
fill="none" | |||
id="circle8" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="knobguide-select" | |||
viewBox="0 0 45px 45px"> | |||
<g | |||
transform="translate(22.5 22.5)" | |||
id="g29"> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-240) translate(20 0) rotate(240) translate(-2 2)" | |||
id="text13">1</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-197.1) translate(20 0) rotate(197.1) translate(-2 2)" | |||
id="text15">2</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-154.3) translate(20 0) rotate(154.3) translate(-2 2)" | |||
id="text17">3</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-111.4) translate(20 0) rotate(111.4) translate(-2 2)" | |||
id="text19">4</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-68.6) translate(20 0) rotate(68.6) translate(-2 2)" | |||
id="text21">5</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-25.7) translate(20 0) rotate(25.7) translate(-2 2)" | |||
id="text23">6</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(17.1) translate(20 0) rotate(-17.1) translate(-2 2)" | |||
id="text25">7</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(60) translate(20 0) rotate(-60) translate(-2 2)" | |||
id="text27">8</text> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="knob-smallest" | |||
viewBox="0 0 16px 16px"> | |||
<g | |||
transform="translate(8 8)" | |||
id="g38"> | |||
<polyline | |||
points="-3,0 3,0" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline32" /> | |||
<polyline | |||
points="0,-3 0,3" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline34" /> | |||
<circle | |||
r="7.5" | |||
stroke-width="1" | |||
stroke="#00f" | |||
fill="none" | |||
id="circle36" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="knobguide-steps" | |||
viewBox="0 0 40px 40px"> | |||
<g | |||
transform="translate(20 20)" | |||
id="g55"> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-240) translate(13 0) rotate(240) translate(-2 2)" | |||
id="text41">2</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-190) translate(13 0) rotate(190) translate(-2 2)" | |||
id="text43">3</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-140) translate(13 0) rotate(140) translate(-2 2)" | |||
id="text45">4</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-90) translate(13 0) rotate(90) translate(-2 2)" | |||
id="text47">5</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-40) translate(13 0) rotate(40) translate(-2 2)" | |||
id="text49">6</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(10) translate(13 0) rotate(-10) translate(-2 2)" | |||
id="text51">7</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(60) translate(13 0) rotate(-60) translate(-2 2)" | |||
id="text53">8</text> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="switch" | |||
viewBox="0 0 14px 24px"> | |||
<rect | |||
width="14px" | |||
height="24px" | |||
stroke-width="1" | |||
stroke="#000" | |||
fill="#ddd" | |||
id="rect58" /> | |||
<rect | |||
width="14px" | |||
height="12px" | |||
stroke-width="0" | |||
fill="#000" | |||
id="rect60" /> | |||
</symbol> | |||
<symbol | |||
id="light-small" | |||
viewBox="0 0 6.4px 6.4px"> | |||
<rect | |||
width="6.4" | |||
height="6.4" | |||
fill="#0f0" | |||
id="rect63" /> | |||
</symbol> | |||
<symbol | |||
id="input" | |||
viewBox="0 0 24px 24px"> | |||
<g | |||
transform="translate(12 12)" | |||
id="g70"> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="5" | |||
stroke-width="1" | |||
stroke="#0f0" | |||
fill="#0f0" | |||
id="circle66" /> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="10.5" | |||
stroke-width="3" | |||
stroke="#0f0" | |||
fill="none" | |||
id="circle68" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="output" | |||
viewBox="0 0 24px 24px"> | |||
<g | |||
transform="translate(12 12)" | |||
id="g77"> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="5" | |||
stroke-width="1" | |||
stroke="#f00" | |||
fill="#f00" | |||
id="circle73" /> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="10.5" | |||
stroke-width="3" | |||
stroke="#f00" | |||
fill="none" | |||
id="circle75" /> | |||
</g> | |||
</symbol> | |||
</defs> | |||
<path | |||
style="fill:#dddddd" | |||
d="M 0,0 H 90 V 380 H 0 Z" | |||
id="rect82" /> | |||
<path | |||
style="fill:none;stroke:#e4e4e4;stroke-width:0.5" | |||
d="M 1,1 H 89 V 379 H 1 V 1" | |||
id="polyline84" /> | |||
<path | |||
style="fill:none;stroke:#ebebeb;stroke-width:0.80000001" | |||
d="m 0.5,0.5 h 89 v 379 H 0.5 V 0.5" | |||
id="polyline86" /> | |||
<path | |||
style="fill:none;stroke:#f2f2f2;stroke-width:1" | |||
d="M 0,0 H 90 V 380 H 0 V 0" | |||
id="polyline88" /> | |||
<g | |||
aria-label="1:8" | |||
style="font-weight:normal;font-size:12px;font-family:Comfortaa, sans-serif;letter-spacing:3px;fill:#333333" | |||
id="text90"> | |||
<path | |||
d="M 65.868,17 Q 65.676,17 65.532,16.868 65.4,16.724 65.4,16.532 v -7.8 l -1.2,0.42 q -0.12,0.06 -0.24,0.06 -0.204,0 -0.336,-0.12 -0.132,-0.132 -0.132,-0.336 0,-0.348 0.3,-0.444 L 65.64,7.676 q 0.18,-0.06 0.24,-0.06 0.192,0 0.324,0.132 0.132,0.132 0.132,0.336 v 8.448 q 0,0.192 -0.132,0.336 Q 66.072,17 65.868,17 Z" | |||
style="font-weight:normal;font-size:12px;font-family:Comfortaa, sans-serif;letter-spacing:3px;fill:#333333" | |||
id="path321" /> | |||
<path | |||
d="m 71.626875,11.912 q -0.288,0 -0.504,-0.204 -0.204,-0.204 -0.204,-0.492 0,-0.3 0.204,-0.504 0.204,-0.204 0.504,-0.204 0.288,0 0.48,0.216 0.204,0.204 0.204,0.492 0,0.288 -0.204,0.492 -0.192,0.204 -0.48,0.204 z m 0.024,5.28 q -0.288,0 -0.492,-0.204 -0.204,-0.204 -0.204,-0.492 0,-0.3 0.204,-0.504 0.216,-0.204 0.492,-0.204 0.288,0 0.492,0.216 0.204,0.204 0.204,0.492 0,0.288 -0.204,0.492 -0.204,0.204 -0.492,0.204 z" | |||
style="font-weight:normal;font-size:12px;font-family:Comfortaa, sans-serif;letter-spacing:3px;fill:#333333" | |||
id="path323" /> | |||
<path | |||
d="m 80.822625,11.744 q 0.66,0.348 1.044,0.984 0.384,0.624 0.384,1.416 0,0.816 -0.372,1.476 -0.36,0.66 -1.008,1.044 -0.636,0.384 -1.416,0.384 -0.792,0 -1.44,-0.372 -0.636,-0.384 -1.008,-1.032 -0.36,-0.66 -0.36,-1.464 0,-0.804 0.384,-1.44 0.396,-0.648 1.056,-0.996 -0.444,-0.312 -0.696,-0.792 -0.252,-0.492 -0.252,-1.08 0,-0.636 0.3,-1.152 0.312,-0.528 0.84,-0.816 0.54,-0.3 1.2,-0.3 0.648,0 1.164,0.3 0.528,0.288 0.816,0.804 0.3,0.504 0.3,1.14 0,0.588 -0.252,1.092 -0.252,0.492 -0.684,0.804 z m -2.796,-1.86 q 0,0.624 0.408,1.056 0.408,0.42 1.02,0.42 0.612,0 1.008,-0.432 0.408,-0.444 0.408,-1.092 0,-0.588 -0.408,-0.984 -0.408,-0.396 -1.008,-0.396 -0.612,0 -1.02,0.408 -0.408,0.408 -0.408,1.02 z m 3.288,4.272 q 0,-0.54 -0.252,-0.972 -0.24,-0.432 -0.672,-0.684 -0.42,-0.252 -0.936,-0.252 -0.528,0 -0.96,0.264 -0.432,0.252 -0.672,0.696 -0.24,0.444 -0.24,0.996 0,0.552 0.24,1.02 0.252,0.456 0.672,0.72 0.432,0.264 0.96,0.264 0.528,0 0.948,-0.264 0.432,-0.276 0.672,-0.744 0.24,-0.48 0.24,-1.044 z" | |||
style="font-weight:normal;font-size:12px;font-family:Comfortaa, sans-serif;letter-spacing:3px;fill:#333333" | |||
id="path325" /> | |||
</g> | |||
<g | |||
aria-label="BOGAUDIO" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text92"> | |||
<path | |||
d="m 12.194662,372.66699 q 0,0.20313 -0.07194,0.43587 -0.06771,0.23275 -0.228516,0.43165 -0.156576,0.19889 -0.410482,0.33431 Q 11.229818,374 10.861654,374 H 6.6848959 q -0.1184896,0 -0.2200521,-0.0423 -0.1015625,-0.0423 -0.1777344,-0.11426 -0.07194,-0.0762 -0.1142578,-0.17773 -0.042318,-0.10156 -0.042318,-0.22005 V 368.486 q 0,-0.11426 0.042318,-0.21582 0.042318,-0.10156 0.1142578,-0.17773 0.076172,-0.0762 0.1777344,-0.11849 0.1015625,-0.0423 0.2200521,-0.0423 h 3.6816411 q 0.203125,0 0.435872,0.0719 0.232747,0.0719 0.431641,0.23275 0.203125,0.15657 0.33431,0.41048 0.135416,0.25391 0.135416,0.62207 v 0.20736 q 0,0.29199 -0.09733,0.63053 -0.09733,0.33431 -0.313152,0.63477 0.186198,0.11425 0.347006,0.27506 0.165039,0.16081 0.28776,0.3724 0.122721,0.21159 0.194662,0.47819 0.07194,0.2666 0.07194,0.58821 z m -1.100261,-0.21159 q 0,-0.21582 -0.06771,-0.38509 -0.06771,-0.1735 -0.19043,-0.29622 -0.122721,-0.12272 -0.296224,-0.1862 -0.173502,-0.0677 -0.389323,-0.0677 H 7.6708985 v -1.10872 h 1.9847006 q 0.2158203,0 0.3893229,-0.0635 0.173503,-0.0677 0.296224,-0.19043 0.122721,-0.12272 0.186198,-0.29199 0.06771,-0.1735 0.06771,-0.38932 v -0.20736 q 0,-0.23698 -0.228515,-0.23698 H 7.2307943 v 3.86784 h 3.6308597 q 0.02962,0 0.07194,-0.004 0.04232,-0.004 0.07617,-0.0254 0.03385,-0.0212 0.05924,-0.0719 0.02539,-0.0508 0.02539,-0.13965 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path328" /> | |||
<path | |||
d="m 21.515625,371.54557 q 0,0.55436 -0.190429,1.01986 -0.19043,0.46549 -0.528972,0.80404 -0.338541,0.33854 -0.804036,0.52897 -0.461263,0.1862 -1.007162,0.1862 h -1.489583 q -0.545899,0 -1.011393,-0.1862 -0.465495,-0.19043 -0.804037,-0.52897 -0.338542,-0.33855 -0.533203,-0.80404 -0.19043,-0.4655 -0.19043,-1.01986 v -1.1595 q 0,-0.55013 0.19043,-1.01563 0.194661,-0.46972 0.533203,-0.80403 0.338542,-0.33855 0.804037,-0.52898 0.465494,-0.19043 1.011393,-0.19043 h 1.489583 q 0.545899,0 1.007162,0.19043 0.465495,0.19043 0.804036,0.52898 0.338542,0.33431 0.528972,0.80403 0.190429,0.4655 0.190429,1.01563 z m -1.10026,-1.1595 q 0,-0.32585 -0.105794,-0.58822 -0.101563,-0.2666 -0.291993,-0.4528 -0.186198,-0.19043 -0.452799,-0.29199 -0.26237,-0.10579 -0.579753,-0.10579 h -1.489583 q -0.321615,0 -0.588216,0.10579 -0.26237,0.10156 -0.4528,0.29199 -0.19043,0.1862 -0.296224,0.4528 -0.101562,0.26237 -0.101562,0.58822 v 1.1595 q 0,0.32585 0.101562,0.59245 0.105794,0.26237 0.296224,0.4528 0.19043,0.1862 0.4528,0.29199 0.266601,0.10156 0.588216,0.10156 h 1.48112 q 0.321614,0 0.583984,-0.10156 0.266602,-0.10579 0.457031,-0.29199 0.19043,-0.19043 0.291993,-0.4528 0.105794,-0.2666 0.105794,-0.59245 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path330" /> | |||
<path | |||
d="m 30.59961,373.44564 q 0,0.11849 -0.04232,0.22005 -0.04232,0.10156 -0.11849,0.17773 -0.07194,0.0719 -0.173502,0.11426 Q 30.163737,374 30.045248,374 h -3.969402 q -0.152343,0 -0.330078,-0.0338 -0.173502,-0.0381 -0.347005,-0.11426 -0.169271,-0.0762 -0.325846,-0.19466 -0.156576,-0.12272 -0.279297,-0.292 -0.11849,-0.1735 -0.19043,-0.39778 -0.07194,-0.22852 -0.07194,-0.51205 v -2.97916 q 0,-0.15235 0.03385,-0.32585 0.03809,-0.17773 0.114258,-0.347 0.07617,-0.17351 0.198893,-0.33008 0.122722,-0.15658 0.291992,-0.27507 0.173503,-0.12272 0.397787,-0.19466 0.224284,-0.0719 0.507812,-0.0719 h 4.472982 v 1.10026 h -4.472982 q -0.21582,0 -0.330078,0.11426 -0.114258,0.11426 -0.114258,0.33854 v 2.9707 q 0,0.21159 0.114258,0.33008 0.11849,0.11426 0.330078,0.11426 h 3.423503 v -1.37956 h -2.928385 v -1.10872 h 3.474284 q 0.118489,0 0.220052,0.0466 0.101562,0.0423 0.173502,0.11849 0.07617,0.0762 0.11849,0.17773 0.04232,0.0973 0.04232,0.21159 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path332" /> | |||
<path | |||
d="m 39.708986,374 h -1.100261 v -1.48958 H 34.740887 V 374 h -1.100261 v -3.03418 q 0,-0.66439 0.228516,-1.22298 0.228516,-0.5586 0.634766,-0.96061 0.40625,-0.40202 0.960612,-0.62631 0.554362,-0.22428 1.210286,-0.22428 h 2.479818 q 0.114258,0 0.21582,0.0423 0.101563,0.0423 0.177735,0.11849 0.07617,0.0762 0.118489,0.17773 0.04232,0.10156 0.04232,0.21582 z m -4.968099,-2.58984 h 3.867838 v -2.37826 h -1.933919 q -0.05078,0 -0.21582,0.0169 -0.160808,0.0127 -0.376628,0.0719 -0.211588,0.0592 -0.448568,0.18196 -0.236979,0.12273 -0.435872,0.33855 -0.198893,0.21582 -0.330078,0.54166 -0.126953,0.32162 -0.126953,0.78288 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path334" /> | |||
<path | |||
d="m 48.928386,373.44564 q 0,0.11849 -0.04232,0.22005 -0.04232,0.10156 -0.11849,0.17773 -0.07617,0.0719 -0.177734,0.11426 Q 48.488281,374 48.374024,374 h -2.479818 q -0.351237,0 -0.710938,-0.0762 -0.3597,-0.0762 -0.698242,-0.23275 -0.33431,-0.16081 -0.630534,-0.40625 -0.296224,-0.24544 -0.520508,-0.57975 -0.220052,-0.33854 -0.347005,-0.77018 -0.126953,-0.43588 -0.126953,-0.96908 v -3.03418 h 1.100261 v 3.03418 q 0,0.4655 0.126953,0.78711 0.131185,0.32161 0.330078,0.53743 0.198893,0.21582 0.435872,0.33855 0.236979,0.12272 0.448568,0.18196 0.21582,0.0592 0.376628,0.0762 0.165039,0.0127 0.21582,0.0127 h 1.933919 v -4.9681 h 1.100261 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path336" /> | |||
<path | |||
d="m 58.266279,371.46094 q 0,0.55436 -0.194662,1.01985 -0.190429,0.4655 -0.528971,0.80404 -0.338542,0.33431 -0.804036,0.52474 Q 56.273115,374 55.727216,374 h -2.970703 q -0.11849,0 -0.220052,-0.0423 -0.101563,-0.0423 -0.177734,-0.11426 -0.07194,-0.0762 -0.114258,-0.17773 -0.04232,-0.10156 -0.04232,-0.22005 V 368.486 q 0,-0.11426 0.04232,-0.21582 0.04232,-0.10156 0.114258,-0.17773 0.07617,-0.0762 0.177734,-0.11849 0.101562,-0.0423 0.220052,-0.0423 h 2.970703 q 0.545899,0 1.011394,0.19043 0.465494,0.19043 0.804036,0.52897 0.338542,0.33431 0.528971,0.80404 0.194662,0.46549 0.194662,1.01562 z m -1.100261,-0.99024 q 0,-0.32161 -0.105794,-0.58821 -0.101562,-0.2666 -0.291992,-0.4528 -0.19043,-0.19043 -0.457031,-0.29199 -0.26237,-0.1058 -0.583985,-0.1058 h -2.424805 v 3.86784 h 2.424805 q 0.321615,0 0.583985,-0.10156 0.266601,-0.1058 0.457031,-0.292 0.19043,-0.19042 0.291992,-0.45279 0.105794,-0.26661 0.105794,-0.59245 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path338" /> | |||
<path | |||
d="m 62.462565,374 h -1.10026 v -6.06836 h 1.10026 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path340" /> | |||
<path | |||
d="m 72.126305,371.54557 q 0,0.55436 -0.19043,1.01986 -0.19043,0.46549 -0.528971,0.80404 -0.338542,0.33854 -0.804037,0.52897 -0.461263,0.1862 -1.007161,0.1862 h -1.489584 q -0.545898,0 -1.011393,-0.1862 -0.465495,-0.19043 -0.804036,-0.52897 -0.338542,-0.33855 -0.533203,-0.80404 -0.19043,-0.4655 -0.19043,-1.01986 v -1.1595 q 0,-0.55013 0.19043,-1.01563 0.194661,-0.46972 0.533203,-0.80403 0.338541,-0.33855 0.804036,-0.52898 0.465495,-0.19043 1.011393,-0.19043 h 1.489584 q 0.545898,0 1.007161,0.19043 0.465495,0.19043 0.804037,0.52898 0.338541,0.33431 0.528971,0.80403 0.19043,0.4655 0.19043,1.01563 z m -1.100261,-1.1595 q 0,-0.32585 -0.105794,-0.58822 -0.101562,-0.2666 -0.291992,-0.4528 -0.186198,-0.19043 -0.4528,-0.29199 -0.262369,-0.10579 -0.579752,-0.10579 h -1.489584 q -0.321614,0 -0.588216,0.10579 -0.26237,0.10156 -0.452799,0.29199 -0.19043,0.1862 -0.296224,0.4528 -0.101563,0.26237 -0.101563,0.58822 v 1.1595 q 0,0.32585 0.101563,0.59245 0.105794,0.26237 0.296224,0.4528 0.190429,0.1862 0.452799,0.29199 0.266602,0.10156 0.588216,0.10156 h 1.48112 q 0.321615,0 0.583985,-0.10156 0.266601,-0.10579 0.457031,-0.29199 0.19043,-0.19043 0.291992,-0.4528 0.105794,-0.2666 0.105794,-0.59245 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path342" /> | |||
</g> | |||
<path | |||
style="fill:#dddddd" | |||
d="M 26.5,370 H 28 v 2 h -1.5 z" | |||
id="rect94" /> | |||
<path | |||
style="fill:#fafafa" | |||
d="m 11.5,32 h 24 c 2.77,0 5,2.23 5,5 v 29 c 0,2.77 -2.23,5 -5,5 h -24 c -2.77,0 -5,-2.23 -5,-5 V 37 c 0,-2.77 2.23,-5 5,-5 z" | |||
id="rect98" /> | |||
<path | |||
style="fill:#fafafa" | |||
d="m 6.5,62 h 34 v 10 h -34 z" | |||
id="rect100" /> | |||
<g | |||
aria-label="CLOCK" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="text102"> | |||
<path | |||
d="m 14.64388,65.421224 q -0.05534,0.764974 -0.566406,1.204427 -0.507813,0.439453 -1.341146,0.439453 -0.911458,0 -1.435547,-0.611979 -0.520833,-0.615234 -0.520833,-1.686198 v -0.289713 q 0,-0.683594 0.240885,-1.204427 0.240886,-0.520834 0.686849,-0.797526 0.449219,-0.279948 1.041667,-0.279948 0.820312,0 1.321614,0.439453 0.501303,0.439453 0.579428,1.233724 h -0.976563 q -0.03581,-0.458985 -0.257161,-0.664063 -0.218099,-0.208333 -0.667318,-0.208333 -0.488281,0 -0.732422,0.351562 -0.240885,0.348308 -0.247396,1.083985 v 0.358073 q 0,0.768229 0.23112,1.123046 0.234375,0.354818 0.735677,0.354818 0.452474,0 0.673828,-0.205078 0.22461,-0.208333 0.257162,-0.641276 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path348" /> | |||
<path | |||
d="m 17.261719,66.215495 h 2.073567 V 67 h -3.05013 v -4.739583 h 0.976563 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path350" /> | |||
<path | |||
d="m 24.576822,64.73763 q 0,0.69987 -0.247396,1.227214 -0.247395,0.527344 -0.709635,0.813802 -0.458984,0.286458 -1.054688,0.286458 -0.589192,0 -1.051432,-0.283203 -0.462239,-0.283203 -0.716146,-0.807292 -0.253906,-0.527343 -0.257161,-1.210937 v -0.234375 q 0,-0.69987 0.250651,-1.230469 0.253906,-0.533854 0.712891,-0.817057 0.462239,-0.286458 1.054687,-0.286458 0.592448,0 1.051432,0.286458 0.46224,0.283203 0.712891,0.817057 0.253906,0.530599 0.253906,1.227214 z m -0.989583,-0.214843 q 0,-0.745443 -0.266927,-1.132813 -0.266927,-0.38737 -0.761719,-0.38737 -0.491536,0 -0.758463,0.384115 -0.266928,0.380859 -0.270183,1.119791 v 0.23112 q 0,0.725912 0.266927,1.126302 0.266927,0.400391 0.768229,0.400391 0.491537,0 0.755209,-0.384115 0.263672,-0.387369 0.266927,-1.126302 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path352" /> | |||
<path | |||
d="m 30.013671,65.421224 q -0.05534,0.764974 -0.566406,1.204427 -0.507813,0.439453 -1.341146,0.439453 -0.911458,0 -1.435547,-0.611979 -0.520833,-0.615234 -0.520833,-1.686198 v -0.289713 q 0,-0.683594 0.240885,-1.204427 0.240886,-0.520834 0.686849,-0.797526 0.449219,-0.279948 1.041667,-0.279948 0.820312,0 1.321614,0.439453 0.501303,0.439453 0.579428,1.233724 h -0.976563 q -0.03581,-0.458985 -0.257161,-0.664063 -0.218099,-0.208333 -0.667318,-0.208333 -0.488281,0 -0.732422,0.351562 -0.240885,0.348308 -0.247396,1.083985 v 0.358073 q 0,0.768229 0.23112,1.123046 0.234375,0.354818 0.735677,0.354818 0.452474,0 0.673828,-0.205078 0.22461,-0.208333 0.257162,-0.641276 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path354" /> | |||
<path | |||
d="m 33.139322,65.098958 -0.507813,0.546875 V 67 h -0.976562 v -4.739583 h 0.976562 v 2.148437 l 0.429688,-0.589192 1.207682,-1.559245 h 1.201172 L 33.787108,64.366537 35.518879,67 h -1.16211 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path356" /> | |||
</g> | |||
<path | |||
style="fill:#fafafa" | |||
d="m 11.5,69 h 24 c 2.77,0 5,2.23 5,5 v 29 c 0,2.77 -2.23,5 -5,5 h -24 c -2.77,0 -5,-2.23 -5,-5 V 74 c 0,-2.77 2.23,-5 5,-5 z" | |||
id="rect106" /> | |||
<g | |||
aria-label="RESET" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="text108"> | |||
<path | |||
d="M 13.677734,102.26497 H 12.89974 V 104 h -0.976563 v -4.739583 h 1.761068 q 0.839843,0 1.295573,0.374349 0.455729,0.374344 0.455729,1.057944 0,0.48502 -0.211589,0.81055 -0.208333,0.32226 -0.634765,0.51432 l 1.02539,1.93685 V 104 h -1.048177 z m -0.777994,-0.79101 h 0.78776 q 0.367838,0 0.569661,-0.18555 0.201823,-0.1888 0.201823,-0.51758 0,-0.33528 -0.192057,-0.52734 -0.188802,-0.19206 -0.582682,-0.19206 H 12.89974 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path360" /> | |||
<path | |||
d="m 20.032552,101.94596 h -1.875 v 1.26953 h 2.200521 V 104 H 17.18099 v -4.739583 h 3.170572 v 0.791013 h -2.19401 v 1.12956 h 1.875 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path362" /> | |||
<path | |||
d="m 24.388672,102.75651 q 0,-0.27669 -0.195313,-0.42318 -0.195312,-0.14974 -0.703125,-0.3125 -0.507812,-0.16601 -0.804036,-0.32552 -0.807292,-0.4362 -0.807292,-1.17513 0,-0.38411 0.214844,-0.683591 0.218099,-0.302735 0.621745,-0.472006 0.406901,-0.16927 0.911458,-0.16927 0.507813,0 0.904948,0.185546 0.397135,0.182292 0.615234,0.517579 0.221354,0.335282 0.221354,0.761722 h -0.976562 q 0,-0.32552 -0.205078,-0.50456 -0.205078,-0.182293 -0.576172,-0.182293 -0.358073,0 -0.556641,0.152993 -0.198567,0.14974 -0.198567,0.39714 0,0.23112 0.23112,0.38737 0.234374,0.15625 0.686848,0.29297 0.833334,0.25065 1.214193,0.62174 0.380859,0.37109 0.380859,0.92448 0,0.61523 -0.465494,0.9668 -0.465495,0.3483 -1.253255,0.3483 -0.546875,0 -0.996094,-0.19856 -0.449219,-0.20183 -0.686849,-0.55013 -0.234375,-0.34831 -0.234375,-0.8073 h 0.979818 q 0,0.78451 0.9375,0.78451 0.348307,0 0.543619,-0.13997 0.195313,-0.14323 0.195313,-0.39714 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path364" /> | |||
<path | |||
d="m 29.884115,101.94596 h -1.875 v 1.26953 h 2.20052 V 104 h -3.177083 v -4.739583 h 3.170573 v 0.791013 h -2.19401 v 1.12956 h 1.875 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path366" /> | |||
<path | |||
d="M 35.415364,100.05143 H 33.963541 V 104 h -0.976563 v -3.94857 h -1.432291 v -0.791013 h 3.860677 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path368" /> | |||
</g> | |||
<g | |||
aria-label="STEPS" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="text112"> | |||
<path | |||
d="m 11.957031,119.50781 q 0,-0.33203 -0.234375,-0.50781 -0.234375,-0.17969 -0.84375,-0.375 -0.609375,-0.19922 -0.9648435,-0.39062 -0.96875,-0.52344 -0.96875,-1.41016 0,-0.46094 0.2578125,-0.82031 0.2617188,-0.36328 0.7460938,-0.56641 0.4882812,-0.20312 1.0937502,-0.20312 0.609375,0 1.085937,0.22265 0.476563,0.21875 0.738282,0.6211 0.265625,0.40234 0.265625,0.91406 h -1.171875 q 0,-0.39063 -0.246094,-0.60547 -0.246094,-0.21875 -0.691406,-0.21875 -0.429688,0 -0.667969,0.18359 -0.238281,0.17969 -0.238281,0.47657 0,0.27734 0.277343,0.46484 0.28125,0.1875 0.824219,0.35156 1,0.30078 1.457031,0.7461 0.457032,0.44531 0.457032,1.10937 0,0.73828 -0.558594,1.16016 -0.558594,0.41797 -1.503906,0.41797 -0.65625,0 -1.195313,-0.23829 -0.5390625,-0.24218 -0.8242187,-0.66015 -0.28125,-0.41797 -0.28125,-0.96875 h 1.1757812 q 0,0.9414 1.1250005,0.9414 0.417968,0 0.652343,-0.16796 0.234375,-0.17188 0.234375,-0.47657 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path371" /> | |||
<path | |||
d="M 19.710937,116.26172 H 17.96875 V 121 h -1.171875 v -4.73828 h -1.71875 v -0.94922 h 4.632812 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path373" /> | |||
<path | |||
d="m 25.304687,118.53516 h -2.25 v 1.52343 h 2.640625 V 121 h -3.8125 v -5.6875 H 25.6875 v 0.94922 h -2.632813 v 1.35547 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path375" /> | |||
<path | |||
d="M 29.054687,118.99609 V 121 h -1.171875 v -5.6875 h 2.21875 q 0.640625,0 1.125,0.23438 0.488282,0.23437 0.75,0.66796 0.261719,0.42969 0.261719,0.98047 0,0.83594 -0.574219,1.32032 -0.570312,0.48046 -1.582031,0.48046 z m 0,-0.94921 h 1.046875 q 0.464844,0 0.707032,-0.21875 0.246093,-0.21875 0.246093,-0.625 0,-0.41797 -0.246093,-0.67579 -0.246094,-0.25781 -0.679688,-0.26562 h -1.074219 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path377" /> | |||
<path | |||
d="m 37.488281,119.50781 q 0,-0.33203 -0.234375,-0.50781 -0.234375,-0.17969 -0.84375,-0.375 -0.609375,-0.19922 -0.964844,-0.39062 -0.96875,-0.52344 -0.96875,-1.41016 0,-0.46094 0.257813,-0.82031 0.261719,-0.36328 0.746094,-0.56641 0.488281,-0.20312 1.09375,-0.20312 0.609375,0 1.085937,0.22265 0.476563,0.21875 0.738281,0.6211 0.265625,0.40234 0.265625,0.91406 h -1.171875 q 0,-0.39063 -0.246093,-0.60547 Q 37,116.16797 36.554687,116.16797 q -0.429687,0 -0.667968,0.18359 -0.238282,0.17969 -0.238282,0.47657 0,0.27734 0.277344,0.46484 0.28125,0.1875 0.824219,0.35156 1,0.30078 1.457031,0.7461 0.457031,0.44531 0.457031,1.10937 0,0.73828 -0.558593,1.16016 -0.558594,0.41797 -1.503907,0.41797 -0.65625,0 -1.195312,-0.23829 -0.539063,-0.24218 -0.824219,-0.66015 -0.28125,-0.41797 -0.28125,-0.96875 h 1.175781 q 0,0.9414 1.125,0.9414 0.417969,0 0.652344,-0.16796 0.234375,-0.17188 0.234375,-0.47657 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path379" /> | |||
</g> | |||
<g | |||
id="use114" | |||
transform="translate(3.5,120)"> | |||
<g | |||
id="g212" | |||
transform="translate(20,20)"> | |||
<g | |||
aria-label="2" | |||
transform="translate(-8.5,13.25833)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text198"> | |||
<path | |||
d="M 3.5709635,0 H 0.32226562 V -0.64453123 L 1.8554687,-2.2786458 q 0.3157552,-0.3450521 0.4654948,-0.6022135 0.1529948,-0.2571615 0.1529948,-0.4882812 0,-0.3157552 -0.1595052,-0.4947917 -0.1595052,-0.1822917 -0.4557292,-0.1822917 -0.3190104,0 -0.5045573,0.2213542 -0.1822916,0.218099 -0.1822916,0.5761719 H 0.22786458 q 0,-0.4329427 0.20507812,-0.7910156 0.20833333,-0.358073 0.5859375,-0.5598959 0.3776041,-0.2050781 0.8561198,-0.2050781 0.7324218,0 1.1360676,0.3515625 0.4069011,0.3515625 0.4069011,0.9928385 0,0.3515625 -0.1822917,0.7161458 -0.1822917,0.3645834 -0.625,0.8496094 l -1.0774739,1.13606768 h 2.0377604 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path382" /> | |||
</g> | |||
<g | |||
aria-label="3" | |||
transform="translate(-14.802501,4.2574263)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text200"> | |||
<path | |||
d="m 1.2792968,-2.7864583 h 0.5013021 q 0.3580729,0 0.530599,-0.1790364 0.172526,-0.1790365 0.172526,-0.4752604 0,-0.2864584 -0.172526,-0.4459636 -0.1692709,-0.1595052 -0.46875,-0.1595052 -0.2701823,0 -0.452474,0.1497396 -0.1822916,0.1464844 -0.1822916,0.3841146 H 0.26692708 q 0,-0.3710937 0.1985677,-0.6640625 0.20182291,-0.2962239 0.55989582,-0.4622396 0.3613281,-0.1660156 0.7942708,-0.1660156 0.7519531,0 1.1783854,0.3613281 0.4264323,0.3580729 0.4264323,0.9895833 0,0.3255209 -0.1985677,0.5989584 -0.1985677,0.2734375 -0.5208333,0.4199218 0.4003906,0.1432292 0.5957031,0.4296875 0.1985677,0.2864583 0.1985677,0.6770833 0,0.63151043 -0.4622396,1.0123698 -0.4589844,0.38085937 -1.2174479,0.38085937 -0.7096354,0 -1.16210933,-0.37434895 Q 0.20833333,-0.68359373 0.20833333,-1.2988281 H 1.1490885 q 0,0.2669271 0.1985677,0.43619791 0.2018229,0.16927083 0.4947917,0.16927083 0.3352864,0 0.5240885,-0.17578124 0.1920573,-0.1790365 0.1920573,-0.4720052 0,-0.7096354 -0.78125,-0.7096354 H 1.2792968 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path385" /> | |||
</g> | |||
<g | |||
aria-label="4" | |||
transform="translate(-11.958578,-6.3562389)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text202"> | |||
<path | |||
d="M 3.1054687,-1.7838541 H 3.642578 v 0.7584635 H 3.1054687 V 0 H 2.1647135 V -1.0253906 H 0.22135416 L 0.17903645,-1.6178385 2.1549479,-4.7395832 h 0.9505208 z m -1.9889323,0 h 1.0481771 v -1.6731771 l -0.061849,0.1074219 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path388" /> | |||
</g> | |||
<g | |||
aria-label="5" | |||
transform="translate(-2,-11)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text204"> | |||
<path | |||
d="m 0.46223957,-2.3307291 0.2734375,-2.4088541 H 3.391927 V -3.955078 H 1.5071614 l -0.1171875,1.0188802 q 0.3352865,-0.1790365 0.7128906,-0.1790365 0.6770834,0 1.0611979,0.4199219 0.3841146,0.4199218 0.3841146,1.1751301 0,0.4589844 -0.1953125,0.82356773 -0.1920573,0.36132812 -0.5533854,0.56315103 -0.3613281,0.19856771 -0.8528646,0.19856771 -0.4296875,0 -0.797526,-0.17252604 Q 0.78124998,-0.28320312 0.56640624,-0.59895832 0.3548177,-0.91471352 0.34179687,-1.3183593 H 1.2727864 q 0.029297,0.2962239 0.2050781,0.46223953 0.1790365,0.16276041 0.4654948,0.16276041 0.3190104,0 0.4915365,-0.22786458 0.172526,-0.23111976 0.172526,-0.65104166 0,-0.4036458 -0.1985677,-0.6184896 -0.1985677,-0.2148437 -0.563151,-0.2148437 -0.3352865,0 -0.5436198,0.1757812 l -0.091146,0.084636 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path391" /> | |||
</g> | |||
<g | |||
aria-label="6" | |||
transform="translate(7.9585778,-6.3562389)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text206"> | |||
<path | |||
d="m 2.8743489,-4.7884113 v 0.7747395 h -0.091146 q -0.6380209,0.00977 -1.0286459,0.3320313 -0.3873697,0.3222656 -0.4654947,0.8951822 0.3776041,-0.3841145 0.953776,-0.3841145 0.6184896,0 0.9830729,0.4427083 0.3645833,0.4427083 0.3645833,1.1653645 0,0.4622396 -0.2018229,0.83658856 -0.1985677,0.37434895 -0.5664062,0.58268228 -0.3645834,0.20833333 -0.8268229,0.20833333 -0.7486979,0 -1.21093751,-0.52083333 Q 0.32552083,-0.97656248 0.32552083,-1.8457031 v -0.3385416 q 0,-0.7714844 0.28971353,-1.3606771 0.29296874,-0.5924479 0.83658854,-0.9147135 0.546875,-0.3255208 1.266276,-0.328776 z m -0.9179687,2.3730468 q -0.2278646,0 -0.4134115,0.1204427 -0.1855469,0.1171875 -0.2734375,0.3125 v 0.2864583 q 0,0.4720052 0.1855469,0.73893227 0.1855469,0.26367187 0.5208333,0.26367187 0.3027344,0 0.4882812,-0.2376302 0.1888021,-0.24088544 0.1888021,-0.62174474 0,-0.3873698 -0.1888021,-0.625 -0.188802,-0.2376302 -0.5078124,-0.2376302 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path394" /> | |||
</g> | |||
<g | |||
aria-label="7" | |||
transform="translate(10.802501,4.2574263)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text208"> | |||
<path | |||
d="M 3.5449218,-4.2122395 1.7122395,0 H 0.71940102 L 2.5553385,-3.9778645 H 0.1985677 v -0.7617187 h 3.3463541 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path397" /> | |||
</g> | |||
<g | |||
aria-label="8" | |||
transform="translate(4.5,13.25833)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text210"> | |||
<path | |||
d="m 3.4114583,-3.4798176 q 0,0.345052 -0.1725261,0.6119791 -0.172526,0.2669271 -0.4752604,0.4264323 0.3450521,0.1660156 0.546875,0.4589844 0.2018229,0.2897135 0.2018229,0.6835937 0,0.63151041 -0.4296875,0.99934894 -0.4296875,0.36458333 -1.1686197,0.36458333 -0.7389323,0 -1.17187502,-0.36783854 -0.4329427,-0.36783853 -0.4329427,-0.99609373 0,-0.3938802 0.20182292,-0.6868489 0.20182291,-0.2929688 0.5436198,-0.4557292 -0.30273439,-0.1595052 -0.47526043,-0.4264323 -0.16927083,-0.2669271 -0.16927083,-0.6119791 0,-0.6054688 0.40364582,-0.9635417 0.40364584,-0.3613281 1.09700514,-0.3613281 0.6901042,0 1.09375,0.3580729 0.4069011,0.3548177 0.4069011,0.9667969 z m -0.843099,2.1126301 q 0,-0.3092448 -0.1790364,-0.4947916 Q 2.2102864,-2.047526 1.907552,-2.047526 q -0.2994791,0 -0.4785156,0.1855469 Q 1.25,-1.6796875 1.25,-1.3671875 q 0,0.3027344 0.1757812,0.48828127 0.1757813,0.18554687 0.4882813,0.18554687 0.3059895,0 0.4785156,-0.17903645 0.1757812,-0.17903649 0.1757812,-0.49479169 z m -0.097656,-2.0670572 q 0,-0.2766927 -0.1464844,-0.4427083 -0.1464844,-0.1692709 -0.4134115,-0.1692709 -0.2636718,0 -0.4101562,0.1627605 -0.1464844,0.1627604 -0.1464844,0.4492187 0,0.2832031 0.1464844,0.4557291 0.1464844,0.1725261 0.4134115,0.1725261 0.266927,0 0.4101562,-0.1725261 0.1464844,-0.172526 0.1464844,-0.4557291 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path400" /> | |||
</g> | |||
</g> | |||
</g> | |||
<g | |||
aria-label="FWD" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text118"> | |||
<path | |||
d="m 17.974739,163.06315 h -1.875 V 165 h -0.976562 v -4.73958 h 3.085937 v 0.79101 h -2.109375 v 1.22396 h 1.875 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path403" /> | |||
<path | |||
d="m 24.473437,163.63281 0.638021,-3.37239 h 0.973307 L 25.033333,165 H 24.05026 L 23.278776,161.82943 22.507291,165 h -0.983073 l -1.051432,-4.73958 h 0.973307 l 0.641276,3.36588 0.78125,-3.36588 h 0.826823 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path405" /> | |||
<path | |||
d="m 28.615364,165 v -4.73958 h 1.458334 q 0.625,0 1.116536,0.2832 0.494792,0.27995 0.771484,0.80078 0.276693,0.51758 0.276693,1.17839 v 0.2181 q 0,0.6608 -0.273437,1.17513 -0.270183,0.51432 -0.764974,0.79752 -0.494792,0.2832 -1.116537,0.28646 z m 0.976563,-3.94857 v 3.16406 h 0.472005 q 0.572917,0 0.875651,-0.37434 0.302734,-0.37435 0.309245,-1.07097 v -0.25065 q 0,-0.72265 -0.299479,-1.09375 -0.299479,-0.37435 -0.875651,-0.37435 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path407" /> | |||
</g> | |||
<g | |||
aria-label="REV" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text120"> | |||
<path | |||
d="M 17.377734,198.26497 H 16.599739 V 200 h -0.976562 v -4.73958 h 1.761068 q 0.839843,0 1.295572,0.37435 0.45573,0.37434 0.45573,1.05794 0,0.48502 -0.211589,0.81055 -0.208333,0.32226 -0.634766,0.51432 l 1.025391,1.93685 V 200 h -1.048177 z m -0.777995,-0.79101 H 17.3875 q 0.367838,0 0.569661,-0.18555 0.201823,-0.1888 0.201823,-0.51758 0,-0.33528 -0.192057,-0.52734 -0.188802,-0.19206 -0.582682,-0.19206 h -0.784506 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path410" /> | |||
<path | |||
d="m 24.732552,197.94596 h -1.875 v 1.26953 h 2.200521 V 200 h -3.177084 v -4.73958 h 3.170573 v 0.79101 h -2.19401 v 1.12956 h 1.875 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path412" /> | |||
<path | |||
d="m 29.382291,198.82487 1.074219,-3.56445 h 1.08724 L 29.893359,200 h -1.01888 l -1.64388,-4.73958 h 1.083984 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path414" /> | |||
</g> | |||
<!-- <rect width="45" height="14" fill="#0f0" transform="translate(0 200)" /> --> | |||
<!-- <rect width="45" height="14" fill="#0f0" transform="translate(0 307)" /> --> | |||
<g | |||
aria-label="SELECT" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="text124"> | |||
<path | |||
d="m 8.9570313,218.50781 q 0,-0.33203 -0.234375,-0.50781 -0.234375,-0.17969 -0.8437501,-0.375 -0.609375,-0.19922 -0.9648437,-0.39063 -0.96875,-0.52343 -0.96875,-1.41015 0,-0.46094 0.2578125,-0.82031 0.2617187,-0.36329 0.7460937,-0.56641 0.4882813,-0.20313 1.0937501,-0.20313 0.609375,0 1.0859375,0.22266 0.4765625,0.21875 0.7382812,0.62109 0.2656255,0.40235 0.2656255,0.91407 H 8.9609375 q 0,-0.39063 -0.2460937,-0.60547 -0.2460938,-0.21875 -0.6914063,-0.21875 -0.4296875,0 -0.6679688,0.18359 -0.2382812,0.17969 -0.2382812,0.47656 0,0.27735 0.2773437,0.46485 0.28125,0.1875 0.8242188,0.35156 1,0.30078 1.4570313,0.74609 0.4570317,0.44532 0.4570317,1.10938 0,0.73828 -0.5585942,1.16016 -0.5585938,0.41796 -1.5039063,0.41796 -0.65625,0 -1.1953125,-0.23828 -0.5390625,-0.24218 -0.8242188,-0.66015 -0.28125,-0.41797 -0.28125,-0.96875 h 1.1757813 q 0,0.9414 1.125,0.9414 0.4179688,0 0.6523438,-0.16797 0.234375,-0.17187 0.234375,-0.47656 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path236" /> | |||
<path | |||
d="m 15.851563,217.53516 h -2.25 v 1.52343 h 2.640624 V 220 h -3.812499 v -5.6875 h 3.804687 v 0.94922 h -2.632812 v 1.35547 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path238" /> | |||
<path | |||
d="m 19.601562,219.05859 h 2.488282 V 220 h -3.660157 v -5.6875 h 1.171875 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path240" /> | |||
<path | |||
d="m 27.679687,217.53516 h -2.25 v 1.52343 h 2.640625 V 220 h -3.8125 v -5.6875 H 28.0625 v 0.94922 h -2.632813 v 1.35547 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path242" /> | |||
<path | |||
d="m 34.722656,218.10547 q -0.06641,0.91797 -0.679687,1.44531 -0.609375,0.52734 -1.609375,0.52734 -1.09375,0 -1.722657,-0.73437 -0.625,-0.73828 -0.625,-2.02344 v -0.34765 q 0,-0.82032 0.289063,-1.44532 0.289062,-0.625 0.824219,-0.95703 0.539062,-0.33594 1.25,-0.33594 0.984375,0 1.585937,0.52735 0.601563,0.52734 0.695313,1.48047 h -1.171875 q -0.04297,-0.55078 -0.308594,-0.79688 -0.261719,-0.25 -0.800781,-0.25 -0.585938,0 -0.878907,0.42188 -0.289062,0.41797 -0.296875,1.30078 v 0.42969 q 0,0.92187 0.277344,1.34765 0.28125,0.42578 0.882813,0.42578 0.542968,0 0.808593,-0.24609 0.269532,-0.25 0.308594,-0.76953 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path244" /> | |||
<path | |||
d="M 41.164062,215.26172 H 39.421875 V 220 H 38.25 v -4.73828 h -1.71875 v -0.94922 h 4.632812 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path246" /> | |||
</g> | |||
<g | |||
id="use126" | |||
transform="translate(1,222)"> | |||
<g | |||
id="g232" | |||
transform="translate(22.5,22.5)"> | |||
<g | |||
aria-label="1" | |||
transform="translate(-12,19.320508)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text216"> | |||
<path | |||
d="M 2.6074218,0 H 1.6666666 v -3.626302 l -1.12304682,0.3483073 v -0.764974 L 2.5065104,-4.7460936 h 0.1009114 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path249" /> | |||
</g> | |||
<g | |||
aria-label="2" | |||
transform="translate(-21.11586,7.8808065)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text218"> | |||
<path | |||
d="M 3.5709635,0 H 0.32226562 V -0.64453123 L 1.8554687,-2.2786458 q 0.3157552,-0.3450521 0.4654948,-0.6022135 0.1529948,-0.2571615 0.1529948,-0.4882812 0,-0.3157552 -0.1595052,-0.4947917 -0.1595052,-0.1822917 -0.4557292,-0.1822917 -0.3190104,0 -0.5045573,0.2213542 -0.1822916,0.218099 -0.1822916,0.5761719 H 0.22786458 q 0,-0.4329427 0.20507812,-0.7910156 0.20833333,-0.358073 0.5859375,-0.5598959 0.3776041,-0.2050781 0.8561198,-0.2050781 0.7324218,0 1.1360676,0.3515625 0.4069011,0.3515625 0.4069011,0.9928385 0,0.3515625 -0.1822917,0.7161458 -0.1822917,0.3645834 -0.625,0.8496094 l -1.0774739,1.13606768 h 2.0377604 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path252" /> | |||
</g> | |||
<g | |||
aria-label="3" | |||
transform="translate(-20.02154,-6.6731817)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text220"> | |||
<path | |||
d="m 1.2792968,-2.7864583 h 0.5013021 q 0.3580729,0 0.530599,-0.1790364 0.172526,-0.1790365 0.172526,-0.4752604 0,-0.2864584 -0.172526,-0.4459636 -0.1692709,-0.1595052 -0.46875,-0.1595052 -0.2701823,0 -0.452474,0.1497396 -0.1822916,0.1464844 -0.1822916,0.3841146 H 0.26692708 q 0,-0.3710937 0.1985677,-0.6640625 0.20182291,-0.2962239 0.55989582,-0.4622396 0.3613281,-0.1660156 0.7942708,-0.1660156 0.7519531,0 1.1783854,0.3613281 0.4264323,0.3580729 0.4264323,0.9895833 0,0.3255209 -0.1985677,0.5989584 -0.1985677,0.2734375 -0.5208333,0.4199218 0.4003906,0.1432292 0.5957031,0.4296875 0.1985677,0.2864583 0.1985677,0.6770833 0,0.63151043 -0.4622396,1.0123698 -0.4589844,0.38085937 -1.2174479,0.38085937 -0.7096354,0 -1.16210933,-0.37434895 Q 0.20833333,-0.68359373 0.20833333,-1.2988281 H 1.1490885 q 0,0.2669271 0.1985677,0.43619791 0.2018229,0.16927083 0.4947917,0.16927083 0.3352864,0 0.5240885,-0.17578124 0.1920573,-0.1790365 0.1920573,-0.4720052 0,-0.7096354 -0.78125,-0.7096354 H 1.2792968 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path255" /> | |||
</g> | |||
<g | |||
aria-label="4" | |||
transform="translate(-9.2975357,-16.621116)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text222"> | |||
<path | |||
d="M 3.1054687,-1.7838541 H 3.642578 v 0.7584635 H 3.1054687 V 0 H 2.1647135 V -1.0253906 H 0.22135416 L 0.17903645,-1.6178385 2.1549479,-4.7395832 h 0.9505208 z m -1.9889323,0 h 1.0481771 v -1.6731771 l -0.061849,0.1074219 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path258" /> | |||
</g> | |||
<g | |||
aria-label="5" | |||
transform="translate(5.2975357,-16.621116)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text224"> | |||
<path | |||
d="m 0.46223957,-2.3307291 0.2734375,-2.4088541 H 3.391927 V -3.955078 H 1.5071614 l -0.1171875,1.0188802 q 0.3352865,-0.1790365 0.7128906,-0.1790365 0.6770834,0 1.0611979,0.4199219 0.3841146,0.4199218 0.3841146,1.1751301 0,0.4589844 -0.1953125,0.82356773 -0.1920573,0.36132812 -0.5533854,0.56315103 -0.3613281,0.19856771 -0.8528646,0.19856771 -0.4296875,0 -0.797526,-0.17252604 Q 0.78124998,-0.28320312 0.56640624,-0.59895832 0.3548177,-0.91471352 0.34179687,-1.3183593 H 1.2727864 q 0.029297,0.2962239 0.2050781,0.46223953 0.1790365,0.16276041 0.4654948,0.16276041 0.3190104,0 0.4915365,-0.22786458 0.172526,-0.23111976 0.172526,-0.65104166 0,-0.4036458 -0.1985677,-0.6184896 -0.1985677,-0.2148437 -0.563151,-0.2148437 -0.3352865,0 -0.5436198,0.1757812 l -0.091146,0.084636 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path261" /> | |||
</g> | |||
<g | |||
aria-label="6" | |||
transform="translate(16.02154,-6.6731817)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text226"> | |||
<path | |||
d="m 2.8743489,-4.7884113 v 0.7747395 h -0.091146 q -0.6380209,0.00977 -1.0286459,0.3320313 -0.3873697,0.3222656 -0.4654947,0.8951822 0.3776041,-0.3841145 0.953776,-0.3841145 0.6184896,0 0.9830729,0.4427083 0.3645833,0.4427083 0.3645833,1.1653645 0,0.4622396 -0.2018229,0.83658856 -0.1985677,0.37434895 -0.5664062,0.58268228 -0.3645834,0.20833333 -0.8268229,0.20833333 -0.7486979,0 -1.21093751,-0.52083333 Q 0.32552083,-0.97656248 0.32552083,-1.8457031 v -0.3385416 q 0,-0.7714844 0.28971353,-1.3606771 0.29296874,-0.5924479 0.83658854,-0.9147135 0.546875,-0.3255208 1.266276,-0.328776 z m -0.9179687,2.3730468 q -0.2278646,0 -0.4134115,0.1204427 -0.1855469,0.1171875 -0.2734375,0.3125 v 0.2864583 q 0,0.4720052 0.1855469,0.73893227 0.1855469,0.26367187 0.5208333,0.26367187 0.3027344,0 0.4882812,-0.2376302 0.1888021,-0.24088544 0.1888021,-0.62174474 0,-0.3873698 -0.1888021,-0.625 -0.188802,-0.2376302 -0.5078124,-0.2376302 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path264" /> | |||
</g> | |||
<g | |||
aria-label="7" | |||
transform="translate(17.11586,7.8808065)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text228"> | |||
<path | |||
d="M 3.5449218,-4.2122395 1.7122395,0 H 0.71940102 L 2.5553385,-3.9778645 H 0.1985677 v -0.7617187 h 3.3463541 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path267" /> | |||
</g> | |||
<g | |||
aria-label="8" | |||
transform="translate(8,19.320508)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text230"> | |||
<path | |||
d="m 3.4114583,-3.4798176 q 0,0.345052 -0.1725261,0.6119791 -0.172526,0.2669271 -0.4752604,0.4264323 0.3450521,0.1660156 0.546875,0.4589844 0.2018229,0.2897135 0.2018229,0.6835937 0,0.63151041 -0.4296875,0.99934894 -0.4296875,0.36458333 -1.1686197,0.36458333 -0.7389323,0 -1.17187502,-0.36783854 -0.4329427,-0.36783853 -0.4329427,-0.99609373 0,-0.3938802 0.20182292,-0.6868489 0.20182291,-0.2929688 0.5436198,-0.4557292 -0.30273439,-0.1595052 -0.47526043,-0.4264323 -0.16927083,-0.2669271 -0.16927083,-0.6119791 0,-0.6054688 0.40364582,-0.9635417 0.40364584,-0.3613281 1.09700514,-0.3613281 0.6901042,0 1.09375,0.3580729 0.4069011,0.3548177 0.4069011,0.9667969 z m -0.843099,2.1126301 q 0,-0.3092448 -0.1790364,-0.4947916 Q 2.2102864,-2.047526 1.907552,-2.047526 q -0.2994791,0 -0.4785156,0.1855469 Q 1.25,-1.6796875 1.25,-1.3671875 q 0,0.3027344 0.1757812,0.48828127 0.1757813,0.18554687 0.4882813,0.18554687 0.3059895,0 0.4785156,-0.17903645 0.1757812,-0.17903649 0.1757812,-0.49479169 z m -0.097656,-2.0670572 q 0,-0.2766927 -0.1464844,-0.4427083 -0.1464844,-0.1692709 -0.4134115,-0.1692709 -0.2636718,0 -0.4101562,0.1627605 -0.1464844,0.1627604 -0.1464844,0.4492187 0,0.2832031 0.1464844,0.4557291 0.1464844,0.1725261 0.4134115,0.1725261 0.266927,0 0.4101562,-0.1725261 0.1464844,-0.172526 0.1464844,-0.4557291 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path270" /> | |||
</g> | |||
</g> | |||
</g> | |||
<g | |||
id="g132" | |||
transform="translate(6.5,267)"> | |||
<path | |||
style="fill:#fafafa" | |||
d="m 5,0 h 24 c 2.77,0 5,2.23 5,5 v 29 c 0,2.77 -2.23,5 -5,5 H 5 C 2.23,39 0,36.77 0,34 V 5 C 0,2.23 2.23,0 5,0 Z" | |||
id="rect128" /> | |||
<g | |||
aria-label="CV" | |||
transform="translate(11.5,35)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text130"> | |||
<path | |||
d="m 4.1438801,-1.578776 q -0.055338,0.76497394 -0.5664062,1.20442705 -0.5078125,0.43945312 -1.3411458,0.43945312 -0.9114583,0 -1.43554687,-0.61197916 Q 0.27994791,-1.1621093 0.27994791,-2.2330729 v -0.2897135 q 0,-0.6835937 0.24088541,-1.2044271 0.24088541,-0.5208333 0.68684898,-0.797526 0.4492187,-0.2799479 1.0416666,-0.2799479 0.8203125,0 1.3216146,0.4394531 0.501302,0.4394531 0.579427,1.233724 H 3.173828 q -0.035807,-0.4589844 -0.2571614,-0.6640625 -0.218099,-0.2083334 -0.6673177,-0.2083334 -0.4882812,0 -0.7324219,0.3515625 -0.2408854,0.3483073 -0.2473958,1.0839844 v 0.3580729 q 0,0.7682291 0.2311198,1.1230468 0.234375,0.35481774 0.7356771,0.35481774 0.4524739,0 0.6738281,-0.20507812 Q 3.1347656,-1.1458333 3.1673176,-1.578776 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path274" /> | |||
<path | |||
d="m 8.5364581,-1.1751302 1.0742187,-3.564453 H 10.697916 L 9.0475258,0 H 8.0286456 L 6.3847655,-4.7395832 h 1.0839843 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path276" /> | |||
</g> | |||
</g> | |||
<path | |||
style="fill:#fafafa" | |||
d="m 11.5,321 h 24 c 2.77,0 5,2.23 5,5 v 29 c 0,2.77 -2.23,5 -5,5 h -24 c -2.77,0 -5,-2.23 -5,-5 v -29 c 0,-2.77 2.23,-5 5,-5 z" | |||
id="rect136" /> | |||
<g | |||
aria-label="IN" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text138"> | |||
<path | |||
d="m 20.461589,356 h -0.976563 v -4.73958 h 0.976563 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path280" /> | |||
<path | |||
d="m 27.217448,356 h -0.976563 l -1.901041,-3.11849 V 356 h -0.976563 v -4.73958 h 0.976563 l 1.904296,3.125 v -3.125 h 0.973308 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path282" /> | |||
</g> | |||
<path | |||
style="fill:#bbbbbb" | |||
d="m 54.5,23 h 24 c 2.77,0 5,2.23 5,5 v 327 c 0,2.77 -2.23,5 -5,5 h -24 c -2.77,0 -5,-2.23 -5,-5 V 28 c 0,-2.77 2.23,-5 5,-5 z" | |||
id="rect142" /> | |||
<g | |||
aria-label="OUT" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text144"> | |||
<path | |||
d="m 62.316406,29.73763 q 0,0.69987 -0.247396,1.227214 -0.247396,0.527344 -0.709635,0.813802 -0.458984,0.286458 -1.054688,0.286458 -0.589192,0 -1.051432,-0.283203 -0.462239,-0.283203 -0.716146,-0.807292 -0.253906,-0.527343 -0.257161,-1.210937 v -0.234375 q 0,-0.69987 0.250651,-1.230469 0.253906,-0.533854 0.712891,-0.817057 0.462239,-0.286458 1.054687,-0.286458 0.592448,0 1.051432,0.286458 0.46224,0.283203 0.712891,0.817057 0.253906,0.530599 0.253906,1.227214 z m -0.989583,-0.214843 q 0,-0.745443 -0.266927,-1.132813 -0.266927,-0.38737 -0.761719,-0.38737 -0.491536,0 -0.758463,0.384115 -0.266928,0.380859 -0.270183,1.119791 v 0.23112 q 0,0.725912 0.266927,1.126302 0.266927,0.400391 0.768229,0.400391 0.491537,0 0.755209,-0.384115 0.263672,-0.387369 0.266927,-1.126302 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path286" /> | |||
<path | |||
d="m 68.619792,27.260417 v 3.121744 q 0,0.777995 -0.488282,1.230469 -0.485026,0.452474 -1.328125,0.452474 -0.830078,0 -1.318359,-0.439453 -0.488281,-0.439453 -0.498047,-1.207682 v -3.157552 h 0.976563 v 3.128255 q 0,0.465495 0.221354,0.680338 0.224609,0.211589 0.618489,0.211589 0.823568,0 0.836589,-0.865885 v -3.154297 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path288" /> | |||
<path | |||
d="M 74.988281,28.051432 H 73.536458 V 32 h -0.976563 v -3.948568 h -1.432291 v -0.791015 h 3.860677 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path290" /> | |||
</g> | |||
<g | |||
aria-label="1" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text146"> | |||
<path | |||
d="m 63.107422,67 h -0.940755 v -3.626302 l -1.123047,0.348307 v -0.764974 l 1.96289,-0.703125 h 0.100912 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path293" /> | |||
</g> | |||
<g | |||
aria-label="2" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text148"> | |||
<path | |||
d="m 64.070963,108.3 h -3.248697 v -0.64453 l 1.533203,-1.63411 q 0.315755,-0.34505 0.465494,-0.60222 0.152995,-0.25716 0.152995,-0.48828 0,-0.31575 -0.159505,-0.49479 -0.159505,-0.18229 -0.455729,-0.18229 -0.31901,0 -0.504557,0.22135 -0.182292,0.2181 -0.182292,0.57618 h -0.94401 q 0,-0.43295 0.205078,-0.79102 0.208333,-0.35807 0.585937,-0.5599 0.377604,-0.20507 0.85612,-0.20507 0.732422,0 1.136068,0.35156 0.406901,0.35156 0.406901,0.99284 0,0.35156 -0.182292,0.71614 -0.182292,0.36459 -0.625,0.84961 l -1.077474,1.13607 h 2.03776 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path296" /> | |||
</g> | |||
<g | |||
aria-label="3" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text150"> | |||
<path | |||
d="m 61.779297,147.81355 h 0.501302 q 0.358073,0 0.530599,-0.17904 0.172526,-0.17904 0.172526,-0.47526 0,-0.28646 -0.172526,-0.44596 -0.169271,-0.15951 -0.46875,-0.15951 -0.270182,0 -0.452474,0.14974 -0.182292,0.14649 -0.182292,0.38412 h -0.940755 q 0,-0.3711 0.198568,-0.66407 0.201823,-0.29622 0.559896,-0.46224 0.361328,-0.16601 0.79427,-0.16601 0.751954,0 1.178386,0.36133 0.426432,0.35807 0.426432,0.98958 0,0.32552 -0.198568,0.59896 -0.198567,0.27344 -0.520833,0.41992 0.400391,0.14323 0.595703,0.42969 0.198568,0.28646 0.198568,0.67708 0,0.63151 -0.46224,1.01237 -0.458984,0.38086 -1.217448,0.38086 -0.709635,0 -1.162109,-0.37435 -0.449219,-0.37435 -0.449219,-0.98958 h 0.940756 q 0,0.26693 0.198567,0.4362 0.201823,0.16927 0.494792,0.16927 0.335286,0 0.524088,-0.17578 0.192058,-0.17904 0.192058,-0.47201 0,-0.70964 -0.78125,-0.70964 h -0.498047 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path299" /> | |||
</g> | |||
<g | |||
aria-label="4" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text152"> | |||
<path | |||
d="m 63.605469,189.11614 h 0.537109 v 0.75846 h -0.537109 v 1.02539 h -0.940756 v -1.02539 h -1.943359 l -0.04232,-0.59244 1.975912,-3.12175 h 0.950521 z m -1.988933,0 h 1.048177 v -1.67318 l -0.06185,0.10742 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path302" /> | |||
</g> | |||
<g | |||
aria-label="5" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text154"> | |||
<path | |||
d="m 60.96224,229.76928 0.273437,-2.40886 h 2.65625 v 0.78451 h -1.884766 l -0.117187,1.01888 q 0.335286,-0.17904 0.712891,-0.17904 0.677083,0 1.061197,0.41992 0.384115,0.41993 0.384115,1.17513 0,0.45899 -0.195312,0.82357 -0.192058,0.36133 -0.553386,0.56315 -0.361328,0.19857 -0.852864,0.19857 -0.429688,0 -0.797526,-0.17253 -0.367839,-0.17578 -0.582683,-0.49153 -0.211588,-0.31576 -0.224609,-0.7194 h 0.930989 q 0.0293,0.29622 0.205079,0.46224 0.179036,0.16276 0.465494,0.16276 0.319011,0 0.491537,-0.22787 0.172526,-0.23112 0.172526,-0.65104 0,-0.40365 -0.198568,-0.61849 -0.198568,-0.21484 -0.563151,-0.21484 -0.335286,0 -0.54362,0.17578 l -0.09115,0.0846 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path305" /> | |||
</g> | |||
<g | |||
aria-label="6" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text156"> | |||
<path | |||
d="m 63.374349,268.61158 v 0.77474 h -0.09115 q -0.638021,0.01 -1.028646,0.33203 -0.38737,0.32227 -0.465495,0.89519 0.377605,-0.38412 0.953776,-0.38412 0.61849,0 0.983073,0.44271 0.364584,0.44271 0.364584,1.16536 0,0.46224 -0.201823,0.83659 -0.198568,0.37435 -0.566406,0.58268 -0.364584,0.20834 -0.826823,0.20834 -0.748698,0 -1.210938,-0.52084 -0.458984,-0.52083 -0.458984,-1.38997 v -0.33854 q 0,-0.77149 0.289713,-1.36068 0.292969,-0.59245 0.836589,-0.91471 0.546875,-0.32552 1.266276,-0.32878 z m -0.917969,2.37305 q -0.227864,0 -0.413411,0.12044 -0.185547,0.11719 -0.273438,0.3125 v 0.28646 q 0,0.47201 0.185547,0.73893 0.185547,0.26367 0.520833,0.26367 0.302735,0 0.488282,-0.23763 0.188802,-0.24088 0.188802,-0.62174 0,-0.38737 -0.188802,-0.625 -0.188802,-0.23763 -0.507813,-0.23763 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path308" /> | |||
</g> | |||
<g | |||
aria-label="7" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text158"> | |||
<path | |||
d="m 64.044922,310.48777 -1.832682,4.21224 h -0.992839 l 1.835937,-3.97786 h -2.35677 v -0.76172 h 3.346354 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path311" /> | |||
</g> | |||
<g | |||
aria-label="8" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text160"> | |||
<path | |||
d="m 63.911458,352.52018 q 0,0.34505 -0.172526,0.61198 -0.172526,0.26693 -0.47526,0.42643 0.345052,0.16602 0.546875,0.45899 0.201823,0.28971 0.201823,0.68359 0,0.63151 -0.429688,0.99935 -0.429687,0.36458 -1.16862,0.36458 -0.738932,0 -1.171875,-0.36783 -0.432942,-0.36784 -0.432942,-0.9961 0,-0.39388 0.201823,-0.68685 0.201823,-0.29297 0.543619,-0.45573 -0.302734,-0.1595 -0.47526,-0.42643 -0.169271,-0.26693 -0.169271,-0.61198 0,-0.60547 0.403646,-0.96354 0.403646,-0.36133 1.097005,-0.36133 0.690104,0 1.09375,0.35808 0.406901,0.35481 0.406901,0.96679 z m -0.843099,2.11263 q 0,-0.30924 -0.179036,-0.49479 -0.179037,-0.18555 -0.481771,-0.18555 -0.299479,0 -0.478516,0.18555 -0.179036,0.18229 -0.179036,0.49479 0,0.30274 0.175781,0.48828 0.175781,0.18555 0.488281,0.18555 0.30599,0 0.478516,-0.17904 0.175781,-0.17903 0.175781,-0.49479 z m -0.09766,-2.06705 q 0,-0.2767 -0.146484,-0.44271 -0.146485,-0.16927 -0.413412,-0.16927 -0.263672,0 -0.410156,0.16276 -0.146484,0.16276 -0.146484,0.44922 0,0.2832 0.146484,0.45572 0.146484,0.17253 0.413411,0.17253 0.266928,0 0.410157,-0.17253 0.146484,-0.17252 0.146484,-0.45572 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path314" /> | |||
</g> | |||
<!-- <polyline points="0,0 90,0" stroke="#f00" stroke-width="1" fill="none" transform="translate(0 47)" /> --> | |||
<!-- <polyline points="0,0 90,0" stroke="#f00" stroke-width="1" fill="none" transform="translate(0 336)" /> --> | |||
<!-- <polyline points="0,0 90,0" stroke="#f00" stroke-width="1" fill="none" transform="translate(0 351)" /> --> | |||
<!-- <polyline points="0,0 0,360" stroke="#f00" stroke-width="1" fill="none" transform="translate(23.50 0)" /> --> | |||
</svg> |
@@ -0,0 +1,781 @@ | |||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
<svg | |||
xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
xmlns:cc="http://creativecommons.org/ns#" | |||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
xmlns:svg="http://www.w3.org/2000/svg" | |||
xmlns="http://www.w3.org/2000/svg" | |||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |||
version="1.1" | |||
width="45" | |||
height="380" | |||
viewBox="0 0 45 380" | |||
id="svg171" | |||
sodipodi:docname="svg_render_tmp.svg" | |||
inkscape:version="0.92.2 5c3e80d, 2017-08-06"> | |||
<metadata | |||
id="metadata175"> | |||
<rdf:RDF> | |||
<cc:Work | |||
rdf:about=""> | |||
<dc:format>image/svg+xml</dc:format> | |||
<dc:type | |||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
</cc:Work> | |||
</rdf:RDF> | |||
</metadata> | |||
<sodipodi:namedview | |||
pagecolor="#ffffff" | |||
bordercolor="#666666" | |||
borderopacity="1" | |||
objecttolerance="10" | |||
gridtolerance="10" | |||
guidetolerance="10" | |||
inkscape:pageopacity="0" | |||
inkscape:pageshadow="2" | |||
inkscape:window-width="468" | |||
inkscape:window-height="449" | |||
id="namedview173" | |||
showgrid="false" | |||
inkscape:zoom="0.62105263" | |||
inkscape:cx="22.5" | |||
inkscape:cy="190" | |||
inkscape:window-x="0" | |||
inkscape:window-y="0" | |||
inkscape:window-maximized="0" | |||
inkscape:current-layer="svg171" /> | |||
<style | |||
id="style2"> | |||
text { | |||
fill: #333; | |||
font-family: 'Roboto', sans-serif; | |||
font-weight: bold; | |||
} | |||
text.title { | |||
font-family: 'Comfortaa', sans-serif; | |||
font-weight: normal; | |||
} | |||
text.brand { | |||
font-family: 'Audiowide', sans-serif; | |||
font-weight: bold; | |||
} | |||
</style> | |||
<defs | |||
id="defs99"> | |||
<symbol | |||
id="knob-medium" | |||
viewBox="0 0 45px 45px"> | |||
<g | |||
transform="translate(22.5 22.5)" | |||
id="g10"> | |||
<polyline | |||
points="-5,0 5,0" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline4" /> | |||
<polyline | |||
points="0,-5 0,5" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline6" /> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="14" | |||
stroke-width="1" | |||
stroke="#00f" | |||
fill="none" | |||
id="circle8" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="knob-smallest" | |||
viewBox="0 0 16px 16px"> | |||
<g | |||
transform="translate(8 8)" | |||
id="g19"> | |||
<polyline | |||
points="-3,0 3,0" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline13" /> | |||
<polyline | |||
points="0,-3 0,3" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline15" /> | |||
<circle | |||
r="7.5" | |||
stroke-width="1" | |||
stroke="#00f" | |||
fill="none" | |||
id="circle17" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="knobguide-change" | |||
viewBox="0 0 45px 45px"> | |||
<g | |||
transform="translate(22.5 22.5)" | |||
id="g44"> | |||
<polyline | |||
points="0,0 4,0" | |||
stroke-width="1.0" | |||
stroke="#333" | |||
transform="rotate(-240) translate(17 0)" | |||
id="polyline22" /> | |||
<polyline | |||
points="0,0 2.5,0" | |||
stroke-width="0.3" | |||
stroke="#333" | |||
transform="rotate(-210) translate(17 0)" | |||
id="polyline24" /> | |||
<polyline | |||
points="0,0 2.5,0" | |||
stroke-width="0.3" | |||
stroke="#333" | |||
transform="rotate(-180) translate(17 0)" | |||
id="polyline26" /> | |||
<polyline | |||
points="0,0 2.5,0" | |||
stroke-width="0.3" | |||
stroke="#333" | |||
transform="rotate(-150) translate(17 0)" | |||
id="polyline28" /> | |||
<polyline | |||
points="0,0 2.5,0" | |||
stroke-width="0.3" | |||
stroke="#333" | |||
transform="rotate(-120) translate(17 0)" | |||
id="polyline30" /> | |||
<polyline | |||
points="0,0 2.5,0" | |||
stroke-width="0.3" | |||
stroke="#333" | |||
transform="rotate(-90) translate(17 0)" | |||
id="polyline32" /> | |||
<polyline | |||
points="0,0 2.5,0" | |||
stroke-width="0.3" | |||
stroke="#333" | |||
transform="rotate(-60) translate(17 0)" | |||
id="polyline34" /> | |||
<polyline | |||
points="0,0 2.5,0" | |||
stroke-width="0.3" | |||
stroke="#333" | |||
transform="rotate(-30) translate(17 0)" | |||
id="polyline36" /> | |||
<polyline | |||
points="0,0 2.5,0" | |||
stroke-width="0.3" | |||
stroke="#333" | |||
transform="rotate(0) translate(17 0)" | |||
id="polyline38" /> | |||
<polyline | |||
points="0,0 2.5,0" | |||
stroke-width="0.3" | |||
stroke="#333" | |||
transform="rotate(30) translate(17 0)" | |||
id="polyline40" /> | |||
<polyline | |||
points="0,0 2.5,0" | |||
stroke-width="0.3" | |||
stroke="#333" | |||
transform="rotate(60) translate(17 0)" | |||
id="polyline42" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="knobguide-centertick" | |||
viewBox="0 0 40px 40px"> | |||
<g | |||
transform="translate(20 20)" | |||
id="g59"> | |||
<g | |||
transform="rotate(-90) translate(10 0)" | |||
id="g49"> | |||
<polyline | |||
points="0,0 4,0" | |||
stroke-width="1" | |||
stroke="#333" | |||
id="polyline47" /> | |||
</g> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(20)" | |||
id="path51" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(43)" | |||
id="path53" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(-20)" | |||
id="path55" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(-43)" | |||
id="path57" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="knobguide-maxtick" | |||
viewBox="0 0 40px 40px"> | |||
<g | |||
transform="translate(20 20)" | |||
id="g74"> | |||
<g | |||
transform="rotate(60) translate(10 0)" | |||
id="g64"> | |||
<polyline | |||
points="0,0 4,0" | |||
stroke-width="1" | |||
stroke="#333" | |||
id="polyline62" /> | |||
</g> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(0)" | |||
id="path66" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(43)" | |||
id="path68" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(0)" | |||
id="path70" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(-43)" | |||
id="path72" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="input" | |||
viewBox="0 0 24px 24px"> | |||
<g | |||
transform="translate(12 12)" | |||
id="g81"> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="5" | |||
stroke-width="1" | |||
stroke="#0f0" | |||
fill="#0f0" | |||
id="circle77" /> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="10.5" | |||
stroke-width="3" | |||
stroke="#0f0" | |||
fill="none" | |||
id="circle79" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="output" | |||
viewBox="0 0 24px 24px"> | |||
<g | |||
transform="translate(12 12)" | |||
id="g88"> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="5" | |||
stroke-width="1" | |||
stroke="#f00" | |||
fill="#f00" | |||
id="circle84" /> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="10.5" | |||
stroke-width="3" | |||
stroke="#f00" | |||
fill="none" | |||
id="circle86" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="button-small" | |||
viewBox="0 0 9px 9px"> | |||
<g | |||
transform="translate(4.5 4.5)" | |||
id="g93"> | |||
<circle | |||
r="4" | |||
stroke-width="1" | |||
stroke="#00f" | |||
fill="#f00" | |||
id="circle91" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="light-small" | |||
viewBox="0 0 6.4px 6.4px"> | |||
<rect | |||
width="6.4" | |||
height="6.4" | |||
fill="#0f0" | |||
id="rect96" /> | |||
</symbol> | |||
</defs> | |||
<path | |||
style="fill:#dddddd" | |||
d="M 0,0 H 45 V 380 H 0 Z" | |||
id="rect101" /> | |||
<path | |||
style="fill:none;stroke:#e4e4e4;stroke-width:0.5" | |||
d="M 1,1 H 44 V 379 H 1 V 1" | |||
id="polyline103" /> | |||
<path | |||
style="fill:none;stroke:#ebebeb;stroke-width:0.80000001" | |||
d="m 0.5,0.5 h 44 v 379 H 0.5 V 0.5" | |||
id="polyline105" /> | |||
<path | |||
style="fill:none;stroke:#f2f2f2;stroke-width:1" | |||
d="M 0,0 H 45 V 380 H 0 V 0" | |||
id="polyline107" /> | |||
<g | |||
aria-label="WALK" | |||
transform="rotate(-90)" | |||
style="font-weight:normal;font-size:9.33333302px;font-family:Comfortaa, sans-serif;letter-spacing:2.5px;fill:#333333" | |||
id="text109"> | |||
<path | |||
d="m -367.768,5.7106669 q 0.14933,0 0.23333,0.1026667 0.084,0.093333 0.084,0.2426666 0,0.074667 -0.028,0.1773334 l -1.904,6.4586664 q -0.0467,0.149333 -0.14933,0.233333 Q -369.62533,13 -369.756,13 q -0.13067,0 -0.23333,-0.084 -0.0933,-0.084 -0.13067,-0.214667 l -1.512,-5.5159995 -1.50267,5.5066665 q -0.0467,0.14 -0.14933,0.224 -0.0933,0.084 -0.224,0.084 -0.13067,0 -0.23333,-0.084 -0.0933,-0.084 -0.13067,-0.214667 l -1.91333,-6.4679994 q -0.028,-0.1026667 -0.028,-0.168 0,-0.1586667 0.0933,-0.252 0.0933,-0.1026667 0.24267,-0.1026667 0.26133,0 0.35466,0.28 l 1.61467,5.6280001 1.53067,-5.4693334 q 0.028,-0.1026667 0.12133,-0.168 0.10267,-0.065333 0.224,-0.065333 0.12133,0 0.21467,0.065333 0.0933,0.065333 0.13066,0.1773333 l 1.54,5.4693331 1.624,-5.6746664 q 0.0747,-0.2426667 0.35467,-0.2426667 z" | |||
style="font-weight:normal;font-size:9.33333302px;font-family:Comfortaa, sans-serif;letter-spacing:2.5px;fill:#333333" | |||
id="path353" /> | |||
<path | |||
d="m -359.00358,12.486667 q 0.0373,0.06533 0.0373,0.149333 0,0.149333 -0.112,0.261333 Q -359.18092,13 -359.33025,13 q -0.24267,0 -0.34533,-0.224 l -0.62534,-1.512 h -3.612 l -0.62533,1.512 q -0.0747,0.224 -0.336,0.224 -0.15867,0 -0.26133,-0.102667 -0.0933,-0.112 -0.0933,-0.261333 0,-0.09333 0.028,-0.158667 l 2.744,-6.5146661 q 0.10267,-0.252 0.35467,-0.252 0.252,0 0.34533,0.252 z m -1.54934,-1.848 -1.54933,-3.7426668 -1.54933,3.7426668 z" | |||
style="font-weight:normal;font-size:9.33333302px;font-family:Comfortaa, sans-serif;letter-spacing:2.5px;fill:#333333" | |||
id="path355" /> | |||
<path | |||
d="m -355.04642,13 q -0.14933,0 -0.26133,-0.102667 -0.10267,-0.112 -0.10267,-0.261333 V 6.0746669 q 0,-0.1493333 0.10267,-0.252 0.112,-0.112 0.26133,-0.112 0.15867,0 0.26134,0.1026667 0.10266,0.1026666 0.10266,0.2613333 v 6.2346661 h 3.64934 q 0.15866,0 0.26133,0.102667 0.10267,0.09333 0.10267,0.242667 0,0.149333 -0.10267,0.252 Q -350.87442,13 -351.03308,13 Z" | |||
style="font-weight:normal;font-size:9.33333302px;font-family:Comfortaa, sans-serif;letter-spacing:2.5px;fill:#333333" | |||
id="path357" /> | |||
<path | |||
d="m -346.64017,13 q -0.14933,0 -0.26133,-0.102667 -0.10267,-0.112 -0.10267,-0.261333 V 6.0746669 q 0,-0.1493333 0.10267,-0.252 0.112,-0.112 0.26133,-0.112 0.15867,0 0.26134,0.1026667 0.10266,0.1026666 0.10266,0.2613333 v 3.1733332 l 3.40667,-3.4066665 q 0.13067,-0.1306667 0.28933,-0.1306667 0.15867,0 0.24267,0.093333 0.0933,0.093333 0.0933,0.2333334 0,0.168 -0.12133,0.2986666 l -2.55733,2.5573333 2.58533,3.5279995 q 0.0747,0.121334 0.0747,0.224 0,0.14 -0.10267,0.252 Q -342.45883,13 -342.59883,13 q -0.20534,0 -0.308,-0.158667 l -2.53867,-3.4346662 -0.83067,0.8400002 V 12.636 q 0,0.149333 -0.10266,0.261333 Q -346.4815,13 -346.64017,13 Z" | |||
style="font-weight:normal;font-size:9.33333302px;font-family:Comfortaa, sans-serif;letter-spacing:2.5px;fill:#333333" | |||
id="path359" /> | |||
</g> | |||
<g | |||
id="g115" | |||
transform="rotate(-90,200.5,175.5)"> | |||
<g | |||
aria-label="BGA" | |||
style="font-weight:bold;font-size:9.33333302px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text111"> | |||
<path | |||
d="m 7.2096352,-1.4355468 q 0,0.21875 -0.077474,0.469401 -0.072917,0.25065103 -0.2460937,0.46484373 -0.1686198,0.2141927 -0.4420573,0.36002603 Q 6.1705727,0 5.7740883,0 H 1.2760416 Q 1.1484375,0 1.0390625,-0.04557292 0.92968747,-0.09114583 0.84765622,-0.16861979 q -0.077474,-0.0820312 -0.12304687,-0.19140624 -0.0455729,-0.109375 -0.0455729,-0.23697916 V -5.9381508 q 0,-0.1230469 0.0455729,-0.2324219 0.0455729,-0.109375 0.12304687,-0.1914062 0.0820313,-0.082031 0.19140628,-0.1276042 0.109375,-0.045573 0.2369791,-0.045573 h 3.9648436 q 0.21875,0 0.4694011,0.077474 0.250651,0.077474 0.4648437,0.2506511 0.21875,0.1686197 0.360026,0.4420572 0.1458334,0.2734375 0.1458334,0.6699219 v 0.2233073 q 0,0.3144531 -0.1048177,0.6790364 -0.1048178,0.360026 -0.3372396,0.6835937 0.2005208,0.1230469 0.3736979,0.296224 0.1777344,0.1731771 0.3098958,0.4010416 0.1321615,0.2278646 0.2096354,0.514974 0.077474,0.2871093 0.077474,0.6334635 z M 6.0247394,-1.6634114 q 0,-0.2324219 -0.072917,-0.4147135 Q 5.878906,-2.2649739 5.7467446,-2.3971353 5.6145831,-2.5292968 5.4277342,-2.5976562 5.2408852,-2.6705728 5.0084634,-2.6705728 H 2.3378905 v -1.1940104 h 2.1373698 q 0.2324218,0 0.4192708,-0.068359 0.1868489,-0.072917 0.3190104,-0.2050781 0.1321614,-0.1321614 0.2005208,-0.3144531 0.072917,-0.186849 0.072917,-0.4192708 v -0.2233073 q 0,-0.2552083 -0.2460938,-0.2552083 h -3.376953 v 4.1653644 h 3.9101561 q 0.031901,0 0.077474,-0.00456 0.045573,-0.00456 0.082031,-0.027344 0.036458,-0.022787 0.063802,-0.077474 0.027344,-0.054687 0.027344,-0.1503906 z" | |||
style="font-weight:bold;font-size:9.33333302px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path362" /> | |||
<path | |||
d="m 16.683594,-0.59700519 q 0,0.12760416 -0.04557,0.23697916 -0.04557,0.109375 -0.127605,0.19140624 -0.07747,0.07747396 -0.186849,0.12304687 Q 16.214192,0 16.086588,0 h -4.274739 q -0.164063,0 -0.355469,-0.03645833 -0.186849,-0.04101563 -0.373698,-0.12304687 -0.182291,-0.0820313 -0.350911,-0.20963541 -0.16862,-0.13216146 -0.300781,-0.31445312 -0.127605,-0.18684895 -0.205079,-0.42838537 -0.07747,-0.2460938 -0.07747,-0.5514323 v -3.2083332 q 0,-0.1640625 0.03646,-0.3509115 0.04101,-0.1914062 0.123047,-0.3736979 0.08203,-0.1868489 0.214192,-0.3554687 0.132162,-0.1686198 0.314453,-0.296224 0.186849,-0.1321614 0.428386,-0.2096354 0.241536,-0.077474 0.546875,-0.077474 h 4.817057 v 1.1848958 h -4.817057 q -0.232422,0 -0.355469,0.1230468 -0.123047,0.1230469 -0.123047,0.3645834 v 3.1992186 q 0,0.2278646 0.123047,0.3554687 0.127604,0.1230469 0.355469,0.1230469 h 3.686849 v -1.485677 h -3.153646 v -1.1940104 h 3.741536 q 0.127604,0 0.236979,0.05013 0.109375,0.045573 0.186849,0.1276042 0.08203,0.082031 0.127605,0.1914062 0.04557,0.1048177 0.04557,0.2278646 z" | |||
style="font-weight:bold;font-size:9.33333302px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path364" /> | |||
<path | |||
d="M 26.339842,0 H 25.154946 V -1.6041666 H 20.989582 V 0 h -1.184896 v -3.267578 q 0,-0.7154948 0.246094,-1.3170573 0.246094,-0.6015624 0.683594,-1.0345051 0.4375,-0.4329427 1.034505,-0.6744792 0.597005,-0.2415364 1.303385,-0.2415364 h 2.670573 q 0.123047,0 0.232422,0.045573 0.109375,0.045573 0.191406,0.1276042 0.08203,0.082031 0.127604,0.1914062 0.04557,0.109375 0.04557,0.2324219 z m -5.35026,-2.7890624 h 4.165364 v -2.5611978 h -2.082682 q -0.05469,0 -0.232422,0.018229 -0.173177,0.013672 -0.405599,0.077474 -0.227864,0.063802 -0.483072,0.1959635 -0.255209,0.1321615 -0.469402,0.3645833 -0.214192,0.2324219 -0.355468,0.5833334 -0.136719,0.3463541 -0.136719,0.8430989 z" | |||
style="font-weight:bold;font-size:9.33333302px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path366" /> | |||
</g> | |||
<path | |||
transform="translate(11.5,-5)" | |||
style="fill:#dddddd" | |||
d="M 0,0 H 3 V 3 H 0 Z" | |||
id="rect113" /> | |||
</g> | |||
<!-- <polyline points="0,0 0,300" stroke="#0f0" stroke-width="1" fill="none" transform="translate(22.5 0)" /> --> | |||
<g | |||
aria-label="RATE" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="text119"> | |||
<path | |||
d="M 12.613281,22.917969 H 11.679688 V 25 h -1.171875 v -5.6875 h 2.113281 q 1.007812,0 1.554687,0.449219 0.546875,0.449218 0.546875,1.269531 0,0.582031 -0.253906,0.972656 -0.25,0.386719 -0.761719,0.617188 L 14.9375,24.945312 V 25 H 13.679688 Z M 11.679688,21.96875 H 12.625 q 0.441406,0 0.683594,-0.222656 0.242187,-0.226563 0.242187,-0.621094 0,-0.402344 -0.230468,-0.632813 -0.226563,-0.230468 -0.699219,-0.230468 h -0.941406 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path261" /> | |||
<path | |||
d="M 20.328125,23.828125 H 18.273437 L 17.882812,25 h -1.246093 l 2.117187,-5.6875 h 1.085938 L 21.96875,25 h -1.246094 z m -1.738281,-0.949219 h 1.421875 L 19.296875,20.75 Z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path263" /> | |||
<path | |||
d="M 27.820312,20.261719 H 26.078125 V 25 H 24.90625 V 20.261719 H 23.1875 V 19.3125 h 4.632812 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path265" /> | |||
<path | |||
d="m 33.414062,22.535156 h -2.25 v 1.523438 h 2.640625 V 25 h -3.8125 v -5.6875 h 3.804688 v 0.949219 h -2.632813 v 1.355468 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path267" /> | |||
</g> | |||
<g | |||
id="use121" | |||
transform="translate(0,28)"> | |||
<g | |||
id="g257" | |||
transform="translate(22.5,22.5)"> | |||
<path | |||
transform="rotate(120,-8.5,4.9074773)" | |||
style="stroke:#333333;stroke-width:1" | |||
d="M 0,0 H 4" | |||
id="polyline235" /> | |||
<path | |||
transform="rotate(150,-8.5,2.2775681)" | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline237" /> | |||
<path | |||
transform="rotate(-180,-8.5,0)" | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline239" /> | |||
<path | |||
transform="rotate(-150,-8.5,-2.2775681)" | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline241" /> | |||
<path | |||
transform="rotate(-120,-8.5,-4.9074773)" | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline243" /> | |||
<path | |||
transform="rotate(-90,-8.5,-8.5)" | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline245" /> | |||
<path | |||
transform="rotate(-60,-8.5,-14.722432)" | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline247" /> | |||
<path | |||
transform="rotate(-30,-8.5,-31.722432)" | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline249" /> | |||
<path | |||
transform="translate(17)" | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline251" /> | |||
<path | |||
transform="rotate(30,-8.5,31.722432)" | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline253" /> | |||
<path | |||
transform="rotate(60,-8.5,14.722432)" | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline255" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g127" | |||
transform="translate(5.5,74)"> | |||
<path | |||
style="fill:#fafafa" | |||
d="m 5,0 h 24 c 2.77,0 5,2.23 5,5 v 29 c 0,2.77 -2.23,5 -5,5 H 5 C 2.23,39 0,36.77 0,34 V 5 C 0,2.23 2.23,0 5,0 Z" | |||
id="rect123" /> | |||
<g | |||
aria-label="CV" | |||
transform="translate(11,35)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text125"> | |||
<path | |||
d="m 4.1438801,-1.578776 q -0.055338,0.76497394 -0.5664062,1.20442705 -0.5078125,0.43945312 -1.3411458,0.43945312 -0.9114583,0 -1.43554687,-0.61197916 Q 0.27994791,-1.1621093 0.27994791,-2.2330729 v -0.2897135 q 0,-0.6835937 0.24088541,-1.2044271 0.24088541,-0.5208333 0.68684898,-0.797526 0.4492187,-0.2799479 1.0416666,-0.2799479 0.8203125,0 1.3216146,0.4394531 0.501302,0.4394531 0.579427,1.233724 H 3.173828 q -0.035807,-0.4589844 -0.2571614,-0.6640625 -0.218099,-0.2083334 -0.6673177,-0.2083334 -0.4882812,0 -0.7324219,0.3515625 -0.2408854,0.3483073 -0.2473958,1.0839844 v 0.3580729 q 0,0.7682291 0.2311198,1.1230468 0.234375,0.35481774 0.7356771,0.35481774 0.4524739,0 0.6738281,-0.20507812 Q 3.1347656,-1.1458333 3.1673176,-1.578776 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path282" /> | |||
<path | |||
d="m 8.5364581,-1.1751302 1.0742187,-3.564453 H 10.697916 L 9.0475258,0 H 8.0286456 L 6.3847655,-4.7395832 h 1.0839843 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path284" /> | |||
</g> | |||
</g> | |||
<g | |||
aria-label="OFFSET" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="text131"> | |||
<path | |||
d="m 9.6796875,125.28516 q 0,0.83984 -0.296875,1.47265 -0.296875,0.63282 -0.8515625,0.97657 -0.5507813,0.34374 -1.265625,0.34374 -0.7070313,0 -1.2617188,-0.33984 -0.5546875,-0.33984 -0.859375,-0.96875 -0.3046875,-0.63281 -0.3085937,-1.45312 v -0.28125 q 0,-0.83985 0.3007812,-1.47657 0.3046875,-0.64062 0.8554688,-0.98046 0.5546875,-0.34375 1.265625,-0.34375 0.7109375,0 1.2617188,0.34375 0.5546875,0.33984 0.8554687,0.98046 0.3046875,0.63672 0.3046875,1.47266 z m -1.1875,-0.25782 q 0,-0.89453 -0.3203125,-1.35937 -0.3203125,-0.46484 -0.9140625,-0.46484 -0.5898438,0 -0.9101563,0.46093 -0.3203125,0.45703 -0.3242187,1.34375 v 0.27735 q 0,0.87109 0.3203125,1.35156 0.3203125,0.48047 0.921875,0.48047 0.5898437,0 0.90625,-0.46094 0.3164063,-0.46484 0.3203125,-1.35156 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path287" /> | |||
<path | |||
d="m 15.460938,125.67578 h -2.25 V 128 h -1.171875 v -5.6875 h 3.703125 v 0.94922 h -2.53125 v 1.46875 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path289" /> | |||
<path | |||
d="m 21.351562,125.67578 h -2.25 V 128 h -1.171875 v -5.6875 h 3.703125 v 0.94922 h -2.53125 v 1.46875 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path291" /> | |||
<path | |||
d="m 26.769531,126.50781 q 0,-0.33203 -0.234375,-0.50781 -0.234375,-0.17969 -0.84375,-0.375 -0.609375,-0.19922 -0.964844,-0.39062 -0.96875,-0.52344 -0.96875,-1.41016 0,-0.46094 0.257813,-0.82031 0.261719,-0.36328 0.746094,-0.56641 0.488281,-0.20312 1.09375,-0.20312 0.609375,0 1.085937,0.22265 0.476563,0.21875 0.738281,0.6211 0.265625,0.40234 0.265625,0.91406 h -1.171875 q 0,-0.39063 -0.246093,-0.60547 -0.246094,-0.21875 -0.691407,-0.21875 -0.429687,0 -0.667968,0.18359 -0.238282,0.17969 -0.238282,0.47657 0,0.27734 0.277344,0.46484 0.28125,0.1875 0.824219,0.35156 1,0.30078 1.457031,0.7461 0.457031,0.44531 0.457031,1.10937 0,0.73828 -0.558593,1.16016 -0.558594,0.41796 -1.503907,0.41796 -0.65625,0 -1.195312,-0.23828 -0.539063,-0.24218 -0.824219,-0.66015 -0.28125,-0.41797 -0.28125,-0.96875 h 1.175781 q 0,0.9414 1.125,0.9414 0.417969,0 0.652344,-0.16796 0.234375,-0.17188 0.234375,-0.47657 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path293" /> | |||
<path | |||
d="m 33.664062,125.53516 h -2.25 v 1.52343 h 2.640625 V 128 h -3.8125 v -5.6875 h 3.804688 v 0.94922 h -2.632813 v 1.35547 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path295" /> | |||
<path | |||
d="M 40.601562,123.26172 H 38.859375 V 128 H 37.6875 v -4.73828 h -1.71875 v -0.94922 h 4.632812 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path297" /> | |||
</g> | |||
<g | |||
id="use133" | |||
transform="translate(2.5,125)"> | |||
<g | |||
id="g231" | |||
transform="translate(20,20)"> | |||
<g | |||
id="g221" | |||
transform="rotate(-90,-5,-5)"> | |||
<path | |||
style="stroke:#333333;stroke-width:1" | |||
d="M 0,0 H 4" | |||
id="polyline219" /> | |||
</g> | |||
<path | |||
id="path223" | |||
transform="rotate(20)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 1 12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path225" | |||
transform="rotate(43)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 1 12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path227" | |||
transform="rotate(-20)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 0 -12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path229" | |||
transform="rotate(-43)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 0 -12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
</g> | |||
</g> | |||
<g | |||
aria-label="SCALE" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text137"> | |||
<path | |||
d="m 8.9570313,167.50781 q 0,-0.33203 -0.234375,-0.50781 -0.234375,-0.17969 -0.8437501,-0.375 -0.609375,-0.19922 -0.9648437,-0.39063 -0.96875,-0.52343 -0.96875,-1.41015 0,-0.46094 0.2578125,-0.82031 0.2617187,-0.36329 0.7460937,-0.56641 0.4882813,-0.20313 1.0937501,-0.20313 0.609375,0 1.0859375,0.22266 0.4765625,0.21875 0.7382812,0.62109 0.2656255,0.40235 0.2656255,0.91407 H 8.9609375 q 0,-0.39063 -0.2460937,-0.60547 -0.2460938,-0.21875 -0.6914063,-0.21875 -0.4296875,0 -0.6679688,0.18359 -0.2382812,0.17969 -0.2382812,0.47656 0,0.27735 0.2773437,0.46485 0.28125,0.1875 0.8242188,0.35156 1,0.30078 1.4570313,0.74609 0.4570317,0.44532 0.4570317,1.10938 0,0.73828 -0.5585942,1.16016 -0.5585938,0.41796 -1.5039063,0.41796 -0.65625,0 -1.1953125,-0.23828 -0.5390625,-0.24218 -0.8242188,-0.66015 -0.28125,-0.41797 -0.28125,-0.96875 h 1.1757813 q 0,0.9414 1.125,0.9414 0.4179688,0 0.6523438,-0.16797 0.234375,-0.17187 0.234375,-0.47656 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path301" /> | |||
<path | |||
d="m 17.394531,167.10547 q -0.06641,0.91797 -0.679687,1.44531 -0.609375,0.52734 -1.609375,0.52734 -1.09375,0 -1.722656,-0.73437 -0.625,-0.73828 -0.625,-2.02344 v -0.34765 q 0,-0.82032 0.289062,-1.44532 0.289063,-0.625 0.824219,-0.95703 0.539062,-0.33594 1.25,-0.33594 0.984375,0 1.585937,0.52735 0.601563,0.52734 0.695313,1.48047 h -1.171875 q -0.04297,-0.55078 -0.308594,-0.79688 -0.261719,-0.25 -0.800781,-0.25 -0.585938,0 -0.878906,0.42188 -0.289063,0.41797 -0.296875,1.30078 v 0.42969 q 0,0.92187 0.277343,1.34765 0.28125,0.42578 0.882813,0.42578 0.542969,0 0.808594,-0.24609 0.269531,-0.25 0.308593,-0.76953 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path303" /> | |||
<path | |||
d="M 23.375,167.82812 H 21.320312 L 20.929687,169 h -1.246093 l 2.117187,-5.6875 h 1.085938 L 25.015625,169 h -1.246094 z m -1.738281,-0.94921 h 1.421875 L 22.34375,164.75 Z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path305" /> | |||
<path | |||
d="m 28.726562,168.05859 h 2.488282 V 169 h -3.660157 v -5.6875 h 1.171875 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path307" /> | |||
<path | |||
d="m 37.304687,166.53516 h -2.25 v 1.52343 h 2.640625 V 169 h -3.8125 v -5.6875 H 37.6875 v 0.94922 h -2.632813 v 1.35547 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path309" /> | |||
</g> | |||
<g | |||
id="use139" | |||
transform="translate(2.5,166)"> | |||
<g | |||
id="g215" | |||
transform="translate(20,20)"> | |||
<g | |||
id="g205" | |||
transform="rotate(60,-5,8.660254)"> | |||
<path | |||
style="stroke:#333333;stroke-width:1" | |||
d="M 0,0 H 4" | |||
id="polyline203" /> | |||
</g> | |||
<path | |||
id="path207" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 1 12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path209" | |||
transform="rotate(43)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 1 12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path211" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 0 -12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path213" | |||
transform="rotate(-43)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 0 -12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g151" | |||
transform="translate(0,207)"> | |||
<g | |||
id="g149" | |||
transform="translate(5.5)"> | |||
<path | |||
transform="translate(0,78)" | |||
style="fill:#fafafa" | |||
d="M 0,0 H 34 V 10 H 0 Z" | |||
id="rect143" /> | |||
<path | |||
style="fill:#fafafa" | |||
d="m 5,0 h 24 c 2.77,0 5,2.23 5,5 v 72 c 0,2.77 -2.23,5 -5,5 H 5 C 2.23,82 0,79.77 0,77 V 5 C 0,2.23 2.23,0 5,0 Z" | |||
id="rect145" /> | |||
<g | |||
aria-label="GATE" | |||
transform="translate(5.5,35)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text147"> | |||
<path | |||
d="m 4.173177,-0.59895832 q -0.2636719,0.3157552 -0.7454427,0.49153645 -0.4817708,0.17252604 -1.0677083,0.17252604 -0.6152344,0 -1.0807292,-0.26692708 Q 0.81705727,-0.4720052 0.56315103,-0.98307289 0.31249999,-1.4941406 0.30598958,-2.1842447 v -0.3222657 q 0,-0.7096354 0.2376302,-1.2272135 0.24088541,-0.5208333 0.69010412,-0.7942708 0.452474,-0.2766927 1.0579427,-0.2766927 0.843099,0 1.3183594,0.4036458 0.4752604,0.4003907 0.563151,1.1686198 H 3.2226562 Q 3.157552,-3.6393228 2.9329426,-3.8281249 2.7115885,-4.016927 2.3209635,-4.016927 q -0.4980469,0 -0.7584635,0.374349 -0.2604167,0.3743489 -0.2636719,1.1132812 v 0.3027344 q 0,0.7454426 0.2832031,1.126302 0.2832031,0.38085938 0.8300781,0.38085938 0.5501302,0 0.7845052,-0.234375 V -1.7708333 H 2.3079427 v -0.719401 H 4.173177 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path315" /> | |||
<path | |||
d="M 9.6432288,-0.97656248 H 7.9309892 L 7.6054684,0 H 6.567057 L 8.3313798,-4.7395832 H 9.2363277 L 11.010416,0 H 9.9720048 Z M 8.1946611,-1.7675781 H 9.3795569 L 8.7838538,-3.5416666 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path317" /> | |||
<path | |||
d="M 16.636718,-3.9485676 H 15.184895 V 0 h -0.976562 v -3.9485676 h -1.432292 v -0.7910156 h 3.860677 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path319" /> | |||
<path | |||
d="m 22.048177,-2.0540364 h -1.875 v 1.26953121 h 2.200521 V 0 h -3.177083 v -4.7395832 h 3.170572 v 0.7910156 h -2.19401 v 1.1295573 h 1.875 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path321" /> | |||
</g> | |||
</g> | |||
</g> | |||
<g | |||
id="g167" | |||
transform="translate(0,207)"> | |||
<g | |||
id="g155" | |||
transform="translate(7,41)"> | |||
<g | |||
aria-label="TRK" | |||
transform="translate(7.3,5.5)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:0.5px;fill:#333333" | |||
id="text153"> | |||
<path | |||
d="M 3.9908853,-3.9485676 H 2.5390624 V 0 H 1.5625 V -3.9485676 H 0.13020833 V -4.7395832 H 3.9908853 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:0.5px;fill:#333333" | |||
id="path324" /> | |||
<path | |||
d="M 6.8053383,-1.735026 H 6.0273436 V 0 H 5.0507811 v -4.7395832 h 1.7610676 q 0.8398438,0 1.2955729,0.3743489 0.4557292,0.374349 0.4557292,1.0579427 0,0.485026 -0.2115885,0.8105469 -0.2083334,0.3222656 -0.6347657,0.5143229 l 1.0253906,1.93684888 V 0 H 7.6940102 Z M 6.0273436,-2.5260416 H 6.815104 q 0.3678385,0 0.5696614,-0.1855469 0.2018229,-0.1888021 0.2018229,-0.5175781 0,-0.3352864 -0.1920573,-0.5273437 Q 7.2057289,-3.9485676 6.8118487,-3.9485676 H 6.0273436 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:0.5px;fill:#333333" | |||
id="path326" /> | |||
<path | |||
d="m 11.292968,-1.9010416 -0.507812,0.546875 V 0 H 9.8085931 v -4.7395832 h 0.9765629 v 2.1484374 l 0.429687,-0.5891927 1.207682,-1.5592447 h 1.201172 L 11.940755,-2.6334635 13.672525,0 h -1.162109 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:0.5px;fill:#333333" | |||
id="path328" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g165" | |||
transform="translate(5.5,54)"> | |||
<path | |||
transform="translate(0,-3)" | |||
style="fill:#bbbbbb" | |||
d="M 0,0 H 34 V 10 H 0 Z" | |||
id="rect157" /> | |||
<path | |||
style="fill:#bbbbbb" | |||
d="m 5,0 h 24 c 2.77,0 5,2.23 5,5 v 60 c 0,2.77 -2.23,5 -5,5 H 5 C 2.23,70 0,67.77 0,65 V 5 C 0,2.23 2.23,0 5,0 Z" | |||
id="rect159" /> | |||
<g | |||
aria-label="HOLD" | |||
transform="translate(5.8,32)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text161"> | |||
<path | |||
d="M 4.2805989,0 H 3.3040364 V -2.03125 H 1.3997395 V 0 H 0.42317707 V -4.7395832 H 1.3997395 v 1.9205729 h 1.9042969 v -1.9205729 h 0.9765625 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path333" /> | |||
<path | |||
d="m 11.029948,-2.2623697 q 0,0.6998697 -0.247396,1.2272135 -0.247396,0.52734371 -0.709636,0.81380204 -0.4589839,0.28645833 -1.054687,0.28645833 -0.5891927,0 -1.0514323,-0.28320312 Q 7.5045571,-0.50130207 7.2506509,-1.0253906 6.9967446,-1.5527343 6.9934894,-2.2363281 v -0.234375 q 0,-0.6998697 0.2506511,-1.2304687 0.2539062,-0.5338541 0.7128906,-0.8170573 0.4622395,-0.2864583 1.0546874,-0.2864583 0.5924479,0 1.0514325,0.2864583 0.462239,0.2832032 0.71289,0.8170573 0.253907,0.530599 0.253907,1.2272135 z m -0.989584,-0.2148438 q 0,-0.7454427 -0.2669267,-1.1328125 -0.2669271,-0.3873697 -0.7617188,-0.3873697 -0.4915364,0 -0.7584635,0.3841145 -0.2669271,0.3808594 -0.2701823,1.1197917 v 0.2311198 q 0,0.7259114 0.2669271,1.126302 0.2669271,0.40039063 0.7682292,0.40039063 0.4915364,0 0.7552083,-0.38411453 0.2636717,-0.3873698 0.2669267,-1.1263021 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path335" /> | |||
<path | |||
d="m 14.722656,-0.78450519 h 2.073567 V 0 h -3.05013 v -4.7395832 h 0.976563 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path337" /> | |||
<path | |||
d="m 19.352865,0 v -4.7395832 h 1.458333 q 0.625,0 1.116536,0.2832031 0.494792,0.2799479 0.771485,0.8007812 0.276692,0.5175781 0.276692,1.1783854 v 0.218099 q 0,0.6608072 -0.273437,1.1751302 Q 22.432292,-0.56966144 21.9375,-0.28645833 21.442708,-0.00325521 20.820963,0 Z m 0.976562,-3.9485676 v 3.16406241 h 0.472005 q 0.572917,0 0.875651,-0.37434891 0.302735,-0.374349 0.309245,-1.0709636 v -0.250651 q 0,-0.7226562 -0.299479,-1.09375 -0.299479,-0.3743489 -0.875651,-0.3743489 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path339" /> | |||
</g> | |||
<g | |||
aria-label="OUT" | |||
transform="translate(8.3,67)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text163"> | |||
<path | |||
d="m 4.3164061,-2.2623697 q 0,0.6998697 -0.2473958,1.2272135 -0.2473958,0.52734371 -0.7096354,0.81380204 -0.4589843,0.28645833 -1.0546875,0.28645833 -0.5891926,0 -1.0514322,-0.28320312 Q 0.79101561,-0.50130207 0.53710936,-1.0253906 0.28320312,-1.5527343 0.27994791,-2.2363281 v -0.234375 q 0,-0.6998697 0.25065104,-1.2304687 0.25390624,-0.5338541 0.71289065,-0.8170573 0.4622395,-0.2864583 1.0546874,-0.2864583 0.5924479,0 1.0514323,0.2864583 0.4622396,0.2832032 0.7128906,0.8170573 0.2539062,0.530599 0.2539062,1.2272135 z M 3.3268228,-2.4772135 q 0,-0.7454427 -0.266927,-1.1328125 -0.2669271,-0.3873697 -0.7617188,-0.3873697 -0.4915364,0 -0.7584635,0.3841145 -0.2669271,0.3808594 -0.2701823,1.1197917 v 0.2311198 q 0,0.7259114 0.2669271,1.126302 0.2669271,0.40039063 0.7682291,0.40039063 0.4915365,0 0.7552084,-0.38411453 0.2636718,-0.3873698 0.266927,-1.1263021 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path342" /> | |||
<path | |||
d="m 10.619792,-4.7395832 v 3.1217447 q 0,0.77799477 -0.488282,1.23046872 -0.4850257,0.45247395 -1.3281246,0.45247395 -0.8300781,0 -1.3183594,-0.43945312 Q 6.9967448,-0.81380206 6.9869792,-1.5820312 v -3.157552 h 0.9765624 v 3.1282551 q 0,0.4654948 0.2213542,0.68033854 0.2246094,0.21158854 0.6184896,0.21158854 0.8235677,0 0.8365885,-0.86588538 v -3.1542968 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path344" /> | |||
<path | |||
d="M 16.988281,-3.9485676 H 15.536458 V 0 h -0.976563 v -3.9485676 h -1.432291 v -0.7910156 h 3.860677 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path346" /> | |||
</g> | |||
</g> | |||
</g> | |||
</svg> |
@@ -0,0 +1,98 @@ | |||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
<svg | |||
xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
xmlns:cc="http://creativecommons.org/ns#" | |||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
xmlns:svg="http://www.w3.org/2000/svg" | |||
xmlns="http://www.w3.org/2000/svg" | |||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |||
version="1.1" | |||
width="18" | |||
height="18" | |||
viewBox="0 0 18 18" | |||
id="svg28" | |||
sodipodi:docname="svg_render_tmp.svg" | |||
inkscape:version="0.92.2 5c3e80d, 2017-08-06"> | |||
<metadata | |||
id="metadata34"> | |||
<rdf:RDF> | |||
<cc:Work | |||
rdf:about=""> | |||
<dc:format>image/svg+xml</dc:format> | |||
<dc:type | |||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
</cc:Work> | |||
</rdf:RDF> | |||
</metadata> | |||
<defs | |||
id="defs32" /> | |||
<sodipodi:namedview | |||
pagecolor="#ffffff" | |||
bordercolor="#666666" | |||
borderopacity="1" | |||
objecttolerance="10" | |||
gridtolerance="10" | |||
guidetolerance="10" | |||
inkscape:pageopacity="0" | |||
inkscape:pageshadow="2" | |||
inkscape:window-width="468" | |||
inkscape:window-height="449" | |||
id="namedview30" | |||
showgrid="false" | |||
inkscape:zoom="13.111111" | |||
inkscape:cx="9" | |||
inkscape:cy="9" | |||
inkscape:window-x="0" | |||
inkscape:window-y="0" | |||
inkscape:window-maximized="0" | |||
inkscape:current-layer="svg28" /> | |||
<path | |||
style="fill:#888888" | |||
d="M 17.9,9 A 8.8999996,8.8999996 0 0 1 9,17.9 8.8999996,8.8999996 0 0 1 0.10000038,9 8.8999996,8.8999996 0 0 1 9,0.10000038 8.8999996,8.8999996 0 0 1 17.9,9 Z" | |||
id="circle2" /> | |||
<path | |||
style="fill:#333333" | |||
d="M 17.4,9 A 8.3999996,8.3999996 0 0 1 9,17.4 8.3999996,8.3999996 0 0 1 0.60000038,9 8.3999996,8.3999996 0 0 1 9,0.60000038 8.3999996,8.3999996 0 0 1 17.4,9 Z" | |||
id="circle4" /> | |||
<path | |||
style="fill:#55ff55" | |||
d="M 17.1,9 A 8.1000004,8.1000004 0 0 1 9,17.1 8.1000004,8.1000004 0 0 1 0.89999962,9 8.1000004,8.1000004 0 0 1 9,0.89999962 8.1000004,8.1000004 0 0 1 17.1,9 Z" | |||
id="circle6" /> | |||
<path | |||
style="fill:#666666;fill-opacity:0.5" | |||
d="M 17.1,9 A 8.1000004,8.1000004 0 0 1 9,17.1 8.1000004,8.1000004 0 0 1 0.89999962,9 8.1000004,8.1000004 0 0 1 9,0.89999962 8.1000004,8.1000004 0 0 1 17.1,9 Z" | |||
id="circle8" /> | |||
<path | |||
style="fill:#55ff55" | |||
d="M 16.8,9 A 7.8000002,7.8000002 0 0 1 9,16.8 7.8000002,7.8000002 0 0 1 1.1999998,9 7.8000002,7.8000002 0 0 1 9,1.1999998 7.8000002,7.8000002 0 0 1 16.8,9 Z" | |||
id="circle10" /> | |||
<path | |||
style="fill:#777777;fill-opacity:0.5" | |||
d="M 16.8,9 A 7.8000002,7.8000002 0 0 1 9,16.8 7.8000002,7.8000002 0 0 1 1.1999998,9 7.8000002,7.8000002 0 0 1 9,1.1999998 7.8000002,7.8000002 0 0 1 16.8,9 Z" | |||
id="circle12" /> | |||
<path | |||
style="fill:#55ff55" | |||
d="M 16.5,9 A 7.5,7.5 0 0 1 9,16.5 7.5,7.5 0 0 1 1.5,9 7.5,7.5 0 0 1 9,1.5 7.5,7.5 0 0 1 16.5,9 Z" | |||
id="circle14" /> | |||
<path | |||
style="fill:#888888;fill-opacity:0.5" | |||
d="M 16.5,9 A 7.5,7.5 0 0 1 9,16.5 7.5,7.5 0 0 1 1.5,9 7.5,7.5 0 0 1 9,1.5 7.5,7.5 0 0 1 16.5,9 Z" | |||
id="circle16" /> | |||
<path | |||
style="fill:#55ff55" | |||
d="M 16.2,9 A 7.1999998,7.1999998 0 0 1 9,16.2 7.1999998,7.1999998 0 0 1 1.8000002,9 7.1999998,7.1999998 0 0 1 9,1.8000002 7.1999998,7.1999998 0 0 1 16.2,9 Z" | |||
id="circle18" /> | |||
<path | |||
style="fill:#999999;fill-opacity:0.5" | |||
d="M 16.2,9 A 7.1999998,7.1999998 0 0 1 9,16.2 7.1999998,7.1999998 0 0 1 1.8000002,9 7.1999998,7.1999998 0 0 1 9,1.8000002 7.1999998,7.1999998 0 0 1 16.2,9 Z" | |||
id="circle20" /> | |||
<path | |||
style="fill:#55ff55" | |||
d="M 15.9,9 A 6.9000001,6.9000001 0 0 1 9,15.9 6.9000001,6.9000001 0 0 1 2.0999999,9 6.9000001,6.9000001 0 0 1 9,2.0999999 6.9000001,6.9000001 0 0 1 15.9,9 Z" | |||
id="circle22" /> | |||
<path | |||
style="fill:#aaaaaa;fill-opacity:0.5" | |||
d="M 15.9,9 A 6.9000001,6.9000001 0 0 1 9,15.9 6.9000001,6.9000001 0 0 1 2.0999999,9 6.9000001,6.9000001 0 0 1 9,2.0999999 6.9000001,6.9000001 0 0 1 15.9,9 Z" | |||
id="circle24" /> | |||
</svg> |
@@ -0,0 +1,113 @@ | |||
#include "AddrSeq.hpp" | |||
void AddrSeq::onReset() { | |||
_step = 0; | |||
_clock.reset(); | |||
_reset.reset(); | |||
} | |||
void AddrSeq::step() { | |||
int steps = clamp(params[STEPS_PARAM].value, 2.0f, 8.0f); | |||
int reverse = 1 - 2 * (params[DIRECTION_PARAM].value == 0.0f); | |||
_step = (_step + reverse * _clock.process(inputs[CLOCK_INPUT].value)) % steps; | |||
_step += (_step < 0) * steps; | |||
_step -= _step * _reset.process(inputs[RESET_INPUT].value); | |||
int step = _step + (int)params[SELECT_PARAM].value; | |||
step += (int)(clamp(inputs[SELECT_INPUT].value, 0.0f, 10.0f) * 0.1f * 8.0f); | |||
step = step % 8; | |||
float out = 0.0f; | |||
for (int i = 0; i < 8; ++i) { | |||
out += params[OUT1_PARAM + i].value * (step == i); | |||
lights[OUT1_LIGHT + i].value = step == i; | |||
} | |||
outputs[OUT_OUTPUT].value = out * 10.0f; | |||
} | |||
struct AddrSeqWidget : ModuleWidget { | |||
static constexpr int hp = 6; | |||
AddrSeqWidget(AddrSeq* module) : ModuleWidget(module) { | |||
box.size = Vec(RACK_GRID_WIDTH * hp, RACK_GRID_HEIGHT); | |||
{ | |||
SVGPanel *panel = new SVGPanel(); | |||
panel->box.size = box.size; | |||
panel->setBackground(SVG::load(assetPlugin(plugin, "res/AddrSeq.svg"))); | |||
addChild(panel); | |||
} | |||
addChild(Widget::create<ScrewSilver>(Vec(0, 0))); | |||
addChild(Widget::create<ScrewSilver>(Vec(box.size.x - 15, 365))); | |||
// generated by svg_widgets.rb | |||
auto stepsParamPosition = Vec(15.5, 131.5); | |||
auto directionParamPosition = Vec(16.0, 167.5); | |||
auto selectParamPosition = Vec(9.0, 230.0); | |||
auto out1ParamPosition = Vec(58.5, 36.0); | |||
auto out2ParamPosition = Vec(58.5, 77.3); | |||
auto out3ParamPosition = Vec(58.5, 118.6); | |||
auto out4ParamPosition = Vec(58.5, 159.9); | |||
auto out5ParamPosition = Vec(58.5, 201.1); | |||
auto out6ParamPosition = Vec(58.5, 242.4); | |||
auto out7ParamPosition = Vec(58.5, 283.7); | |||
auto out8ParamPosition = Vec(58.5, 325.0); | |||
auto clockInputPosition = Vec(11.5, 35.0); | |||
auto resetInputPosition = Vec(11.5, 72.0); | |||
auto selectInputPosition = Vec(11.5, 270.0); | |||
auto outOutputPosition = Vec(11.5, 324.0); | |||
auto out1LightPosition = Vec(66.5, 58.5); | |||
auto out2LightPosition = Vec(66.5, 99.8); | |||
auto out3LightPosition = Vec(66.5, 141.1); | |||
auto out4LightPosition = Vec(66.5, 182.4); | |||
auto out5LightPosition = Vec(66.5, 223.6); | |||
auto out6LightPosition = Vec(66.5, 264.9); | |||
auto out7LightPosition = Vec(66.5, 306.2); | |||
auto out8LightPosition = Vec(66.5, 347.5); | |||
// end generated by svg_widgets.rb | |||
{ | |||
auto w = ParamWidget::create<Knob16>(stepsParamPosition, module, AddrSeq::STEPS_PARAM, 2.0, 8.0, 8.0); | |||
dynamic_cast<Knob*>(w)->snap = true; | |||
addParam(w); | |||
} | |||
addParam(ParamWidget::create<SliderSwitch2State14>(directionParamPosition, module, AddrSeq::DIRECTION_PARAM, 0.0, 1.0, 1.0)); | |||
{ | |||
auto w = ParamWidget::create<Knob29>(selectParamPosition, module, AddrSeq::SELECT_PARAM, 0.0, 7.0, 0.0); | |||
dynamic_cast<Knob*>(w)->snap = true; | |||
addParam(w); | |||
} | |||
addParam(ParamWidget::create<Knob16>(out1ParamPosition, module, AddrSeq::OUT1_PARAM, -1.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<Knob16>(out2ParamPosition, module, AddrSeq::OUT2_PARAM, -1.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<Knob16>(out3ParamPosition, module, AddrSeq::OUT3_PARAM, -1.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<Knob16>(out4ParamPosition, module, AddrSeq::OUT4_PARAM, -1.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<Knob16>(out5ParamPosition, module, AddrSeq::OUT5_PARAM, -1.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<Knob16>(out6ParamPosition, module, AddrSeq::OUT6_PARAM, -1.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<Knob16>(out7ParamPosition, module, AddrSeq::OUT7_PARAM, -1.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<Knob16>(out8ParamPosition, module, AddrSeq::OUT8_PARAM, -1.0, 1.0, 0.0)); | |||
addInput(Port::create<Port24>(clockInputPosition, Port::INPUT, module, AddrSeq::CLOCK_INPUT)); | |||
addInput(Port::create<Port24>(resetInputPosition, Port::INPUT, module, AddrSeq::RESET_INPUT)); | |||
addInput(Port::create<Port24>(selectInputPosition, Port::INPUT, module, AddrSeq::SELECT_INPUT)); | |||
addOutput(Port::create<Port24>(outOutputPosition, Port::OUTPUT, module, AddrSeq::OUT_OUTPUT)); | |||
addChild(ModuleLightWidget::create<SmallLight<GreenLight>>(out1LightPosition, module, AddrSeq::OUT1_LIGHT)); | |||
addChild(ModuleLightWidget::create<SmallLight<GreenLight>>(out2LightPosition, module, AddrSeq::OUT2_LIGHT)); | |||
addChild(ModuleLightWidget::create<SmallLight<GreenLight>>(out3LightPosition, module, AddrSeq::OUT3_LIGHT)); | |||
addChild(ModuleLightWidget::create<SmallLight<GreenLight>>(out4LightPosition, module, AddrSeq::OUT4_LIGHT)); | |||
addChild(ModuleLightWidget::create<SmallLight<GreenLight>>(out5LightPosition, module, AddrSeq::OUT5_LIGHT)); | |||
addChild(ModuleLightWidget::create<SmallLight<GreenLight>>(out6LightPosition, module, AddrSeq::OUT6_LIGHT)); | |||
addChild(ModuleLightWidget::create<SmallLight<GreenLight>>(out7LightPosition, module, AddrSeq::OUT7_LIGHT)); | |||
addChild(ModuleLightWidget::create<SmallLight<GreenLight>>(out8LightPosition, module, AddrSeq::OUT8_LIGHT)); | |||
} | |||
}; | |||
RACK_PLUGIN_MODEL_INIT(Bogaudio, AddrSeq) { | |||
Model* modelAddrSeq = createModel<AddrSeq, AddrSeqWidget>("Bogaudio-AddrSeq", "ADDR-SEQ", "voltage-addressable sequencer", SEQUENCER_TAG); | |||
return modelAddrSeq; | |||
} |
@@ -0,0 +1,61 @@ | |||
#pragma once | |||
#include "bogaudio.hpp" | |||
extern Model* modelAddrSeq; | |||
namespace bogaudio { | |||
struct AddrSeq : Module { | |||
enum ParamsIds { | |||
STEPS_PARAM, | |||
DIRECTION_PARAM, | |||
SELECT_PARAM, | |||
OUT1_PARAM, | |||
OUT2_PARAM, | |||
OUT3_PARAM, | |||
OUT4_PARAM, | |||
OUT5_PARAM, | |||
OUT6_PARAM, | |||
OUT7_PARAM, | |||
OUT8_PARAM, | |||
NUM_PARAMS | |||
}; | |||
enum InputsIds { | |||
CLOCK_INPUT, | |||
RESET_INPUT, | |||
SELECT_INPUT, | |||
NUM_INPUTS | |||
}; | |||
enum OutputsIds { | |||
OUT_OUTPUT, | |||
NUM_OUTPUTS | |||
}; | |||
enum LightsIds { | |||
OUT1_LIGHT, | |||
OUT2_LIGHT, | |||
OUT3_LIGHT, | |||
OUT4_LIGHT, | |||
OUT5_LIGHT, | |||
OUT6_LIGHT, | |||
OUT7_LIGHT, | |||
OUT8_LIGHT, | |||
NUM_LIGHTS | |||
}; | |||
Trigger _clock; | |||
Trigger _reset; | |||
int _step; | |||
AddrSeq() : Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) { | |||
onReset(); | |||
} | |||
void onReset() override; | |||
void step() override; | |||
}; | |||
} // namespace bogaudio |
@@ -99,7 +99,7 @@ struct RangeDbMenuItem : MenuItem { | |||
} | |||
void step() override { | |||
rightText = _module->_rangeDb == _rangeDb ? "?" : ""; | |||
rightText = _module->_rangeDb == _rangeDb ? "âś”" : ""; | |||
} | |||
}; | |||
@@ -1,6 +1,5 @@ | |||
#include "EightFO.hpp" | |||
#include "dsp/pitch.hpp" | |||
void EightFO::onReset() { | |||
_resetTrigger.reset(); | |||
@@ -33,21 +32,7 @@ void EightFO::step() { | |||
if (_modulationStep >= modulationSteps) { | |||
_modulationStep = 0; | |||
float frequency = params[FREQUENCY_PARAM].value; | |||
if (inputs[PITCH_INPUT].active) { | |||
frequency += inputs[PITCH_INPUT].value; | |||
} | |||
if (_slowMode) { | |||
frequency -= 8.0f; | |||
} | |||
else { | |||
frequency -= 4.0f; | |||
} | |||
frequency = cvToFrequency(frequency); | |||
if (frequency > 2000.0f) { | |||
frequency = 2000.0f; | |||
} | |||
_phasor.setFrequency(frequency); | |||
setFrequency(_slowMode, params[FREQUENCY_PARAM], inputs[PITCH_INPUT], _phasor); | |||
_wave = (Wave)int(params[WAVE_PARAM].value); | |||
if (_wave == SQUARE_WAVE) { | |||
@@ -165,18 +150,19 @@ void EightFO::updateOutput(bool useSample, Output& output, Phasor::phase_delta_t | |||
} | |||
} | |||
struct EightFOWidget : ModuleWidget { | |||
struct EightFOWidget : LFOBaseWidget { | |||
static constexpr int hp = 17; | |||
EightFOWidget(EightFO* module) : ModuleWidget(module) { | |||
EightFOWidget(EightFO* module) | |||
: LFOBaseWidget( | |||
module, | |||
new SVGPanel(), | |||
SVG::load(assetPlugin(plugin, "res/EightFO-classic.svg")), | |||
SVG::load(assetPlugin(plugin, "res/EightFO.svg")) | |||
) { | |||
box.size = Vec(RACK_GRID_WIDTH * hp, RACK_GRID_HEIGHT); | |||
{ | |||
SVGPanel *panel = new SVGPanel(); | |||
panel->box.size = box.size; | |||
panel->setBackground(SVG::load(assetPlugin(plugin, "res/EightFO.svg"))); | |||
addChild(panel); | |||
} | |||
_panel->box.size = box.size; | |||
addChild(_panel); | |||
addChild(Widget::create<ScrewSilver>(Vec(15, 0))); | |||
addChild(Widget::create<ScrewSilver>(Vec(box.size.x - 30, 0))); | |||
@@ -225,7 +211,8 @@ struct EightFOWidget : ModuleWidget { | |||
auto slowLightPosition = Vec(86.0, 335.0); | |||
// end generated by svg_widgets.rb | |||
addParam(ParamWidget::create<Knob68>(frequencyParamPosition, module, EightFO::FREQUENCY_PARAM, -8.0, 5.0, 0.0)); | |||
_frequencyKnob = ParamWidget::create<Knob68>(frequencyParamPosition, module, EightFO::FREQUENCY_PARAM, -8.0, 5.0, 0.0); | |||
addParam(_frequencyKnob); | |||
{ | |||
auto w = ParamWidget::create<Knob16>(waveParamPosition, module, EightFO::WAVE_PARAM, 1.0, 5.0, 3.0); | |||
auto k = dynamic_cast<SVGKnob*>(w); | |||
@@ -1,8 +1,7 @@ | |||
#pragma once | |||
#include "bogaudio.hpp" | |||
#include "dsp/oscillator.hpp" | |||
#include "dsp/signal.hpp" | |||
#include "lfo_base.hpp" | |||
using namespace bogaudio::dsp; | |||
@@ -10,7 +9,7 @@ extern Model* modelEightFO; | |||
namespace bogaudio { | |||
struct EightFO : Module { | |||
struct EightFO : LFOBase { | |||
enum ParamsIds { | |||
FREQUENCY_PARAM, | |||
WAVE_PARAM, | |||
@@ -125,7 +124,7 @@ struct EightFO : Module { | |||
bool _phase1Active = false; | |||
bool _phase0Active = false; | |||
EightFO() : Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) { | |||
EightFO() : LFOBase(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) { | |||
onReset(); | |||
onSampleRateChange(); | |||
} | |||
@@ -0,0 +1,113 @@ | |||
#include "EightOne.hpp" | |||
void EightOne::onReset() { | |||
_step = 0; | |||
_clock.reset(); | |||
_reset.reset(); | |||
} | |||
void EightOne::step() { | |||
int steps = clamp(params[STEPS_PARAM].value, 2.0f, 8.0f); | |||
int reverse = 1 - 2 * (params[DIRECTION_PARAM].value == 0.0f); | |||
_step = (_step + reverse * _clock.process(inputs[CLOCK_INPUT].value)) % steps; | |||
_step += (_step < 0) * steps; | |||
_step -= _step * _reset.process(inputs[RESET_INPUT].value); | |||
int step = _step + (int)params[SELECT_PARAM].value; | |||
step += (int)(clamp(inputs[SELECT_INPUT].value, 0.0f, 10.0f) * 0.1f * 8.0f); | |||
step = step % 8; | |||
float out = 0.0f; | |||
for (int i = 0; i < 8; ++i) { | |||
out += inputs[IN1_INPUT + i].value * (step == i); | |||
lights[IN1_LIGHT + i].value = step == i; | |||
} | |||
outputs[OUT_OUTPUT].value = out; | |||
} | |||
struct EightOneWidget : ModuleWidget { | |||
static constexpr int hp = 6; | |||
EightOneWidget(EightOne* module) : ModuleWidget(module) { | |||
box.size = Vec(RACK_GRID_WIDTH * hp, RACK_GRID_HEIGHT); | |||
{ | |||
SVGPanel *panel = new SVGPanel(); | |||
panel->box.size = box.size; | |||
panel->setBackground(SVG::load(assetPlugin(plugin, "res/EightOne.svg"))); | |||
addChild(panel); | |||
} | |||
addChild(Widget::create<ScrewSilver>(Vec(0, 0))); | |||
addChild(Widget::create<ScrewSilver>(Vec(box.size.x - 15, 365))); | |||
// generated by svg_widgets.rb | |||
auto stepsParamPosition = Vec(58.5, 131.5); | |||
auto directionParamPosition = Vec(58.5, 167.5); | |||
auto selectParamPosition = Vec(52.0, 230.0); | |||
auto in1InputPosition = Vec(11.5, 35.0); | |||
auto in2InputPosition = Vec(11.5, 76.3); | |||
auto in3InputPosition = Vec(11.5, 118.6); | |||
auto in4InputPosition = Vec(11.5, 158.9); | |||
auto in5InputPosition = Vec(11.5, 200.1); | |||
auto in6InputPosition = Vec(11.5, 241.4); | |||
auto in7InputPosition = Vec(11.5, 282.7); | |||
auto in8InputPosition = Vec(11.5, 324.0); | |||
auto clockInputPosition = Vec(54.5, 35.0); | |||
auto resetInputPosition = Vec(54.5, 72.0); | |||
auto selectInputPosition = Vec(54.5, 270.0); | |||
auto outOutputPosition = Vec(54.5, 324.0); | |||
auto in1LightPosition = Vec(23.5, 61.5); | |||
auto in2LightPosition = Vec(23.5, 102.8); | |||
auto in3LightPosition = Vec(23.5, 145.1); | |||
auto in4LightPosition = Vec(23.5, 185.4); | |||
auto in5LightPosition = Vec(23.5, 226.6); | |||
auto in6LightPosition = Vec(23.5, 267.9); | |||
auto in7LightPosition = Vec(23.5, 309.2); | |||
auto in8LightPosition = Vec(23.5, 350.5); | |||
// end generated by svg_widgets.rb | |||
{ | |||
auto w = ParamWidget::create<Knob16>(stepsParamPosition, module, EightOne::STEPS_PARAM, 2.0, 8.0, 8.0); | |||
dynamic_cast<Knob*>(w)->snap = true; | |||
addParam(w); | |||
} | |||
addParam(ParamWidget::create<SliderSwitch2State14>(directionParamPosition, module, EightOne::DIRECTION_PARAM, 0.0, 1.0, 1.0)); | |||
{ | |||
auto w = ParamWidget::create<Knob29>(selectParamPosition, module, EightOne::SELECT_PARAM, 0.0, 7.0, 0.0); | |||
dynamic_cast<Knob*>(w)->snap = true; | |||
addParam(w); | |||
} | |||
addInput(Port::create<Port24>(in1InputPosition, Port::INPUT, module, EightOne::IN1_INPUT)); | |||
addInput(Port::create<Port24>(in2InputPosition, Port::INPUT, module, EightOne::IN2_INPUT)); | |||
addInput(Port::create<Port24>(in3InputPosition, Port::INPUT, module, EightOne::IN3_INPUT)); | |||
addInput(Port::create<Port24>(in4InputPosition, Port::INPUT, module, EightOne::IN4_INPUT)); | |||
addInput(Port::create<Port24>(in5InputPosition, Port::INPUT, module, EightOne::IN5_INPUT)); | |||
addInput(Port::create<Port24>(in6InputPosition, Port::INPUT, module, EightOne::IN6_INPUT)); | |||
addInput(Port::create<Port24>(in7InputPosition, Port::INPUT, module, EightOne::IN7_INPUT)); | |||
addInput(Port::create<Port24>(in8InputPosition, Port::INPUT, module, EightOne::IN8_INPUT)); | |||
addInput(Port::create<Port24>(clockInputPosition, Port::INPUT, module, EightOne::CLOCK_INPUT)); | |||
addInput(Port::create<Port24>(resetInputPosition, Port::INPUT, module, EightOne::RESET_INPUT)); | |||
addInput(Port::create<Port24>(selectInputPosition, Port::INPUT, module, EightOne::SELECT_INPUT)); | |||
addOutput(Port::create<Port24>(outOutputPosition, Port::OUTPUT, module, EightOne::OUT_OUTPUT)); | |||
addChild(ModuleLightWidget::create<SmallLight<GreenLight>>(in1LightPosition, module, EightOne::IN1_LIGHT)); | |||
addChild(ModuleLightWidget::create<SmallLight<GreenLight>>(in2LightPosition, module, EightOne::IN2_LIGHT)); | |||
addChild(ModuleLightWidget::create<SmallLight<GreenLight>>(in3LightPosition, module, EightOne::IN3_LIGHT)); | |||
addChild(ModuleLightWidget::create<SmallLight<GreenLight>>(in4LightPosition, module, EightOne::IN4_LIGHT)); | |||
addChild(ModuleLightWidget::create<SmallLight<GreenLight>>(in5LightPosition, module, EightOne::IN5_LIGHT)); | |||
addChild(ModuleLightWidget::create<SmallLight<GreenLight>>(in6LightPosition, module, EightOne::IN6_LIGHT)); | |||
addChild(ModuleLightWidget::create<SmallLight<GreenLight>>(in7LightPosition, module, EightOne::IN7_LIGHT)); | |||
addChild(ModuleLightWidget::create<SmallLight<GreenLight>>(in8LightPosition, module, EightOne::IN8_LIGHT)); | |||
} | |||
}; | |||
RACK_PLUGIN_MODEL_INIT(Bogaudio, EightOne) { | |||
Model* modelEightOne = createModel<EightOne, EightOneWidget>("Bogaudio-EightOne", "8:1", "demux & sequential switch", SWITCH_TAG); | |||
return modelEightOne; | |||
} |
@@ -0,0 +1,61 @@ | |||
#pragma once | |||
#include "bogaudio.hpp" | |||
extern Model* modelEightOne; | |||
namespace bogaudio { | |||
struct EightOne : Module { | |||
enum ParamsIds { | |||
STEPS_PARAM, | |||
DIRECTION_PARAM, | |||
SELECT_PARAM, | |||
NUM_PARAMS | |||
}; | |||
enum InputsIds { | |||
IN1_INPUT, | |||
IN2_INPUT, | |||
IN3_INPUT, | |||
IN4_INPUT, | |||
IN5_INPUT, | |||
IN6_INPUT, | |||
IN7_INPUT, | |||
IN8_INPUT, | |||
CLOCK_INPUT, | |||
RESET_INPUT, | |||
SELECT_INPUT, | |||
NUM_INPUTS | |||
}; | |||
enum OutputsIds { | |||
OUT_OUTPUT, | |||
NUM_OUTPUTS | |||
}; | |||
enum LightsIds { | |||
IN1_LIGHT, | |||
IN2_LIGHT, | |||
IN3_LIGHT, | |||
IN4_LIGHT, | |||
IN5_LIGHT, | |||
IN6_LIGHT, | |||
IN7_LIGHT, | |||
IN8_LIGHT, | |||
NUM_LIGHTS | |||
}; | |||
Trigger _clock; | |||
Trigger _reset; | |||
int _step; | |||
EightOne() : Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) { | |||
onReset(); | |||
} | |||
void onReset() override; | |||
void step() override; | |||
}; | |||
} // namespace bogaudio |
@@ -1,6 +1,5 @@ | |||
#include "LFO.hpp" | |||
#include "dsp/pitch.hpp" | |||
void LFO::onReset() { | |||
_resetTrigger.reset(); | |||
@@ -30,21 +29,7 @@ void LFO::step() { | |||
if (_modulationStep >= modulationSteps) { | |||
_modulationStep = 0; | |||
float frequency = params[FREQUENCY_PARAM].value; | |||
if (inputs[PITCH_INPUT].active) { | |||
frequency += inputs[PITCH_INPUT].value; | |||
} | |||
if (_slowMode) { | |||
frequency -= 8.0f; | |||
} | |||
else { | |||
frequency -= 4.0f; | |||
} | |||
frequency = cvToFrequency(frequency); | |||
if (frequency > 2000.0f) { | |||
frequency = 2000.0f; | |||
} | |||
_phasor.setFrequency(frequency); | |||
setFrequency(_slowMode, params[FREQUENCY_PARAM], inputs[PITCH_INPUT], _phasor); | |||
float pw = params[PW_PARAM].value; | |||
if (inputs[PW_INPUT].active) { | |||
@@ -116,18 +101,19 @@ void LFO::updateOutput(Phasor& wave, bool useSample, bool invert, Output& output | |||
} | |||
} | |||
struct LFOWidget : ModuleWidget { | |||
struct LFOWidget : LFOBaseWidget { | |||
static constexpr int hp = 10; | |||
LFOWidget(LFO* module) : ModuleWidget(module) { | |||
LFOWidget(LFO* module) | |||
: LFOBaseWidget( | |||
module, | |||
new SVGPanel(), | |||
SVG::load(assetPlugin(plugin, "res/LFO-classic.svg")), | |||
SVG::load(assetPlugin(plugin, "res/LFO.svg")) | |||
) { | |||
box.size = Vec(RACK_GRID_WIDTH * hp, RACK_GRID_HEIGHT); | |||
{ | |||
SVGPanel *panel = new SVGPanel(); | |||
panel->box.size = box.size; | |||
panel->setBackground(SVG::load(assetPlugin(plugin, "res/LFO.svg"))); | |||
addChild(panel); | |||
} | |||
_panel->box.size = box.size; | |||
addChild(_panel); | |||
addChild(Widget::create<ScrewSilver>(Vec(0, 0))); | |||
addChild(Widget::create<ScrewSilver>(Vec(box.size.x - 15, 0))); | |||
@@ -158,7 +144,8 @@ struct LFOWidget : ModuleWidget { | |||
auto slowLightPosition = Vec(111.0, 240.0); | |||
// end generated by svg_widgets.rb | |||
addParam(ParamWidget::create<Knob68>(frequencyParamPosition, module, LFO::FREQUENCY_PARAM, -8.0, 5.0, 0.0)); | |||
_frequencyKnob = ParamWidget::create<Knob68>(frequencyParamPosition, module, LFO::FREQUENCY_PARAM, -8.0, 5.0, 0.0); | |||
addParam(_frequencyKnob); | |||
addParam(ParamWidget::create<StatefulButton9>(slowParamPosition, module, LFO::SLOW_PARAM, 0.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<Knob26>(sampleParamPosition, module, LFO::SAMPLE_PARAM, 0.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<Knob26>(pwParamPosition, module, LFO::PW_PARAM, -1.0, 1.0, 0.0)); | |||
@@ -1,8 +1,7 @@ | |||
#pragma once | |||
#include "bogaudio.hpp" | |||
#include "dsp/oscillator.hpp" | |||
#include "dsp/signal.hpp" | |||
#include "lfo_base.hpp" | |||
using namespace bogaudio::dsp; | |||
@@ -10,7 +9,7 @@ extern Model* modelLFO; | |||
namespace bogaudio { | |||
struct LFO : Module { | |||
struct LFO : LFOBase { | |||
enum ParamsIds { | |||
FREQUENCY_PARAM, | |||
SLOW_PARAM, | |||
@@ -74,7 +73,7 @@ struct LFO : Module { | |||
bool _rampDownActive = false; | |||
bool _squareActive = false; | |||
LFO() : Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) { | |||
LFO() : LFOBase(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) { | |||
onReset(); | |||
onSampleRateChange(); | |||
} | |||
@@ -1,6 +1,5 @@ | |||
#include "LLFO.hpp" | |||
#include "dsp/pitch.hpp" | |||
void LLFO::onReset() { | |||
_resetTrigger.reset(); | |||
@@ -15,12 +14,13 @@ void LLFO::onSampleRateChange() { | |||
void LLFO::step() { | |||
lights[SLOW_LIGHT].value = _slowMode = params[SLOW_PARAM].value > 0.5f; | |||
lights[SINE_LIGHT].value = _wave == SINE_WAVE; | |||
lights[TRIANGLE_LIGHT].value = _wave == TRIANGLE_WAVE; | |||
lights[RAMP_UP_LIGHT].value = _wave == RAMP_UP_WAVE; | |||
lights[RAMP_DOWN_LIGHT].value = _wave == RAMP_DOWN_WAVE; | |||
lights[SQUARE_LIGHT].value = _wave == SQUARE_WAVE; | |||
lights[PULSE_LIGHT].value = _wave == PULSE_WAVE; | |||
Wave wave = (Wave)int(params[WAVE_PARAM].value); | |||
lights[SINE_LIGHT].value = wave == SINE_WAVE; | |||
lights[TRIANGLE_LIGHT].value = wave == TRIANGLE_WAVE; | |||
lights[RAMP_UP_LIGHT].value = wave == RAMP_UP_WAVE; | |||
lights[RAMP_DOWN_LIGHT].value = wave == RAMP_DOWN_WAVE; | |||
lights[SQUARE_LIGHT].value = wave == SQUARE_WAVE; | |||
lights[PULSE_LIGHT].value = wave == PULSE_WAVE; | |||
if (!outputs[OUT_OUTPUT].active) { | |||
return; | |||
} | |||
@@ -29,25 +29,10 @@ void LLFO::step() { | |||
if (_modulationStep >= modulationSteps) { | |||
_modulationStep = 0; | |||
float frequency = params[FREQUENCY_PARAM].value; | |||
if (inputs[PITCH_INPUT].active) { | |||
frequency += inputs[PITCH_INPUT].value; | |||
} | |||
if (_slowMode) { | |||
frequency -= 8.0f; | |||
} | |||
else { | |||
frequency -= 4.0f; | |||
} | |||
frequency = cvToFrequency(frequency); | |||
if (frequency > 2000.0f) { | |||
frequency = 2000.0f; | |||
} | |||
_phasor.setFrequency(frequency); | |||
setFrequency(_slowMode, params[FREQUENCY_PARAM], inputs[PITCH_INPUT], _phasor); | |||
_wave = (Wave)int32_t(params[WAVE_PARAM].value); | |||
_invert = false; | |||
switch (_wave) { | |||
switch (wave) { | |||
case SINE_WAVE: { | |||
_oscillator = &_sine; | |||
break; | |||
@@ -93,18 +78,19 @@ void LLFO::step() { | |||
outputs[OUT_OUTPUT].value = sample; | |||
} | |||
struct LLFOWidget : ModuleWidget { | |||
struct LLFOWidget : LFOBaseWidget { | |||
static constexpr int hp = 3; | |||
LLFOWidget(LLFO* module) : ModuleWidget(module) { | |||
LLFOWidget(LLFO* module) | |||
: LFOBaseWidget( | |||
module, | |||
new SVGPanel(), | |||
SVG::load(assetPlugin(plugin, "res/LLFO-classic.svg")), | |||
SVG::load(assetPlugin(plugin, "res/LLFO.svg")) | |||
) { | |||
box.size = Vec(RACK_GRID_WIDTH * hp, RACK_GRID_HEIGHT); | |||
{ | |||
SVGPanel *panel = new SVGPanel(); | |||
panel->box.size = box.size; | |||
panel->setBackground(SVG::load(assetPlugin(plugin, "res/LLFO.svg"))); | |||
addChild(panel); | |||
} | |||
_panel->box.size = box.size; | |||
addChild(_panel); | |||
addChild(Widget::create<ScrewSilver>(Vec(0, 0))); | |||
addChild(Widget::create<ScrewSilver>(Vec(box.size.x - 15, 365))); | |||
@@ -130,7 +116,8 @@ struct LLFOWidget : ModuleWidget { | |||
auto pulseLightPosition = Vec(24.0, 115.0); | |||
// end generated by svg_widgets.rb | |||
addParam(ParamWidget::create<Knob26>(frequencyParamPosition, module, LLFO::FREQUENCY_PARAM, -8.0, 5.0, 0.0)); | |||
_frequencyKnob = ParamWidget::create<Knob26>(frequencyParamPosition, module, LLFO::FREQUENCY_PARAM, -8.0, 5.0, 0.0); | |||
addParam(_frequencyKnob); | |||
addParam(ParamWidget::create<StatefulButton9>(slowParamPosition, module, LLFO::SLOW_PARAM, 0.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<StatefulButton9>(waveParamPosition, module, LLFO::WAVE_PARAM, 0.0, 5.0, 0.0)); | |||
addParam(ParamWidget::create<Knob16>(offsetParamPosition, module, LLFO::OFFSET_PARAM, -1.0, 1.0, 0.0)); | |||
@@ -1,8 +1,7 @@ | |||
#pragma once | |||
#include "bogaudio.hpp" | |||
#include "dsp/oscillator.hpp" | |||
#include "dsp/signal.hpp" | |||
#include "lfo_base.hpp" | |||
using namespace bogaudio::dsp; | |||
@@ -10,7 +9,7 @@ extern Model* modelLLFO; | |||
namespace bogaudio { | |||
struct LLFO : Module { | |||
struct LLFO : LFOBase { | |||
enum ParamsIds { | |||
FREQUENCY_PARAM, | |||
SLOW_PARAM, | |||
@@ -66,13 +65,11 @@ struct LLFO : Module { | |||
SawOscillator _ramp; | |||
SquareOscillator _square; | |||
Wave _wave; | |||
bool _invert; | |||
Phasor* _oscillator; | |||
LLFO() | |||
: Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) | |||
, _wave(SINE_WAVE) | |||
: LFOBase(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) | |||
, _invert(false) | |||
, _oscillator(&_sine) | |||
{ | |||
@@ -13,10 +13,15 @@ void Mix4::onSampleRateChange() { | |||
void Mix4::step() { | |||
bool stereo = outputs[L_OUTPUT].active && outputs[R_OUTPUT].active; | |||
_channel1.next(stereo); | |||
_channel2.next(stereo); | |||
_channel3.next(stereo); | |||
_channel4.next(stereo); | |||
bool solo = | |||
params[MUTE1_PARAM].value > 1.5f || | |||
params[MUTE2_PARAM].value > 1.5f || | |||
params[MUTE3_PARAM].value > 1.5f || | |||
params[MUTE4_PARAM].value > 1.5f; | |||
_channel1.next(stereo, solo); | |||
_channel2.next(stereo, solo); | |||
_channel3.next(stereo, solo); | |||
_channel4.next(stereo, solo); | |||
float level = Amplifier::minDecibels; | |||
if (params[MIX_MUTE_PARAM].value < 0.5f) { | |||
@@ -116,16 +121,16 @@ struct Mix4Widget : ModuleWidget { | |||
addSlider(level1ParamPosition, module, Mix4::LEVEL1_PARAM, module->_channel1.rms); | |||
addParam(ParamWidget::create<Knob16>(pan1ParamPosition, module, Mix4::PAN1_PARAM, -1.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<MuteButton>(mute1ParamPosition, module, Mix4::MUTE1_PARAM, 0.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<SoloMuteButton>(mute1ParamPosition, module, Mix4::MUTE1_PARAM, 0.0, 3.0, 0.0)); | |||
addSlider(level2ParamPosition, module, Mix4::LEVEL2_PARAM, module->_channel2.rms); | |||
addParam(ParamWidget::create<Knob16>(pan2ParamPosition, module, Mix4::PAN2_PARAM, -1.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<MuteButton>(mute2ParamPosition, module, Mix4::MUTE2_PARAM, 0.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<SoloMuteButton>(mute2ParamPosition, module, Mix4::MUTE2_PARAM, 0.0, 3.0, 0.0)); | |||
addSlider(level3ParamPosition, module, Mix4::LEVEL3_PARAM, module->_channel3.rms); | |||
addParam(ParamWidget::create<Knob16>(pan3ParamPosition, module, Mix4::PAN3_PARAM, -1.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<MuteButton>(mute3ParamPosition, module, Mix4::MUTE3_PARAM, 0.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<SoloMuteButton>(mute3ParamPosition, module, Mix4::MUTE3_PARAM, 0.0, 3.0, 0.0)); | |||
addSlider(level4ParamPosition, module, Mix4::LEVEL4_PARAM, module->_channel4.rms); | |||
addParam(ParamWidget::create<Knob16>(pan4ParamPosition, module, Mix4::PAN4_PARAM, -1.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<MuteButton>(mute4ParamPosition, module, Mix4::MUTE4_PARAM, 0.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<SoloMuteButton>(mute4ParamPosition, module, Mix4::MUTE4_PARAM, 0.0, 3.0, 0.0)); | |||
addSlider(mixParamPosition, module, Mix4::MIX_PARAM, module->_rmsLevel); | |||
addParam(ParamWidget::create<MuteButton>(mixMuteParamPosition, module, Mix4::MIX_MUTE_PARAM, 0.0, 1.0, 0.0)); | |||
@@ -17,14 +17,23 @@ _rms.setSampleRate(sr); | |||
void Mix8::step() { | |||
bool stereo = outputs[L_OUTPUT].active && outputs[R_OUTPUT].active; | |||
_channel1.next(stereo); | |||
_channel2.next(stereo); | |||
_channel3.next(stereo); | |||
_channel4.next(stereo); | |||
_channel5.next(stereo); | |||
_channel6.next(stereo); | |||
_channel7.next(stereo); | |||
_channel8.next(stereo); | |||
bool solo = | |||
params[MUTE1_PARAM].value > 1.5f || | |||
params[MUTE2_PARAM].value > 1.5f || | |||
params[MUTE3_PARAM].value > 1.5f || | |||
params[MUTE4_PARAM].value > 1.5f || | |||
params[MUTE5_PARAM].value > 1.5f || | |||
params[MUTE6_PARAM].value > 1.5f || | |||
params[MUTE7_PARAM].value > 1.5f || | |||
params[MUTE8_PARAM].value > 1.5f; | |||
_channel1.next(stereo, solo); | |||
_channel2.next(stereo, solo); | |||
_channel3.next(stereo, solo); | |||
_channel4.next(stereo, solo); | |||
_channel5.next(stereo, solo); | |||
_channel6.next(stereo, solo); | |||
_channel7.next(stereo, solo); | |||
_channel8.next(stereo, solo); | |||
float level = Amplifier::minDecibels; | |||
if (params[MIX_MUTE_PARAM].value < 0.5f) { | |||
@@ -159,28 +168,28 @@ struct Mix8Widget : ModuleWidget { | |||
// end generated by svg_widgets.rb | |||
addSlider(level1ParamPosition, module, Mix8::LEVEL1_PARAM, module->_channel1.rms); | |||
addParam(ParamWidget::create<MuteButton>(mute1ParamPosition, module, Mix8::MUTE1_PARAM, 0.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<SoloMuteButton>(mute1ParamPosition, module, Mix8::MUTE1_PARAM, 0.0, 3.0, 0.0)); | |||
addParam(ParamWidget::create<Knob16>(pan1ParamPosition, module, Mix8::PAN1_PARAM, -1.0, 1.0, 0.0)); | |||
addSlider(level2ParamPosition, module, Mix8::LEVEL2_PARAM, module->_channel2.rms); | |||
addParam(ParamWidget::create<MuteButton>(mute2ParamPosition, module, Mix8::MUTE2_PARAM, 0.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<SoloMuteButton>(mute2ParamPosition, module, Mix8::MUTE2_PARAM, 0.0, 3.0, 0.0)); | |||
addParam(ParamWidget::create<Knob16>(pan2ParamPosition, module, Mix8::PAN2_PARAM, -1.0, 1.0, 0.0)); | |||
addSlider(level3ParamPosition, module, Mix8::LEVEL3_PARAM, module->_channel3.rms); | |||
addParam(ParamWidget::create<MuteButton>(mute3ParamPosition, module, Mix8::MUTE3_PARAM, 0.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<SoloMuteButton>(mute3ParamPosition, module, Mix8::MUTE3_PARAM, 0.0, 3.0, 0.0)); | |||
addParam(ParamWidget::create<Knob16>(pan3ParamPosition, module, Mix8::PAN3_PARAM, -1.0, 1.0, 0.0)); | |||
addSlider(level4ParamPosition, module, Mix8::LEVEL4_PARAM, module->_channel4.rms); | |||
addParam(ParamWidget::create<MuteButton>(mute4ParamPosition, module, Mix8::MUTE4_PARAM, 0.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<SoloMuteButton>(mute4ParamPosition, module, Mix8::MUTE4_PARAM, 0.0, 3.0, 0.0)); | |||
addParam(ParamWidget::create<Knob16>(pan4ParamPosition, module, Mix8::PAN4_PARAM, -1.0, 1.0, 0.0)); | |||
addSlider(level5ParamPosition, module, Mix8::LEVEL5_PARAM, module->_channel5.rms); | |||
addParam(ParamWidget::create<MuteButton>(mute5ParamPosition, module, Mix8::MUTE5_PARAM, 0.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<SoloMuteButton>(mute5ParamPosition, module, Mix8::MUTE5_PARAM, 0.0, 3.0, 0.0)); | |||
addParam(ParamWidget::create<Knob16>(pan5ParamPosition, module, Mix8::PAN5_PARAM, -1.0, 1.0, 0.0)); | |||
addSlider(level6ParamPosition, module, Mix8::LEVEL6_PARAM, module->_channel6.rms); | |||
addParam(ParamWidget::create<MuteButton>(mute6ParamPosition, module, Mix8::MUTE6_PARAM, 0.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<SoloMuteButton>(mute6ParamPosition, module, Mix8::MUTE6_PARAM, 0.0, 3.0, 0.0)); | |||
addParam(ParamWidget::create<Knob16>(pan6ParamPosition, module, Mix8::PAN6_PARAM, -1.0, 1.0, 0.0)); | |||
addSlider(level7ParamPosition, module, Mix8::LEVEL7_PARAM, module->_channel7.rms); | |||
addParam(ParamWidget::create<MuteButton>(mute7ParamPosition, module, Mix8::MUTE7_PARAM, 0.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<SoloMuteButton>(mute7ParamPosition, module, Mix8::MUTE7_PARAM, 0.0, 3.0, 0.0)); | |||
addParam(ParamWidget::create<Knob16>(pan7ParamPosition, module, Mix8::PAN7_PARAM, -1.0, 1.0, 0.0)); | |||
addSlider(level8ParamPosition, module, Mix8::LEVEL8_PARAM, module->_channel8.rms); | |||
addParam(ParamWidget::create<MuteButton>(mute8ParamPosition, module, Mix8::MUTE8_PARAM, 0.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<SoloMuteButton>(mute8ParamPosition, module, Mix8::MUTE8_PARAM, 0.0, 3.0, 0.0)); | |||
addParam(ParamWidget::create<Knob16>(pan8ParamPosition, module, Mix8::PAN8_PARAM, -1.0, 1.0, 0.0)); | |||
addSlider(mixParamPosition, module, Mix8::MIX_PARAM, module->_rmsLevel); | |||
addParam(ParamWidget::create<MuteButton>(mixMuteParamPosition, module, Mix8::MIX_MUTE_PARAM, 0.0, 1.0, 0.0)); | |||
@@ -20,14 +20,19 @@ void Mute8::onSampleRateChange() { | |||
} | |||
void Mute8::step() { | |||
bool solo = false; | |||
for (int i = 0; i < 8; ++i) { | |||
stepChannel(i); | |||
solo = solo || params[MUTE1_PARAM + i].value > 1.5f; | |||
} | |||
for (int i = 0; i < 8; ++i) { | |||
stepChannel(i, solo); | |||
} | |||
} | |||
void Mute8::stepChannel(int i) { | |||
void Mute8::stepChannel(int i, bool solo) { | |||
_triggers[i].process(inputs[MUTE1_INPUT + i].value); | |||
if (params[MUTE1_PARAM + i].value > 0.5f || _triggers[i].isHigh()) { | |||
bool muted = solo ? params[MUTE1_PARAM + i].value < 2.0f : (params[MUTE1_PARAM + i].value > 0.5f || _triggers[i].isHigh()); | |||
if (muted) { | |||
lights[MUTE1_LIGHT + i].value = 1.0f; | |||
_amplifiers[i].setLevel(_slewLimiters[i].next(minDecibels)); | |||
} | |||
@@ -102,14 +107,14 @@ struct Mute8Widget : ModuleWidget { | |||
auto mute8LightPosition = Vec(100.5, 324.8); | |||
// end generated by svg_widgets.rb | |||
addParam(ParamWidget::create<MuteButton>(mute1ParamPosition, module, Mute8::MUTE1_PARAM, 0.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<MuteButton>(mute2ParamPosition, module, Mute8::MUTE2_PARAM, 0.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<MuteButton>(mute3ParamPosition, module, Mute8::MUTE3_PARAM, 0.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<MuteButton>(mute4ParamPosition, module, Mute8::MUTE4_PARAM, 0.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<MuteButton>(mute5ParamPosition, module, Mute8::MUTE5_PARAM, 0.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<MuteButton>(mute6ParamPosition, module, Mute8::MUTE6_PARAM, 0.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<MuteButton>(mute7ParamPosition, module, Mute8::MUTE7_PARAM, 0.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<MuteButton>(mute8ParamPosition, module, Mute8::MUTE8_PARAM, 0.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<SoloMuteButton>(mute1ParamPosition, module, Mute8::MUTE1_PARAM, 0.0, 3.0, 0.0)); | |||
addParam(ParamWidget::create<SoloMuteButton>(mute2ParamPosition, module, Mute8::MUTE2_PARAM, 0.0, 3.0, 0.0)); | |||
addParam(ParamWidget::create<SoloMuteButton>(mute3ParamPosition, module, Mute8::MUTE3_PARAM, 0.0, 3.0, 0.0)); | |||
addParam(ParamWidget::create<SoloMuteButton>(mute4ParamPosition, module, Mute8::MUTE4_PARAM, 0.0, 3.0, 0.0)); | |||
addParam(ParamWidget::create<SoloMuteButton>(mute5ParamPosition, module, Mute8::MUTE5_PARAM, 0.0, 3.0, 0.0)); | |||
addParam(ParamWidget::create<SoloMuteButton>(mute6ParamPosition, module, Mute8::MUTE6_PARAM, 0.0, 3.0, 0.0)); | |||
addParam(ParamWidget::create<SoloMuteButton>(mute7ParamPosition, module, Mute8::MUTE7_PARAM, 0.0, 3.0, 0.0)); | |||
addParam(ParamWidget::create<SoloMuteButton>(mute8ParamPosition, module, Mute8::MUTE8_PARAM, 0.0, 3.0, 0.0)); | |||
addInput(Port::create<Port24>(input1InputPosition, Port::INPUT, module, Mute8::INPUT1_INPUT)); | |||
addInput(Port::create<Port24>(input2InputPosition, Port::INPUT, module, Mute8::INPUT2_INPUT)); | |||
@@ -82,7 +82,7 @@ struct Mute8 : Module { | |||
void onReset() override; | |||
void onSampleRateChange() override; | |||
void step() override; | |||
void stepChannel(int i); | |||
void stepChannel(int i, bool solo); | |||
}; | |||
} // namespace bogaudio |
@@ -0,0 +1,112 @@ | |||
#include "OneEight.hpp" | |||
void OneEight::onReset() { | |||
_step = 0; | |||
_clock.reset(); | |||
_reset.reset(); | |||
} | |||
void OneEight::step() { | |||
int steps = clamp(params[STEPS_PARAM].value, 2.0f, 8.0f); | |||
int reverse = 1 - 2 * (params[DIRECTION_PARAM].value == 0.0f); | |||
_step = (_step + reverse * _clock.process(inputs[CLOCK_INPUT].value)) % steps; | |||
_step += (_step < 0) * steps; | |||
_step -= _step * _reset.process(inputs[RESET_INPUT].value); | |||
int step = _step + (int)params[SELECT_PARAM].value; | |||
step += (int)(clamp(inputs[SELECT_INPUT].value, 0.0f, 10.0f) * 0.1f * 8.0f); | |||
step = step % 8; | |||
float in = inputs[IN_INPUT].value + !inputs[IN_INPUT].active * 10.0f; | |||
for (int i = 0; i < 8; ++i) { | |||
outputs[OUT1_OUTPUT + i].value = (step == i) * in; | |||
lights[OUT1_LIGHT + i].value = step == i; | |||
} | |||
} | |||
struct OneEightWidget : ModuleWidget { | |||
static constexpr int hp = 6; | |||
OneEightWidget(OneEight* module) : ModuleWidget(module) { | |||
box.size = Vec(RACK_GRID_WIDTH * hp, RACK_GRID_HEIGHT); | |||
{ | |||
SVGPanel *panel = new SVGPanel(); | |||
panel->box.size = box.size; | |||
panel->setBackground(SVG::load(assetPlugin(plugin, "res/OneEight.svg"))); | |||
addChild(panel); | |||
} | |||
addChild(Widget::create<ScrewSilver>(Vec(0, 0))); | |||
addChild(Widget::create<ScrewSilver>(Vec(box.size.x - 15, 365))); | |||
// generated by svg_widgets.rb | |||
auto stepsParamPosition = Vec(15.5, 131.5); | |||
auto directionParamPosition = Vec(16.0, 167.5); | |||
auto selectParamPosition = Vec(9.0, 230.0); | |||
auto clockInputPosition = Vec(11.5, 35.0); | |||
auto resetInputPosition = Vec(11.5, 72.0); | |||
auto selectInputPosition = Vec(11.5, 270.0); | |||
auto inInputPosition = Vec(11.5, 324.0); | |||
auto out1OutputPosition = Vec(54.5, 35.0); | |||
auto out2OutputPosition = Vec(54.5, 76.3); | |||
auto out3OutputPosition = Vec(54.5, 118.6); | |||
auto out4OutputPosition = Vec(54.5, 158.9); | |||
auto out5OutputPosition = Vec(54.5, 200.1); | |||
auto out6OutputPosition = Vec(54.5, 241.4); | |||
auto out7OutputPosition = Vec(54.5, 282.7); | |||
auto out8OutputPosition = Vec(54.5, 324.0); | |||
auto out1LightPosition = Vec(66.5, 61.5); | |||
auto out2LightPosition = Vec(66.5, 102.8); | |||
auto out3LightPosition = Vec(66.5, 145.1); | |||
auto out4LightPosition = Vec(66.5, 185.4); | |||
auto out5LightPosition = Vec(66.5, 226.6); | |||
auto out6LightPosition = Vec(66.5, 267.9); | |||
auto out7LightPosition = Vec(66.5, 309.2); | |||
auto out8LightPosition = Vec(66.5, 350.5); | |||
// end generated by svg_widgets.rb | |||
{ | |||
auto w = ParamWidget::create<Knob16>(stepsParamPosition, module, OneEight::STEPS_PARAM, 2.0, 8.0, 8.0); | |||
dynamic_cast<Knob*>(w)->snap = true; | |||
addParam(w); | |||
} | |||
addParam(ParamWidget::create<SliderSwitch2State14>(directionParamPosition, module, OneEight::DIRECTION_PARAM, 0.0, 1.0, 1.0)); | |||
{ | |||
auto w = ParamWidget::create<Knob29>(selectParamPosition, module, OneEight::SELECT_PARAM, 0.0, 7.0, 0.0); | |||
dynamic_cast<Knob*>(w)->snap = true; | |||
addParam(w); | |||
} | |||
addInput(Port::create<Port24>(clockInputPosition, Port::INPUT, module, OneEight::CLOCK_INPUT)); | |||
addInput(Port::create<Port24>(resetInputPosition, Port::INPUT, module, OneEight::RESET_INPUT)); | |||
addInput(Port::create<Port24>(selectInputPosition, Port::INPUT, module, OneEight::SELECT_INPUT)); | |||
addInput(Port::create<Port24>(inInputPosition, Port::INPUT, module, OneEight::IN_INPUT)); | |||
addOutput(Port::create<Port24>(out1OutputPosition, Port::OUTPUT, module, OneEight::OUT1_OUTPUT)); | |||
addOutput(Port::create<Port24>(out2OutputPosition, Port::OUTPUT, module, OneEight::OUT2_OUTPUT)); | |||
addOutput(Port::create<Port24>(out3OutputPosition, Port::OUTPUT, module, OneEight::OUT3_OUTPUT)); | |||
addOutput(Port::create<Port24>(out4OutputPosition, Port::OUTPUT, module, OneEight::OUT4_OUTPUT)); | |||
addOutput(Port::create<Port24>(out5OutputPosition, Port::OUTPUT, module, OneEight::OUT5_OUTPUT)); | |||
addOutput(Port::create<Port24>(out6OutputPosition, Port::OUTPUT, module, OneEight::OUT6_OUTPUT)); | |||
addOutput(Port::create<Port24>(out7OutputPosition, Port::OUTPUT, module, OneEight::OUT7_OUTPUT)); | |||
addOutput(Port::create<Port24>(out8OutputPosition, Port::OUTPUT, module, OneEight::OUT8_OUTPUT)); | |||
addChild(ModuleLightWidget::create<SmallLight<GreenLight>>(out1LightPosition, module, OneEight::OUT1_LIGHT)); | |||
addChild(ModuleLightWidget::create<SmallLight<GreenLight>>(out2LightPosition, module, OneEight::OUT2_LIGHT)); | |||
addChild(ModuleLightWidget::create<SmallLight<GreenLight>>(out3LightPosition, module, OneEight::OUT3_LIGHT)); | |||
addChild(ModuleLightWidget::create<SmallLight<GreenLight>>(out4LightPosition, module, OneEight::OUT4_LIGHT)); | |||
addChild(ModuleLightWidget::create<SmallLight<GreenLight>>(out5LightPosition, module, OneEight::OUT5_LIGHT)); | |||
addChild(ModuleLightWidget::create<SmallLight<GreenLight>>(out6LightPosition, module, OneEight::OUT6_LIGHT)); | |||
addChild(ModuleLightWidget::create<SmallLight<GreenLight>>(out7LightPosition, module, OneEight::OUT7_LIGHT)); | |||
addChild(ModuleLightWidget::create<SmallLight<GreenLight>>(out8LightPosition, module, OneEight::OUT8_LIGHT)); | |||
} | |||
}; | |||
RACK_PLUGIN_MODEL_INIT(Bogaudio, OneEight) { | |||
Model* modelOneEight = createModel<OneEight, OneEightWidget>("Bogaudio-OneEight", "1:8", "mux & sequential switch", SWITCH_TAG); | |||
return modelOneEight; | |||
} |
@@ -0,0 +1,61 @@ | |||
#pragma once | |||
#include "bogaudio.hpp" | |||
extern Model* modelOneEight; | |||
namespace bogaudio { | |||
struct OneEight : Module { | |||
enum ParamsIds { | |||
STEPS_PARAM, | |||
DIRECTION_PARAM, | |||
SELECT_PARAM, | |||
NUM_PARAMS | |||
}; | |||
enum InputsIds { | |||
CLOCK_INPUT, | |||
RESET_INPUT, | |||
SELECT_INPUT, | |||
IN_INPUT, | |||
NUM_INPUTS | |||
}; | |||
enum OutputsIds { | |||
OUT1_OUTPUT, | |||
OUT2_OUTPUT, | |||
OUT3_OUTPUT, | |||
OUT4_OUTPUT, | |||
OUT5_OUTPUT, | |||
OUT6_OUTPUT, | |||
OUT7_OUTPUT, | |||
OUT8_OUTPUT, | |||
NUM_OUTPUTS | |||
}; | |||
enum LightsIds { | |||
OUT1_LIGHT, | |||
OUT2_LIGHT, | |||
OUT3_LIGHT, | |||
OUT4_LIGHT, | |||
OUT5_LIGHT, | |||
OUT6_LIGHT, | |||
OUT7_LIGHT, | |||
OUT8_LIGHT, | |||
NUM_LIGHTS | |||
}; | |||
Trigger _clock; | |||
Trigger _reset; | |||
int _step; | |||
OneEight() : Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) { | |||
onReset(); | |||
} | |||
void onReset() override; | |||
void step() override; | |||
}; | |||
} // namespace bogaudio |
@@ -409,6 +409,42 @@ void Test::step() { | |||
float in = inputs[IN_INPUT].value; | |||
outputs[OUT_OUTPUT].value = _saturator.next(in); | |||
outputs[OUT2_OUTPUT].value = clamp(in, -Saturator::limit, Saturator::limit); | |||
#elif BROWNIAN | |||
const float maxDiv = 1000.0f; | |||
float change = clamp(1.0f - params[PARAM1_PARAM].value, 0.01f, 1.0f); | |||
float smooth = clamp(params[PARAM2_PARAM].value, 0.01f, 1.0f); | |||
smooth *= smooth; | |||
_filter1.setParams(engineGetSampleRate(), smooth * engineGetSampleRate() * 0.49f); | |||
_filter2.setParams(engineGetSampleRate(), smooth * engineGetSampleRate() * 0.49f); | |||
_last1 = _last1 + _noise1.next() / (change * maxDiv); | |||
outputs[OUT_OUTPUT].value = _filter1.next(_last1); | |||
if (_last1 > 5.0f || _last1 < -5.0f) { | |||
_last1 = 0.0f; | |||
} | |||
_last2 = _last2 + _noise1.next() / (change * maxDiv); | |||
outputs[OUT2_OUTPUT].value = _filter2.next(_last2); | |||
if (_last2 > 5.0f || _last2 < -5.0f) { | |||
_last2 = 0.0f; | |||
} | |||
// // "leaky integrator" | |||
// float alpha = params[PARAM1_PARAM].value; | |||
// alpha = clamp(1.0f - alpha*alpha, 0.00001f, 1.0f); | |||
// float sample = 5.0f * _noise1.next(); | |||
// _last1 = alpha*_last1 + (1.0f - alpha)*sample; | |||
// outputs[OUT_OUTPUT].value = _last1; | |||
#elif RANDOMWALK | |||
float change = params[PARAM1_PARAM].value; | |||
change *= change; | |||
change *= change; | |||
_walk1.setParams(engineGetSampleRate(), change); | |||
_walk2.setParams(engineGetSampleRate(), change); | |||
outputs[OUT_OUTPUT].value = _walk1.next(); | |||
outputs[OUT2_OUTPUT].value = _walk2.next(); | |||
#endif | |||
} | |||
@@ -488,7 +524,4 @@ struct TestWidget : ModuleWidget { | |||
} | |||
}; | |||
RACK_PLUGIN_MODEL_INIT(Bogaudio, Test) { | |||
Model *modelTest = Model::create<Test, TestWidget>("Bogaudio", "Bogaudio-Test", "Test"); | |||
return modelTest; | |||
} | |||
Model* modelTest = Model::create<Test, TestWidget>("Bogaudio", "Bogaudio-Test", "Test"); |
@@ -17,7 +17,7 @@ extern Model* modelTest; | |||
// #define OVERSAMPLED_BL 1 | |||
// #define ANTIALIASING 1 | |||
// #define DECIMATORS 1 | |||
#define INTERPOLATOR 1 | |||
// #define INTERPOLATOR 1 | |||
// #define FM 1 | |||
// #define PM 1 | |||
// #define FEEDBACK_PM 1 | |||
@@ -27,6 +27,8 @@ extern Model* modelTest; | |||
// #define RMS 1 | |||
// #define RAVG 1 | |||
// #define SATURATOR 1 | |||
// #define BROWNIAN 1 | |||
#define RANDOMWALK 1 | |||
#include "pitch.hpp" | |||
#ifdef LPF | |||
@@ -86,6 +88,10 @@ extern Model* modelTest; | |||
#elif SATURATOR | |||
#include "dsp/oscillator.hpp" | |||
#include "dsp/signal.hpp" | |||
#elif BROWNIAN | |||
#include "dsp/noise.hpp" | |||
#elif RANDOMWALK | |||
#include "dsp/noise.hpp" | |||
#else | |||
#error what | |||
#endif | |||
@@ -215,6 +221,16 @@ struct Test : Module { | |||
Trigger _reset; | |||
#elif SATURATOR | |||
Saturator _saturator; | |||
#elif BROWNIAN | |||
WhiteNoiseGenerator _noise1; | |||
GaussianNoiseGenerator _noise2; | |||
LowPassFilter _filter1; | |||
LowPassFilter _filter2; | |||
float _last1 = 0.0f; | |||
float _last2 = 0.0f; | |||
#elif RANDOMWALK | |||
RandomWalk _walk1; | |||
RandomWalk _walk2; | |||
#endif | |||
Test() | |||
@@ -156,7 +156,4 @@ struct Test2Widget : ModuleWidget { | |||
} | |||
}; | |||
RACK_PLUGIN_MODEL_INIT(Bogaudio, Test2) { | |||
Model *modelTest2 = Model::create<Test2, Test2Widget>("Bogaudio", "Bogaudio-Test2", "Test2"); | |||
return modelTest2; | |||
} | |||
Model* modelTest2 = Model::create<Test2, Test2Widget>("Bogaudio", "Bogaudio-Test2", "Test2"); |
@@ -60,7 +60,7 @@ struct AverageMenuItem : MenuItem { | |||
} | |||
void step() override { | |||
rightText = !_module->_sum ? "?" : ""; | |||
rightText = !_module->_sum ? "âś”" : ""; | |||
} | |||
}; | |||
@@ -0,0 +1,90 @@ | |||
#include "Walk.hpp" | |||
void Walk::onReset() { | |||
_trigger.reset(); | |||
_modulationStep = modulationSteps; | |||
} | |||
void Walk::onSampleRateChange() { | |||
_modulationStep = modulationSteps; | |||
} | |||
void Walk::step() { | |||
lights[TRACK_LIGHT].value = params[TRACK_PARAM].value; | |||
++_modulationStep; | |||
if (_modulationStep >= modulationSteps) { | |||
_modulationStep = 0; | |||
float rate = params[RATE_PARAM].value; | |||
if (inputs[RATE_INPUT].active) { | |||
rate *= clamp(inputs[RATE_INPUT].value / 10.0f, 0.0f, 1.0f); | |||
} | |||
rate *= rate; | |||
rate *= rate; | |||
_walk.setParams(engineGetSampleRate(), rate); | |||
} | |||
float out = _walk.next(); | |||
out *= params[SCALE_PARAM].value; | |||
out += params[OFFSET_PARAM].value * 5.0f; | |||
outputs[OUT_OUTPUT].value = out; | |||
bool triggered = _trigger.process(inputs[HOLD_INPUT].value); | |||
if (params[TRACK_PARAM].value > 0.5f ? _trigger.isHigh() : triggered) { | |||
_hold = out; | |||
} | |||
outputs[HOLD_OUTPUT].value = _hold; | |||
} | |||
struct WalkWidget : ModuleWidget { | |||
static constexpr int hp = 3; | |||
WalkWidget(Walk* module) : ModuleWidget(module) { | |||
box.size = Vec(RACK_GRID_WIDTH * hp, RACK_GRID_HEIGHT); | |||
{ | |||
SVGPanel *panel = new SVGPanel(); | |||
panel->box.size = box.size; | |||
panel->setBackground(SVG::load(assetPlugin(plugin, "res/Walk.svg"))); | |||
addChild(panel); | |||
} | |||
addChild(Widget::create<ScrewSilver>(Vec(0, 0))); | |||
addChild(Widget::create<ScrewSilver>(Vec(box.size.x - 15, 365))); | |||
// generated by svg_widgets.rb | |||
auto rateParamPosition = Vec(8.0, 36.0); | |||
auto offsetParamPosition = Vec(14.5, 137.0); | |||
auto scaleParamPosition = Vec(14.5, 178.0); | |||
auto trackParamPosition = Vec(29.0, 246.7); | |||
auto rateInputPosition = Vec(10.5, 77.0); | |||
auto holdInputPosition = Vec(10.5, 210.0); | |||
auto holdOutputPosition = Vec(10.5, 261.0); | |||
auto outOutputPosition = Vec(10.5, 296.0); | |||
auto trackLightPosition = Vec(7.0, 248.0); | |||
// end generated by svg_widgets.rb | |||
addParam(ParamWidget::create<Knob29>(rateParamPosition, module, Walk::RATE_PARAM, 0.0, 1.0, 0.1)); | |||
addParam(ParamWidget::create<Knob16>(offsetParamPosition, module, Walk::OFFSET_PARAM, -1.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<Knob16>(scaleParamPosition, module, Walk::SCALE_PARAM, 0.0, 1.0, 1.0)); | |||
addParam(ParamWidget::create<StatefulButton9>(trackParamPosition, module, Walk::TRACK_PARAM, 0.0, 1.0, 0.0)); | |||
addInput(Port::create<Port24>(rateInputPosition, Port::INPUT, module, Walk::RATE_INPUT)); | |||
addInput(Port::create<Port24>(holdInputPosition, Port::INPUT, module, Walk::HOLD_INPUT)); | |||
addOutput(Port::create<Port24>(holdOutputPosition, Port::OUTPUT, module, Walk::HOLD_OUTPUT)); | |||
addOutput(Port::create<Port24>(outOutputPosition, Port::OUTPUT, module, Walk::OUT_OUTPUT)); | |||
addChild(ModuleLightWidget::create<SmallLight<GreenLight>>(trackLightPosition, module, Walk::TRACK_LIGHT)); | |||
} | |||
}; | |||
RACK_PLUGIN_MODEL_INIT(Bogaudio, Walk) { | |||
Model* modelWalk = createModel<Walk, WalkWidget>("Bogaudio-Walk", "Walk", "random-walk CV source", RANDOM_TAG); | |||
return modelWalk; | |||
} |
@@ -0,0 +1,53 @@ | |||
#pragma once | |||
#include "bogaudio.hpp" | |||
#include "dsp/noise.hpp" | |||
using namespace bogaudio::dsp; | |||
extern Model* modelWalk; | |||
namespace bogaudio { | |||
struct Walk : Module { | |||
enum ParamsIds { | |||
RATE_PARAM, | |||
OFFSET_PARAM, | |||
SCALE_PARAM, | |||
TRACK_PARAM, | |||
NUM_PARAMS | |||
}; | |||
enum InputsIds { | |||
RATE_INPUT, | |||
HOLD_INPUT, | |||
NUM_INPUTS | |||
}; | |||
enum OutputsIds { | |||
HOLD_OUTPUT, | |||
OUT_OUTPUT, | |||
NUM_OUTPUTS | |||
}; | |||
enum LightsIds { | |||
TRACK_LIGHT, | |||
NUM_LIGHTS | |||
}; | |||
const int modulationSteps = 100; | |||
int _modulationStep = 0; | |||
Trigger _trigger; | |||
RandomWalk _walk; | |||
float _hold = 0.0f; | |||
Walk() : Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) { | |||
onReset(); | |||
} | |||
void onReset() override; | |||
void onSampleRateChange() override; | |||
void step() override; | |||
}; | |||
} // namespace bogaudio |
@@ -0,0 +1,285 @@ | |||
#include "Walk2.hpp" | |||
void Walk2::onReset() { | |||
_triggerX.reset(); | |||
_triggerY.reset(); | |||
_jumpTrigger.reset(); | |||
_modulationStep = modulationSteps; | |||
} | |||
void Walk2::onSampleRateChange() { | |||
_modulationStep = modulationSteps; | |||
_historySteps = (historySeconds * engineGetSampleRate()) / historyPoints; | |||
} | |||
void Walk2::step() { | |||
lights[TRACK_X_LIGHT].value = params[TRACK_X_PARAM].value; | |||
lights[TRACK_Y_LIGHT].value = params[TRACK_Y_PARAM].value; | |||
++_modulationStep; | |||
if (_modulationStep >= modulationSteps) { | |||
_modulationStep = 0; | |||
float rateX = params[RATE_X_PARAM].value; | |||
if (inputs[RATE_X_INPUT].active) { | |||
rateX *= clamp(inputs[RATE_X_INPUT].value / 10.0f, 0.0f, 1.0f); | |||
} | |||
rateX *= rateX; | |||
rateX *= rateX; | |||
_walkX.setParams(engineGetSampleRate(), rateX); | |||
float rateY = params[RATE_Y_PARAM].value; | |||
if (inputs[RATE_Y_INPUT].active) { | |||
rateY *= clamp(inputs[RATE_Y_INPUT].value / 10.0f, 0.0f, 1.0f); | |||
} | |||
rateY *= rateY; | |||
rateY *= rateY; | |||
_walkY.setParams(engineGetSampleRate(), rateY); | |||
} | |||
if (_jumpTrigger.process(inputs[JUMP_INPUT].value)) { | |||
_walkX.jump(); | |||
_walkY.jump(); | |||
} | |||
float outX = _walkX.next(); | |||
outX *= params[SCALE_X_PARAM].value; | |||
outX += params[OFFSET_X_PARAM].value * 5.0f; | |||
outputs[OUT_X_OUTPUT].value = outX; | |||
bool triggeredX = _triggerX.process(inputs[HOLD_X_INPUT].value); | |||
if (params[TRACK_X_PARAM].value > 0.5f ? _triggerX.isHigh() : triggeredX) { | |||
_holdX = outX; | |||
} | |||
outputs[HOLD_X_OUTPUT].value = _holdX; | |||
float outY = _walkY.next(); | |||
outY *= params[SCALE_Y_PARAM].value; | |||
outY += params[OFFSET_Y_PARAM].value * 5.0f; | |||
outputs[OUT_Y_OUTPUT].value = outY; | |||
bool triggeredY = _triggerY.process(inputs[HOLD_Y_INPUT].value); | |||
if (params[TRACK_Y_PARAM].value > 0.5f ? _triggerY.isHigh() : triggeredY) { | |||
_holdY = outY; | |||
} | |||
outputs[HOLD_Y_OUTPUT].value = _holdY; | |||
outputs[DISTANCE_OUTPUT].value = sqrtf(outX*outX + outY*outY) * 0.707107f; // scaling constant is 10 / squrt(200) | |||
if (_historyStep == 0) { | |||
_outsX.push(outX); | |||
_holdsX.push(_holdX); | |||
_outsY.push(outY); | |||
_holdsY.push(_holdY); | |||
} | |||
++_historyStep; | |||
_historyStep %= _historySteps; | |||
} | |||
struct Walk2Display : TransparentWidget { | |||
const int _insetAround = 4; | |||
const NVGcolor _axisColor = nvgRGBA(0xff, 0xff, 0xff, 0x70); | |||
const NVGcolor _textColor = nvgRGBA(0xff, 0xff, 0xff, 0xc0); | |||
const NVGcolor _traceColor = nvgRGBA(0xff, 0x00, 0x00, 0xd0); | |||
const NVGcolor _holdColor = nvgRGBA(0x00, 0xff, 0x00, 0xd0); | |||
Walk2* _module; | |||
const Vec _size; | |||
const Vec _drawSize; | |||
int _midX, _midY; | |||
std::shared_ptr<Font> _font; | |||
Walk2Display( | |||
Walk2* module, | |||
Vec size | |||
) | |||
: _module(module) | |||
, _size(size) | |||
, _drawSize(_size.x - 2*_insetAround, _size.y - 2*_insetAround) | |||
, _midX(_size.x / 2) | |||
, _midY(_size.y / 2) | |||
, _font(Font::load(assetPlugin(plugin, "res/fonts/inconsolata.ttf"))) | |||
{ | |||
} | |||
void draw(NVGcontext* vg) override { | |||
drawBackground(vg); | |||
float strokeWidth = std::max(1.0f, 3 - RACK_PLUGIN_UI_RACKSCENE->zoomWidget->zoom); | |||
nvgSave(vg); | |||
nvgScissor(vg, _insetAround, _insetAround, _size.x - _insetAround, _size.y - _insetAround); | |||
drawAxes(vg, strokeWidth); | |||
drawTrace(vg, _traceColor, _module->_outsX, _module->_outsY); | |||
drawTrace(vg, _holdColor, _module->_holdsX, _module->_holdsY); | |||
nvgRestore(vg); | |||
} | |||
void drawBackground(NVGcontext* vg) { | |||
nvgSave(vg); | |||
nvgBeginPath(vg); | |||
nvgRect(vg, 0, 0, _size.x, _size.y); | |||
nvgFillColor(vg, nvgRGBA(0x00, 0x00, 0x00, 0xff)); | |||
nvgFill(vg); | |||
nvgStrokeColor(vg, nvgRGBA(0xc0, 0xc0, 0xc0, 0xff)); | |||
nvgStroke(vg); | |||
nvgRestore(vg); | |||
} | |||
void drawAxes(NVGcontext* vg, float strokeWidth) { | |||
nvgSave(vg); | |||
nvgStrokeColor(vg, _axisColor); | |||
nvgStrokeWidth(vg, strokeWidth); | |||
nvgBeginPath(vg); | |||
nvgMoveTo(vg, _insetAround, _midY); | |||
nvgLineTo(vg, _size.x - _insetAround, _midY); | |||
nvgStroke(vg); | |||
nvgBeginPath(vg); | |||
nvgMoveTo(vg, _midX, _insetAround); | |||
nvgLineTo(vg, _midX, _size.y - _insetAround); | |||
nvgStroke(vg); | |||
nvgRestore(vg); | |||
} | |||
void drawTrace(NVGcontext* vg, NVGcolor color, HistoryBuffer<float>& x, HistoryBuffer<float>& y) { | |||
nvgSave(vg); | |||
nvgGlobalCompositeOperation(vg, NVG_LIGHTER); | |||
// int n = _module->historyPoints; | |||
// float beginRadius = std::max(1.0f, 2.0f - gRackScene->zoomWidget->zoom); | |||
// float endRadius = std::max(0.01f, 0.8f - gRackScene->zoomWidget->zoom); | |||
// float radiusStep = (beginRadius - endRadius) / (float)n; | |||
// float radius = beginRadius; | |||
// float alphaStep = (color.a - 0.1f) / (float)n; | |||
// for (int i = 0; i < n; ++i) { | |||
// nvgBeginPath(vg); | |||
// nvgCircle(vg, cvToPixel(_midX, _drawSize.x, x.value(i)), cvToPixel(_midY, _drawSize.y, y.value(i)), radius); | |||
// nvgStrokeColor(vg, color); | |||
// nvgFillColor(vg, color); | |||
// nvgStroke(vg); | |||
// nvgFill(vg); | |||
// radius -= radiusStep; | |||
// color.a -= alphaStep; | |||
// } | |||
int n = _module->historyPoints; | |||
float beginWidth = std::max(1.0f, 4.0f - RACK_PLUGIN_UI_RACKSCENE->zoomWidget->zoom); | |||
float endWidth = std::max(0.5f, 2.0f - RACK_PLUGIN_UI_RACKSCENE->zoomWidget->zoom); | |||
float widthStep = (beginWidth - endWidth) / (float)n; | |||
float width = endWidth; | |||
float endAlpha = 0.1f; | |||
float alphaStep = (color.a - endAlpha) / (float)n; | |||
color.a = endAlpha; | |||
for (int i = n - 1; i > 0; --i) { | |||
nvgBeginPath(vg); | |||
nvgMoveTo(vg, cvToPixel(_midX, _drawSize.x, x.value(i - 1)), cvToPixel(_midY, _drawSize.y, y.value(i - 1))); | |||
nvgLineTo(vg, cvToPixel(_midX, _drawSize.x, x.value(i)), cvToPixel(_midY, _drawSize.y, y.value(i))); | |||
nvgStrokeWidth(vg, width); | |||
nvgStrokeColor(vg, color); | |||
nvgStroke(vg); | |||
width += widthStep; | |||
color.a += alphaStep; | |||
} | |||
nvgBeginPath(vg); | |||
nvgCircle(vg, cvToPixel(_midX, _drawSize.x, x.value(0)), cvToPixel(_midY, _drawSize.y, y.value(0)), 0.5f * width); | |||
nvgStrokeColor(vg, color); | |||
nvgFillColor(vg, color); | |||
nvgStroke(vg); | |||
nvgFill(vg); | |||
nvgRestore(vg); | |||
} | |||
inline float cvToPixel(float mid, float extent, float cv) { | |||
return mid + 0.1f * extent * cv; | |||
} | |||
}; | |||
struct Walk2Widget : ModuleWidget { | |||
static constexpr int hp = 14; | |||
Walk2Widget(Walk2* module) : ModuleWidget(module) { | |||
box.size = Vec(RACK_GRID_WIDTH * hp, RACK_GRID_HEIGHT); | |||
{ | |||
SVGPanel *panel = new SVGPanel(); | |||
panel->box.size = box.size; | |||
panel->setBackground(SVG::load(assetPlugin(plugin, "res/Walk2.svg"))); | |||
addChild(panel); | |||
} | |||
{ | |||
auto inset = Vec(10, 25); | |||
int dim = box.size.x - 2*inset.x; | |||
auto size = Vec(dim, dim); | |||
auto display = new Walk2Display(module, size); | |||
display->box.pos = inset; | |||
display->box.size = size; | |||
addChild(display); | |||
} | |||
addChild(Widget::create<ScrewSilver>(Vec(15, 0))); | |||
addChild(Widget::create<ScrewSilver>(Vec(box.size.x - 30, 0))); | |||
addChild(Widget::create<ScrewSilver>(Vec(15, 365))); | |||
addChild(Widget::create<ScrewSilver>(Vec(box.size.x - 30, 365))); | |||
// generated by svg_widgets.rb | |||
auto rateXParamPosition = Vec(28.0, 240.0); | |||
auto rateYParamPosition = Vec(151.5, 240.0); | |||
auto offsetXParamPosition = Vec(75.0, 234.0); | |||
auto offsetYParamPosition = Vec(119.0, 234.0); | |||
auto scaleXParamPosition = Vec(75.0, 262.5); | |||
auto scaleYParamPosition = Vec(119.0, 262.5); | |||
auto trackXParamPosition = Vec(94.0, 290.7); | |||
auto trackYParamPosition = Vec(131.0, 290.7); | |||
auto holdXInputPosition = Vec(10.5, 284.0); | |||
auto rateXInputPosition = Vec(10.5, 323.0); | |||
auto holdYInputPosition = Vec(145.5, 284.0); | |||
auto rateYInputPosition = Vec(145.5, 323.0); | |||
auto jumpInputPosition = Vec(78.0, 313.0); | |||
auto holdXOutputPosition = Vec(41.5, 284.0); | |||
auto outXOutputPosition = Vec(41.5, 323.0); | |||
auto holdYOutputPosition = Vec(176.5, 284.0); | |||
auto outYOutputPosition = Vec(176.5, 323.0); | |||
auto distanceOutputPosition = Vec(109.0, 313.0); | |||
auto trackXLightPosition = Vec(72.0, 292.0); | |||
auto trackYLightPosition = Vec(109.0, 292.0); | |||
// end generated by svg_widgets.rb | |||
addParam(ParamWidget::create<Knob29>(rateXParamPosition, module, Walk2::RATE_X_PARAM, 0.0, 1.0, 0.1)); | |||
addParam(ParamWidget::create<Knob29>(rateYParamPosition, module, Walk2::RATE_Y_PARAM, 0.0, 1.0, 0.1)); | |||
addParam(ParamWidget::create<Knob16>(offsetXParamPosition, module, Walk2::OFFSET_X_PARAM, -1.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<Knob16>(offsetYParamPosition, module, Walk2::OFFSET_Y_PARAM, -1.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<Knob16>(scaleXParamPosition, module, Walk2::SCALE_X_PARAM, 0.0, 1.0, 1.0)); | |||
addParam(ParamWidget::create<Knob16>(scaleYParamPosition, module, Walk2::SCALE_Y_PARAM, 0.0, 1.0, 1.0)); | |||
addParam(ParamWidget::create<StatefulButton9>(trackXParamPosition, module, Walk2::TRACK_X_PARAM, 0.0, 1.0, 0.0)); | |||
addParam(ParamWidget::create<StatefulButton9>(trackYParamPosition, module, Walk2::TRACK_Y_PARAM, 0.0, 1.0, 0.0)); | |||
addInput(Port::create<Port24>(holdXInputPosition, Port::INPUT, module, Walk2::HOLD_X_INPUT)); | |||
addInput(Port::create<Port24>(rateXInputPosition, Port::INPUT, module, Walk2::RATE_X_INPUT)); | |||
addInput(Port::create<Port24>(holdYInputPosition, Port::INPUT, module, Walk2::HOLD_Y_INPUT)); | |||
addInput(Port::create<Port24>(rateYInputPosition, Port::INPUT, module, Walk2::RATE_Y_INPUT)); | |||
addInput(Port::create<Port24>(jumpInputPosition, Port::INPUT, module, Walk2::JUMP_INPUT)); | |||
addOutput(Port::create<Port24>(holdXOutputPosition, Port::OUTPUT, module, Walk2::HOLD_X_OUTPUT)); | |||
addOutput(Port::create<Port24>(outXOutputPosition, Port::OUTPUT, module, Walk2::OUT_X_OUTPUT)); | |||
addOutput(Port::create<Port24>(holdYOutputPosition, Port::OUTPUT, module, Walk2::HOLD_Y_OUTPUT)); | |||
addOutput(Port::create<Port24>(outYOutputPosition, Port::OUTPUT, module, Walk2::OUT_Y_OUTPUT)); | |||
addOutput(Port::create<Port24>(distanceOutputPosition, Port::OUTPUT, module, Walk2::DISTANCE_OUTPUT)); | |||
addChild(ModuleLightWidget::create<SmallLight<GreenLight>>(trackXLightPosition, module, Walk2::TRACK_X_LIGHT)); | |||
addChild(ModuleLightWidget::create<SmallLight<GreenLight>>(trackYLightPosition, module, Walk2::TRACK_Y_LIGHT)); | |||
} | |||
}; | |||
RACK_PLUGIN_MODEL_INIT(Bogaudio, Walk2) { | |||
Model* modelWalk2 = createModel<Walk2, Walk2Widget>("Bogaudio-Walk2", "Walk2", ""); | |||
return modelWalk2; | |||
} |
@@ -0,0 +1,80 @@ | |||
#pragma once | |||
#include "bogaudio.hpp" | |||
#include "dsp/buffer.hpp" | |||
#include "dsp/noise.hpp" | |||
using namespace bogaudio::dsp; | |||
extern Model* modelWalk2; | |||
namespace bogaudio { | |||
struct Walk2 : Module { | |||
enum ParamsIds { | |||
RATE_X_PARAM, | |||
RATE_Y_PARAM, | |||
OFFSET_X_PARAM, | |||
OFFSET_Y_PARAM, | |||
SCALE_X_PARAM, | |||
SCALE_Y_PARAM, | |||
TRACK_X_PARAM, | |||
TRACK_Y_PARAM, | |||
NUM_PARAMS | |||
}; | |||
enum InputsIds { | |||
HOLD_X_INPUT, | |||
RATE_X_INPUT, | |||
HOLD_Y_INPUT, | |||
RATE_Y_INPUT, | |||
JUMP_INPUT, | |||
NUM_INPUTS | |||
}; | |||
enum OutputsIds { | |||
HOLD_X_OUTPUT, | |||
OUT_X_OUTPUT, | |||
HOLD_Y_OUTPUT, | |||
OUT_Y_OUTPUT, | |||
DISTANCE_OUTPUT, | |||
NUM_OUTPUTS | |||
}; | |||
enum LightsIds { | |||
TRACK_X_LIGHT, | |||
TRACK_Y_LIGHT, | |||
NUM_LIGHTS | |||
}; | |||
const int modulationSteps = 100; | |||
int _modulationStep = 0; | |||
const float historySeconds = 1.0f; | |||
const int historyPoints = 100; | |||
int _historySteps; | |||
int _historyStep = 0; | |||
Trigger _triggerX, _triggerY; | |||
RandomWalk _walkX, _walkY; | |||
Trigger _jumpTrigger; | |||
float _holdX = 0.0f, _holdY = 0.0f; | |||
HistoryBuffer<float> _outsX, _outsY, _holdsX, _holdsY; | |||
Walk2() | |||
: Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) | |||
, _outsX(historyPoints, 0.0f) | |||
, _outsY(historyPoints, 0.0f) | |||
, _holdsX(historyPoints, 0.0f) | |||
, _holdsY(historyPoints, 0.0f) | |||
{ | |||
onReset(); | |||
onSampleRateChange(); | |||
} | |||
void onReset() override; | |||
void onSampleRateChange() override; | |||
void step() override; | |||
}; | |||
} // namespace bogaudio |
@@ -14,6 +14,7 @@ | |||
#include "DGate.hpp" | |||
#include "Detune.hpp" | |||
#include "EightFO.hpp" | |||
#include "EightOne.hpp" | |||
#include "FMOp.hpp" | |||
#include "FlipFlop.hpp" | |||
#include "Follow.hpp" | |||
@@ -24,13 +25,18 @@ | |||
#include "Mix4.hpp" | |||
#include "Mix8.hpp" | |||
#include "Mult.hpp" | |||
#include "Mute8.hpp" | |||
#include "Noise.hpp" | |||
#include "Nsgt.hpp" | |||
#include "Offset.hpp" | |||
#include "OneEight.hpp" | |||
#include "Pan.hpp" | |||
#include "Pressor.hpp" | |||
#include "Reftone.hpp" | |||
#include "SampleHold.hpp" | |||
#include "Shaper.hpp" | |||
#include "ShaperPlus.hpp" | |||
#include "Slew.hpp" | |||
#include "Stack.hpp" | |||
#include "Sums.hpp" | |||
#include "Switch.hpp" | |||
@@ -40,6 +46,8 @@ | |||
#include "VCM.hpp" | |||
#include "VCO.hpp" | |||
#include "VU.hpp" | |||
#include "Walk.hpp" | |||
#include "Walk2.hpp" | |||
#include "XCO.hpp" | |||
#include "XFade.hpp" | |||
@@ -130,10 +138,16 @@ RACK_PLUGIN_MODEL_DECLARE(Bogaudio, Nsgt); | |||
RACK_PLUGIN_MODEL_DECLARE(Bogaudio, Pressor); | |||
RACK_PLUGIN_MODEL_DECLARE(Bogaudio, Slew); | |||
RACK_PLUGIN_MODEL_DECLARE(Bogaudio, AddrSeq); // 0.6.14 | |||
RACK_PLUGIN_MODEL_DECLARE(Bogaudio, EightOne); | |||
RACK_PLUGIN_MODEL_DECLARE(Bogaudio, OneEight); | |||
RACK_PLUGIN_MODEL_DECLARE(Bogaudio, Walk); | |||
RACK_PLUGIN_MODEL_DECLARE(Bogaudio, Walk2); | |||
RACK_PLUGIN_INIT(Bogaudio) { | |||
RACK_PLUGIN_INIT_ID(); | |||
RACK_PLUGIN_INIT_VERSION("0.6.13"); | |||
RACK_PLUGIN_INIT_VERSION("0.6.14"); | |||
RACK_PLUGIN_INIT_WEBSITE("https://github.com/bogaudio/BogaudioModules"); | |||
RACK_PLUGIN_INIT_MANUAL("https://github.com/bogaudio/BogaudioModules/blob/master/README.md"); | |||
@@ -219,5 +233,9 @@ RACK_PLUGIN_INIT(Bogaudio) { | |||
RACK_PLUGIN_MODEL_ADD(Bogaudio, Pressor); | |||
RACK_PLUGIN_MODEL_ADD(Bogaudio, Slew); | |||
//NEW_MODELS_HERE | |||
RACK_PLUGIN_MODEL_ADD(Bogaudio, AddrSeq); // 0.6.14 | |||
RACK_PLUGIN_MODEL_ADD(Bogaudio, EightOne); | |||
RACK_PLUGIN_MODEL_ADD(Bogaudio, OneEight); | |||
RACK_PLUGIN_MODEL_ADD(Bogaudio, Walk); | |||
RACK_PLUGIN_MODEL_ADD(Bogaudio, Walk2); | |||
} |
@@ -5,6 +5,7 @@ | |||
#include <string.h> | |||
#include <math.h> | |||
#include <algorithm> | |||
#include <cmath> | |||
#include "rack.hpp" | |||
@@ -134,7 +134,7 @@ struct HistoryBuffer { | |||
HistoryBuffer(int size, T initialValue) | |||
: _size(size) | |||
, _i(size) | |||
, _i(0) | |||
{ | |||
assert(size > 0); | |||
_buf = new T[size]; | |||
@@ -146,14 +146,12 @@ struct HistoryBuffer { | |||
inline void push(T s) { | |||
++_i; | |||
if (_i >= _size) { | |||
_i = 0; | |||
} | |||
_i %= _size; | |||
_buf[_i] = s; | |||
} | |||
inline T value(int i) { | |||
assert(i <= 0 && -i <= _size); | |||
assert(i >= 0 && i < _size); | |||
int j = _i - i; | |||
if (j < 0) { | |||
j += _size; | |||
@@ -45,6 +45,11 @@ struct BiquadFilter : Filter { | |||
} | |||
} | |||
void reset() { | |||
_x[0] = _x[1] = _x[2] = 0.0; | |||
_y[0] = _y[1] = _y[2] = 0.0; | |||
} | |||
float next(float sample) override { | |||
_x[2] = _x[1]; | |||
_x[1] = _x[0]; | |||
@@ -94,7 +99,8 @@ struct LowPassFilter : Filter { | |||
setParams(sampleRate, cutoff, q); | |||
} | |||
void setParams(float sampleRate, float cutoff, float q); | |||
void setParams(float sampleRate, float cutoff, float q = 0.001f); | |||
void reset() { _biquad.reset(); } | |||
float next(float sample) override { | |||
return _biquad.next(sample); | |||
} | |||
@@ -1,4 +1,6 @@ | |||
#include <algorithm> | |||
#include "noise.hpp" | |||
using namespace bogaudio::dsp; | |||
@@ -21,3 +23,31 @@ Seeds& Seeds::getInstance() { | |||
unsigned int Seeds::next() { | |||
return getInstance()._next(); | |||
}; | |||
void RandomWalk::setParams(float sampleRate, float change) { | |||
assert(sampleRate > 0.0f); | |||
assert(change >= 0.0f); | |||
assert(change <= 1.0f); | |||
_filter.setParams(sampleRate, std::max(2.0f, change * 0.49f * sampleRate)); | |||
const float maxDamp = 0.98; | |||
const float minDamp = 0.9999; | |||
_damp = maxDamp + (1 - change)*(minDamp - maxDamp); | |||
} | |||
void RandomWalk::jump() { | |||
// FIXME | |||
_bias = _noise.next() * 5.0f; | |||
_filter.reset(); | |||
} | |||
float RandomWalk::_next() { | |||
float delta = _noise.next(); | |||
if ((_lastOut >= _max - _bias && delta > 0.0f) || (_lastOut <= _min - _bias && delta < 0.0f)) { | |||
delta = -delta; | |||
} | |||
_last = _damp*_last + delta; | |||
return _lastOut = std::min(std::max(_bias + _filter.next(_last), _min), _max); | |||
} |
@@ -3,6 +3,7 @@ | |||
#include <random> | |||
#include "base.hpp" | |||
#include "filter.hpp" | |||
namespace bogaudio { | |||
namespace dsp { | |||
@@ -78,12 +79,39 @@ struct BlueNoiseGenerator : NoiseGenerator { | |||
struct GaussianNoiseGenerator : NoiseGenerator { | |||
std::normal_distribution<float> _normal; | |||
GaussianNoiseGenerator() : _normal(0, 1.0) {} | |||
GaussianNoiseGenerator(float mean = 0.0f, float stdDev = 1.0f) : _normal(mean, stdDev) {} | |||
float _next() override { | |||
return _normal(_generator); | |||
} | |||
}; | |||
struct RandomWalk : Generator { | |||
float _min; | |||
float _max; | |||
float _last = 0.0f; | |||
float _lastOut = 0.0f; | |||
float _damp; | |||
float _bias = 0.0f; | |||
WhiteNoiseGenerator _noise; | |||
LowPassFilter _filter; | |||
RandomWalk( | |||
float min = -5.0f, | |||
float max = 5.0f, | |||
float sampleRate = 1000.0f, | |||
float change = 0.5f | |||
) | |||
: _min(min) | |||
, _max(max) | |||
{ | |||
setParams(sampleRate, change); | |||
} | |||
void setParams(float sampleRate = 1000.0f, float change = 0.5f); | |||
void jump(); | |||
float _next() override; | |||
}; | |||
} // namespace dsp | |||
} // namespace bogaudio |
@@ -0,0 +1,69 @@ | |||
#include "lfo_base.hpp" | |||
#include "dsp/pitch.hpp" | |||
#include <string.h> | |||
#define PITCH_MODE_KEY "pitch_mode" | |||
#define PITCH_MODE_VALUE_CLASSIC "classic" | |||
#define PITCH_MODE_VALUE_COMPLIANT "compliant" | |||
json_t* LFOBase::toJson() { | |||
json_t* root = json_object(); | |||
switch (_pitchMode) { | |||
case UNKNOWN_PITCH_MODE: { | |||
break; | |||
} | |||
case CLASSIC_PITCH_MODE: { | |||
json_object_set_new(root, PITCH_MODE_KEY, json_string(PITCH_MODE_VALUE_CLASSIC)); | |||
break; | |||
} | |||
case COMPLIANT_PITCH_MODE: { | |||
json_object_set_new(root, PITCH_MODE_KEY, json_string(PITCH_MODE_VALUE_COMPLIANT)); | |||
break; | |||
} | |||
} | |||
return root; | |||
} | |||
void LFOBase::fromJson(json_t* root) { | |||
json_t* pm = json_object_get(root, PITCH_MODE_KEY); | |||
if (pm) { | |||
if (0 == strncmp(json_string_value(pm), PITCH_MODE_VALUE_CLASSIC, strlen(PITCH_MODE_VALUE_CLASSIC))) { | |||
setPitchMode(CLASSIC_PITCH_MODE); | |||
} | |||
else if (0 == strncmp(json_string_value(pm), PITCH_MODE_VALUE_COMPLIANT, strlen(PITCH_MODE_VALUE_COMPLIANT))) { | |||
setPitchMode(COMPLIANT_PITCH_MODE); | |||
} | |||
} | |||
} | |||
void LFOBase::setPitchMode(PitchMode mode) { | |||
_pitchMode = mode; | |||
if (_pitchModeListener) { | |||
_pitchModeListener->pitchModeChanged(); | |||
} | |||
} | |||
void LFOBase::setFrequency(bool slow, Param& frequency, Input& pitch, Phasor& phasor) { | |||
float f = frequency.value; | |||
if (pitch.active) { | |||
f += pitch.value; | |||
} | |||
if (slow) { | |||
f -= 8.0f; | |||
} | |||
else { | |||
f -= 4.0f; | |||
} | |||
if (isCompliantPitchMode()) { | |||
f -= 3.0f; | |||
} | |||
f = cvToFrequency(f); | |||
if (f > 2000.0f) { | |||
f = 2000.0f; | |||
} | |||
phasor.setFrequency(f); | |||
} |
@@ -0,0 +1,114 @@ | |||
#pragma once | |||
#include "bogaudio.hpp" | |||
#include "dsp/oscillator.hpp" | |||
#include "dsp/signal.hpp" | |||
using namespace bogaudio::dsp; | |||
namespace bogaudio { | |||
struct PitchModeListener { | |||
virtual void pitchModeChanged() = 0; | |||
}; | |||
struct LFOBase : Module { | |||
enum PitchMode { | |||
UNKNOWN_PITCH_MODE, | |||
CLASSIC_PITCH_MODE, | |||
COMPLIANT_PITCH_MODE | |||
}; | |||
PitchMode _pitchMode = UNKNOWN_PITCH_MODE; | |||
PitchModeListener* _pitchModeListener = NULL; | |||
LFOBase(int np, int ni, int no, int nl) : Module(np, ni, no, nl) {} | |||
json_t* toJson() override; | |||
void fromJson(json_t* root) override; | |||
bool isCompliantPitchMode() { return _pitchMode == COMPLIANT_PITCH_MODE; } | |||
void setPitchMode(PitchMode mode); | |||
void setPitchModeListener(PitchModeListener* listener) { _pitchModeListener = listener; } | |||
void setFrequency(bool slow, Param& frequency, Input& pitch, Phasor& phasor); | |||
}; | |||
struct PitchModeMenuItem : MenuItem { | |||
LFOBase* _module; | |||
bool _compliant; | |||
PitchModeMenuItem(LFOBase* module, const char* label, bool compliant) | |||
: _module(module) | |||
, _compliant(compliant) | |||
{ | |||
this->text = label; | |||
} | |||
void onAction(EventAction &e) override { | |||
_module->setPitchMode(_compliant ? LFOBase::COMPLIANT_PITCH_MODE : LFOBase::CLASSIC_PITCH_MODE); | |||
} | |||
void step() override { | |||
bool compliantMode = _module->isCompliantPitchMode(); | |||
bool on = _compliant ? compliantMode : !compliantMode; | |||
rightText = on ? "âś”" : ""; | |||
} | |||
}; | |||
struct LFOBaseWidget : ModuleWidget, PitchModeListener { | |||
LFOBase* _module; | |||
SVGPanel* _panel; | |||
std::shared_ptr<SVG> _classicSVG; | |||
std::shared_ptr<SVG> _compliantSVG; | |||
SVGKnob* _frequencyKnob = NULL; | |||
LFOBaseWidget( | |||
LFOBase* module, | |||
SVGPanel* panel, | |||
std::shared_ptr<SVG> classicSVG, | |||
std::shared_ptr<SVG> compliantSVG | |||
) | |||
: ModuleWidget(module) | |||
, _module(module) | |||
, _panel(panel) | |||
, _classicSVG(classicSVG) | |||
, _compliantSVG(compliantSVG) | |||
{ | |||
setSVG(); | |||
_module->setPitchModeListener(this); | |||
} | |||
void setSVG() { | |||
if (_module->isCompliantPitchMode()) { | |||
_panel->setBackground(_compliantSVG); | |||
if (_frequencyKnob) { | |||
_frequencyKnob->minValue = -5.0f; | |||
_frequencyKnob->maxValue = 8.0f; | |||
_frequencyKnob->dirty = true; | |||
} | |||
} | |||
else { | |||
_panel->setBackground(_classicSVG); | |||
if (_frequencyKnob) { | |||
_frequencyKnob->minValue = -8.0f; | |||
_frequencyKnob->maxValue = 5.0f; | |||
_frequencyKnob->dirty = true; | |||
} | |||
} | |||
_panel->dirty = true; | |||
} | |||
void pitchModeChanged() override { | |||
setSVG(); | |||
} | |||
void appendContextMenu(Menu* menu) override { | |||
LFOBase* lfo = dynamic_cast<LFOBase*>(module); | |||
assert(lfo); | |||
menu->addChild(new MenuLabel()); | |||
menu->addChild(new PitchModeMenuItem(lfo, "Classic pitch mode: 0V = C0 = 16.35HZ", false)); | |||
menu->addChild(new PitchModeMenuItem(lfo, "Standard pitch mode: 0V = C-3 = 2.04HZ", true)); | |||
} | |||
}; | |||
} // namespace bogaudio |
@@ -12,13 +12,14 @@ void MixerChannel::setSampleRate(float sampleRate) { | |||
_rms.setSampleRate(sampleRate); | |||
} | |||
void MixerChannel::next(bool stereo) { | |||
void MixerChannel::next(bool stereo, bool solo) { | |||
if (!_inInput.active) { | |||
rms = out = left = right = 0.0f; | |||
return; | |||
} | |||
if (_muteParam.value > 0.5f) { | |||
bool muted = solo ? _muteParam.value < 2.0f : _muteParam.value > 0.5f; | |||
if (muted) { | |||
_amplifier.setLevel(_levelSL.next(minDecibels)); | |||
} | |||
else { | |||
@@ -42,3 +43,51 @@ void MixerChannel::next(bool stereo) { | |||
_panner.next(out, left, right); | |||
} | |||
} | |||
SoloMuteButton::SoloMuteButton() { | |||
shadow = new CircularShadow(); | |||
addChild(shadow); | |||
_svgWidget = new SVGWidget(); | |||
addChild(_svgWidget); | |||
auto svg = SVG::load(assetPlugin(plugin, "res/button_18px_0.svg")); | |||
_frames.push_back(svg); | |||
_frames.push_back(SVG::load(assetPlugin(plugin, "res/button_18px_1_orange.svg"))); | |||
_frames.push_back(SVG::load(assetPlugin(plugin, "res/button_18px_1_green.svg"))); | |||
_frames.push_back(SVG::load(assetPlugin(plugin, "res/button_18px_1_green.svg"))); | |||
_svgWidget->setSVG(svg); | |||
box.size = _svgWidget->box.size; | |||
shadow->box.size = _svgWidget->box.size; | |||
shadow->blurRadius = 1.0; | |||
shadow->box.pos = Vec(0.0, 1.0); | |||
} | |||
void SoloMuteButton::step() { | |||
FramebufferWidget::step(); | |||
} | |||
void SoloMuteButton::onMouseDown(EventMouseDown& e) { | |||
if (value >= 2.0f) { | |||
setValue(value - 2.0f); | |||
} | |||
else if (e.button == 1) { // right click | |||
setValue(value + 2.0f); | |||
} | |||
else { | |||
setValue(value > 0.5f ? 0.0f : 1.0f); | |||
} | |||
e.consumed = true; | |||
e.target = this; | |||
} | |||
void SoloMuteButton::onChange(EventChange &e) { | |||
assert(_frames.size() == 4); | |||
assert(value >= 0.0f && value <= 3.0f); | |||
_svgWidget->setSVG(_frames[(int)value]); | |||
dirty = true; | |||
ParamWidget::onChange(e); | |||
} |
@@ -52,7 +52,7 @@ struct MixerChannel { | |||
} | |||
void setSampleRate(float sampleRate); | |||
void next(bool stereo); // input from _in; outputs on out, left, right, rms. | |||
void next(bool stereo, bool solo); // input from _in; outputs on out, left, right, rms. | |||
}; | |||
struct MuteButton : ToggleButton { | |||
@@ -62,4 +62,15 @@ struct MuteButton : ToggleButton { | |||
} | |||
}; | |||
struct SoloMuteButton : ParamWidget, FramebufferWidget { | |||
std::vector<std::shared_ptr<SVG>> _frames; | |||
SVGWidget* _svgWidget; // deleted elsewhere. | |||
CircularShadow* shadow = NULL; | |||
SoloMuteButton(); | |||
void step() override; | |||
void onMouseDown(EventMouseDown& e) override; | |||
void onChange(EventChange &e) override; | |||
}; | |||
} // namespace bogaudio |
@@ -7,6 +7,7 @@ Modules for [VCV Rack](https://github.com/VCVRack/Rack), an open-source Eurorack | |||
- [Envelopes and Envelope Utilities](#envelopes) | |||
- [Mixers, Panners and VCAs](#mixers) | |||
- [Effects and Dynamics](#effects) | |||
- [Sequential Switches and Sequencers](#sequencers) | |||
- [Visualizers](#visualizers) | |||
- [Pitch CV Utilities](#pitch) | |||
- [Other Utilities](#utilities) | |||
@@ -16,6 +17,8 @@ Modules for [VCV Rack](https://github.com/VCVRack/Rack), an open-source Eurorack | |||
 | |||
 | |||
 | |||
 | |||
@@ -104,7 +107,9 @@ A standard LFO featuring: | |||
- Reset (hard sync) input. | |||
- Slow mode. | |||
LFO tracks pitch CVs at the V/OCT input four octaves lower than a normal oscillator: with a 0V input, the output frequency is note C0 (16.35HZ). The frequency knob is calibrated in linear volts (the small ticks), and its value is added to the input V/OCT. With no input, the frequency range is from approximately 0.1 to 400HZ; with CV the frequency may be driven up to 2000HZ or down to arbitrarily low values. In slow mode, the output frequency tracks the controls 8 octaves lower than in normal mode. | |||
LFO tracks pitch CVs at the V/OCT input seven octaves lower than a normal oscillator: with a 0V input, the output frequency is note C-3 (2.04HZ). The frequency knob is calibrated in linear volts (the small ticks), and its value is added to the input V/OCT. With no input, the frequency range is from approximately 0.1 to 400HZ; with CV the frequency may be driven up to 2000HZ or down to arbitrarily low values. In slow mode, the output frequency tracks the controls 11 octaves lower than in normal mode. | |||
*NOTE ON FREQUENCIES:* Previous to release 0.6.14 (April 2019), LFO tracked 0V as C0 or 16.35HZ (and 8 octaves lower in slow mode). Patches created with older versions will continue to have the old behavior. New instances of LFO added to patches will have the new behavior. The behavior can be toggled, in either case, on the context (right-click) menu. | |||
#### 8FO | |||
@@ -191,6 +196,7 @@ Features: | |||
- CV-controlled stereo panners; expects +/-5 volt CV; CV is attenuverted by the corresponding knob when in use. | |||
- Stereo outputs; if only one is patched, the output mix is mono. | |||
- Performance mutes (buttons) per channel. | |||
- Right-click a mute buttons solos that channel (un-mutes that channel and temporarily mutes all others). Right or left click will un-solo, restoring the old state. Multiple channels can be "soloed" at once. | |||
- Fader handles contain lights indicating the signal level out of that channel or the entire mix. | |||
- Output saturates (soft clips) to +/-12 volts, where the clipping effect becomes noticeable above +/-10 volts. | |||
@@ -228,6 +234,8 @@ Saturation (soft clipping) is applied to each output at +/-12 volts; the LEVEL k | |||
MUTE8 provides 8 independent manual or CV-controlled mutes. Each channel is muted if its button is toggled on or if there is a positive voltage at its CV input. Otherwise the input is passed to the output. | |||
As with MIX4 and MIX8, a right-click on a mute button will solo that channel (pass that channel through while muting all others). Right or left click clears this. | |||
#### PAN | |||
A stereo panner with dual inputs channels. Each channel's panner may be controlled with a +/-5 volt CV; when CV is in use, it is attenuverted the corresponding knob. Output saturates (soft clips) to +/-12 volts. | |||
@@ -309,6 +317,28 @@ In contrast to CLPR, LMTR does not distort the signal (or not much); it just red | |||
NSGT is a compact (6HP) [noise gate](https://en.wikipedia.org/wiki/Noise_gate). Its controls behave the same as the corresponding controls on PRESSOR. | |||
### <a name="sequencers"></a> Sequential Switches and Sequencers | |||
 | |||
#### 8:1 | |||
8:1 is a sequential switch and voltage-addressed switch (multiplexer) at once -- it routes 8 inputs to 1 output according to either a clock or CV input (or both). | |||
As a sequential switch, a trigger at the clock input advances the input selection -- which input is routed to the output. Like a sequencer, it can be reset with a trigger at RESET, the number of inputs to cycle through may be set with the STEPS knob, and the direction is set with the FWD/REV switch. | |||
As a multiplexer, it routes an input to the output under control of the SELECT knob and CV. A 0-10V CV, divided into 8 equal divisions of 1.25V, controls the input selection. This value is summed with the knob setting; for example, setting the knob to 4 and inputting a 2.6V CV will send input 7 to the output. When the knob-plus-CV value exceeds 8, it wraps around. | |||
Both functions may be used simultaneously: the SELECT+CV value is added to the sequential/clocked value, wrapping around. Note that the STEPS value only affects the sequential value; for example, using a clock input and setting STEPS to 2 will yield an alternation between two adjacent inputs, but this pair can be selected with the SELECT knob or CV. | |||
#### 1:8 | |||
1:8 is the opposite of 8:1 -- it routes a single input to 1 of 8 outputs. The control circuit behavior (CLOCK, SELECT, etc) is the same. | |||
#### ADDR-SEQ | |||
ADDR-SEQ is an 8-step sequencer where the step values are set by 8 bipolar knobs able to dial in voltages from -10 to 10V. It has the same clocked or voltage-addressed control circuit as 8:1 and 1:8. | |||
### <a name="visualizers"></a> Visualizers | |||
#### ANALYZER | |||
@@ -0,0 +1,795 @@ | |||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
<svg | |||
xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
xmlns:cc="http://creativecommons.org/ns#" | |||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
xmlns:svg="http://www.w3.org/2000/svg" | |||
xmlns="http://www.w3.org/2000/svg" | |||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |||
version="1.1" | |||
width="90" | |||
height="380" | |||
viewBox="0 0 90 380" | |||
id="svg164" | |||
sodipodi:docname="svg_render_tmp.svg" | |||
inkscape:version="0.92.2 5c3e80d, 2017-08-06"> | |||
<metadata | |||
id="metadata168"> | |||
<rdf:RDF> | |||
<cc:Work | |||
rdf:about=""> | |||
<dc:format>image/svg+xml</dc:format> | |||
<dc:type | |||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
</cc:Work> | |||
</rdf:RDF> | |||
</metadata> | |||
<sodipodi:namedview | |||
pagecolor="#ffffff" | |||
bordercolor="#666666" | |||
borderopacity="1" | |||
objecttolerance="10" | |||
gridtolerance="10" | |||
guidetolerance="10" | |||
inkscape:pageopacity="0" | |||
inkscape:pageshadow="2" | |||
inkscape:window-width="468" | |||
inkscape:window-height="449" | |||
id="namedview166" | |||
showgrid="false" | |||
inkscape:zoom="0.62105263" | |||
inkscape:cx="45" | |||
inkscape:cy="190" | |||
inkscape:window-x="0" | |||
inkscape:window-y="0" | |||
inkscape:window-maximized="0" | |||
inkscape:current-layer="svg164" /> | |||
<style | |||
id="style2"> | |||
text { | |||
fill: #333; | |||
font-family: 'Roboto', sans-serif; | |||
font-weight: bold; | |||
} | |||
text.title { | |||
font-family: 'Comfortaa', sans-serif; | |||
font-weight: normal; | |||
} | |||
text.brand { | |||
font-family: 'Audiowide', sans-serif; | |||
font-weight: bold; | |||
} | |||
</style> | |||
<defs | |||
id="defs80"> | |||
<symbol | |||
id="knob" | |||
viewBox="0 0 45px 45px"> | |||
<g | |||
transform="translate(22.5 22.5)" | |||
id="g10"> | |||
<polyline | |||
points="-5,0 5,0" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline4" /> | |||
<polyline | |||
points="0,-5 0,5" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline6" /> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="14" | |||
stroke-width="1" | |||
stroke="#00f" | |||
fill="none" | |||
id="circle8" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="knobguide-select" | |||
viewBox="0 0 45px 45px"> | |||
<g | |||
transform="translate(22.5 22.5)" | |||
id="g29"> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-240) translate(20 0) rotate(240) translate(-2 2)" | |||
id="text13">1</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-197.1) translate(20 0) rotate(197.1) translate(-2 2)" | |||
id="text15">2</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-154.3) translate(20 0) rotate(154.3) translate(-2 2)" | |||
id="text17">3</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-111.4) translate(20 0) rotate(111.4) translate(-2 2)" | |||
id="text19">4</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-68.6) translate(20 0) rotate(68.6) translate(-2 2)" | |||
id="text21">5</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-25.7) translate(20 0) rotate(25.7) translate(-2 2)" | |||
id="text23">6</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(17.1) translate(20 0) rotate(-17.1) translate(-2 2)" | |||
id="text25">7</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(60) translate(20 0) rotate(-60) translate(-2 2)" | |||
id="text27">8</text> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="knob-smallest" | |||
viewBox="0 0 16px 16px"> | |||
<g | |||
transform="translate(8 8)" | |||
id="g38"> | |||
<polyline | |||
points="-3,0 3,0" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline32" /> | |||
<polyline | |||
points="0,-3 0,3" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline34" /> | |||
<circle | |||
r="7.5" | |||
stroke-width="1" | |||
stroke="#00f" | |||
fill="none" | |||
id="circle36" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="knobguide-steps" | |||
viewBox="0 0 40px 40px"> | |||
<g | |||
transform="translate(20 20)" | |||
id="g55"> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-240) translate(13 0) rotate(240) translate(-2 2)" | |||
id="text41">2</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-190) translate(13 0) rotate(190) translate(-2 2)" | |||
id="text43">3</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-140) translate(13 0) rotate(140) translate(-2 2)" | |||
id="text45">4</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-90) translate(13 0) rotate(90) translate(-2 2)" | |||
id="text47">5</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-40) translate(13 0) rotate(40) translate(-2 2)" | |||
id="text49">6</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(10) translate(13 0) rotate(-10) translate(-2 2)" | |||
id="text51">7</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(60) translate(13 0) rotate(-60) translate(-2 2)" | |||
id="text53">8</text> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="switch" | |||
viewBox="0 0 14px 24px"> | |||
<rect | |||
width="14px" | |||
height="24px" | |||
stroke-width="1" | |||
stroke="#000" | |||
fill="#ddd" | |||
id="rect58" /> | |||
<rect | |||
width="14px" | |||
height="12px" | |||
stroke-width="0" | |||
fill="#000" | |||
id="rect60" /> | |||
</symbol> | |||
<symbol | |||
id="light-small" | |||
viewBox="0 0 6.4px 6.4px"> | |||
<rect | |||
width="6.4" | |||
height="6.4" | |||
fill="#0f0" | |||
id="rect63" /> | |||
</symbol> | |||
<symbol | |||
id="input" | |||
viewBox="0 0 24px 24px"> | |||
<g | |||
transform="translate(12 12)" | |||
id="g70"> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="5" | |||
stroke-width="1" | |||
stroke="#0f0" | |||
fill="#0f0" | |||
id="circle66" /> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="10.5" | |||
stroke-width="3" | |||
stroke="#0f0" | |||
fill="none" | |||
id="circle68" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="output" | |||
viewBox="0 0 24px 24px"> | |||
<g | |||
transform="translate(12 12)" | |||
id="g77"> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="5" | |||
stroke-width="1" | |||
stroke="#f00" | |||
fill="#f00" | |||
id="circle73" /> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="10.5" | |||
stroke-width="3" | |||
stroke="#f00" | |||
fill="none" | |||
id="circle75" /> | |||
</g> | |||
</symbol> | |||
</defs> | |||
<path | |||
style="fill:#dddddd" | |||
d="M 0,0 H 90 V 380 H 0 Z" | |||
id="rect82" /> | |||
<path | |||
style="fill:none;stroke:#e4e4e4;stroke-width:0.5" | |||
d="M 1,1 H 89 V 379 H 1 V 1" | |||
id="polyline84" /> | |||
<path | |||
style="fill:none;stroke:#ebebeb;stroke-width:0.80000001" | |||
d="m 0.5,0.5 h 89 v 379 H 0.5 V 0.5" | |||
id="polyline86" /> | |||
<path | |||
style="fill:none;stroke:#f2f2f2;stroke-width:1" | |||
d="M 0,0 H 90 V 380 H 0 V 0" | |||
id="polyline88" /> | |||
<g | |||
aria-label="8:1" | |||
style="font-weight:normal;font-size:12px;font-family:Comfortaa, sans-serif;letter-spacing:3px;fill:#333333" | |||
id="text90"> | |||
<path | |||
d="m 67.932,11.744 q 0.66,0.348 1.044,0.984 0.384,0.624 0.384,1.416 0,0.816 -0.372,1.476 -0.36,0.66 -1.008,1.044 -0.636,0.384 -1.416,0.384 -0.792,0 -1.44,-0.372 -0.636,-0.384 -1.008,-1.032 -0.36,-0.66 -0.36,-1.464 0,-0.804 0.384,-1.44 0.396,-0.648 1.056,-0.996 -0.444,-0.312 -0.696,-0.792 -0.252,-0.492 -0.252,-1.08 0,-0.636 0.3,-1.152 0.312,-0.528 0.84,-0.816 0.54,-0.3 1.2,-0.3 0.648,0 1.164,0.3 0.528,0.288 0.816,0.804 0.3,0.504 0.3,1.14 0,0.588 -0.252,1.092 -0.252,0.492 -0.684,0.804 z m -2.796,-1.86 q 0,0.624 0.408,1.056 0.408,0.42 1.02,0.42 0.612,0 1.008,-0.432 0.408,-0.444 0.408,-1.092 0,-0.588 -0.408,-0.984 -0.408,-0.396 -1.008,-0.396 -0.612,0 -1.02,0.408 -0.408,0.408 -0.408,1.02 z m 3.288,4.272 q 0,-0.54 -0.252,-0.972 -0.24,-0.432 -0.672,-0.684 -0.42,-0.252 -0.936,-0.252 -0.528,0 -0.96,0.264 -0.432,0.252 -0.672,0.696 -0.24,0.444 -0.24,0.996 0,0.552 0.24,1.02 0.252,0.456 0.672,0.72 0.432,0.264 0.96,0.264 0.528,0 0.948,-0.264 0.432,-0.276 0.672,-0.744 0.24,-0.48 0.24,-1.044 z" | |||
style="font-weight:normal;font-size:12px;font-family:Comfortaa, sans-serif;letter-spacing:3px;fill:#333333" | |||
id="path291" /> | |||
<path | |||
d="m 74.205,11.912 q -0.288,0 -0.504,-0.204 -0.204,-0.204 -0.204,-0.492 0,-0.3 0.204,-0.504 0.204,-0.204 0.504,-0.204 0.288,0 0.48,0.216 0.204,0.204 0.204,0.492 0,0.288 -0.204,0.492 -0.192,0.204 -0.48,0.204 z m 0.024,5.28 q -0.288,0 -0.492,-0.204 -0.204,-0.204 -0.204,-0.492 0,-0.3 0.204,-0.504 0.216,-0.204 0.492,-0.204 0.288,0 0.492,0.216 0.204,0.204 0.204,0.492 0,0.288 -0.204,0.492 -0.204,0.204 -0.492,0.204 z" | |||
style="font-weight:normal;font-size:12px;font-family:Comfortaa, sans-serif;letter-spacing:3px;fill:#333333" | |||
id="path293" /> | |||
<path | |||
d="m 81.33675,17 q -0.192,0 -0.336,-0.132 -0.132,-0.144 -0.132,-0.336 v -7.8 l -1.2,0.42 q -0.12,0.06 -0.24,0.06 -0.204,0 -0.336,-0.12 -0.132,-0.132 -0.132,-0.336 0,-0.348 0.3,-0.444 l 1.848,-0.636 q 0.18,-0.06 0.24,-0.06 0.192,0 0.324,0.132 0.132,0.132 0.132,0.336 v 8.448 q 0,0.192 -0.132,0.336 -0.132,0.132 -0.336,0.132 z" | |||
style="font-weight:normal;font-size:12px;font-family:Comfortaa, sans-serif;letter-spacing:3px;fill:#333333" | |||
id="path295" /> | |||
</g> | |||
<g | |||
aria-label="BOGAUDIO" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text92"> | |||
<path | |||
d="m 12.194662,372.66699 q 0,0.20313 -0.07194,0.43587 -0.06771,0.23275 -0.228516,0.43165 -0.156576,0.19889 -0.410482,0.33431 Q 11.229818,374 10.861654,374 H 6.6848959 q -0.1184896,0 -0.2200521,-0.0423 -0.1015625,-0.0423 -0.1777344,-0.11426 -0.07194,-0.0762 -0.1142578,-0.17773 -0.042318,-0.10156 -0.042318,-0.22005 V 368.486 q 0,-0.11426 0.042318,-0.21582 0.042318,-0.10156 0.1142578,-0.17773 0.076172,-0.0762 0.1777344,-0.11849 0.1015625,-0.0423 0.2200521,-0.0423 h 3.6816411 q 0.203125,0 0.435872,0.0719 0.232747,0.0719 0.431641,0.23275 0.203125,0.15657 0.33431,0.41048 0.135416,0.25391 0.135416,0.62207 v 0.20736 q 0,0.29199 -0.09733,0.63053 -0.09733,0.33431 -0.313152,0.63477 0.186198,0.11425 0.347006,0.27506 0.165039,0.16081 0.28776,0.3724 0.122721,0.21159 0.194662,0.47819 0.07194,0.2666 0.07194,0.58821 z m -1.100261,-0.21159 q 0,-0.21582 -0.06771,-0.38509 -0.06771,-0.1735 -0.19043,-0.29622 -0.122721,-0.12272 -0.296224,-0.1862 -0.173502,-0.0677 -0.389323,-0.0677 H 7.6708985 v -1.10872 h 1.9847006 q 0.2158203,0 0.3893229,-0.0635 0.173503,-0.0677 0.296224,-0.19043 0.122721,-0.12272 0.186198,-0.29199 0.06771,-0.1735 0.06771,-0.38932 v -0.20736 q 0,-0.23698 -0.228515,-0.23698 H 7.2307943 v 3.86784 h 3.6308597 q 0.02962,0 0.07194,-0.004 0.04232,-0.004 0.07617,-0.0254 0.03385,-0.0212 0.05924,-0.0719 0.02539,-0.0508 0.02539,-0.13965 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path298" /> | |||
<path | |||
d="m 21.515625,371.54557 q 0,0.55436 -0.190429,1.01986 -0.19043,0.46549 -0.528972,0.80404 -0.338541,0.33854 -0.804036,0.52897 -0.461263,0.1862 -1.007162,0.1862 h -1.489583 q -0.545899,0 -1.011393,-0.1862 -0.465495,-0.19043 -0.804037,-0.52897 -0.338542,-0.33855 -0.533203,-0.80404 -0.19043,-0.4655 -0.19043,-1.01986 v -1.1595 q 0,-0.55013 0.19043,-1.01563 0.194661,-0.46972 0.533203,-0.80403 0.338542,-0.33855 0.804037,-0.52898 0.465494,-0.19043 1.011393,-0.19043 h 1.489583 q 0.545899,0 1.007162,0.19043 0.465495,0.19043 0.804036,0.52898 0.338542,0.33431 0.528972,0.80403 0.190429,0.4655 0.190429,1.01563 z m -1.10026,-1.1595 q 0,-0.32585 -0.105794,-0.58822 -0.101563,-0.2666 -0.291993,-0.4528 -0.186198,-0.19043 -0.452799,-0.29199 -0.26237,-0.10579 -0.579753,-0.10579 h -1.489583 q -0.321615,0 -0.588216,0.10579 -0.26237,0.10156 -0.4528,0.29199 -0.19043,0.1862 -0.296224,0.4528 -0.101562,0.26237 -0.101562,0.58822 v 1.1595 q 0,0.32585 0.101562,0.59245 0.105794,0.26237 0.296224,0.4528 0.19043,0.1862 0.4528,0.29199 0.266601,0.10156 0.588216,0.10156 h 1.48112 q 0.321614,0 0.583984,-0.10156 0.266602,-0.10579 0.457031,-0.29199 0.19043,-0.19043 0.291993,-0.4528 0.105794,-0.2666 0.105794,-0.59245 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path300" /> | |||
<path | |||
d="m 30.59961,373.44564 q 0,0.11849 -0.04232,0.22005 -0.04232,0.10156 -0.11849,0.17773 -0.07194,0.0719 -0.173502,0.11426 Q 30.163737,374 30.045248,374 h -3.969402 q -0.152343,0 -0.330078,-0.0338 -0.173502,-0.0381 -0.347005,-0.11426 -0.169271,-0.0762 -0.325846,-0.19466 -0.156576,-0.12272 -0.279297,-0.292 -0.11849,-0.1735 -0.19043,-0.39778 -0.07194,-0.22852 -0.07194,-0.51205 v -2.97916 q 0,-0.15235 0.03385,-0.32585 0.03809,-0.17773 0.114258,-0.347 0.07617,-0.17351 0.198893,-0.33008 0.122722,-0.15658 0.291992,-0.27507 0.173503,-0.12272 0.397787,-0.19466 0.224284,-0.0719 0.507812,-0.0719 h 4.472982 v 1.10026 h -4.472982 q -0.21582,0 -0.330078,0.11426 -0.114258,0.11426 -0.114258,0.33854 v 2.9707 q 0,0.21159 0.114258,0.33008 0.11849,0.11426 0.330078,0.11426 h 3.423503 v -1.37956 h -2.928385 v -1.10872 h 3.474284 q 0.118489,0 0.220052,0.0466 0.101562,0.0423 0.173502,0.11849 0.07617,0.0762 0.11849,0.17773 0.04232,0.0973 0.04232,0.21159 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path302" /> | |||
<path | |||
d="m 39.708986,374 h -1.100261 v -1.48958 H 34.740887 V 374 h -1.100261 v -3.03418 q 0,-0.66439 0.228516,-1.22298 0.228516,-0.5586 0.634766,-0.96061 0.40625,-0.40202 0.960612,-0.62631 0.554362,-0.22428 1.210286,-0.22428 h 2.479818 q 0.114258,0 0.21582,0.0423 0.101563,0.0423 0.177735,0.11849 0.07617,0.0762 0.118489,0.17773 0.04232,0.10156 0.04232,0.21582 z m -4.968099,-2.58984 h 3.867838 v -2.37826 h -1.933919 q -0.05078,0 -0.21582,0.0169 -0.160808,0.0127 -0.376628,0.0719 -0.211588,0.0592 -0.448568,0.18196 -0.236979,0.12273 -0.435872,0.33855 -0.198893,0.21582 -0.330078,0.54166 -0.126953,0.32162 -0.126953,0.78288 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path304" /> | |||
<path | |||
d="m 48.928386,373.44564 q 0,0.11849 -0.04232,0.22005 -0.04232,0.10156 -0.11849,0.17773 -0.07617,0.0719 -0.177734,0.11426 Q 48.488281,374 48.374024,374 h -2.479818 q -0.351237,0 -0.710938,-0.0762 -0.3597,-0.0762 -0.698242,-0.23275 -0.33431,-0.16081 -0.630534,-0.40625 -0.296224,-0.24544 -0.520508,-0.57975 -0.220052,-0.33854 -0.347005,-0.77018 -0.126953,-0.43588 -0.126953,-0.96908 v -3.03418 h 1.100261 v 3.03418 q 0,0.4655 0.126953,0.78711 0.131185,0.32161 0.330078,0.53743 0.198893,0.21582 0.435872,0.33855 0.236979,0.12272 0.448568,0.18196 0.21582,0.0592 0.376628,0.0762 0.165039,0.0127 0.21582,0.0127 h 1.933919 v -4.9681 h 1.100261 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path306" /> | |||
<path | |||
d="m 58.266279,371.46094 q 0,0.55436 -0.194662,1.01985 -0.190429,0.4655 -0.528971,0.80404 -0.338542,0.33431 -0.804036,0.52474 Q 56.273115,374 55.727216,374 h -2.970703 q -0.11849,0 -0.220052,-0.0423 -0.101563,-0.0423 -0.177734,-0.11426 -0.07194,-0.0762 -0.114258,-0.17773 -0.04232,-0.10156 -0.04232,-0.22005 V 368.486 q 0,-0.11426 0.04232,-0.21582 0.04232,-0.10156 0.114258,-0.17773 0.07617,-0.0762 0.177734,-0.11849 0.101562,-0.0423 0.220052,-0.0423 h 2.970703 q 0.545899,0 1.011394,0.19043 0.465494,0.19043 0.804036,0.52897 0.338542,0.33431 0.528971,0.80404 0.194662,0.46549 0.194662,1.01562 z m -1.100261,-0.99024 q 0,-0.32161 -0.105794,-0.58821 -0.101562,-0.2666 -0.291992,-0.4528 -0.19043,-0.19043 -0.457031,-0.29199 -0.26237,-0.1058 -0.583985,-0.1058 h -2.424805 v 3.86784 h 2.424805 q 0.321615,0 0.583985,-0.10156 0.266601,-0.1058 0.457031,-0.292 0.19043,-0.19042 0.291992,-0.45279 0.105794,-0.26661 0.105794,-0.59245 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path308" /> | |||
<path | |||
d="m 62.462565,374 h -1.10026 v -6.06836 h 1.10026 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path310" /> | |||
<path | |||
d="m 72.126305,371.54557 q 0,0.55436 -0.19043,1.01986 -0.19043,0.46549 -0.528971,0.80404 -0.338542,0.33854 -0.804037,0.52897 -0.461263,0.1862 -1.007161,0.1862 h -1.489584 q -0.545898,0 -1.011393,-0.1862 -0.465495,-0.19043 -0.804036,-0.52897 -0.338542,-0.33855 -0.533203,-0.80404 -0.19043,-0.4655 -0.19043,-1.01986 v -1.1595 q 0,-0.55013 0.19043,-1.01563 0.194661,-0.46972 0.533203,-0.80403 0.338541,-0.33855 0.804036,-0.52898 0.465495,-0.19043 1.011393,-0.19043 h 1.489584 q 0.545898,0 1.007161,0.19043 0.465495,0.19043 0.804037,0.52898 0.338541,0.33431 0.528971,0.80403 0.19043,0.4655 0.19043,1.01563 z m -1.100261,-1.1595 q 0,-0.32585 -0.105794,-0.58822 -0.101562,-0.2666 -0.291992,-0.4528 -0.186198,-0.19043 -0.4528,-0.29199 -0.262369,-0.10579 -0.579752,-0.10579 h -1.489584 q -0.321614,0 -0.588216,0.10579 -0.26237,0.10156 -0.452799,0.29199 -0.19043,0.1862 -0.296224,0.4528 -0.101563,0.26237 -0.101563,0.58822 v 1.1595 q 0,0.32585 0.101563,0.59245 0.105794,0.26237 0.296224,0.4528 0.190429,0.1862 0.452799,0.29199 0.266602,0.10156 0.588216,0.10156 h 1.48112 q 0.321615,0 0.583985,-0.10156 0.266601,-0.10579 0.457031,-0.29199 0.19043,-0.19043 0.291992,-0.4528 0.105794,-0.2666 0.105794,-0.59245 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path312" /> | |||
</g> | |||
<path | |||
style="fill:#dddddd" | |||
d="M 26.5,370 H 28 v 2 h -1.5 z" | |||
id="rect94" /> | |||
<path | |||
style="fill:#fafafa" | |||
d="m 11.5,23 h 24 c 2.77,0 5,2.23 5,5 v 327 c 0,2.77 -2.23,5 -5,5 h -24 c -2.77,0 -5,-2.23 -5,-5 V 28 c 0,-2.77 2.23,-5 5,-5 z" | |||
id="rect98" /> | |||
<g | |||
aria-label="IN" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text100"> | |||
<path | |||
d="m 20.461589,32 h -0.976563 v -4.739583 h 0.976563 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path317" /> | |||
<path | |||
d="M 27.217448,32 H 26.240885 L 24.339844,28.88151 V 32 h -0.976563 v -4.739583 h 0.976563 l 1.904296,3.125 v -3.125 h 0.973308 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path319" /> | |||
</g> | |||
<g | |||
aria-label="1" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text102"> | |||
<path | |||
d="m 20.107422,67 h -0.940755 v -3.626302 l -1.123047,0.348307 v -0.764974 l 1.96289,-0.703125 h 0.100912 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path322" /> | |||
</g> | |||
<g | |||
aria-label="2" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text104"> | |||
<path | |||
d="m 21.070963,108.3 h -3.248697 v -0.64453 l 1.533203,-1.63411 q 0.315755,-0.34505 0.465494,-0.60222 0.152995,-0.25716 0.152995,-0.48828 0,-0.31575 -0.159505,-0.49479 -0.159505,-0.18229 -0.455729,-0.18229 -0.31901,0 -0.504557,0.22135 -0.182292,0.2181 -0.182292,0.57618 h -0.94401 q 0,-0.43295 0.205078,-0.79102 0.208333,-0.35807 0.585937,-0.5599 0.377604,-0.20507 0.85612,-0.20507 0.732422,0 1.136068,0.35156 0.406901,0.35156 0.406901,0.99284 0,0.35156 -0.182292,0.71614 -0.182292,0.36459 -0.625,0.84961 l -1.077474,1.13607 h 2.03776 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path325" /> | |||
</g> | |||
<g | |||
aria-label="3" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text106"> | |||
<path | |||
d="m 18.779297,147.81355 h 0.501302 q 0.358073,0 0.530599,-0.17904 0.172526,-0.17904 0.172526,-0.47526 0,-0.28646 -0.172526,-0.44596 -0.169271,-0.15951 -0.46875,-0.15951 -0.270182,0 -0.452474,0.14974 -0.182292,0.14649 -0.182292,0.38412 h -0.940755 q 0,-0.3711 0.198568,-0.66407 0.201823,-0.29622 0.559896,-0.46224 0.361328,-0.16601 0.79427,-0.16601 0.751954,0 1.178386,0.36133 0.426432,0.35807 0.426432,0.98958 0,0.32552 -0.198568,0.59896 -0.198567,0.27344 -0.520833,0.41992 0.400391,0.14323 0.595703,0.42969 0.198568,0.28646 0.198568,0.67708 0,0.63151 -0.46224,1.01237 -0.458984,0.38086 -1.217448,0.38086 -0.709635,0 -1.162109,-0.37435 -0.449219,-0.37435 -0.449219,-0.98958 h 0.940756 q 0,0.26693 0.198567,0.4362 0.201823,0.16927 0.494792,0.16927 0.335286,0 0.524088,-0.17578 0.192058,-0.17904 0.192058,-0.47201 0,-0.70964 -0.78125,-0.70964 h -0.498047 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path328" /> | |||
</g> | |||
<g | |||
aria-label="4" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text108"> | |||
<path | |||
d="m 20.605469,189.11614 h 0.537109 v 0.75846 h -0.537109 v 1.02539 h -0.940756 v -1.02539 h -1.943359 l -0.04232,-0.59244 1.975912,-3.12175 h 0.950521 z m -1.988933,0 h 1.048177 v -1.67318 l -0.06185,0.10742 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path331" /> | |||
</g> | |||
<g | |||
aria-label="5" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text110"> | |||
<path | |||
d="m 17.96224,229.76928 0.273437,-2.40886 h 2.65625 v 0.78451 h -1.884766 l -0.117187,1.01888 q 0.335286,-0.17904 0.712891,-0.17904 0.677083,0 1.061197,0.41992 0.384115,0.41993 0.384115,1.17513 0,0.45899 -0.195312,0.82357 -0.192058,0.36133 -0.553386,0.56315 -0.361328,0.19857 -0.852864,0.19857 -0.429688,0 -0.797526,-0.17253 -0.367839,-0.17578 -0.582683,-0.49153 -0.211588,-0.31576 -0.224609,-0.7194 h 0.930989 q 0.0293,0.29622 0.205079,0.46224 0.179036,0.16276 0.465494,0.16276 0.319011,0 0.491537,-0.22787 0.172526,-0.23112 0.172526,-0.65104 0,-0.40365 -0.198568,-0.61849 -0.198568,-0.21484 -0.563151,-0.21484 -0.335286,0 -0.54362,0.17578 l -0.09115,0.0846 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path334" /> | |||
</g> | |||
<g | |||
aria-label="6" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text112"> | |||
<path | |||
d="m 20.374349,268.61158 v 0.77474 h -0.09115 q -0.638021,0.01 -1.028646,0.33203 -0.38737,0.32227 -0.465495,0.89519 0.377605,-0.38412 0.953776,-0.38412 0.61849,0 0.983073,0.44271 0.364584,0.44271 0.364584,1.16536 0,0.46224 -0.201823,0.83659 -0.198568,0.37435 -0.566406,0.58268 -0.364584,0.20834 -0.826823,0.20834 -0.748698,0 -1.210938,-0.52084 -0.458984,-0.52083 -0.458984,-1.38997 v -0.33854 q 0,-0.77149 0.289713,-1.36068 0.292969,-0.59245 0.836589,-0.91471 0.546875,-0.32552 1.266276,-0.32878 z m -0.917969,2.37305 q -0.227864,0 -0.413411,0.12044 -0.185547,0.11719 -0.273438,0.3125 v 0.28646 q 0,0.47201 0.185547,0.73893 0.185547,0.26367 0.520833,0.26367 0.302735,0 0.488282,-0.23763 0.188802,-0.24088 0.188802,-0.62174 0,-0.38737 -0.188802,-0.625 -0.188802,-0.23763 -0.507813,-0.23763 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path337" /> | |||
</g> | |||
<g | |||
aria-label="7" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text114"> | |||
<path | |||
d="m 21.044922,310.48777 -1.832682,4.21224 h -0.992839 l 1.835937,-3.97786 h -2.35677 v -0.76172 h 3.346354 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path340" /> | |||
</g> | |||
<g | |||
aria-label="8" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text116"> | |||
<path | |||
d="m 20.911458,352.52018 q 0,0.34505 -0.172526,0.61198 -0.172526,0.26693 -0.47526,0.42643 0.345052,0.16602 0.546875,0.45899 0.201823,0.28971 0.201823,0.68359 0,0.63151 -0.429688,0.99935 -0.429687,0.36458 -1.16862,0.36458 -0.738932,0 -1.171875,-0.36783 -0.432942,-0.36784 -0.432942,-0.9961 0,-0.39388 0.201823,-0.68685 0.201823,-0.29297 0.543619,-0.45573 -0.302734,-0.1595 -0.47526,-0.42643 -0.169271,-0.26693 -0.169271,-0.61198 0,-0.60547 0.403646,-0.96354 0.403646,-0.36133 1.097005,-0.36133 0.690104,0 1.09375,0.35808 0.406901,0.35481 0.406901,0.96679 z m -0.843099,2.11263 q 0,-0.30924 -0.179036,-0.49479 -0.179037,-0.18555 -0.481771,-0.18555 -0.299479,0 -0.478516,0.18555 -0.179036,0.18229 -0.179036,0.49479 0,0.30274 0.175781,0.48828 0.175781,0.18555 0.488281,0.18555 0.30599,0 0.478516,-0.17904 0.175781,-0.17903 0.175781,-0.49479 z m -0.09766,-2.06705 q 0,-0.2767 -0.146484,-0.44271 -0.146485,-0.16927 -0.413412,-0.16927 -0.263672,0 -0.410156,0.16276 -0.146484,0.16276 -0.146484,0.44922 0,0.2832 0.146484,0.45572 0.146484,0.17253 0.413411,0.17253 0.266928,0 0.410157,-0.17253 0.146484,-0.17252 0.146484,-0.45572 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path343" /> | |||
</g> | |||
<path | |||
style="fill:#fafafa" | |||
d="m 54.5,32 h 24 c 2.77,0 5,2.23 5,5 v 29 c 0,2.77 -2.23,5 -5,5 h -24 c -2.77,0 -5,-2.23 -5,-5 V 37 c 0,-2.77 2.23,-5 5,-5 z" | |||
id="rect120" /> | |||
<path | |||
style="fill:#fafafa" | |||
d="m 49.5,62 h 34 v 10 h -34 z" | |||
id="rect122" /> | |||
<g | |||
aria-label="CLOCK" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="text124"> | |||
<path | |||
d="m 57.64388,65.421224 q -0.05534,0.764974 -0.566406,1.204427 -0.507813,0.439453 -1.341146,0.439453 -0.911458,0 -1.435547,-0.611979 -0.520833,-0.615234 -0.520833,-1.686198 v -0.289713 q 0,-0.683594 0.240885,-1.204427 0.240886,-0.520834 0.686849,-0.797526 0.449219,-0.279948 1.041667,-0.279948 0.820312,0 1.321614,0.439453 0.501303,0.439453 0.579428,1.233724 h -0.976563 q -0.03581,-0.458985 -0.257161,-0.664063 -0.218099,-0.208333 -0.667318,-0.208333 -0.488281,0 -0.732422,0.351562 -0.240885,0.348308 -0.247396,1.083985 v 0.358073 q 0,0.768229 0.23112,1.123046 0.234375,0.354818 0.735677,0.354818 0.452474,0 0.673828,-0.205078 0.22461,-0.208333 0.257162,-0.641276 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path348" /> | |||
<path | |||
d="m 60.261719,66.215495 h 2.073567 V 67 h -3.05013 v -4.739583 h 0.976563 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path350" /> | |||
<path | |||
d="m 67.576822,64.73763 q 0,0.69987 -0.247396,1.227214 -0.247395,0.527344 -0.709635,0.813802 -0.458984,0.286458 -1.054688,0.286458 -0.589192,0 -1.051432,-0.283203 -0.462239,-0.283203 -0.716146,-0.807292 -0.253906,-0.527343 -0.257161,-1.210937 v -0.234375 q 0,-0.69987 0.250651,-1.230469 0.253906,-0.533854 0.712891,-0.817057 0.462239,-0.286458 1.054687,-0.286458 0.592448,0 1.051432,0.286458 0.46224,0.283203 0.712891,0.817057 0.253906,0.530599 0.253906,1.227214 z m -0.989583,-0.214843 q 0,-0.745443 -0.266927,-1.132813 -0.266927,-0.38737 -0.761719,-0.38737 -0.491536,0 -0.758463,0.384115 -0.266928,0.380859 -0.270183,1.119791 v 0.23112 q 0,0.725912 0.266927,1.126302 0.266927,0.400391 0.768229,0.400391 0.491537,0 0.755209,-0.384115 0.263672,-0.387369 0.266927,-1.126302 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path352" /> | |||
<path | |||
d="m 73.013671,65.421224 q -0.05534,0.764974 -0.566406,1.204427 -0.507813,0.439453 -1.341146,0.439453 -0.911458,0 -1.435547,-0.611979 -0.520833,-0.615234 -0.520833,-1.686198 v -0.289713 q 0,-0.683594 0.240885,-1.204427 0.240886,-0.520834 0.686849,-0.797526 0.449219,-0.279948 1.041667,-0.279948 0.820312,0 1.321614,0.439453 0.501303,0.439453 0.579428,1.233724 h -0.976563 q -0.03581,-0.458985 -0.257161,-0.664063 -0.218099,-0.208333 -0.667318,-0.208333 -0.488281,0 -0.732422,0.351562 -0.240885,0.348308 -0.247396,1.083985 v 0.358073 q 0,0.768229 0.23112,1.123046 0.234375,0.354818 0.735677,0.354818 0.452474,0 0.673828,-0.205078 0.22461,-0.208333 0.257162,-0.641276 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path354" /> | |||
<path | |||
d="m 76.139322,65.098958 -0.507813,0.546875 V 67 h -0.976562 v -4.739583 h 0.976562 v 2.148437 l 0.429688,-0.589192 1.207682,-1.559245 h 1.201172 L 76.787108,64.366537 78.518879,67 h -1.16211 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path356" /> | |||
</g> | |||
<path | |||
style="fill:#fafafa" | |||
d="m 54.5,69 h 24 c 2.77,0 5,2.23 5,5 v 29 c 0,2.77 -2.23,5 -5,5 h -24 c -2.77,0 -5,-2.23 -5,-5 V 74 c 0,-2.77 2.23,-5 5,-5 z" | |||
id="rect128" /> | |||
<g | |||
aria-label="RESET" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="text130"> | |||
<path | |||
d="M 56.677734,102.26497 H 55.89974 V 104 h -0.976563 v -4.739583 h 1.761068 q 0.839843,0 1.295573,0.374349 0.455729,0.374344 0.455729,1.057944 0,0.48502 -0.211589,0.81055 -0.208333,0.32226 -0.634765,0.51432 l 1.02539,1.93685 V 104 h -1.048177 z m -0.777994,-0.79101 h 0.78776 q 0.367838,0 0.569661,-0.18555 0.201823,-0.1888 0.201823,-0.51758 0,-0.33528 -0.192057,-0.52734 -0.188802,-0.19206 -0.582682,-0.19206 H 55.89974 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path360" /> | |||
<path | |||
d="m 63.032552,101.94596 h -1.875 v 1.26953 h 2.200521 V 104 H 60.18099 v -4.739583 h 3.170572 v 0.791013 h -2.19401 v 1.12956 h 1.875 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path362" /> | |||
<path | |||
d="m 67.388672,102.75651 q 0,-0.27669 -0.195313,-0.42318 -0.195312,-0.14974 -0.703125,-0.3125 -0.507812,-0.16601 -0.804036,-0.32552 -0.807292,-0.4362 -0.807292,-1.17513 0,-0.38411 0.214844,-0.683591 0.218099,-0.302735 0.621745,-0.472006 0.406901,-0.16927 0.911458,-0.16927 0.507813,0 0.904948,0.185546 0.397135,0.182292 0.615234,0.517579 0.221354,0.335282 0.221354,0.761722 h -0.976562 q 0,-0.32552 -0.205078,-0.50456 -0.205078,-0.182293 -0.576172,-0.182293 -0.358073,0 -0.556641,0.152993 -0.198567,0.14974 -0.198567,0.39714 0,0.23112 0.23112,0.38737 0.234374,0.15625 0.686848,0.29297 0.833334,0.25065 1.214193,0.62174 0.380859,0.37109 0.380859,0.92448 0,0.61523 -0.465494,0.9668 -0.465495,0.3483 -1.253255,0.3483 -0.546875,0 -0.996094,-0.19856 -0.449219,-0.20183 -0.686849,-0.55013 -0.234375,-0.34831 -0.234375,-0.8073 h 0.979818 q 0,0.78451 0.9375,0.78451 0.348307,0 0.543619,-0.13997 0.195313,-0.14323 0.195313,-0.39714 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path364" /> | |||
<path | |||
d="m 72.884115,101.94596 h -1.875 v 1.26953 h 2.20052 V 104 h -3.177083 v -4.739583 h 3.170573 v 0.791013 h -2.19401 v 1.12956 h 1.875 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path366" /> | |||
<path | |||
d="M 78.415364,100.05143 H 76.963541 V 104 h -0.976563 v -3.94857 h -1.432291 v -0.791013 h 3.860677 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path368" /> | |||
</g> | |||
<g | |||
aria-label="STEPS" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="text134"> | |||
<path | |||
d="m 54.957031,119.50781 q 0,-0.33203 -0.234375,-0.50781 -0.234375,-0.17969 -0.84375,-0.375 -0.609375,-0.19922 -0.964844,-0.39062 -0.96875,-0.52344 -0.96875,-1.41016 0,-0.46094 0.257813,-0.82031 0.261719,-0.36328 0.746094,-0.56641 0.488281,-0.20312 1.09375,-0.20312 0.609375,0 1.085937,0.22265 0.476563,0.21875 0.738281,0.6211 0.265625,0.40234 0.265625,0.91406 h -1.171875 q 0,-0.39063 -0.246093,-0.60547 -0.246094,-0.21875 -0.691407,-0.21875 -0.429687,0 -0.667968,0.18359 -0.238282,0.17969 -0.238282,0.47657 0,0.27734 0.277344,0.46484 0.28125,0.1875 0.824219,0.35156 1,0.30078 1.457031,0.7461 0.457031,0.44531 0.457031,1.10937 0,0.73828 -0.558593,1.16016 -0.558594,0.41797 -1.503907,0.41797 -0.65625,0 -1.195312,-0.23829 -0.539063,-0.24218 -0.824219,-0.66015 -0.28125,-0.41797 -0.28125,-0.96875 h 1.175781 q 0,0.9414 1.125,0.9414 0.417969,0 0.652344,-0.16796 0.234375,-0.17188 0.234375,-0.47657 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path371" /> | |||
<path | |||
d="M 62.710937,116.26172 H 60.96875 V 121 h -1.171875 v -4.73828 h -1.71875 v -0.94922 h 4.632812 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path373" /> | |||
<path | |||
d="m 68.304687,118.53516 h -2.25 v 1.52343 h 2.640625 V 121 h -3.8125 v -5.6875 H 68.6875 v 0.94922 h -2.632813 v 1.35547 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path375" /> | |||
<path | |||
d="M 72.054687,118.99609 V 121 h -1.171875 v -5.6875 h 2.21875 q 0.640625,0 1.125,0.23438 0.488282,0.23437 0.75,0.66796 0.261719,0.42969 0.261719,0.98047 0,0.83594 -0.574219,1.32032 -0.570312,0.48046 -1.582031,0.48046 z m 0,-0.94921 h 1.046875 q 0.464844,0 0.707032,-0.21875 0.246093,-0.21875 0.246093,-0.625 0,-0.41797 -0.246093,-0.67579 -0.246094,-0.25781 -0.679688,-0.26562 h -1.074219 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path377" /> | |||
<path | |||
d="m 80.488281,119.50781 q 0,-0.33203 -0.234375,-0.50781 -0.234375,-0.17969 -0.84375,-0.375 -0.609375,-0.19922 -0.964844,-0.39062 -0.96875,-0.52344 -0.96875,-1.41016 0,-0.46094 0.257813,-0.82031 0.261719,-0.36328 0.746094,-0.56641 0.488281,-0.20312 1.09375,-0.20312 0.609375,0 1.085937,0.22265 0.476563,0.21875 0.738281,0.6211 0.265625,0.40234 0.265625,0.91406 h -1.171875 q 0,-0.39063 -0.246093,-0.60547 Q 80,116.16797 79.554687,116.16797 q -0.429687,0 -0.667968,0.18359 -0.238282,0.17969 -0.238282,0.47657 0,0.27734 0.277344,0.46484 0.28125,0.1875 0.824219,0.35156 1,0.30078 1.457031,0.7461 0.457031,0.44531 0.457031,1.10937 0,0.73828 -0.558593,1.16016 -0.558594,0.41797 -1.503907,0.41797 -0.65625,0 -1.195312,-0.23829 -0.539063,-0.24218 -0.824219,-0.66015 -0.28125,-0.41797 -0.28125,-0.96875 h 1.175781 q 0,0.9414 1.125,0.9414 0.417969,0 0.652344,-0.16796 0.234375,-0.17188 0.234375,-0.47657 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path379" /> | |||
</g> | |||
<g | |||
id="use136" | |||
transform="translate(46.5,120)"> | |||
<g | |||
id="g212" | |||
transform="translate(20,20)"> | |||
<g | |||
aria-label="2" | |||
transform="translate(-8.5,13.25833)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text198"> | |||
<path | |||
d="M 3.5709635,0 H 0.32226562 V -0.64453123 L 1.8554687,-2.2786458 q 0.3157552,-0.3450521 0.4654948,-0.6022135 0.1529948,-0.2571615 0.1529948,-0.4882812 0,-0.3157552 -0.1595052,-0.4947917 -0.1595052,-0.1822917 -0.4557292,-0.1822917 -0.3190104,0 -0.5045573,0.2213542 -0.1822916,0.218099 -0.1822916,0.5761719 H 0.22786458 q 0,-0.4329427 0.20507812,-0.7910156 0.20833333,-0.358073 0.5859375,-0.5598959 0.3776041,-0.2050781 0.8561198,-0.2050781 0.7324218,0 1.1360676,0.3515625 0.4069011,0.3515625 0.4069011,0.9928385 0,0.3515625 -0.1822917,0.7161458 -0.1822917,0.3645834 -0.625,0.8496094 l -1.0774739,1.13606768 h 2.0377604 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path382" /> | |||
</g> | |||
<g | |||
aria-label="3" | |||
transform="translate(-14.802501,4.2574263)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text200"> | |||
<path | |||
d="m 1.2792968,-2.7864583 h 0.5013021 q 0.3580729,0 0.530599,-0.1790364 0.172526,-0.1790365 0.172526,-0.4752604 0,-0.2864584 -0.172526,-0.4459636 -0.1692709,-0.1595052 -0.46875,-0.1595052 -0.2701823,0 -0.452474,0.1497396 -0.1822916,0.1464844 -0.1822916,0.3841146 H 0.26692708 q 0,-0.3710937 0.1985677,-0.6640625 0.20182291,-0.2962239 0.55989582,-0.4622396 0.3613281,-0.1660156 0.7942708,-0.1660156 0.7519531,0 1.1783854,0.3613281 0.4264323,0.3580729 0.4264323,0.9895833 0,0.3255209 -0.1985677,0.5989584 -0.1985677,0.2734375 -0.5208333,0.4199218 0.4003906,0.1432292 0.5957031,0.4296875 0.1985677,0.2864583 0.1985677,0.6770833 0,0.63151043 -0.4622396,1.0123698 -0.4589844,0.38085937 -1.2174479,0.38085937 -0.7096354,0 -1.16210933,-0.37434895 Q 0.20833333,-0.68359373 0.20833333,-1.2988281 H 1.1490885 q 0,0.2669271 0.1985677,0.43619791 0.2018229,0.16927083 0.4947917,0.16927083 0.3352864,0 0.5240885,-0.17578124 0.1920573,-0.1790365 0.1920573,-0.4720052 0,-0.7096354 -0.78125,-0.7096354 H 1.2792968 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path385" /> | |||
</g> | |||
<g | |||
aria-label="4" | |||
transform="translate(-11.958578,-6.3562389)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text202"> | |||
<path | |||
d="M 3.1054687,-1.7838541 H 3.642578 v 0.7584635 H 3.1054687 V 0 H 2.1647135 V -1.0253906 H 0.22135416 L 0.17903645,-1.6178385 2.1549479,-4.7395832 h 0.9505208 z m -1.9889323,0 h 1.0481771 v -1.6731771 l -0.061849,0.1074219 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path388" /> | |||
</g> | |||
<g | |||
aria-label="5" | |||
transform="translate(-2,-11)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text204"> | |||
<path | |||
d="m 0.46223957,-2.3307291 0.2734375,-2.4088541 H 3.391927 V -3.955078 H 1.5071614 l -0.1171875,1.0188802 q 0.3352865,-0.1790365 0.7128906,-0.1790365 0.6770834,0 1.0611979,0.4199219 0.3841146,0.4199218 0.3841146,1.1751301 0,0.4589844 -0.1953125,0.82356773 -0.1920573,0.36132812 -0.5533854,0.56315103 -0.3613281,0.19856771 -0.8528646,0.19856771 -0.4296875,0 -0.797526,-0.17252604 Q 0.78124998,-0.28320312 0.56640624,-0.59895832 0.3548177,-0.91471352 0.34179687,-1.3183593 H 1.2727864 q 0.029297,0.2962239 0.2050781,0.46223953 0.1790365,0.16276041 0.4654948,0.16276041 0.3190104,0 0.4915365,-0.22786458 0.172526,-0.23111976 0.172526,-0.65104166 0,-0.4036458 -0.1985677,-0.6184896 -0.1985677,-0.2148437 -0.563151,-0.2148437 -0.3352865,0 -0.5436198,0.1757812 l -0.091146,0.084636 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path391" /> | |||
</g> | |||
<g | |||
aria-label="6" | |||
transform="translate(7.9585778,-6.3562389)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text206"> | |||
<path | |||
d="m 2.8743489,-4.7884113 v 0.7747395 h -0.091146 q -0.6380209,0.00977 -1.0286459,0.3320313 -0.3873697,0.3222656 -0.4654947,0.8951822 0.3776041,-0.3841145 0.953776,-0.3841145 0.6184896,0 0.9830729,0.4427083 0.3645833,0.4427083 0.3645833,1.1653645 0,0.4622396 -0.2018229,0.83658856 -0.1985677,0.37434895 -0.5664062,0.58268228 -0.3645834,0.20833333 -0.8268229,0.20833333 -0.7486979,0 -1.21093751,-0.52083333 Q 0.32552083,-0.97656248 0.32552083,-1.8457031 v -0.3385416 q 0,-0.7714844 0.28971353,-1.3606771 0.29296874,-0.5924479 0.83658854,-0.9147135 0.546875,-0.3255208 1.266276,-0.328776 z m -0.9179687,2.3730468 q -0.2278646,0 -0.4134115,0.1204427 -0.1855469,0.1171875 -0.2734375,0.3125 v 0.2864583 q 0,0.4720052 0.1855469,0.73893227 0.1855469,0.26367187 0.5208333,0.26367187 0.3027344,0 0.4882812,-0.2376302 0.1888021,-0.24088544 0.1888021,-0.62174474 0,-0.3873698 -0.1888021,-0.625 -0.188802,-0.2376302 -0.5078124,-0.2376302 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path394" /> | |||
</g> | |||
<g | |||
aria-label="7" | |||
transform="translate(10.802501,4.2574263)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text208"> | |||
<path | |||
d="M 3.5449218,-4.2122395 1.7122395,0 H 0.71940102 L 2.5553385,-3.9778645 H 0.1985677 v -0.7617187 h 3.3463541 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path397" /> | |||
</g> | |||
<g | |||
aria-label="8" | |||
transform="translate(4.5,13.25833)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text210"> | |||
<path | |||
d="m 3.4114583,-3.4798176 q 0,0.345052 -0.1725261,0.6119791 -0.172526,0.2669271 -0.4752604,0.4264323 0.3450521,0.1660156 0.546875,0.4589844 0.2018229,0.2897135 0.2018229,0.6835937 0,0.63151041 -0.4296875,0.99934894 -0.4296875,0.36458333 -1.1686197,0.36458333 -0.7389323,0 -1.17187502,-0.36783854 -0.4329427,-0.36783853 -0.4329427,-0.99609373 0,-0.3938802 0.20182292,-0.6868489 0.20182291,-0.2929688 0.5436198,-0.4557292 -0.30273439,-0.1595052 -0.47526043,-0.4264323 -0.16927083,-0.2669271 -0.16927083,-0.6119791 0,-0.6054688 0.40364582,-0.9635417 0.40364584,-0.3613281 1.09700514,-0.3613281 0.6901042,0 1.09375,0.3580729 0.4069011,0.3548177 0.4069011,0.9667969 z m -0.843099,2.1126301 q 0,-0.3092448 -0.1790364,-0.4947916 Q 2.2102864,-2.047526 1.907552,-2.047526 q -0.2994791,0 -0.4785156,0.1855469 Q 1.25,-1.6796875 1.25,-1.3671875 q 0,0.3027344 0.1757812,0.48828127 0.1757813,0.18554687 0.4882813,0.18554687 0.3059895,0 0.4785156,-0.17903645 0.1757812,-0.17903649 0.1757812,-0.49479169 z m -0.097656,-2.0670572 q 0,-0.2766927 -0.1464844,-0.4427083 -0.1464844,-0.1692709 -0.4134115,-0.1692709 -0.2636718,0 -0.4101562,0.1627605 -0.1464844,0.1627604 -0.1464844,0.4492187 0,0.2832031 0.1464844,0.4557291 0.1464844,0.1725261 0.4134115,0.1725261 0.266927,0 0.4101562,-0.1725261 0.1464844,-0.172526 0.1464844,-0.4557291 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path400" /> | |||
</g> | |||
</g> | |||
</g> | |||
<g | |||
aria-label="FWD" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text140"> | |||
<path | |||
d="m 60.47474,163.06315 h -1.875 V 165 h -0.976562 v -4.73958 h 3.085937 v 0.79101 H 58.59974 v 1.22396 h 1.875 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path403" /> | |||
<path | |||
d="m 66.973438,163.63281 0.638021,-3.37239 h 0.973307 L 67.533334,165 H 66.550261 L 65.778777,161.82943 65.007292,165 h -0.983073 l -1.051432,-4.73958 h 0.973307 l 0.641276,3.36588 0.78125,-3.36588 h 0.826823 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path405" /> | |||
<path | |||
d="m 71.115365,165 v -4.73958 h 1.458334 q 0.625,0 1.116536,0.2832 0.494792,0.27995 0.771484,0.80078 0.276693,0.51758 0.276693,1.17839 v 0.2181 q 0,0.6608 -0.273437,1.17513 -0.270183,0.51432 -0.764974,0.79752 -0.494792,0.2832 -1.116537,0.28646 z m 0.976563,-3.94857 v 3.16406 h 0.472005 q 0.572917,0 0.875651,-0.37434 0.302734,-0.37435 0.309245,-1.07097 v -0.25065 q 0,-0.72265 -0.299479,-1.09375 -0.29948,-0.37435 -0.875651,-0.37435 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path407" /> | |||
</g> | |||
<g | |||
aria-label="REV" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text142"> | |||
<path | |||
d="M 59.877735,198.26497 H 59.09974 V 200 h -0.976562 v -4.73958 h 1.761068 q 0.839843,0 1.295572,0.37435 0.45573,0.37434 0.45573,1.05794 0,0.48502 -0.211589,0.81055 -0.208333,0.32226 -0.634766,0.51432 l 1.025391,1.93685 V 200 h -1.048177 z m -0.777995,-0.79101 h 0.787761 q 0.367838,0 0.569661,-0.18555 0.201823,-0.1888 0.201823,-0.51758 0,-0.33528 -0.192057,-0.52734 -0.188802,-0.19206 -0.582682,-0.19206 H 59.09974 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path410" /> | |||
<path | |||
d="m 67.232553,197.94596 h -1.875 v 1.26953 h 2.200521 V 200 H 64.38099 v -4.73958 h 3.170573 v 0.79101 h -2.19401 v 1.12956 h 1.875 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path412" /> | |||
<path | |||
d="m 71.882292,198.82487 1.074219,-3.56445 h 1.08724 L 72.39336,200 h -1.01888 l -1.64388,-4.73958 h 1.083984 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path414" /> | |||
</g> | |||
<!-- <rect width="45" height="14" fill="#0f0" transform="translate(0 200)" /> --> | |||
<!-- <rect width="45" height="14" fill="#0f0" transform="translate(0 307)" /> --> | |||
<g | |||
aria-label="SELECT" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="text146"> | |||
<path | |||
d="m 51.957031,218.50781 q 0,-0.33203 -0.234375,-0.50781 -0.234375,-0.17969 -0.84375,-0.375 -0.609375,-0.19922 -0.964844,-0.39063 -0.96875,-0.52343 -0.96875,-1.41015 0,-0.46094 0.257813,-0.82031 0.261719,-0.36329 0.746094,-0.56641 0.488281,-0.20313 1.09375,-0.20313 0.609375,0 1.085937,0.22266 0.476563,0.21875 0.738281,0.62109 0.265625,0.40235 0.265625,0.91407 h -1.171875 q 0,-0.39063 -0.246093,-0.60547 -0.246094,-0.21875 -0.691407,-0.21875 -0.429687,0 -0.667968,0.18359 -0.238282,0.17969 -0.238282,0.47656 0,0.27735 0.277344,0.46485 0.28125,0.1875 0.824219,0.35156 1,0.30078 1.457031,0.74609 0.457031,0.44532 0.457031,1.10938 0,0.73828 -0.558593,1.16016 -0.558594,0.41796 -1.503907,0.41796 -0.65625,0 -1.195312,-0.23828 -0.539063,-0.24218 -0.824219,-0.66015 -0.28125,-0.41797 -0.28125,-0.96875 h 1.175781 q 0,0.9414 1.125,0.9414 0.417969,0 0.652344,-0.16797 0.234375,-0.17187 0.234375,-0.47656 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path236" /> | |||
<path | |||
d="m 58.851562,217.53516 h -2.25 v 1.52343 h 2.640625 V 220 h -3.8125 v -5.6875 h 3.804688 v 0.94922 h -2.632813 v 1.35547 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path238" /> | |||
<path | |||
d="m 62.601562,219.05859 h 2.488282 V 220 h -3.660157 v -5.6875 h 1.171875 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path240" /> | |||
<path | |||
d="m 70.679687,217.53516 h -2.25 v 1.52343 h 2.640625 V 220 h -3.8125 v -5.6875 H 71.0625 v 0.94922 h -2.632813 v 1.35547 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path242" /> | |||
<path | |||
d="m 77.722656,218.10547 q -0.06641,0.91797 -0.679687,1.44531 -0.609375,0.52734 -1.609375,0.52734 -1.09375,0 -1.722657,-0.73437 -0.625,-0.73828 -0.625,-2.02344 v -0.34765 q 0,-0.82032 0.289063,-1.44532 0.289062,-0.625 0.824219,-0.95703 0.539062,-0.33594 1.25,-0.33594 0.984375,0 1.585937,0.52735 0.601563,0.52734 0.695313,1.48047 h -1.171875 q -0.04297,-0.55078 -0.308594,-0.79688 -0.261719,-0.25 -0.800781,-0.25 -0.585938,0 -0.878907,0.42188 -0.289062,0.41797 -0.296875,1.30078 v 0.42969 q 0,0.92187 0.277344,1.34765 0.28125,0.42578 0.882813,0.42578 0.542968,0 0.808593,-0.24609 0.269532,-0.25 0.308594,-0.76953 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path244" /> | |||
<path | |||
d="M 84.164062,215.26172 H 82.421875 V 220 H 81.25 v -4.73828 h -1.71875 v -0.94922 h 4.632812 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path246" /> | |||
</g> | |||
<g | |||
id="use148" | |||
transform="translate(44,222)"> | |||
<g | |||
id="g232" | |||
transform="translate(22.5,22.5)"> | |||
<g | |||
aria-label="1" | |||
transform="translate(-12,19.320508)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text216"> | |||
<path | |||
d="M 2.6074218,0 H 1.6666666 v -3.626302 l -1.12304682,0.3483073 v -0.764974 L 2.5065104,-4.7460936 h 0.1009114 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path249" /> | |||
</g> | |||
<g | |||
aria-label="2" | |||
transform="translate(-21.11586,7.8808065)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text218"> | |||
<path | |||
d="M 3.5709635,0 H 0.32226562 V -0.64453123 L 1.8554687,-2.2786458 q 0.3157552,-0.3450521 0.4654948,-0.6022135 0.1529948,-0.2571615 0.1529948,-0.4882812 0,-0.3157552 -0.1595052,-0.4947917 -0.1595052,-0.1822917 -0.4557292,-0.1822917 -0.3190104,0 -0.5045573,0.2213542 -0.1822916,0.218099 -0.1822916,0.5761719 H 0.22786458 q 0,-0.4329427 0.20507812,-0.7910156 0.20833333,-0.358073 0.5859375,-0.5598959 0.3776041,-0.2050781 0.8561198,-0.2050781 0.7324218,0 1.1360676,0.3515625 0.4069011,0.3515625 0.4069011,0.9928385 0,0.3515625 -0.1822917,0.7161458 -0.1822917,0.3645834 -0.625,0.8496094 l -1.0774739,1.13606768 h 2.0377604 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path252" /> | |||
</g> | |||
<g | |||
aria-label="3" | |||
transform="translate(-20.02154,-6.6731817)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text220"> | |||
<path | |||
d="m 1.2792968,-2.7864583 h 0.5013021 q 0.3580729,0 0.530599,-0.1790364 0.172526,-0.1790365 0.172526,-0.4752604 0,-0.2864584 -0.172526,-0.4459636 -0.1692709,-0.1595052 -0.46875,-0.1595052 -0.2701823,0 -0.452474,0.1497396 -0.1822916,0.1464844 -0.1822916,0.3841146 H 0.26692708 q 0,-0.3710937 0.1985677,-0.6640625 0.20182291,-0.2962239 0.55989582,-0.4622396 0.3613281,-0.1660156 0.7942708,-0.1660156 0.7519531,0 1.1783854,0.3613281 0.4264323,0.3580729 0.4264323,0.9895833 0,0.3255209 -0.1985677,0.5989584 -0.1985677,0.2734375 -0.5208333,0.4199218 0.4003906,0.1432292 0.5957031,0.4296875 0.1985677,0.2864583 0.1985677,0.6770833 0,0.63151043 -0.4622396,1.0123698 -0.4589844,0.38085937 -1.2174479,0.38085937 -0.7096354,0 -1.16210933,-0.37434895 Q 0.20833333,-0.68359373 0.20833333,-1.2988281 H 1.1490885 q 0,0.2669271 0.1985677,0.43619791 0.2018229,0.16927083 0.4947917,0.16927083 0.3352864,0 0.5240885,-0.17578124 0.1920573,-0.1790365 0.1920573,-0.4720052 0,-0.7096354 -0.78125,-0.7096354 H 1.2792968 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path255" /> | |||
</g> | |||
<g | |||
aria-label="4" | |||
transform="translate(-9.2975357,-16.621116)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text222"> | |||
<path | |||
d="M 3.1054687,-1.7838541 H 3.642578 v 0.7584635 H 3.1054687 V 0 H 2.1647135 V -1.0253906 H 0.22135416 L 0.17903645,-1.6178385 2.1549479,-4.7395832 h 0.9505208 z m -1.9889323,0 h 1.0481771 v -1.6731771 l -0.061849,0.1074219 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path258" /> | |||
</g> | |||
<g | |||
aria-label="5" | |||
transform="translate(5.2975357,-16.621116)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text224"> | |||
<path | |||
d="m 0.46223957,-2.3307291 0.2734375,-2.4088541 H 3.391927 V -3.955078 H 1.5071614 l -0.1171875,1.0188802 q 0.3352865,-0.1790365 0.7128906,-0.1790365 0.6770834,0 1.0611979,0.4199219 0.3841146,0.4199218 0.3841146,1.1751301 0,0.4589844 -0.1953125,0.82356773 -0.1920573,0.36132812 -0.5533854,0.56315103 -0.3613281,0.19856771 -0.8528646,0.19856771 -0.4296875,0 -0.797526,-0.17252604 Q 0.78124998,-0.28320312 0.56640624,-0.59895832 0.3548177,-0.91471352 0.34179687,-1.3183593 H 1.2727864 q 0.029297,0.2962239 0.2050781,0.46223953 0.1790365,0.16276041 0.4654948,0.16276041 0.3190104,0 0.4915365,-0.22786458 0.172526,-0.23111976 0.172526,-0.65104166 0,-0.4036458 -0.1985677,-0.6184896 -0.1985677,-0.2148437 -0.563151,-0.2148437 -0.3352865,0 -0.5436198,0.1757812 l -0.091146,0.084636 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path261" /> | |||
</g> | |||
<g | |||
aria-label="6" | |||
transform="translate(16.02154,-6.6731817)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text226"> | |||
<path | |||
d="m 2.8743489,-4.7884113 v 0.7747395 h -0.091146 q -0.6380209,0.00977 -1.0286459,0.3320313 -0.3873697,0.3222656 -0.4654947,0.8951822 0.3776041,-0.3841145 0.953776,-0.3841145 0.6184896,0 0.9830729,0.4427083 0.3645833,0.4427083 0.3645833,1.1653645 0,0.4622396 -0.2018229,0.83658856 -0.1985677,0.37434895 -0.5664062,0.58268228 -0.3645834,0.20833333 -0.8268229,0.20833333 -0.7486979,0 -1.21093751,-0.52083333 Q 0.32552083,-0.97656248 0.32552083,-1.8457031 v -0.3385416 q 0,-0.7714844 0.28971353,-1.3606771 0.29296874,-0.5924479 0.83658854,-0.9147135 0.546875,-0.3255208 1.266276,-0.328776 z m -0.9179687,2.3730468 q -0.2278646,0 -0.4134115,0.1204427 -0.1855469,0.1171875 -0.2734375,0.3125 v 0.2864583 q 0,0.4720052 0.1855469,0.73893227 0.1855469,0.26367187 0.5208333,0.26367187 0.3027344,0 0.4882812,-0.2376302 0.1888021,-0.24088544 0.1888021,-0.62174474 0,-0.3873698 -0.1888021,-0.625 -0.188802,-0.2376302 -0.5078124,-0.2376302 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path264" /> | |||
</g> | |||
<g | |||
aria-label="7" | |||
transform="translate(17.11586,7.8808065)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text228"> | |||
<path | |||
d="M 3.5449218,-4.2122395 1.7122395,0 H 0.71940102 L 2.5553385,-3.9778645 H 0.1985677 v -0.7617187 h 3.3463541 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path267" /> | |||
</g> | |||
<g | |||
aria-label="8" | |||
transform="translate(8,19.320508)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text230"> | |||
<path | |||
d="m 3.4114583,-3.4798176 q 0,0.345052 -0.1725261,0.6119791 -0.172526,0.2669271 -0.4752604,0.4264323 0.3450521,0.1660156 0.546875,0.4589844 0.2018229,0.2897135 0.2018229,0.6835937 0,0.63151041 -0.4296875,0.99934894 -0.4296875,0.36458333 -1.1686197,0.36458333 -0.7389323,0 -1.17187502,-0.36783854 -0.4329427,-0.36783853 -0.4329427,-0.99609373 0,-0.3938802 0.20182292,-0.6868489 0.20182291,-0.2929688 0.5436198,-0.4557292 -0.30273439,-0.1595052 -0.47526043,-0.4264323 -0.16927083,-0.2669271 -0.16927083,-0.6119791 0,-0.6054688 0.40364582,-0.9635417 0.40364584,-0.3613281 1.09700514,-0.3613281 0.6901042,0 1.09375,0.3580729 0.4069011,0.3548177 0.4069011,0.9667969 z m -0.843099,2.1126301 q 0,-0.3092448 -0.1790364,-0.4947916 Q 2.2102864,-2.047526 1.907552,-2.047526 q -0.2994791,0 -0.4785156,0.1855469 Q 1.25,-1.6796875 1.25,-1.3671875 q 0,0.3027344 0.1757812,0.48828127 0.1757813,0.18554687 0.4882813,0.18554687 0.3059895,0 0.4785156,-0.17903645 0.1757812,-0.17903649 0.1757812,-0.49479169 z m -0.097656,-2.0670572 q 0,-0.2766927 -0.1464844,-0.4427083 -0.1464844,-0.1692709 -0.4134115,-0.1692709 -0.2636718,0 -0.4101562,0.1627605 -0.1464844,0.1627604 -0.1464844,0.4492187 0,0.2832031 0.1464844,0.4557291 0.1464844,0.1725261 0.4134115,0.1725261 0.266927,0 0.4101562,-0.1725261 0.1464844,-0.172526 0.1464844,-0.4557291 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path270" /> | |||
</g> | |||
</g> | |||
</g> | |||
<g | |||
id="g154" | |||
transform="translate(49.5,267)"> | |||
<path | |||
style="fill:#fafafa" | |||
d="m 5,0 h 24 c 2.77,0 5,2.23 5,5 v 29 c 0,2.77 -2.23,5 -5,5 H 5 C 2.23,39 0,36.77 0,34 V 5 C 0,2.23 2.23,0 5,0 Z" | |||
id="rect150" /> | |||
<g | |||
aria-label="CV" | |||
transform="translate(11.5,35)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text152"> | |||
<path | |||
d="m 4.1438801,-1.578776 q -0.055338,0.76497394 -0.5664062,1.20442705 -0.5078125,0.43945312 -1.3411458,0.43945312 -0.9114583,0 -1.43554687,-0.61197916 Q 0.27994791,-1.1621093 0.27994791,-2.2330729 v -0.2897135 q 0,-0.6835937 0.24088541,-1.2044271 0.24088541,-0.5208333 0.68684898,-0.797526 0.4492187,-0.2799479 1.0416666,-0.2799479 0.8203125,0 1.3216146,0.4394531 0.501302,0.4394531 0.579427,1.233724 H 3.173828 q -0.035807,-0.4589844 -0.2571614,-0.6640625 -0.218099,-0.2083334 -0.6673177,-0.2083334 -0.4882812,0 -0.7324219,0.3515625 -0.2408854,0.3483073 -0.2473958,1.0839844 v 0.3580729 q 0,0.7682291 0.2311198,1.1230468 0.234375,0.35481774 0.7356771,0.35481774 0.4524739,0 0.6738281,-0.20507812 Q 3.1347656,-1.1458333 3.1673176,-1.578776 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path274" /> | |||
<path | |||
d="m 8.5364581,-1.1751302 1.0742187,-3.564453 H 10.697916 L 9.0475258,0 H 8.0286456 L 6.3847655,-4.7395832 h 1.0839843 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path276" /> | |||
</g> | |||
</g> | |||
<path | |||
style="fill:#bbbbbb" | |||
d="m 54.5,321 h 24 c 2.77,0 5,2.23 5,5 v 29 c 0,2.77 -2.23,5 -5,5 h -24 c -2.77,0 -5,-2.23 -5,-5 v -29 c 0,-2.77 2.23,-5 5,-5 z" | |||
id="rect158" /> | |||
<g | |||
aria-label="OUT" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text160"> | |||
<path | |||
d="m 61.816406,353.73763 q 0,0.69987 -0.247396,1.22721 -0.247396,0.52735 -0.709635,0.81381 -0.458984,0.28645 -1.054688,0.28645 -0.589192,0 -1.051432,-0.2832 -0.462239,-0.2832 -0.716146,-0.80729 -0.253906,-0.52734 -0.257161,-1.21094 v -0.23437 q 0,-0.69987 0.250651,-1.23047 0.253906,-0.53386 0.712891,-0.81706 0.462239,-0.28646 1.054687,-0.28646 0.592448,0 1.051432,0.28646 0.46224,0.2832 0.712891,0.81706 0.253906,0.5306 0.253906,1.22721 z m -0.989583,-0.21484 q 0,-0.74545 -0.266927,-1.13282 -0.266927,-0.38737 -0.761719,-0.38737 -0.491536,0 -0.758463,0.38412 -0.266928,0.38086 -0.270183,1.11979 v 0.23112 q 0,0.72591 0.266927,1.1263 0.266927,0.40039 0.768229,0.40039 0.491537,0 0.755209,-0.38411 0.263672,-0.38737 0.266927,-1.1263 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path280" /> | |||
<path | |||
d="m 68.119792,351.26042 v 3.12174 q 0,0.778 -0.488282,1.23047 -0.485026,0.45247 -1.328125,0.45247 -0.830078,0 -1.318359,-0.43945 -0.488281,-0.43945 -0.498047,-1.20768 v -3.15755 h 0.976563 v 3.12825 q 0,0.4655 0.221354,0.68034 0.224609,0.21159 0.618489,0.21159 0.823568,0 0.836589,-0.86589 v -3.15429 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path282" /> | |||
<path | |||
d="M 74.488281,352.05143 H 73.036458 V 356 h -0.976563 v -3.94857 h -1.432291 v -0.79101 h 3.860677 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path284" /> | |||
</g> | |||
<!-- <polyline points="0,0 90,0" stroke="#f00" stroke-width="1" fill="none" transform="translate(0 47)" /> --> | |||
<!-- <polyline points="0,0 90,0" stroke="#f00" stroke-width="1" fill="none" transform="translate(0 336)" /> --> | |||
<!-- <polyline points="0,0 90,0" stroke="#f00" stroke-width="1" fill="none" transform="translate(0 351)" /> --> | |||
<!-- <polyline points="0,0 0,360" stroke="#f00" stroke-width="1" fill="none" transform="translate(66.50 0)" /> --> | |||
</svg> |
@@ -0,0 +1,854 @@ | |||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
<svg | |||
xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
xmlns:cc="http://creativecommons.org/ns#" | |||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
xmlns:svg="http://www.w3.org/2000/svg" | |||
xmlns="http://www.w3.org/2000/svg" | |||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |||
version="1.1" | |||
width="45" | |||
height="380" | |||
viewBox="0 0 45 380" | |||
id="svg205" | |||
sodipodi:docname="svg_render_tmp.svg" | |||
inkscape:version="0.92.2 5c3e80d, 2017-08-06"> | |||
<metadata | |||
id="metadata209"> | |||
<rdf:RDF> | |||
<cc:Work | |||
rdf:about=""> | |||
<dc:format>image/svg+xml</dc:format> | |||
<dc:type | |||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
</cc:Work> | |||
</rdf:RDF> | |||
</metadata> | |||
<sodipodi:namedview | |||
pagecolor="#ffffff" | |||
bordercolor="#666666" | |||
borderopacity="1" | |||
objecttolerance="10" | |||
gridtolerance="10" | |||
guidetolerance="10" | |||
inkscape:pageopacity="0" | |||
inkscape:pageshadow="2" | |||
inkscape:window-width="468" | |||
inkscape:window-height="449" | |||
id="namedview207" | |||
showgrid="false" | |||
inkscape:zoom="0.62105263" | |||
inkscape:cx="22.5" | |||
inkscape:cy="190" | |||
inkscape:window-x="0" | |||
inkscape:window-y="0" | |||
inkscape:window-maximized="0" | |||
inkscape:current-layer="svg205" /> | |||
<style | |||
id="style2"> | |||
text { | |||
fill: #333; | |||
font-family: 'Roboto', sans-serif; | |||
font-weight: bold; | |||
} | |||
text.title { | |||
font-family: 'Comfortaa', sans-serif; | |||
font-weight: normal; | |||
} | |||
text.brand { | |||
font-family: 'Audiowide', sans-serif; | |||
font-weight: bold; | |||
} | |||
</style> | |||
<defs | |||
id="defs101"> | |||
<symbol | |||
id="knob-medium" | |||
viewBox="0 0 26px 26px"> | |||
<g | |||
transform="translate(13 13)" | |||
id="g10"> | |||
<polyline | |||
points="-3,0 3,0" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline4" /> | |||
<polyline | |||
points="0,-3 0,3" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline6" /> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="12.5" | |||
stroke-width="1" | |||
stroke="#00f" | |||
fill="none" | |||
id="circle8" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="knob-smallest" | |||
viewBox="0 0 16px 16px"> | |||
<g | |||
transform="translate(8 8)" | |||
id="g19"> | |||
<polyline | |||
points="-3,0 3,0" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline13" /> | |||
<polyline | |||
points="0,-3 0,3" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline15" /> | |||
<circle | |||
r="7.5" | |||
stroke-width="1" | |||
stroke="#00f" | |||
fill="none" | |||
id="circle17" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="knobguide-frequency-llfo" | |||
viewBox="0 0 45px 45px"> | |||
<g | |||
transform="translate(22.5 22.5)" | |||
id="g46"> | |||
<polyline | |||
points="0,0 3.5,0" | |||
stroke-width="0.7" | |||
stroke="#333" | |||
transform="rotate(-240) translate(15 0)" | |||
id="polyline22" /> | |||
<polyline | |||
points="0,0 3.5,0" | |||
stroke-width="0.7" | |||
stroke="#333" | |||
transform="rotate(60) translate(15 0)" | |||
id="polyline24" /> | |||
<g | |||
transform="rotate(-148.42) translate(14 0)" | |||
id="g30"> | |||
<polyline | |||
points="0,0 2.5,0" | |||
stroke-width="0.3" | |||
stroke="#333" | |||
transform="translate(0 0)" | |||
id="polyline26" /> | |||
<text | |||
font-size="5.0pt" | |||
transform="translate(5 0) rotate(148.42) translate(-2.2 2.3)" | |||
id="text28">1</text> | |||
</g> | |||
<g | |||
transform="rotate(-55.39) translate(14 0)" | |||
id="g36"> | |||
<polyline | |||
points="0,0 2.5,0" | |||
stroke-width="0.3" | |||
stroke="#333" | |||
transform="translate(0 0)" | |||
id="polyline32" /> | |||
<text | |||
font-size="5.0pt" | |||
transform="translate(5 0) rotate(55.39) translate(-1.0 2.3)" | |||
id="text34">0V</text> | |||
</g> | |||
<g | |||
transform="rotate(27.98) translate(14 0)" | |||
id="g42"> | |||
<polyline | |||
points="0,0 2.5,0" | |||
stroke-width="0.3" | |||
stroke="#333" | |||
transform="translate(0 0)" | |||
id="polyline38" /> | |||
<text | |||
font-size="5.0pt" | |||
transform="translate(5 0) rotate(-27.98) translate(-2.3 -0.5) rotate(90)" | |||
id="text40">200</text> | |||
</g> | |||
<text | |||
font-size="5.0pt" | |||
transform="translate(-4.5 22)" | |||
id="text44">HZ</text> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="knobguide-maxtick" | |||
viewBox="0 0 40px 40px"> | |||
<g | |||
transform="translate(20 20)" | |||
id="g61"> | |||
<g | |||
transform="rotate(60) translate(10 0)" | |||
id="g51"> | |||
<polyline | |||
points="0,0 4,0" | |||
stroke-width="1" | |||
stroke="#333" | |||
id="polyline49" /> | |||
</g> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(0)" | |||
id="path53" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(43)" | |||
id="path55" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(0)" | |||
id="path57" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(-43)" | |||
id="path59" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="knobguide-centertick" | |||
viewBox="0 0 40px 40px"> | |||
<g | |||
transform="translate(20 20)" | |||
id="g76"> | |||
<g | |||
transform="rotate(-90) translate(10 0)" | |||
id="g66"> | |||
<polyline | |||
points="0,0 4,0" | |||
stroke-width="1" | |||
stroke="#333" | |||
id="polyline64" /> | |||
</g> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(20)" | |||
id="path68" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(43)" | |||
id="path70" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(-20)" | |||
id="path72" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(-43)" | |||
id="path74" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="input" | |||
viewBox="0 0 24px 24px"> | |||
<g | |||
transform="translate(12 12)" | |||
id="g83"> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="5" | |||
stroke-width="1" | |||
stroke="#0f0" | |||
fill="#0f0" | |||
id="circle79" /> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="10.5" | |||
stroke-width="3" | |||
stroke="#0f0" | |||
fill="none" | |||
id="circle81" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="output" | |||
viewBox="0 0 24px 24px"> | |||
<g | |||
transform="translate(12 12)" | |||
id="g90"> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="5" | |||
stroke-width="1" | |||
stroke="#f00" | |||
fill="#f00" | |||
id="circle86" /> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="10.5" | |||
stroke-width="3" | |||
stroke="#f00" | |||
fill="none" | |||
id="circle88" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="button-small" | |||
viewBox="0 0 9px 9px"> | |||
<g | |||
transform="translate(4.5 4.5)" | |||
id="g95"> | |||
<circle | |||
r="4" | |||
stroke-width="1" | |||
stroke="#00f" | |||
fill="#f00" | |||
id="circle93" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="light-small" | |||
viewBox="0 0 6.4px 6.4px"> | |||
<rect | |||
width="6.4" | |||
height="6.4" | |||
fill="#0f0" | |||
id="rect98" /> | |||
</symbol> | |||
</defs> | |||
<path | |||
style="fill:#dddddd" | |||
d="M 0,0 H 45 V 380 H 0 Z" | |||
id="rect103" /> | |||
<path | |||
style="fill:none;stroke:#e4e4e4;stroke-width:0.5" | |||
d="M 1,1 H 44 V 379 H 1 V 1" | |||
id="polyline105" /> | |||
<path | |||
style="fill:none;stroke:#ebebeb;stroke-width:0.80000001" | |||
d="m 0.5,0.5 h 44 v 379 H 0.5 V 0.5" | |||
id="polyline107" /> | |||
<path | |||
style="fill:none;stroke:#f2f2f2;stroke-width:1" | |||
d="M 0,0 H 45 V 380 H 0 V 0" | |||
id="polyline109" /> | |||
<g | |||
aria-label="LLFO" | |||
transform="rotate(-90)" | |||
style="font-weight:normal;font-size:9.33333302px;font-family:Comfortaa, sans-serif;letter-spacing:2.5px;fill:#333333" | |||
id="text111"> | |||
<path | |||
d="m -374.70267,13 q -0.14933,0 -0.26133,-0.102667 -0.10267,-0.112 -0.10267,-0.261333 V 6.0746669 q 0,-0.1493333 0.10267,-0.252 0.112,-0.112 0.26133,-0.112 0.15867,0 0.26134,0.1026667 0.10266,0.1026666 0.10266,0.2613333 v 6.2346661 h 3.64934 q 0.15866,0 0.26133,0.102667 0.10267,0.09333 0.10267,0.242667 0,0.149333 -0.10267,0.252 Q -370.53067,13 -370.68933,13 Z" | |||
style="font-weight:normal;font-size:9.33333302px;font-family:Comfortaa, sans-serif;letter-spacing:2.5px;fill:#333333" | |||
id="path413" /> | |||
<path | |||
d="m -366.29642,13 q -0.14933,0 -0.26133,-0.102667 -0.10267,-0.112 -0.10267,-0.261333 V 6.0746669 q 0,-0.1493333 0.10267,-0.252 0.112,-0.112 0.26133,-0.112 0.15867,0 0.26134,0.1026667 0.10266,0.1026666 0.10266,0.2613333 v 6.2346661 h 3.64934 q 0.15866,0 0.26133,0.102667 0.10267,0.09333 0.10267,0.242667 0,0.149333 -0.10267,0.252 Q -362.12442,13 -362.28308,13 Z" | |||
style="font-weight:normal;font-size:9.33333302px;font-family:Comfortaa, sans-serif;letter-spacing:2.5px;fill:#333333" | |||
id="path415" /> | |||
<path | |||
d="m -358.46883,13 q -0.14934,0 -0.26134,-0.102667 -0.10266,-0.112 -0.10266,-0.261333 V 6.0746669 q 0,-0.1586667 0.10266,-0.2613333 0.112,-0.1026667 0.26134,-0.1026667 h 4.37733 q 0.15867,0 0.26133,0.1026667 0.10267,0.1026666 0.10267,0.252 0,0.1493333 -0.10267,0.252 -0.10266,0.093333 -0.26133,0.093333 h -4.01333 v 2.5759999 h 2.92133 q 0.15867,0 0.26133,0.1026667 0.10267,0.093333 0.10267,0.252 0,0.1493333 -0.10267,0.2519999 -0.10266,0.1026667 -0.26133,0.1026667 h -2.92133 V 12.636 q 0,0.149333 -0.10267,0.261333 Q -358.31017,13 -358.46883,13 Z" | |||
style="font-weight:normal;font-size:9.33333302px;font-family:Comfortaa, sans-serif;letter-spacing:2.5px;fill:#333333" | |||
id="path417" /> | |||
<path | |||
d="m -346.5515,13.093333 q -1.064,0 -1.91333,-0.485333 -0.84934,-0.485333 -1.33467,-1.334667 -0.476,-0.858666 -0.476,-1.9226662 0,-1.064 0.476,-1.9133333 0.48533,-0.8493333 1.33467,-1.3346666 0.84933,-0.4853333 1.91333,-0.4853333 1.05467,0 1.904,0.4853333 0.85867,0.4853333 1.33467,1.3346666 0.48533,0.8493333 0.48533,1.9133333 0,1.0640002 -0.48533,1.9226662 -0.476,0.849334 -1.33467,1.334667 -0.84933,0.485333 -1.904,0.485333 z m 0,-0.690666 q 0.84933,0 1.53067,-0.401334 0.69066,-0.401333 1.08266,-1.092 0.392,-0.7 0.392,-1.5586662 0,-0.8493333 -0.392,-1.54 -0.392,-0.6999999 -1.08266,-1.1013333 -0.68134,-0.4013333 -1.53067,-0.4013333 -0.85867,0 -1.54933,0.4013333 -0.68134,0.4013334 -1.07334,1.1013333 -0.392,0.6906667 -0.392,1.54 0,0.8586662 0.392,1.5586662 0.392,0.690667 1.07334,1.092 0.69066,0.401334 1.54933,0.401334 z" | |||
style="font-weight:normal;font-size:9.33333302px;font-family:Comfortaa, sans-serif;letter-spacing:2.5px;fill:#333333" | |||
id="path419" /> | |||
</g> | |||
<g | |||
id="g117" | |||
transform="rotate(-90,200.5,175.5)"> | |||
<g | |||
aria-label="BGA" | |||
style="font-weight:bold;font-size:9.33333302px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text113"> | |||
<path | |||
d="m 7.2096352,-1.4355468 q 0,0.21875 -0.077474,0.469401 -0.072917,0.25065103 -0.2460937,0.46484373 -0.1686198,0.2141927 -0.4420573,0.36002603 Q 6.1705727,0 5.7740883,0 H 1.2760416 Q 1.1484375,0 1.0390625,-0.04557292 0.92968747,-0.09114583 0.84765622,-0.16861979 q -0.077474,-0.0820312 -0.12304687,-0.19140624 -0.0455729,-0.109375 -0.0455729,-0.23697916 V -5.9381508 q 0,-0.1230469 0.0455729,-0.2324219 0.0455729,-0.109375 0.12304687,-0.1914062 0.0820313,-0.082031 0.19140628,-0.1276042 0.109375,-0.045573 0.2369791,-0.045573 h 3.9648436 q 0.21875,0 0.4694011,0.077474 0.250651,0.077474 0.4648437,0.2506511 0.21875,0.1686197 0.360026,0.4420572 0.1458334,0.2734375 0.1458334,0.6699219 v 0.2233073 q 0,0.3144531 -0.1048177,0.6790364 -0.1048178,0.360026 -0.3372396,0.6835937 0.2005208,0.1230469 0.3736979,0.296224 0.1777344,0.1731771 0.3098958,0.4010416 0.1321615,0.2278646 0.2096354,0.514974 0.077474,0.2871093 0.077474,0.6334635 z M 6.0247394,-1.6634114 q 0,-0.2324219 -0.072917,-0.4147135 Q 5.878906,-2.2649739 5.7467446,-2.3971353 5.6145831,-2.5292968 5.4277342,-2.5976562 5.2408852,-2.6705728 5.0084634,-2.6705728 H 2.3378905 v -1.1940104 h 2.1373698 q 0.2324218,0 0.4192708,-0.068359 0.1868489,-0.072917 0.3190104,-0.2050781 0.1321614,-0.1321614 0.2005208,-0.3144531 0.072917,-0.186849 0.072917,-0.4192708 v -0.2233073 q 0,-0.2552083 -0.2460938,-0.2552083 h -3.376953 v 4.1653644 h 3.9101561 q 0.031901,0 0.077474,-0.00456 0.045573,-0.00456 0.082031,-0.027344 0.036458,-0.022787 0.063802,-0.077474 0.027344,-0.054687 0.027344,-0.1503906 z" | |||
style="font-weight:bold;font-size:9.33333302px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path422" /> | |||
<path | |||
d="m 16.683594,-0.59700519 q 0,0.12760416 -0.04557,0.23697916 -0.04557,0.109375 -0.127605,0.19140624 -0.07747,0.07747396 -0.186849,0.12304687 Q 16.214192,0 16.086588,0 h -4.274739 q -0.164063,0 -0.355469,-0.03645833 -0.186849,-0.04101563 -0.373698,-0.12304687 -0.182291,-0.0820313 -0.350911,-0.20963541 -0.16862,-0.13216146 -0.300781,-0.31445312 -0.127605,-0.18684895 -0.205079,-0.42838537 -0.07747,-0.2460938 -0.07747,-0.5514323 v -3.2083332 q 0,-0.1640625 0.03646,-0.3509115 0.04101,-0.1914062 0.123047,-0.3736979 0.08203,-0.1868489 0.214192,-0.3554687 0.132162,-0.1686198 0.314453,-0.296224 0.186849,-0.1321614 0.428386,-0.2096354 0.241536,-0.077474 0.546875,-0.077474 h 4.817057 v 1.1848958 h -4.817057 q -0.232422,0 -0.355469,0.1230468 -0.123047,0.1230469 -0.123047,0.3645834 v 3.1992186 q 0,0.2278646 0.123047,0.3554687 0.127604,0.1230469 0.355469,0.1230469 h 3.686849 v -1.485677 h -3.153646 v -1.1940104 h 3.741536 q 0.127604,0 0.236979,0.05013 0.109375,0.045573 0.186849,0.1276042 0.08203,0.082031 0.127605,0.1914062 0.04557,0.1048177 0.04557,0.2278646 z" | |||
style="font-weight:bold;font-size:9.33333302px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path424" /> | |||
<path | |||
d="M 26.339842,0 H 25.154946 V -1.6041666 H 20.989582 V 0 h -1.184896 v -3.267578 q 0,-0.7154948 0.246094,-1.3170573 0.246094,-0.6015624 0.683594,-1.0345051 0.4375,-0.4329427 1.034505,-0.6744792 0.597005,-0.2415364 1.303385,-0.2415364 h 2.670573 q 0.123047,0 0.232422,0.045573 0.109375,0.045573 0.191406,0.1276042 0.08203,0.082031 0.127604,0.1914062 0.04557,0.109375 0.04557,0.2324219 z m -5.35026,-2.7890624 h 4.165364 v -2.5611978 h -2.082682 q -0.05469,0 -0.232422,0.018229 -0.173177,0.013672 -0.405599,0.077474 -0.227864,0.063802 -0.483072,0.1959635 -0.255209,0.1321615 -0.469402,0.3645833 -0.214192,0.2324219 -0.355468,0.5833334 -0.136719,0.3463541 -0.136719,0.8430989 z" | |||
style="font-weight:bold;font-size:9.33333302px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path426" /> | |||
</g> | |||
<path | |||
transform="translate(11.5,-5)" | |||
style="fill:#dddddd" | |||
d="M 0,0 H 3 V 3 H 0 Z" | |||
id="rect115" /> | |||
</g> | |||
<!-- <polyline points="0,0 0,380" stroke="#0f0" stroke-width="1" fill="none" transform="translate(22.5 0)" /> --> | |||
<g | |||
id="use121" | |||
transform="translate(0,17.5)"> | |||
<g | |||
id="g307" | |||
transform="translate(22.5,22.5)"> | |||
<path | |||
transform="rotate(120,-7.5,4.330127)" | |||
style="stroke:#333333;stroke-width:0.69999999" | |||
d="M 0,0 H 3.5" | |||
id="polyline283" /> | |||
<path | |||
transform="rotate(60,-7.5,12.990381)" | |||
style="stroke:#333333;stroke-width:0.69999999" | |||
d="M 0,0 H 3.5" | |||
id="polyline285" /> | |||
<g | |||
id="g291" | |||
transform="rotate(-148.42,-7,-1.9794808)"> | |||
<path | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline287" /> | |||
<g | |||
aria-label="1" | |||
transform="rotate(148.42,3.2747996,-0.75410383)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text289"> | |||
<path | |||
d="M 2.6074218,0 H 1.6666666 v -3.626302 l -1.12304682,0.3483073 v -0.764974 L 2.5065104,-4.7460936 h 0.1009114 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path314" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g297" | |||
transform="rotate(-55.39,-7,-13.335863)"> | |||
<path | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline293" /> | |||
<g | |||
aria-label="0V" | |||
transform="rotate(55.39,0.80910826,2.6602465)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text295"> | |||
<path | |||
d="m 3.5123697,-1.9596354 q 0,0.98307292 -0.406901,1.50390624 -0.4069011,0.52083333 -1.1914062,0.52083333 -0.7747396,0 -1.18489585,-0.5110677 -0.41015624,-0.5110677 -0.41992187,-1.46484367 v -0.8723959 q 0,-0.9928385 0.41015624,-1.5071614 0.41341148,-0.5143229 1.18815098,-0.5143229 0.7747396,0 1.1848958,0.5110677 0.4101563,0.5078125 0.4199219,1.4615885 z M 2.5716145,-2.9166666 q 0,-0.5891927 -0.1627604,-0.8561198 -0.1595052,-0.2701823 -0.5013021,-0.2701823 -0.3320312,0 -0.4915364,0.2571615 Q 1.2597656,-3.531901 1.25,-2.9882812 v 1.1523437 q 0,0.5794271 0.15625,0.86263023 0.1595052,0.27994791 0.5078125,0.27994791 0.345052,0 0.4980468,-0.27018228 0.1529948,-0.27018226 0.1595052,-0.82682286 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path318" /> | |||
<path | |||
d="m 6.0026041,-1.1751302 1.0742187,-3.564453 H 8.1640624 L 6.5136718,0 H 5.4947916 L 3.8509115,-4.7395832 h 1.0839843 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path320" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g303" | |||
transform="rotate(27.98,-7,28.096356)"> | |||
<path | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline299" /> | |||
<g | |||
aria-label="200" | |||
transform="rotate(62.02,0.83683503,2.5931489)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text301"> | |||
<path | |||
d="M 3.5709635,0 H 0.32226562 V -0.64453123 L 1.8554687,-2.2786458 q 0.3157552,-0.3450521 0.4654948,-0.6022135 0.1529948,-0.2571615 0.1529948,-0.4882812 0,-0.3157552 -0.1595052,-0.4947917 -0.1595052,-0.1822917 -0.4557292,-0.1822917 -0.3190104,0 -0.5045573,0.2213542 -0.1822916,0.218099 -0.1822916,0.5761719 H 0.22786458 q 0,-0.4329427 0.20507812,-0.7910156 0.20833333,-0.358073 0.5859375,-0.5598959 0.3776041,-0.2050781 0.8561198,-0.2050781 0.7324218,0 1.1360676,0.3515625 0.4069011,0.3515625 0.4069011,0.9928385 0,0.3515625 -0.1822917,0.7161458 -0.1822917,0.3645834 -0.625,0.8496094 l -1.0774739,1.13606768 h 2.0377604 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path324" /> | |||
<path | |||
d="m 7.3404947,-1.9596354 q 0,0.98307292 -0.406901,1.50390624 -0.4069011,0.52083333 -1.1914062,0.52083333 -0.7747396,0 -1.1848959,-0.5110677 -0.4101562,-0.5110677 -0.4199218,-1.46484367 v -0.8723959 q 0,-0.9928385 0.4101562,-1.5071614 0.4134115,-0.5143229 1.188151,-0.5143229 0.7747396,0 1.1848958,0.5110677 0.4101563,0.5078125 0.4199219,1.4615885 z M 6.3997395,-2.9166666 q 0,-0.5891927 -0.1627604,-0.8561198 -0.1595052,-0.2701823 -0.5013021,-0.2701823 -0.3320312,0 -0.4915364,0.2571615 -0.15625,0.2539062 -0.1660156,0.797526 v 1.1523437 q 0,0.5794271 0.15625,0.86263023 0.1595052,0.27994791 0.5078125,0.27994791 0.345052,0 0.4980468,-0.27018228 0.1529948,-0.27018226 0.1595052,-0.82682286 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path326" /> | |||
<path | |||
d="m 11.16862,-1.9596354 q 0,0.98307292 -0.406901,1.50390624 -0.406901,0.52083333 -1.1914065,0.52083333 -0.7747396,0 -1.1848959,-0.5110677 -0.4101562,-0.5110677 -0.4199218,-1.46484367 v -0.8723959 q 0,-0.9928385 0.4101562,-1.5071614 0.4134115,-0.5143229 1.188151,-0.5143229 0.77474,0 1.184896,0.5110677 0.410156,0.5078125 0.419922,1.4615885 z m -0.940755,-0.9570312 q 0,-0.5891927 -0.162761,-0.8561198 -0.1595051,-0.2701823 -0.501302,-0.2701823 -0.3320312,0 -0.4915364,0.2571615 -0.15625,0.2539062 -0.1660156,0.797526 v 1.1523437 q 0,0.5794271 0.15625,0.86263023 0.1595052,0.27994791 0.5078125,0.27994791 0.345052,0 0.4980465,-0.27018228 0.152995,-0.27018226 0.159506,-0.82682286 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path328" /> | |||
</g> | |||
</g> | |||
<g | |||
aria-label="HZ" | |||
transform="translate(-4.5,22)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text305"> | |||
<path | |||
d="M 4.2805989,0 H 3.3040364 V -2.03125 H 1.3997395 V 0 H 0.42317707 V -4.7395832 H 1.3997395 v 1.9205729 h 1.9042969 v -1.9205729 h 0.9765625 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path331" /> | |||
<path | |||
d="M 6.1718748,-0.78450519 H 8.5611977 V 0 h -3.610026 v -0.57291665 l 2.34375,-3.37565095 H 4.9544269 v -0.7910156 h 3.5546874 v 0.5598958 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path333" /> | |||
</g> | |||
</g> | |||
</g> | |||
<g | |||
aria-label="SLOW" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:0.5px;fill:#333333" | |||
id="text125"> | |||
<path | |||
d="m 13.457031,76.607811 q 0,-0.332031 -0.234375,-0.507813 -0.234375,-0.179687 -0.84375,-0.375 -0.609375,-0.199218 -0.964843,-0.390625 -0.96875,-0.523437 -0.96875,-1.410156 0,-0.460937 0.257812,-0.820312 0.261719,-0.363282 0.746094,-0.566407 0.488281,-0.203125 1.09375,-0.203125 0.609375,0 1.085937,0.222657 0.476563,0.21875 0.738282,0.621093 0.265625,0.402344 0.265625,0.914063 h -1.171875 q 0,-0.390625 -0.246094,-0.605469 -0.246094,-0.21875 -0.691406,-0.21875 -0.429688,0 -0.667969,0.183594 -0.238281,0.179687 -0.238281,0.476562 0,0.277344 0.277343,0.464844 0.28125,0.1875 0.824219,0.351563 1,0.300781 1.457031,0.746093 0.457032,0.445313 0.457032,1.109375 0,0.738282 -0.558594,1.160157 -0.558594,0.417968 -1.503906,0.417968 -0.65625,0 -1.195313,-0.238281 -0.539062,-0.242187 -0.824219,-0.660156 -0.28125,-0.417969 -0.28125,-0.96875 h 1.175782 q 0,0.941406 1.125,0.941406 0.417968,0 0.652343,-0.167969 0.234375,-0.171875 0.234375,-0.476562 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:0.5px;fill:#333333" | |||
id="path336" /> | |||
<path | |||
d="m 17.101562,77.158592 h 2.488282 v 0.941406 h -3.660156 v -5.6875 h 1.171874 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:0.5px;fill:#333333" | |||
id="path338" /> | |||
<path | |||
d="m 25.179687,75.385155 q 0,0.839843 -0.296875,1.472656 -0.296875,0.632812 -0.851562,0.976562 -0.550781,0.34375 -1.265625,0.34375 -0.707031,0 -1.261719,-0.339843 -0.554687,-0.339844 -0.859375,-0.96875 -0.304687,-0.632813 -0.308594,-1.453125 v -0.28125 q 0,-0.839844 0.300782,-1.476563 0.304687,-0.640625 0.855468,-0.980469 0.554688,-0.34375 1.265625,-0.34375 0.710938,0 1.261719,0.34375 0.554688,0.339844 0.855469,0.980469 0.304687,0.636719 0.304687,1.472656 z m -1.1875,-0.257813 q 0,-0.894531 -0.320312,-1.359375 -0.320313,-0.464844 -0.914063,-0.464844 -0.589843,0 -0.910156,0.460938 -0.320312,0.457031 -0.324219,1.34375 v 0.277344 q 0,0.871093 0.320313,1.351562 0.320312,0.480469 0.921875,0.480469 0.589844,0 0.90625,-0.460938 0.316406,-0.464843 0.320312,-1.351562 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:0.5px;fill:#333333" | |||
id="path340" /> | |||
<path | |||
d="m 30.96875,76.459373 0.765625,-4.046875 h 1.167969 l -1.261719,5.6875 h -1.179688 l -0.925781,-3.804687 -0.925781,3.804687 h -1.179688 l -1.261718,-5.6875 h 1.167968 l 0.769532,4.039063 0.9375,-4.039063 h 0.992187 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:0.5px;fill:#333333" | |||
id="path342" /> | |||
</g> | |||
<g | |||
id="g149" | |||
transform="translate(9.5,88)"> | |||
<g | |||
id="g135"> | |||
<g | |||
id="g133" | |||
transform="matrix(0.8,0,0,0.8,1,1)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#f0f" /> --> | |||
<path | |||
style="fill:none;stroke:#333333;stroke-width:1" | |||
inkscape:connector-curvature="0" | |||
id="path129" | |||
d="M 0,4 A 3,4.5 0 0 1 6,4" /> | |||
<path | |||
style="fill:none;stroke:#333333;stroke-width:1" | |||
inkscape:connector-curvature="0" | |||
id="path131" | |||
d="m 6,4 a 3,4.5 0 0 0 6,0" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g141" | |||
transform="translate(0,13)"> | |||
<g | |||
id="g139" | |||
transform="matrix(0.8,0,0,0.8,1,1)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#f0f" /> --> | |||
<path | |||
style="fill:none;stroke:#333333;stroke-width:1" | |||
d="M 0,8 12,0 v 8" | |||
id="polyline137" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g147" | |||
transform="translate(0,26)"> | |||
<g | |||
id="g145" | |||
transform="matrix(0.8,0,0,0.8,1,1)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#f0f" /> --> | |||
<path | |||
style="fill:none;stroke:#333333;stroke-width:1" | |||
d="M 0,4 V 0 h 6 v 8 h 6 V 4" | |||
id="polyline143" /> | |||
</g> | |||
</g> | |||
</g> | |||
<g | |||
id="g169" | |||
transform="translate(31.5,88)"> | |||
<g | |||
id="g155"> | |||
<g | |||
id="g153" | |||
transform="matrix(0.8,0,0,0.8,1,1)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#f0f" /> --> | |||
<path | |||
style="fill:none;stroke:#333333;stroke-width:1" | |||
d="M 0,4 3,0 9,8 12,4" | |||
id="polyline151" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g161" | |||
transform="translate(0,13)"> | |||
<g | |||
id="g159" | |||
transform="matrix(0.8,0,0,0.8,1,1)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#f0f" /> --> | |||
<path | |||
style="fill:none;stroke:#333333;stroke-width:1" | |||
d="M 0,8 V 0 l 12,8" | |||
id="polyline157" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g167" | |||
transform="translate(0,26)"> | |||
<g | |||
id="g165" | |||
transform="matrix(0.8,0,0,0.8,1,1)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#f0f" /> --> | |||
<path | |||
style="fill:none;stroke:#333333;stroke-width:1" | |||
d="M 0,4 V 0 h 3 v 8 h 9 V 4" | |||
id="polyline163" /> | |||
</g> | |||
</g> | |||
</g> | |||
<g | |||
aria-label="OFFSET" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text173"> | |||
<path | |||
d="m 8.1796875,146.28516 q 0,0.83984 -0.296875,1.47265 -0.296875,0.63281 -0.8515625,0.97656 -0.5507813,0.34375 -1.265625,0.34375 -0.7070313,0 -1.2617188,-0.33984 -0.5546874,-0.33984 -0.8593749,-0.96875 -0.3046875,-0.63281 -0.3085938,-1.45312 v -0.28125 q 0,-0.83985 0.3007813,-1.47657 0.3046875,-0.64062 0.8554687,-0.98047 0.5546875,-0.34375 1.265625,-0.34375 0.7109375,0 1.2617187,0.34375 0.5546875,0.33985 0.8554688,0.98047 0.3046875,0.63672 0.3046875,1.47266 z m -1.1875,-0.25782 q 0,-0.89453 -0.3203125,-1.35937 -0.3203125,-0.46485 -0.9140625,-0.46485 -0.5898438,0 -0.9101563,0.46094 -0.3203125,0.45703 -0.3242187,1.34375 v 0.27735 q 0,0.87109 0.3203125,1.35156 0.3203125,0.48047 0.921875,0.48047 0.5898437,0 0.90625,-0.46094 0.3164062,-0.46484 0.3203125,-1.35156 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path350" /> | |||
<path | |||
d="m 14.460938,146.67578 h -2.25 V 149 h -1.171875 v -5.6875 h 3.703125 v 0.94922 h -2.53125 v 1.46875 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path352" /> | |||
<path | |||
d="m 20.851562,146.67578 h -2.25 V 149 h -1.171875 v -5.6875 h 3.703125 v 0.94922 h -2.53125 v 1.46875 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path354" /> | |||
<path | |||
d="m 26.769531,147.50781 q 0,-0.33203 -0.234375,-0.50781 -0.234375,-0.17969 -0.84375,-0.375 -0.609375,-0.19922 -0.964844,-0.39063 -0.96875,-0.52343 -0.96875,-1.41015 0,-0.46094 0.257813,-0.82031 0.261719,-0.36329 0.746094,-0.56641 0.488281,-0.20313 1.09375,-0.20313 0.609375,0 1.085937,0.22266 0.476563,0.21875 0.738281,0.62109 0.265625,0.40235 0.265625,0.91407 h -1.171875 q 0,-0.39063 -0.246093,-0.60547 -0.246094,-0.21875 -0.691407,-0.21875 -0.429687,0 -0.667968,0.18359 -0.238282,0.17969 -0.238282,0.47656 0,0.27735 0.277344,0.46485 0.28125,0.1875 0.824219,0.35156 1,0.30078 1.457031,0.74609 0.457031,0.44532 0.457031,1.10938 0,0.73828 -0.558593,1.16016 -0.558594,0.41796 -1.503907,0.41796 -0.65625,0 -1.195312,-0.23828 -0.539063,-0.24218 -0.824219,-0.66015 -0.28125,-0.41797 -0.28125,-0.96875 h 1.175781 q 0,0.9414 1.125,0.9414 0.417969,0 0.652344,-0.16797 0.234375,-0.17187 0.234375,-0.47656 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path356" /> | |||
<path | |||
d="m 34.164062,146.53516 h -2.25 v 1.52343 h 2.640625 V 149 h -3.8125 v -5.6875 h 3.804688 v 0.94922 h -2.632813 v 1.35547 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path358" /> | |||
<path | |||
d="M 41.601562,144.26172 H 39.859375 V 149 H 38.6875 v -4.73828 h -1.71875 v -0.94922 h 4.632812 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path360" /> | |||
</g> | |||
<g | |||
id="use175" | |||
transform="translate(2.2,146.5)"> | |||
<g | |||
id="g279" | |||
transform="translate(20,20)"> | |||
<g | |||
id="g269" | |||
transform="rotate(-90,-5,-5)"> | |||
<path | |||
style="stroke:#333333;stroke-width:1" | |||
d="M 0,0 H 4" | |||
id="polyline267" /> | |||
</g> | |||
<path | |||
id="path271" | |||
transform="rotate(20)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 1 12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path273" | |||
transform="rotate(43)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 1 12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path275" | |||
transform="rotate(-20)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 0 -12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path277" | |||
transform="rotate(-43)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 0 -12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
</g> | |||
</g> | |||
<g | |||
aria-label="SCALE" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text179"> | |||
<path | |||
d="m 10.057031,188.50781 q 0,-0.33203 -0.2343748,-0.50781 -0.234375,-0.17969 -0.84375,-0.375 -0.609375,-0.19922 -0.9648438,-0.39063 -0.96875,-0.52343 -0.96875,-1.41015 0,-0.46094 0.2578125,-0.82031 0.2617188,-0.36329 0.7460938,-0.56641 0.4882812,-0.20313 1.09375,-0.20313 0.609375,0 1.0859373,0.22266 0.476563,0.21875 0.738281,0.62109 0.265625,0.40235 0.265625,0.91407 h -1.171875 q 0,-0.39063 -0.2460933,-0.60547 -0.2460938,-0.21875 -0.6914063,-0.21875 -0.4296875,0 -0.6679687,0.18359 -0.2382813,0.17969 -0.2382813,0.47656 0,0.27735 0.2773438,0.46485 0.28125,0.1875 0.8242187,0.35156 1.0000001,0.30078 1.4570311,0.74609 0.457031,0.44532 0.457031,1.10938 0,0.73828 -0.558593,1.16016 -0.558594,0.41796 -1.5039066,0.41796 -0.65625,0 -1.1953125,-0.23828 -0.5390625,-0.24218 -0.8242187,-0.66015 -0.28125,-0.41797 -0.28125,-0.96875 h 1.1757812 q 0,0.9414 1.125,0.9414 0.4179688,0 0.6523438,-0.16797 0.2343748,-0.17187 0.2343748,-0.47656 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path364" /> | |||
<path | |||
d="m 18.494531,188.10547 q -0.06641,0.91797 -0.679687,1.44531 -0.609375,0.52734 -1.609375,0.52734 -1.09375,0 -1.722657,-0.73437 -0.625,-0.73828 -0.625,-2.02344 v -0.34765 q 0,-0.82032 0.289063,-1.44532 0.289062,-0.625 0.824219,-0.95703 0.539062,-0.33594 1.25,-0.33594 0.984375,0 1.585937,0.52735 0.601563,0.52734 0.695313,1.48047 h -1.171875 q -0.04297,-0.55078 -0.308594,-0.79688 -0.261719,-0.25 -0.800781,-0.25 -0.585938,0 -0.878907,0.42188 -0.289062,0.41797 -0.296875,1.30078 v 0.42969 q 0,0.92187 0.277344,1.34765 0.28125,0.42578 0.882813,0.42578 0.542968,0 0.808593,-0.24609 0.269532,-0.25 0.308594,-0.76953 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path366" /> | |||
<path | |||
d="M 24.475,188.82812 H 22.420312 L 22.029687,190 h -1.246093 l 2.117187,-5.6875 h 1.085938 L 26.115625,190 h -1.246094 z m -1.738281,-0.94921 h 1.421875 L 23.44375,185.75 Z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path368" /> | |||
<path | |||
d="m 29.826562,189.05859 h 2.488282 V 190 h -3.660157 v -5.6875 h 1.171875 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path370" /> | |||
<path | |||
d="m 38.404687,187.53516 h -2.25 v 1.52343 h 2.640625 V 190 h -3.8125 v -5.6875 H 38.7875 v 0.94922 h -2.632813 v 1.35547 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path372" /> | |||
</g> | |||
<g | |||
id="use181" | |||
transform="translate(2.2,187.5)"> | |||
<g | |||
id="g263" | |||
transform="translate(20,20)"> | |||
<g | |||
id="g253" | |||
transform="rotate(60,-5,8.660254)"> | |||
<path | |||
style="stroke:#333333;stroke-width:1" | |||
d="M 0,0 H 4" | |||
id="polyline251" /> | |||
</g> | |||
<path | |||
id="path255" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 1 12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path257" | |||
transform="rotate(43)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 1 12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path259" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 0 -12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path261" | |||
transform="rotate(-43)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 0 -12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g193" | |||
transform="translate(5.5,228)"> | |||
<path | |||
transform="translate(0,63)" | |||
style="fill:#fafafa" | |||
d="M 0,0 H 34 V 10 H 0 Z" | |||
id="rect185" /> | |||
<path | |||
style="fill:#fafafa" | |||
d="m 5,0 h 24 c 2.77,0 5,2.23 5,5 v 60 c 0,2.77 -2.23,5 -5,5 H 5 C 2.23,70 0,67.77 0,65 V 5 C 0,2.23 2.23,0 5,0 Z" | |||
id="rect187" /> | |||
<g | |||
aria-label="V/OCT" | |||
transform="translate(3.5,35)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text189"> | |||
<path | |||
d="m 2.1744791,-1.1751302 1.0742187,-3.564453 H 4.3359374 L 2.6855468,0 H 1.6666666 L 0.02278646,-4.7395832 H 1.1067708 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path378" /> | |||
<path | |||
d="M 7.0195311,0.40690103 H 6.3196613 L 8.0644529,-4.7395832 h 0.6998698 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path380" /> | |||
<path | |||
d="m 15.165364,-2.2623697 q 0,0.6998697 -0.247396,1.2272135 -0.247395,0.52734371 -0.709635,0.81380204 -0.458984,0.28645833 -1.054688,0.28645833 -0.589192,0 -1.051432,-0.28320312 -0.462239,-0.28320312 -0.716146,-0.80729165 -0.253906,-0.5273437 -0.257161,-1.2109375 v -0.234375 q 0,-0.6998697 0.250651,-1.2304687 0.253906,-0.5338541 0.712891,-0.8170573 0.462239,-0.2864583 1.054687,-0.2864583 0.592448,0 1.051432,0.2864583 0.46224,0.2832032 0.712891,0.8170573 0.253906,0.530599 0.253906,1.2272135 z m -0.989583,-0.2148438 q 0,-0.7454427 -0.266927,-1.1328125 -0.266927,-0.3873697 -0.761719,-0.3873697 -0.491536,0 -0.758463,0.3841145 -0.266928,0.3808594 -0.270183,1.1197917 v 0.2311198 q 0,0.7259114 0.266927,1.126302 0.266927,0.40039063 0.768229,0.40039063 0.491537,0 0.755209,-0.38411453 0.263672,-0.3873698 0.266927,-1.1263021 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path382" /> | |||
<path | |||
d="m 21.602212,-1.578776 q -0.05534,0.76497394 -0.566406,1.20442705 -0.507813,0.43945312 -1.341146,0.43945312 -0.911458,0 -1.435547,-0.61197916 Q 17.73828,-1.1621093 17.73828,-2.2330729 v -0.2897135 q 0,-0.6835937 0.240885,-1.2044271 0.240886,-0.5208333 0.686849,-0.797526 0.449219,-0.2799479 1.041667,-0.2799479 0.820312,0 1.321615,0.4394531 0.501302,0.4394531 0.579427,1.233724 H 20.63216 q -0.03581,-0.4589844 -0.257161,-0.6640625 -0.218099,-0.2083334 -0.667318,-0.2083334 -0.488281,0 -0.732422,0.3515625 -0.240885,0.3483073 -0.247396,1.0839844 v 0.3580729 q 0,0.7682291 0.23112,1.1230468 0.234375,0.35481774 0.735677,0.35481774 0.452474,0 0.673828,-0.20507812 0.22461,-0.20833332 0.257162,-0.64127602 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path384" /> | |||
<path | |||
d="M 27.720051,-3.9485676 H 26.268228 V 0 h -0.976562 v -3.9485676 h -1.432292 v -0.7910156 h 3.860677 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path386" /> | |||
</g> | |||
<g | |||
aria-label="RESET" | |||
transform="translate(3.5,70)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text191"> | |||
<path | |||
d="M 2.1777343,-1.735026 H 1.3997395 V 0 H 0.42317707 V -4.7395832 H 2.1842447 q 0.8398438,0 1.2955729,0.3743489 0.4557292,0.374349 0.4557292,1.0579427 0,0.485026 -0.2115886,0.8105469 -0.2083333,0.3222656 -0.6347656,0.5143229 l 1.0253906,1.93684888 V 0 H 3.0664062 Z M 1.3997395,-2.5260416 h 0.7877604 q 0.3678386,0 0.5696615,-0.1855469 0.2018229,-0.1888021 0.2018229,-0.5175781 0,-0.3352864 -0.1920573,-0.5273437 Q 2.5781249,-3.9485676 2.1842447,-3.9485676 H 1.3997395 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path389" /> | |||
<path | |||
d="m 9.532552,-2.0540364 h -1.875 v 1.26953121 H 9.8580728 V 0 H 6.6809896 v -4.7395832 h 3.1705728 v 0.7910156 H 7.657552 v 1.1295573 h 1.875 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path391" /> | |||
<path | |||
d="m 14.888672,-1.2434896 q 0,-0.2766927 -0.195313,-0.423177 -0.195312,-0.1497396 -0.703125,-0.3125 -0.507812,-0.1660156 -0.804036,-0.3255208 -0.807292,-0.436198 -0.807292,-1.1751302 0,-0.3841146 0.214844,-0.6835938 0.218099,-0.3027343 0.621745,-0.4720052 0.406901,-0.1692708 0.911458,-0.1692708 0.507813,0 0.904948,0.1855469 0.397135,0.1822916 0.615234,0.5175781 0.221354,0.3352864 0.221354,0.7617187 h -0.976562 q 0,-0.3255208 -0.205078,-0.5045573 -0.205078,-0.1822916 -0.576172,-0.1822916 -0.358073,0 -0.556641,0.1529948 -0.198567,0.1497396 -0.198567,0.3971354 0,0.2311198 0.23112,0.3873698 0.234374,0.15625 0.686848,0.2929687 0.833334,0.250651 1.214193,0.6217448 0.380859,0.3710937 0.380859,0.9244791 0,0.61523439 -0.465494,0.96679688 -0.465495,0.34830729 -1.253255,0.34830729 -0.546875,0 -0.996094,-0.19856771 Q 12.704427,-0.33528645 12.466797,-0.68359373 12.232422,-1.031901 12.232422,-1.4908854 h 0.979818 q 0,0.78450521 0.9375,0.78450521 0.348307,0 0.543619,-0.13997396 0.195313,-0.14322916 0.195313,-0.39713545 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path393" /> | |||
<path | |||
d="m 21.384115,-2.0540364 h -1.875 v 1.26953121 h 2.20052 V 0 h -3.177083 v -4.7395832 h 3.170573 v 0.7910156 h -2.19401 v 1.1295573 h 1.875 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path395" /> | |||
<path | |||
d="M 27.915364,-3.9485676 H 26.463541 V 0 h -0.976563 v -3.9485676 h -1.432291 v -0.7910156 h 3.860677 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path397" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g201" | |||
transform="translate(5.5,304)"> | |||
<path | |||
transform="translate(0,-3)" | |||
style="fill:#bbbbbb" | |||
d="M 0,0 H 34 V 10 H 0 Z" | |||
id="rect195" /> | |||
<path | |||
style="fill:#bbbbbb" | |||
d="m 5,0 h 24 c 2.77,0 5,2.23 5,5 v 25 c 0,2.77 -2.23,5 -5,5 H 5 C 2.23,35 0,32.77 0,30 V 5 C 0,2.23 2.23,0 5,0 Z" | |||
id="rect197" /> | |||
<g | |||
aria-label="OUT" | |||
transform="translate(8.3,32)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text199"> | |||
<path | |||
d="m 4.3164061,-2.2623697 q 0,0.6998697 -0.2473958,1.2272135 -0.2473958,0.52734371 -0.7096354,0.81380204 -0.4589843,0.28645833 -1.0546875,0.28645833 -0.5891926,0 -1.0514322,-0.28320312 Q 0.79101561,-0.50130207 0.53710936,-1.0253906 0.28320312,-1.5527343 0.27994791,-2.2363281 v -0.234375 q 0,-0.6998697 0.25065104,-1.2304687 0.25390624,-0.5338541 0.71289065,-0.8170573 0.4622395,-0.2864583 1.0546874,-0.2864583 0.5924479,0 1.0514323,0.2864583 0.4622396,0.2832032 0.7128906,0.8170573 0.2539062,0.530599 0.2539062,1.2272135 z M 3.3268228,-2.4772135 q 0,-0.7454427 -0.266927,-1.1328125 -0.2669271,-0.3873697 -0.7617188,-0.3873697 -0.4915364,0 -0.7584635,0.3841145 -0.2669271,0.3808594 -0.2701823,1.1197917 v 0.2311198 q 0,0.7259114 0.2669271,1.126302 0.2669271,0.40039063 0.7682291,0.40039063 0.4915365,0 0.7552084,-0.38411453 0.2636718,-0.3873698 0.266927,-1.1263021 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path402" /> | |||
<path | |||
d="m 10.619792,-4.7395832 v 3.1217447 q 0,0.77799477 -0.488282,1.23046872 -0.4850257,0.45247395 -1.3281246,0.45247395 -0.8300781,0 -1.3183594,-0.43945312 Q 6.9967448,-0.81380206 6.9869792,-1.5820312 v -3.157552 h 0.9765624 v 3.1282551 q 0,0.4654948 0.2213542,0.68033854 0.2246094,0.21158854 0.6184896,0.21158854 0.8235677,0 0.8365885,-0.86588538 v -3.1542968 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path404" /> | |||
<path | |||
d="M 16.988281,-3.9485676 H 15.536458 V 0 h -0.976563 v -3.9485676 h -1.432291 v -0.7910156 h 3.860677 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path406" /> | |||
</g> | |||
</g> | |||
</svg> |
@@ -11,11 +11,11 @@ | |||
width="45" | |||
height="380" | |||
viewBox="0 0 45 380" | |||
id="svg205" | |||
id="svg211" | |||
sodipodi:docname="svg_render_tmp.svg" | |||
inkscape:version="0.92.2 5c3e80d, 2017-08-06"> | |||
<metadata | |||
id="metadata209"> | |||
id="metadata215"> | |||
<rdf:RDF> | |||
<cc:Work | |||
rdf:about=""> | |||
@@ -36,7 +36,7 @@ | |||
inkscape:pageshadow="2" | |||
inkscape:window-width="468" | |||
inkscape:window-height="449" | |||
id="namedview207" | |||
id="namedview213" | |||
showgrid="false" | |||
inkscape:zoom="0.62105263" | |||
inkscape:cx="22.5" | |||
@@ -44,7 +44,7 @@ | |||
inkscape:window-x="0" | |||
inkscape:window-y="0" | |||
inkscape:window-maximized="0" | |||
inkscape:current-layer="svg205" /> | |||
inkscape:current-layer="svg211" /> | |||
<style | |||
id="style2"> | |||
text { | |||
@@ -62,7 +62,7 @@ | |||
} | |||
</style> | |||
<defs | |||
id="defs101"> | |||
id="defs107"> | |||
<symbol | |||
id="knob-medium" | |||
viewBox="0 0 26px 26px"> | |||
@@ -118,7 +118,7 @@ | |||
viewBox="0 0 45px 45px"> | |||
<g | |||
transform="translate(22.5 22.5)" | |||
id="g46"> | |||
id="g52"> | |||
<polyline | |||
points="0,0 3.5,0" | |||
stroke-width="0.7" | |||
@@ -132,7 +132,7 @@ | |||
transform="rotate(60) translate(15 0)" | |||
id="polyline24" /> | |||
<g | |||
transform="rotate(-148.42) translate(14 0)" | |||
transform="rotate(-202) translate(14 0)" | |||
id="g30"> | |||
<polyline | |||
points="0,0 2.5,0" | |||
@@ -142,11 +142,11 @@ | |||
id="polyline26" /> | |||
<text | |||
font-size="5.0pt" | |||
transform="translate(5 0) rotate(148.42) translate(-2.2 2.3)" | |||
id="text28">1</text> | |||
transform="translate(5 0) rotate(202) translate(3 9.5) rotate(-90)" | |||
id="text28">0.2</text> | |||
</g> | |||
<g | |||
transform="rotate(-55.39) translate(14 0)" | |||
transform="rotate(-48.68) translate(14 0)" | |||
id="g36"> | |||
<polyline | |||
points="0,0 2.5,0" | |||
@@ -156,11 +156,11 @@ | |||
id="polyline32" /> | |||
<text | |||
font-size="5.0pt" | |||
transform="translate(5 0) rotate(55.39) translate(-1.0 2.3)" | |||
id="text34">0V</text> | |||
transform="translate(5 0) rotate(48.68) translate(-1 2.3)" | |||
id="text34">20</text> | |||
</g> | |||
<g | |||
transform="rotate(27.98) translate(14 0)" | |||
transform="rotate(-124.62) translate(14 0)" | |||
id="g42"> | |||
<polyline | |||
points="0,0 2.5,0" | |||
@@ -168,15 +168,29 @@ | |||
stroke="#333" | |||
transform="translate(0 0)" | |||
id="polyline38" /> | |||
<text | |||
font-size="5.0pt" | |||
transform="translate(5 0) rotate(124.62) translate(-3.0 2.3)" | |||
id="text40">2</text> | |||
</g> | |||
<g | |||
transform="rotate(27.98) translate(14 0)" | |||
id="g48"> | |||
<polyline | |||
points="0,0 2.5,0" | |||
stroke-width="0.3" | |||
stroke="#333" | |||
transform="translate(0 0)" | |||
id="polyline44" /> | |||
<text | |||
font-size="5.0pt" | |||
transform="translate(5 0) rotate(-27.98) translate(-2.3 -0.5) rotate(90)" | |||
id="text40">200</text> | |||
id="text46">200</text> | |||
</g> | |||
<text | |||
font-size="5.0pt" | |||
transform="translate(-4.5 22)" | |||
id="text44">HZ</text> | |||
id="text50">HZ</text> | |||
</g> | |||
</symbol> | |||
<symbol | |||
@@ -184,15 +198,15 @@ | |||
viewBox="0 0 40px 40px"> | |||
<g | |||
transform="translate(20 20)" | |||
id="g61"> | |||
id="g67"> | |||
<g | |||
transform="rotate(60) translate(10 0)" | |||
id="g51"> | |||
id="g57"> | |||
<polyline | |||
points="0,0 4,0" | |||
stroke-width="1" | |||
stroke="#333" | |||
id="polyline49" /> | |||
id="polyline55" /> | |||
</g> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" | |||
@@ -201,7 +215,7 @@ | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(0)" | |||
id="path53" /> | |||
id="path59" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" | |||
stroke="#333" | |||
@@ -209,7 +223,7 @@ | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(43)" | |||
id="path55" /> | |||
id="path61" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" | |||
stroke="#333" | |||
@@ -217,7 +231,7 @@ | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(0)" | |||
id="path57" /> | |||
id="path63" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" | |||
stroke="#333" | |||
@@ -225,7 +239,7 @@ | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(-43)" | |||
id="path59" /> | |||
id="path65" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
@@ -233,15 +247,15 @@ | |||
viewBox="0 0 40px 40px"> | |||
<g | |||
transform="translate(20 20)" | |||
id="g76"> | |||
id="g82"> | |||
<g | |||
transform="rotate(-90) translate(10 0)" | |||
id="g66"> | |||
id="g72"> | |||
<polyline | |||
points="0,0 4,0" | |||
stroke-width="1" | |||
stroke="#333" | |||
id="polyline64" /> | |||
id="polyline70" /> | |||
</g> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" | |||
@@ -250,7 +264,7 @@ | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(20)" | |||
id="path68" /> | |||
id="path74" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" | |||
stroke="#333" | |||
@@ -258,7 +272,7 @@ | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(43)" | |||
id="path70" /> | |||
id="path76" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" | |||
stroke="#333" | |||
@@ -266,7 +280,7 @@ | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(-20)" | |||
id="path72" /> | |||
id="path78" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" | |||
stroke="#333" | |||
@@ -274,7 +288,7 @@ | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(-43)" | |||
id="path74" /> | |||
id="path80" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
@@ -282,7 +296,7 @@ | |||
viewBox="0 0 24px 24px"> | |||
<g | |||
transform="translate(12 12)" | |||
id="g83"> | |||
id="g89"> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
@@ -290,7 +304,7 @@ | |||
stroke-width="1" | |||
stroke="#0f0" | |||
fill="#0f0" | |||
id="circle79" /> | |||
id="circle85" /> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
@@ -298,7 +312,7 @@ | |||
stroke-width="3" | |||
stroke="#0f0" | |||
fill="none" | |||
id="circle81" /> | |||
id="circle87" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
@@ -306,7 +320,7 @@ | |||
viewBox="0 0 24px 24px"> | |||
<g | |||
transform="translate(12 12)" | |||
id="g90"> | |||
id="g96"> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
@@ -314,7 +328,7 @@ | |||
stroke-width="1" | |||
stroke="#f00" | |||
fill="#f00" | |||
id="circle86" /> | |||
id="circle92" /> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
@@ -322,7 +336,7 @@ | |||
stroke-width="3" | |||
stroke="#f00" | |||
fill="none" | |||
id="circle88" /> | |||
id="circle94" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
@@ -330,13 +344,13 @@ | |||
viewBox="0 0 9px 9px"> | |||
<g | |||
transform="translate(4.5 4.5)" | |||
id="g95"> | |||
id="g101"> | |||
<circle | |||
r="4" | |||
stroke-width="1" | |||
stroke="#00f" | |||
fill="#f00" | |||
id="circle93" /> | |||
id="circle99" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
@@ -346,346 +360,372 @@ | |||
width="6.4" | |||
height="6.4" | |||
fill="#0f0" | |||
id="rect98" /> | |||
id="rect104" /> | |||
</symbol> | |||
</defs> | |||
<path | |||
style="fill:#dddddd" | |||
d="M 0,0 H 45 V 380 H 0 Z" | |||
id="rect103" /> | |||
id="rect109" /> | |||
<path | |||
style="fill:none;stroke:#e4e4e4;stroke-width:0.5" | |||
d="M 1,1 H 44 V 379 H 1 V 1" | |||
id="polyline105" /> | |||
id="polyline111" /> | |||
<path | |||
style="fill:none;stroke:#ebebeb;stroke-width:0.80000001" | |||
d="m 0.5,0.5 h 44 v 379 H 0.5 V 0.5" | |||
id="polyline107" /> | |||
id="polyline113" /> | |||
<path | |||
style="fill:none;stroke:#f2f2f2;stroke-width:1" | |||
d="M 0,0 H 45 V 380 H 0 V 0" | |||
id="polyline109" /> | |||
id="polyline115" /> | |||
<g | |||
aria-label="LLFO" | |||
transform="rotate(-90)" | |||
style="font-weight:normal;font-size:9.33333302px;font-family:Comfortaa, sans-serif;letter-spacing:2.5px;fill:#333333" | |||
id="text111"> | |||
id="text117"> | |||
<path | |||
d="m -374.70267,13 q -0.14933,0 -0.26133,-0.102667 -0.10267,-0.112 -0.10267,-0.261333 V 6.0746669 q 0,-0.1493333 0.10267,-0.252 0.112,-0.112 0.26133,-0.112 0.15867,0 0.26134,0.1026667 0.10266,0.1026666 0.10266,0.2613333 v 6.2346661 h 3.64934 q 0.15866,0 0.26133,0.102667 0.10267,0.09333 0.10267,0.242667 0,0.149333 -0.10267,0.252 Q -370.53067,13 -370.68933,13 Z" | |||
style="font-weight:normal;font-size:9.33333302px;font-family:Comfortaa, sans-serif;letter-spacing:2.5px;fill:#333333" | |||
id="path413" /> | |||
id="path433" /> | |||
<path | |||
d="m -366.29642,13 q -0.14933,0 -0.26133,-0.102667 -0.10267,-0.112 -0.10267,-0.261333 V 6.0746669 q 0,-0.1493333 0.10267,-0.252 0.112,-0.112 0.26133,-0.112 0.15867,0 0.26134,0.1026667 0.10266,0.1026666 0.10266,0.2613333 v 6.2346661 h 3.64934 q 0.15866,0 0.26133,0.102667 0.10267,0.09333 0.10267,0.242667 0,0.149333 -0.10267,0.252 Q -362.12442,13 -362.28308,13 Z" | |||
style="font-weight:normal;font-size:9.33333302px;font-family:Comfortaa, sans-serif;letter-spacing:2.5px;fill:#333333" | |||
id="path415" /> | |||
id="path435" /> | |||
<path | |||
d="m -358.46883,13 q -0.14934,0 -0.26134,-0.102667 -0.10266,-0.112 -0.10266,-0.261333 V 6.0746669 q 0,-0.1586667 0.10266,-0.2613333 0.112,-0.1026667 0.26134,-0.1026667 h 4.37733 q 0.15867,0 0.26133,0.1026667 0.10267,0.1026666 0.10267,0.252 0,0.1493333 -0.10267,0.252 -0.10266,0.093333 -0.26133,0.093333 h -4.01333 v 2.5759999 h 2.92133 q 0.15867,0 0.26133,0.1026667 0.10267,0.093333 0.10267,0.252 0,0.1493333 -0.10267,0.2519999 -0.10266,0.1026667 -0.26133,0.1026667 h -2.92133 V 12.636 q 0,0.149333 -0.10267,0.261333 Q -358.31017,13 -358.46883,13 Z" | |||
style="font-weight:normal;font-size:9.33333302px;font-family:Comfortaa, sans-serif;letter-spacing:2.5px;fill:#333333" | |||
id="path417" /> | |||
id="path437" /> | |||
<path | |||
d="m -346.5515,13.093333 q -1.064,0 -1.91333,-0.485333 -0.84934,-0.485333 -1.33467,-1.334667 -0.476,-0.858666 -0.476,-1.9226662 0,-1.064 0.476,-1.9133333 0.48533,-0.8493333 1.33467,-1.3346666 0.84933,-0.4853333 1.91333,-0.4853333 1.05467,0 1.904,0.4853333 0.85867,0.4853333 1.33467,1.3346666 0.48533,0.8493333 0.48533,1.9133333 0,1.0640002 -0.48533,1.9226662 -0.476,0.849334 -1.33467,1.334667 -0.84933,0.485333 -1.904,0.485333 z m 0,-0.690666 q 0.84933,0 1.53067,-0.401334 0.69066,-0.401333 1.08266,-1.092 0.392,-0.7 0.392,-1.5586662 0,-0.8493333 -0.392,-1.54 -0.392,-0.6999999 -1.08266,-1.1013333 -0.68134,-0.4013333 -1.53067,-0.4013333 -0.85867,0 -1.54933,0.4013333 -0.68134,0.4013334 -1.07334,1.1013333 -0.392,0.6906667 -0.392,1.54 0,0.8586662 0.392,1.5586662 0.392,0.690667 1.07334,1.092 0.69066,0.401334 1.54933,0.401334 z" | |||
style="font-weight:normal;font-size:9.33333302px;font-family:Comfortaa, sans-serif;letter-spacing:2.5px;fill:#333333" | |||
id="path419" /> | |||
id="path439" /> | |||
</g> | |||
<g | |||
id="g117" | |||
id="g123" | |||
transform="rotate(-90,200.5,175.5)"> | |||
<g | |||
aria-label="BGA" | |||
style="font-weight:bold;font-size:9.33333302px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text113"> | |||
id="text119"> | |||
<path | |||
d="m 7.2096352,-1.4355468 q 0,0.21875 -0.077474,0.469401 -0.072917,0.25065103 -0.2460937,0.46484373 -0.1686198,0.2141927 -0.4420573,0.36002603 Q 6.1705727,0 5.7740883,0 H 1.2760416 Q 1.1484375,0 1.0390625,-0.04557292 0.92968747,-0.09114583 0.84765622,-0.16861979 q -0.077474,-0.0820312 -0.12304687,-0.19140624 -0.0455729,-0.109375 -0.0455729,-0.23697916 V -5.9381508 q 0,-0.1230469 0.0455729,-0.2324219 0.0455729,-0.109375 0.12304687,-0.1914062 0.0820313,-0.082031 0.19140628,-0.1276042 0.109375,-0.045573 0.2369791,-0.045573 h 3.9648436 q 0.21875,0 0.4694011,0.077474 0.250651,0.077474 0.4648437,0.2506511 0.21875,0.1686197 0.360026,0.4420572 0.1458334,0.2734375 0.1458334,0.6699219 v 0.2233073 q 0,0.3144531 -0.1048177,0.6790364 -0.1048178,0.360026 -0.3372396,0.6835937 0.2005208,0.1230469 0.3736979,0.296224 0.1777344,0.1731771 0.3098958,0.4010416 0.1321615,0.2278646 0.2096354,0.514974 0.077474,0.2871093 0.077474,0.6334635 z M 6.0247394,-1.6634114 q 0,-0.2324219 -0.072917,-0.4147135 Q 5.878906,-2.2649739 5.7467446,-2.3971353 5.6145831,-2.5292968 5.4277342,-2.5976562 5.2408852,-2.6705728 5.0084634,-2.6705728 H 2.3378905 v -1.1940104 h 2.1373698 q 0.2324218,0 0.4192708,-0.068359 0.1868489,-0.072917 0.3190104,-0.2050781 0.1321614,-0.1321614 0.2005208,-0.3144531 0.072917,-0.186849 0.072917,-0.4192708 v -0.2233073 q 0,-0.2552083 -0.2460938,-0.2552083 h -3.376953 v 4.1653644 h 3.9101561 q 0.031901,0 0.077474,-0.00456 0.045573,-0.00456 0.082031,-0.027344 0.036458,-0.022787 0.063802,-0.077474 0.027344,-0.054687 0.027344,-0.1503906 z" | |||
style="font-weight:bold;font-size:9.33333302px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path422" /> | |||
id="path442" /> | |||
<path | |||
d="m 16.683594,-0.59700519 q 0,0.12760416 -0.04557,0.23697916 -0.04557,0.109375 -0.127605,0.19140624 -0.07747,0.07747396 -0.186849,0.12304687 Q 16.214192,0 16.086588,0 h -4.274739 q -0.164063,0 -0.355469,-0.03645833 -0.186849,-0.04101563 -0.373698,-0.12304687 -0.182291,-0.0820313 -0.350911,-0.20963541 -0.16862,-0.13216146 -0.300781,-0.31445312 -0.127605,-0.18684895 -0.205079,-0.42838537 -0.07747,-0.2460938 -0.07747,-0.5514323 v -3.2083332 q 0,-0.1640625 0.03646,-0.3509115 0.04101,-0.1914062 0.123047,-0.3736979 0.08203,-0.1868489 0.214192,-0.3554687 0.132162,-0.1686198 0.314453,-0.296224 0.186849,-0.1321614 0.428386,-0.2096354 0.241536,-0.077474 0.546875,-0.077474 h 4.817057 v 1.1848958 h -4.817057 q -0.232422,0 -0.355469,0.1230468 -0.123047,0.1230469 -0.123047,0.3645834 v 3.1992186 q 0,0.2278646 0.123047,0.3554687 0.127604,0.1230469 0.355469,0.1230469 h 3.686849 v -1.485677 h -3.153646 v -1.1940104 h 3.741536 q 0.127604,0 0.236979,0.05013 0.109375,0.045573 0.186849,0.1276042 0.08203,0.082031 0.127605,0.1914062 0.04557,0.1048177 0.04557,0.2278646 z" | |||
style="font-weight:bold;font-size:9.33333302px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path424" /> | |||
id="path444" /> | |||
<path | |||
d="M 26.339842,0 H 25.154946 V -1.6041666 H 20.989582 V 0 h -1.184896 v -3.267578 q 0,-0.7154948 0.246094,-1.3170573 0.246094,-0.6015624 0.683594,-1.0345051 0.4375,-0.4329427 1.034505,-0.6744792 0.597005,-0.2415364 1.303385,-0.2415364 h 2.670573 q 0.123047,0 0.232422,0.045573 0.109375,0.045573 0.191406,0.1276042 0.08203,0.082031 0.127604,0.1914062 0.04557,0.109375 0.04557,0.2324219 z m -5.35026,-2.7890624 h 4.165364 v -2.5611978 h -2.082682 q -0.05469,0 -0.232422,0.018229 -0.173177,0.013672 -0.405599,0.077474 -0.227864,0.063802 -0.483072,0.1959635 -0.255209,0.1321615 -0.469402,0.3645833 -0.214192,0.2324219 -0.355468,0.5833334 -0.136719,0.3463541 -0.136719,0.8430989 z" | |||
style="font-weight:bold;font-size:9.33333302px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path426" /> | |||
id="path446" /> | |||
</g> | |||
<path | |||
transform="translate(11.5,-5)" | |||
style="fill:#dddddd" | |||
d="M 0,0 H 3 V 3 H 0 Z" | |||
id="rect115" /> | |||
id="rect121" /> | |||
</g> | |||
<!-- <polyline points="0,0 0,380" stroke="#0f0" stroke-width="1" fill="none" transform="translate(22.5 0)" /> --> | |||
<g | |||
id="use121" | |||
id="use127" | |||
transform="translate(0,17.5)"> | |||
<g | |||
id="g307" | |||
id="g319" | |||
transform="translate(22.5,22.5)"> | |||
<path | |||
transform="rotate(120,-7.5,4.330127)" | |||
style="stroke:#333333;stroke-width:0.69999999" | |||
d="M 0,0 H 3.5" | |||
id="polyline283" /> | |||
id="polyline289" /> | |||
<path | |||
transform="rotate(60,-7.5,12.990381)" | |||
style="stroke:#333333;stroke-width:0.69999999" | |||
d="M 0,0 H 3.5" | |||
id="polyline285" /> | |||
id="polyline291" /> | |||
<g | |||
id="g291" | |||
transform="rotate(-148.42,-7,-1.9794808)"> | |||
id="g297" | |||
transform="rotate(158,-7,1.3606622)"> | |||
<path | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline287" /> | |||
id="polyline293" /> | |||
<g | |||
aria-label="1" | |||
transform="rotate(148.42,3.2747996,-0.75410383)" | |||
aria-label="0.2" | |||
transform="rotate(112,6.2382372,-3.0176442)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text289"> | |||
id="text295"> | |||
<path | |||
d="m 3.5123697,-1.9596354 q 0,0.98307292 -0.406901,1.50390624 -0.4069011,0.52083333 -1.1914062,0.52083333 -0.7747396,0 -1.18489585,-0.5110677 -0.41015624,-0.5110677 -0.41992187,-1.46484367 v -0.8723959 q 0,-0.9928385 0.41015624,-1.5071614 0.41341148,-0.5143229 1.18815098,-0.5143229 0.7747396,0 1.1848958,0.5110677 0.4101563,0.5078125 0.4199219,1.4615885 z M 2.5716145,-2.9166666 q 0,-0.5891927 -0.1627604,-0.8561198 -0.1595052,-0.2701823 -0.5013021,-0.2701823 -0.3320312,0 -0.4915364,0.2571615 Q 1.2597656,-3.531901 1.25,-2.9882812 v 1.1523437 q 0,0.5794271 0.15625,0.86263023 0.1595052,0.27994791 0.5078125,0.27994791 0.345052,0 0.4980468,-0.27018228 0.1529948,-0.27018226 0.1595052,-0.82682286 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path326" /> | |||
<path | |||
d="M 2.6074218,0 H 1.6666666 v -3.626302 l -1.12304682,0.3483073 v -0.764974 L 2.5065104,-4.7460936 h 0.1009114 z" | |||
d="m 4.2382812,-0.46223957 q 0,-0.22460937 0.1497396,-0.36458333 0.1529948,-0.13997395 0.3808594,-0.13997395 0.2311198,0 0.3808594,0.13997395 0.1529947,0.13997396 0.1529947,0.36458333 0,0.22135416 -0.1497395,0.36132811 -0.1497396,0.13671875 -0.3841146,0.13671875 -0.2311198,0 -0.3808594,-0.13671875 -0.1497396,-0.13997395 -0.1497396,-0.36132811 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path314" /> | |||
id="path328" /> | |||
<path | |||
d="M 9.3391925,0 H 6.0904946 V -0.64453123 L 7.6236977,-2.2786458 q 0.3157552,-0.3450521 0.4654948,-0.6022135 0.1529948,-0.2571615 0.1529948,-0.4882812 0,-0.3157552 -0.1595052,-0.4947917 -0.1595052,-0.1822917 -0.4557292,-0.1822917 -0.3190104,0 -0.5045573,0.2213542 -0.1822916,0.218099 -0.1822916,0.5761719 H 5.9960936 q 0,-0.4329427 0.2050781,-0.7910156 0.2083333,-0.358073 0.5859375,-0.5598959 0.3776041,-0.2050781 0.8561198,-0.2050781 0.7324218,0 1.1360676,0.3515625 0.4069011,0.3515625 0.4069011,0.9928385 0,0.3515625 -0.1822917,0.7161458 -0.1822916,0.3645834 -0.625,0.8496094 l -1.0774739,1.13606768 h 2.0377604 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path330" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g297" | |||
transform="rotate(-55.39,-7,-13.335863)"> | |||
id="g303" | |||
transform="rotate(-48.68,-7,-15.474468)"> | |||
<path | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline293" /> | |||
id="polyline299" /> | |||
<g | |||
aria-label="0V" | |||
transform="rotate(55.39,0.80910826,2.6602465)" | |||
aria-label="20" | |||
transform="rotate(48.68,0.45776596,3.2712766)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text295"> | |||
id="text301"> | |||
<path | |||
d="m 3.5123697,-1.9596354 q 0,0.98307292 -0.406901,1.50390624 -0.4069011,0.52083333 -1.1914062,0.52083333 -0.7747396,0 -1.18489585,-0.5110677 -0.41015624,-0.5110677 -0.41992187,-1.46484367 v -0.8723959 q 0,-0.9928385 0.41015624,-1.5071614 0.41341148,-0.5143229 1.18815098,-0.5143229 0.7747396,0 1.1848958,0.5110677 0.4101563,0.5078125 0.4199219,1.4615885 z M 2.5716145,-2.9166666 q 0,-0.5891927 -0.1627604,-0.8561198 -0.1595052,-0.2701823 -0.5013021,-0.2701823 -0.3320312,0 -0.4915364,0.2571615 Q 1.2597656,-3.531901 1.25,-2.9882812 v 1.1523437 q 0,0.5794271 0.15625,0.86263023 0.1595052,0.27994791 0.5078125,0.27994791 0.345052,0 0.4980468,-0.27018228 0.1529948,-0.27018226 0.1595052,-0.82682286 z" | |||
d="M 3.5709635,0 H 0.32226562 V -0.64453123 L 1.8554687,-2.2786458 q 0.3157552,-0.3450521 0.4654948,-0.6022135 0.1529948,-0.2571615 0.1529948,-0.4882812 0,-0.3157552 -0.1595052,-0.4947917 -0.1595052,-0.1822917 -0.4557292,-0.1822917 -0.3190104,0 -0.5045573,0.2213542 -0.1822916,0.218099 -0.1822916,0.5761719 H 0.22786458 q 0,-0.4329427 0.20507812,-0.7910156 0.20833333,-0.358073 0.5859375,-0.5598959 0.3776041,-0.2050781 0.8561198,-0.2050781 0.7324218,0 1.1360676,0.3515625 0.4069011,0.3515625 0.4069011,0.9928385 0,0.3515625 -0.1822917,0.7161458 -0.1822917,0.3645834 -0.625,0.8496094 l -1.0774739,1.13606768 h 2.0377604 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path334" /> | |||
<path | |||
d="m 7.3404947,-1.9596354 q 0,0.98307292 -0.406901,1.50390624 -0.4069011,0.52083333 -1.1914062,0.52083333 -0.7747396,0 -1.1848959,-0.5110677 -0.4101562,-0.5110677 -0.4199218,-1.46484367 v -0.8723959 q 0,-0.9928385 0.4101562,-1.5071614 0.4134115,-0.5143229 1.188151,-0.5143229 0.7747396,0 1.1848958,0.5110677 0.4101563,0.5078125 0.4199219,1.4615885 z M 6.3997395,-2.9166666 q 0,-0.5891927 -0.1627604,-0.8561198 -0.1595052,-0.2701823 -0.5013021,-0.2701823 -0.3320312,0 -0.4915364,0.2571615 -0.15625,0.2539062 -0.1660156,0.797526 v 1.1523437 q 0,0.5794271 0.15625,0.86263023 0.1595052,0.27994791 0.5078125,0.27994791 0.345052,0 0.4980468,-0.27018228 0.1529948,-0.27018226 0.1595052,-0.82682286 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path318" /> | |||
id="path336" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g309" | |||
transform="rotate(-124.62,-7,-3.6735238)"> | |||
<path | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline305" /> | |||
<g | |||
aria-label="2" | |||
transform="rotate(124.62,3.3964925,-0.62521088)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text307"> | |||
<path | |||
d="m 6.0026041,-1.1751302 1.0742187,-3.564453 H 8.1640624 L 6.5136718,0 H 5.4947916 L 3.8509115,-4.7395832 h 1.0839843 z" | |||
d="M 3.5709635,0 H 0.32226562 V -0.64453123 L 1.8554687,-2.2786458 q 0.3157552,-0.3450521 0.4654948,-0.6022135 0.1529948,-0.2571615 0.1529948,-0.4882812 0,-0.3157552 -0.1595052,-0.4947917 -0.1595052,-0.1822917 -0.4557292,-0.1822917 -0.3190104,0 -0.5045573,0.2213542 -0.1822916,0.218099 -0.1822916,0.5761719 H 0.22786458 q 0,-0.4329427 0.20507812,-0.7910156 0.20833333,-0.358073 0.5859375,-0.5598959 0.3776041,-0.2050781 0.8561198,-0.2050781 0.7324218,0 1.1360676,0.3515625 0.4069011,0.3515625 0.4069011,0.9928385 0,0.3515625 -0.1822917,0.7161458 -0.1822917,0.3645834 -0.625,0.8496094 l -1.0774739,1.13606768 h 2.0377604 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path320" /> | |||
id="path340" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g303" | |||
id="g315" | |||
transform="rotate(27.98,-7,28.096356)"> | |||
<path | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline299" /> | |||
id="polyline311" /> | |||
<g | |||
aria-label="200" | |||
transform="rotate(62.02,0.83683503,2.5931489)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text301"> | |||
id="text313"> | |||
<path | |||
d="M 3.5709635,0 H 0.32226562 V -0.64453123 L 1.8554687,-2.2786458 q 0.3157552,-0.3450521 0.4654948,-0.6022135 0.1529948,-0.2571615 0.1529948,-0.4882812 0,-0.3157552 -0.1595052,-0.4947917 -0.1595052,-0.1822917 -0.4557292,-0.1822917 -0.3190104,0 -0.5045573,0.2213542 -0.1822916,0.218099 -0.1822916,0.5761719 H 0.22786458 q 0,-0.4329427 0.20507812,-0.7910156 0.20833333,-0.358073 0.5859375,-0.5598959 0.3776041,-0.2050781 0.8561198,-0.2050781 0.7324218,0 1.1360676,0.3515625 0.4069011,0.3515625 0.4069011,0.9928385 0,0.3515625 -0.1822917,0.7161458 -0.1822917,0.3645834 -0.625,0.8496094 l -1.0774739,1.13606768 h 2.0377604 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path324" /> | |||
id="path344" /> | |||
<path | |||
d="m 7.3404947,-1.9596354 q 0,0.98307292 -0.406901,1.50390624 -0.4069011,0.52083333 -1.1914062,0.52083333 -0.7747396,0 -1.1848959,-0.5110677 -0.4101562,-0.5110677 -0.4199218,-1.46484367 v -0.8723959 q 0,-0.9928385 0.4101562,-1.5071614 0.4134115,-0.5143229 1.188151,-0.5143229 0.7747396,0 1.1848958,0.5110677 0.4101563,0.5078125 0.4199219,1.4615885 z M 6.3997395,-2.9166666 q 0,-0.5891927 -0.1627604,-0.8561198 -0.1595052,-0.2701823 -0.5013021,-0.2701823 -0.3320312,0 -0.4915364,0.2571615 -0.15625,0.2539062 -0.1660156,0.797526 v 1.1523437 q 0,0.5794271 0.15625,0.86263023 0.1595052,0.27994791 0.5078125,0.27994791 0.345052,0 0.4980468,-0.27018228 0.1529948,-0.27018226 0.1595052,-0.82682286 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path326" /> | |||
id="path346" /> | |||
<path | |||
d="m 11.16862,-1.9596354 q 0,0.98307292 -0.406901,1.50390624 -0.406901,0.52083333 -1.1914065,0.52083333 -0.7747396,0 -1.1848959,-0.5110677 -0.4101562,-0.5110677 -0.4199218,-1.46484367 v -0.8723959 q 0,-0.9928385 0.4101562,-1.5071614 0.4134115,-0.5143229 1.188151,-0.5143229 0.77474,0 1.184896,0.5110677 0.410156,0.5078125 0.419922,1.4615885 z m -0.940755,-0.9570312 q 0,-0.5891927 -0.162761,-0.8561198 -0.1595051,-0.2701823 -0.501302,-0.2701823 -0.3320312,0 -0.4915364,0.2571615 -0.15625,0.2539062 -0.1660156,0.797526 v 1.1523437 q 0,0.5794271 0.15625,0.86263023 0.1595052,0.27994791 0.5078125,0.27994791 0.345052,0 0.4980465,-0.27018228 0.152995,-0.27018226 0.159506,-0.82682286 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path328" /> | |||
id="path348" /> | |||
</g> | |||
</g> | |||
<g | |||
aria-label="HZ" | |||
transform="translate(-4.5,22)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text305"> | |||
id="text317"> | |||
<path | |||
d="M 4.2805989,0 H 3.3040364 V -2.03125 H 1.3997395 V 0 H 0.42317707 V -4.7395832 H 1.3997395 v 1.9205729 h 1.9042969 v -1.9205729 h 0.9765625 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path331" /> | |||
id="path351" /> | |||
<path | |||
d="M 6.1718748,-0.78450519 H 8.5611977 V 0 h -3.610026 v -0.57291665 l 2.34375,-3.37565095 H 4.9544269 v -0.7910156 h 3.5546874 v 0.5598958 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path333" /> | |||
id="path353" /> | |||
</g> | |||
</g> | |||
</g> | |||
<g | |||
aria-label="SLOW" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:0.5px;fill:#333333" | |||
id="text125"> | |||
id="text131"> | |||
<path | |||
d="m 13.457031,76.607811 q 0,-0.332031 -0.234375,-0.507813 -0.234375,-0.179687 -0.84375,-0.375 -0.609375,-0.199218 -0.964843,-0.390625 -0.96875,-0.523437 -0.96875,-1.410156 0,-0.460937 0.257812,-0.820312 0.261719,-0.363282 0.746094,-0.566407 0.488281,-0.203125 1.09375,-0.203125 0.609375,0 1.085937,0.222657 0.476563,0.21875 0.738282,0.621093 0.265625,0.402344 0.265625,0.914063 h -1.171875 q 0,-0.390625 -0.246094,-0.605469 -0.246094,-0.21875 -0.691406,-0.21875 -0.429688,0 -0.667969,0.183594 -0.238281,0.179687 -0.238281,0.476562 0,0.277344 0.277343,0.464844 0.28125,0.1875 0.824219,0.351563 1,0.300781 1.457031,0.746093 0.457032,0.445313 0.457032,1.109375 0,0.738282 -0.558594,1.160157 -0.558594,0.417968 -1.503906,0.417968 -0.65625,0 -1.195313,-0.238281 -0.539062,-0.242187 -0.824219,-0.660156 -0.28125,-0.417969 -0.28125,-0.96875 h 1.175782 q 0,0.941406 1.125,0.941406 0.417968,0 0.652343,-0.167969 0.234375,-0.171875 0.234375,-0.476562 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:0.5px;fill:#333333" | |||
id="path336" /> | |||
id="path356" /> | |||
<path | |||
d="m 17.101562,77.158592 h 2.488282 v 0.941406 h -3.660156 v -5.6875 h 1.171874 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:0.5px;fill:#333333" | |||
id="path338" /> | |||
id="path358" /> | |||
<path | |||
d="m 25.179687,75.385155 q 0,0.839843 -0.296875,1.472656 -0.296875,0.632812 -0.851562,0.976562 -0.550781,0.34375 -1.265625,0.34375 -0.707031,0 -1.261719,-0.339843 -0.554687,-0.339844 -0.859375,-0.96875 -0.304687,-0.632813 -0.308594,-1.453125 v -0.28125 q 0,-0.839844 0.300782,-1.476563 0.304687,-0.640625 0.855468,-0.980469 0.554688,-0.34375 1.265625,-0.34375 0.710938,0 1.261719,0.34375 0.554688,0.339844 0.855469,0.980469 0.304687,0.636719 0.304687,1.472656 z m -1.1875,-0.257813 q 0,-0.894531 -0.320312,-1.359375 -0.320313,-0.464844 -0.914063,-0.464844 -0.589843,0 -0.910156,0.460938 -0.320312,0.457031 -0.324219,1.34375 v 0.277344 q 0,0.871093 0.320313,1.351562 0.320312,0.480469 0.921875,0.480469 0.589844,0 0.90625,-0.460938 0.316406,-0.464843 0.320312,-1.351562 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:0.5px;fill:#333333" | |||
id="path340" /> | |||
id="path360" /> | |||
<path | |||
d="m 30.96875,76.459373 0.765625,-4.046875 h 1.167969 l -1.261719,5.6875 h -1.179688 l -0.925781,-3.804687 -0.925781,3.804687 h -1.179688 l -1.261718,-5.6875 h 1.167968 l 0.769532,4.039063 0.9375,-4.039063 h 0.992187 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:0.5px;fill:#333333" | |||
id="path342" /> | |||
id="path362" /> | |||
</g> | |||
<g | |||
id="g149" | |||
id="g155" | |||
transform="translate(9.5,88)"> | |||
<g | |||
id="g135"> | |||
id="g141"> | |||
<g | |||
id="g133" | |||
id="g139" | |||
transform="matrix(0.8,0,0,0.8,1,1)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#f0f" /> --> | |||
<path | |||
style="fill:none;stroke:#333333;stroke-width:1" | |||
inkscape:connector-curvature="0" | |||
id="path129" | |||
id="path135" | |||
d="M 0,4 A 3,4.5 0 0 1 6,4" /> | |||
<path | |||
style="fill:none;stroke:#333333;stroke-width:1" | |||
inkscape:connector-curvature="0" | |||
id="path131" | |||
id="path137" | |||
d="m 6,4 a 3,4.5 0 0 0 6,0" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g141" | |||
id="g147" | |||
transform="translate(0,13)"> | |||
<g | |||
id="g139" | |||
id="g145" | |||
transform="matrix(0.8,0,0,0.8,1,1)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#f0f" /> --> | |||
<path | |||
style="fill:none;stroke:#333333;stroke-width:1" | |||
d="M 0,8 12,0 v 8" | |||
id="polyline137" /> | |||
id="polyline143" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g147" | |||
id="g153" | |||
transform="translate(0,26)"> | |||
<g | |||
id="g145" | |||
id="g151" | |||
transform="matrix(0.8,0,0,0.8,1,1)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#f0f" /> --> | |||
<path | |||
style="fill:none;stroke:#333333;stroke-width:1" | |||
d="M 0,4 V 0 h 6 v 8 h 6 V 4" | |||
id="polyline143" /> | |||
id="polyline149" /> | |||
</g> | |||
</g> | |||
</g> | |||
<g | |||
id="g169" | |||
id="g175" | |||
transform="translate(31.5,88)"> | |||
<g | |||
id="g155"> | |||
id="g161"> | |||
<g | |||
id="g153" | |||
id="g159" | |||
transform="matrix(0.8,0,0,0.8,1,1)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#f0f" /> --> | |||
<path | |||
style="fill:none;stroke:#333333;stroke-width:1" | |||
d="M 0,4 3,0 9,8 12,4" | |||
id="polyline151" /> | |||
id="polyline157" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g161" | |||
id="g167" | |||
transform="translate(0,13)"> | |||
<g | |||
id="g159" | |||
id="g165" | |||
transform="matrix(0.8,0,0,0.8,1,1)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#f0f" /> --> | |||
<path | |||
style="fill:none;stroke:#333333;stroke-width:1" | |||
d="M 0,8 V 0 l 12,8" | |||
id="polyline157" /> | |||
id="polyline163" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g167" | |||
id="g173" | |||
transform="translate(0,26)"> | |||
<g | |||
id="g165" | |||
id="g171" | |||
transform="matrix(0.8,0,0,0.8,1,1)"> | |||
<!-- <rect width="12" height="8" fill="none" stroke-width="1" stroke="#f0f" /> --> | |||
<path | |||
style="fill:none;stroke:#333333;stroke-width:1" | |||
d="M 0,4 V 0 h 3 v 8 h 9 V 4" | |||
id="polyline163" /> | |||
id="polyline169" /> | |||
</g> | |||
</g> | |||
</g> | |||
<g | |||
aria-label="OFFSET" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text173"> | |||
id="text179"> | |||
<path | |||
d="m 8.1796875,146.28516 q 0,0.83984 -0.296875,1.47265 -0.296875,0.63281 -0.8515625,0.97656 -0.5507813,0.34375 -1.265625,0.34375 -0.7070313,0 -1.2617188,-0.33984 -0.5546874,-0.33984 -0.8593749,-0.96875 -0.3046875,-0.63281 -0.3085938,-1.45312 v -0.28125 q 0,-0.83985 0.3007813,-1.47657 0.3046875,-0.64062 0.8554687,-0.98047 0.5546875,-0.34375 1.265625,-0.34375 0.7109375,0 1.2617187,0.34375 0.5546875,0.33985 0.8554688,0.98047 0.3046875,0.63672 0.3046875,1.47266 z m -1.1875,-0.25782 q 0,-0.89453 -0.3203125,-1.35937 -0.3203125,-0.46485 -0.9140625,-0.46485 -0.5898438,0 -0.9101563,0.46094 -0.3203125,0.45703 -0.3242187,1.34375 v 0.27735 q 0,0.87109 0.3203125,1.35156 0.3203125,0.48047 0.921875,0.48047 0.5898437,0 0.90625,-0.46094 0.3164062,-0.46484 0.3203125,-1.35156 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path350" /> | |||
id="path370" /> | |||
<path | |||
d="m 14.460938,146.67578 h -2.25 V 149 h -1.171875 v -5.6875 h 3.703125 v 0.94922 h -2.53125 v 1.46875 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path352" /> | |||
id="path372" /> | |||
<path | |||
d="m 20.851562,146.67578 h -2.25 V 149 h -1.171875 v -5.6875 h 3.703125 v 0.94922 h -2.53125 v 1.46875 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path354" /> | |||
id="path374" /> | |||
<path | |||
d="m 26.769531,147.50781 q 0,-0.33203 -0.234375,-0.50781 -0.234375,-0.17969 -0.84375,-0.375 -0.609375,-0.19922 -0.964844,-0.39063 -0.96875,-0.52343 -0.96875,-1.41015 0,-0.46094 0.257813,-0.82031 0.261719,-0.36329 0.746094,-0.56641 0.488281,-0.20313 1.09375,-0.20313 0.609375,0 1.085937,0.22266 0.476563,0.21875 0.738281,0.62109 0.265625,0.40235 0.265625,0.91407 h -1.171875 q 0,-0.39063 -0.246093,-0.60547 -0.246094,-0.21875 -0.691407,-0.21875 -0.429687,0 -0.667968,0.18359 -0.238282,0.17969 -0.238282,0.47656 0,0.27735 0.277344,0.46485 0.28125,0.1875 0.824219,0.35156 1,0.30078 1.457031,0.74609 0.457031,0.44532 0.457031,1.10938 0,0.73828 -0.558593,1.16016 -0.558594,0.41796 -1.503907,0.41796 -0.65625,0 -1.195312,-0.23828 -0.539063,-0.24218 -0.824219,-0.66015 -0.28125,-0.41797 -0.28125,-0.96875 h 1.175781 q 0,0.9414 1.125,0.9414 0.417969,0 0.652344,-0.16797 0.234375,-0.17187 0.234375,-0.47656 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path356" /> | |||
id="path376" /> | |||
<path | |||
d="m 34.164062,146.53516 h -2.25 v 1.52343 h 2.640625 V 149 h -3.8125 v -5.6875 h 3.804688 v 0.94922 h -2.632813 v 1.35547 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path358" /> | |||
id="path378" /> | |||
<path | |||
d="M 41.601562,144.26172 H 39.859375 V 149 H 38.6875 v -4.73828 h -1.71875 v -0.94922 h 4.632812 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path360" /> | |||
id="path380" /> | |||
</g> | |||
<g | |||
id="use175" | |||
id="use181" | |||
transform="translate(2.2,146.5)"> | |||
<g | |||
id="g279" | |||
id="g285" | |||
transform="translate(20,20)"> | |||
<g | |||
id="g269" | |||
id="g275" | |||
transform="rotate(-90,-5,-5)"> | |||
<path | |||
style="stroke:#333333;stroke-width:1" | |||
d="M 0,0 H 4" | |||
id="polyline267" /> | |||
id="polyline273" /> | |||
</g> | |||
<path | |||
id="path271" | |||
id="path277" | |||
transform="rotate(20)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 1 12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path273" | |||
id="path279" | |||
transform="rotate(43)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 1 12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path275" | |||
id="path281" | |||
transform="rotate(-20)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 0 -12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path277" | |||
id="path283" | |||
transform="rotate(-43)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 0 -12.5,0" | |||
inkscape:connector-curvature="0" | |||
@@ -693,62 +733,62 @@ | |||
</g> | |||
</g> | |||
<g | |||
aria-label="LEVEL" | |||
aria-label="SCALE" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text179"> | |||
id="text185"> | |||
<path | |||
d="M 8.6796875,189.05859 H 11.167969 V 190 H 7.5078125 v -5.6875 h 1.171875 z" | |||
d="m 10.057031,188.50781 q 0,-0.33203 -0.2343748,-0.50781 -0.234375,-0.17969 -0.84375,-0.375 -0.609375,-0.19922 -0.9648438,-0.39063 -0.96875,-0.52343 -0.96875,-1.41015 0,-0.46094 0.2578125,-0.82031 0.2617188,-0.36329 0.7460938,-0.56641 0.4882812,-0.20313 1.09375,-0.20313 0.609375,0 1.0859373,0.22266 0.476563,0.21875 0.738281,0.62109 0.265625,0.40235 0.265625,0.91407 h -1.171875 q 0,-0.39063 -0.2460933,-0.60547 -0.2460938,-0.21875 -0.6914063,-0.21875 -0.4296875,0 -0.6679687,0.18359 -0.2382813,0.17969 -0.2382813,0.47656 0,0.27735 0.2773438,0.46485 0.28125,0.1875 0.8242187,0.35156 1.0000001,0.30078 1.4570311,0.74609 0.457031,0.44532 0.457031,1.10938 0,0.73828 -0.558593,1.16016 -0.558594,0.41796 -1.5039066,0.41796 -0.65625,0 -1.1953125,-0.23828 -0.5390625,-0.24218 -0.8242187,-0.66015 -0.28125,-0.41797 -0.28125,-0.96875 h 1.1757812 q 0,0.9414 1.125,0.9414 0.4179688,0 0.6523438,-0.16797 0.2343748,-0.17187 0.2343748,-0.47656 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path364" /> | |||
id="path384" /> | |||
<path | |||
d="m 17.257812,187.53516 h -2.249999 v 1.52343 h 2.640624 V 190 h -3.812499 v -5.6875 h 3.804687 v 0.94922 h -2.632812 v 1.35547 h 2.249999 z" | |||
d="m 18.494531,188.10547 q -0.06641,0.91797 -0.679687,1.44531 -0.609375,0.52734 -1.609375,0.52734 -1.09375,0 -1.722657,-0.73437 -0.625,-0.73828 -0.625,-2.02344 v -0.34765 q 0,-0.82032 0.289063,-1.44532 0.289062,-0.625 0.824219,-0.95703 0.539062,-0.33594 1.25,-0.33594 0.984375,0 1.585937,0.52735 0.601563,0.52734 0.695313,1.48047 h -1.171875 q -0.04297,-0.55078 -0.308594,-0.79688 -0.261719,-0.25 -0.800781,-0.25 -0.585938,0 -0.878907,0.42188 -0.289062,0.41797 -0.296875,1.30078 v 0.42969 q 0,0.92187 0.277344,1.34765 0.28125,0.42578 0.882813,0.42578 0.542968,0 0.808593,-0.24609 0.269532,-0.25 0.308594,-0.76953 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path366" /> | |||
id="path386" /> | |||
<path | |||
d="m 22.4375,188.58984 1.289062,-4.27734 H 25.03125 L 23.050781,190 h -1.222656 l -1.972656,-5.6875 h 1.300781 z" | |||
d="M 24.475,188.82812 H 22.420312 L 22.029687,190 h -1.246093 l 2.117187,-5.6875 h 1.085938 L 26.115625,190 h -1.246094 z m -1.738281,-0.94921 h 1.421875 L 23.44375,185.75 Z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path368" /> | |||
id="path388" /> | |||
<path | |||
d="m 30.992187,187.53516 h -2.25 v 1.52343 h 2.640625 V 190 h -3.8125 v -5.6875 H 31.375 v 0.94922 h -2.632813 v 1.35547 h 2.25 z" | |||
d="m 29.826562,189.05859 h 2.488282 V 190 h -3.660157 v -5.6875 h 1.171875 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path370" /> | |||
id="path390" /> | |||
<path | |||
d="m 35.242187,189.05859 h 2.488282 V 190 h -3.660157 v -5.6875 h 1.171875 z" | |||
d="m 38.404687,187.53516 h -2.25 v 1.52343 h 2.640625 V 190 h -3.8125 v -5.6875 H 38.7875 v 0.94922 h -2.632813 v 1.35547 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path372" /> | |||
id="path392" /> | |||
</g> | |||
<g | |||
id="use181" | |||
id="use187" | |||
transform="translate(2.2,187.5)"> | |||
<g | |||
id="g263" | |||
id="g269" | |||
transform="translate(20,20)"> | |||
<g | |||
id="g253" | |||
id="g259" | |||
transform="rotate(60,-5,8.660254)"> | |||
<path | |||
style="stroke:#333333;stroke-width:1" | |||
d="M 0,0 H 4" | |||
id="polyline251" /> | |||
id="polyline257" /> | |||
</g> | |||
<path | |||
id="path255" | |||
id="path261" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 1 12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path257" | |||
id="path263" | |||
transform="rotate(43)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 1 12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path259" | |||
id="path265" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 0 -12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path261" | |||
id="path267" | |||
transform="rotate(-43)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 0 -12.5,0" | |||
inkscape:connector-curvature="0" | |||
@@ -756,99 +796,99 @@ | |||
</g> | |||
</g> | |||
<g | |||
id="g193" | |||
id="g199" | |||
transform="translate(5.5,228)"> | |||
<path | |||
transform="translate(0,63)" | |||
style="fill:#fafafa" | |||
d="M 0,0 H 34 V 10 H 0 Z" | |||
id="rect185" /> | |||
id="rect191" /> | |||
<path | |||
style="fill:#fafafa" | |||
d="m 5,0 h 24 c 2.77,0 5,2.23 5,5 v 60 c 0,2.77 -2.23,5 -5,5 H 5 C 2.23,70 0,67.77 0,65 V 5 C 0,2.23 2.23,0 5,0 Z" | |||
id="rect187" /> | |||
id="rect193" /> | |||
<g | |||
aria-label="V/OCT" | |||
transform="translate(3.5,35)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text189"> | |||
id="text195"> | |||
<path | |||
d="m 2.1744791,-1.1751302 1.0742187,-3.564453 H 4.3359374 L 2.6855468,0 H 1.6666666 L 0.02278646,-4.7395832 H 1.1067708 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path378" /> | |||
id="path398" /> | |||
<path | |||
d="M 7.0195311,0.40690103 H 6.3196613 L 8.0644529,-4.7395832 h 0.6998698 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path380" /> | |||
id="path400" /> | |||
<path | |||
d="m 15.165364,-2.2623697 q 0,0.6998697 -0.247396,1.2272135 -0.247395,0.52734371 -0.709635,0.81380204 -0.458984,0.28645833 -1.054688,0.28645833 -0.589192,0 -1.051432,-0.28320312 -0.462239,-0.28320312 -0.716146,-0.80729165 -0.253906,-0.5273437 -0.257161,-1.2109375 v -0.234375 q 0,-0.6998697 0.250651,-1.2304687 0.253906,-0.5338541 0.712891,-0.8170573 0.462239,-0.2864583 1.054687,-0.2864583 0.592448,0 1.051432,0.2864583 0.46224,0.2832032 0.712891,0.8170573 0.253906,0.530599 0.253906,1.2272135 z m -0.989583,-0.2148438 q 0,-0.7454427 -0.266927,-1.1328125 -0.266927,-0.3873697 -0.761719,-0.3873697 -0.491536,0 -0.758463,0.3841145 -0.266928,0.3808594 -0.270183,1.1197917 v 0.2311198 q 0,0.7259114 0.266927,1.126302 0.266927,0.40039063 0.768229,0.40039063 0.491537,0 0.755209,-0.38411453 0.263672,-0.3873698 0.266927,-1.1263021 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path382" /> | |||
id="path402" /> | |||
<path | |||
d="m 21.602212,-1.578776 q -0.05534,0.76497394 -0.566406,1.20442705 -0.507813,0.43945312 -1.341146,0.43945312 -0.911458,0 -1.435547,-0.61197916 Q 17.73828,-1.1621093 17.73828,-2.2330729 v -0.2897135 q 0,-0.6835937 0.240885,-1.2044271 0.240886,-0.5208333 0.686849,-0.797526 0.449219,-0.2799479 1.041667,-0.2799479 0.820312,0 1.321615,0.4394531 0.501302,0.4394531 0.579427,1.233724 H 20.63216 q -0.03581,-0.4589844 -0.257161,-0.6640625 -0.218099,-0.2083334 -0.667318,-0.2083334 -0.488281,0 -0.732422,0.3515625 -0.240885,0.3483073 -0.247396,1.0839844 v 0.3580729 q 0,0.7682291 0.23112,1.1230468 0.234375,0.35481774 0.735677,0.35481774 0.452474,0 0.673828,-0.20507812 0.22461,-0.20833332 0.257162,-0.64127602 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path384" /> | |||
id="path404" /> | |||
<path | |||
d="M 27.720051,-3.9485676 H 26.268228 V 0 h -0.976562 v -3.9485676 h -1.432292 v -0.7910156 h 3.860677 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path386" /> | |||
id="path406" /> | |||
</g> | |||
<g | |||
aria-label="RESET" | |||
transform="translate(3.5,70)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text191"> | |||
id="text197"> | |||
<path | |||
d="M 2.1777343,-1.735026 H 1.3997395 V 0 H 0.42317707 V -4.7395832 H 2.1842447 q 0.8398438,0 1.2955729,0.3743489 0.4557292,0.374349 0.4557292,1.0579427 0,0.485026 -0.2115886,0.8105469 -0.2083333,0.3222656 -0.6347656,0.5143229 l 1.0253906,1.93684888 V 0 H 3.0664062 Z M 1.3997395,-2.5260416 h 0.7877604 q 0.3678386,0 0.5696615,-0.1855469 0.2018229,-0.1888021 0.2018229,-0.5175781 0,-0.3352864 -0.1920573,-0.5273437 Q 2.5781249,-3.9485676 2.1842447,-3.9485676 H 1.3997395 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path389" /> | |||
id="path409" /> | |||
<path | |||
d="m 9.532552,-2.0540364 h -1.875 v 1.26953121 H 9.8580728 V 0 H 6.6809896 v -4.7395832 h 3.1705728 v 0.7910156 H 7.657552 v 1.1295573 h 1.875 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path391" /> | |||
id="path411" /> | |||
<path | |||
d="m 14.888672,-1.2434896 q 0,-0.2766927 -0.195313,-0.423177 -0.195312,-0.1497396 -0.703125,-0.3125 -0.507812,-0.1660156 -0.804036,-0.3255208 -0.807292,-0.436198 -0.807292,-1.1751302 0,-0.3841146 0.214844,-0.6835938 0.218099,-0.3027343 0.621745,-0.4720052 0.406901,-0.1692708 0.911458,-0.1692708 0.507813,0 0.904948,0.1855469 0.397135,0.1822916 0.615234,0.5175781 0.221354,0.3352864 0.221354,0.7617187 h -0.976562 q 0,-0.3255208 -0.205078,-0.5045573 -0.205078,-0.1822916 -0.576172,-0.1822916 -0.358073,0 -0.556641,0.1529948 -0.198567,0.1497396 -0.198567,0.3971354 0,0.2311198 0.23112,0.3873698 0.234374,0.15625 0.686848,0.2929687 0.833334,0.250651 1.214193,0.6217448 0.380859,0.3710937 0.380859,0.9244791 0,0.61523439 -0.465494,0.96679688 -0.465495,0.34830729 -1.253255,0.34830729 -0.546875,0 -0.996094,-0.19856771 Q 12.704427,-0.33528645 12.466797,-0.68359373 12.232422,-1.031901 12.232422,-1.4908854 h 0.979818 q 0,0.78450521 0.9375,0.78450521 0.348307,0 0.543619,-0.13997396 0.195313,-0.14322916 0.195313,-0.39713545 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path393" /> | |||
id="path413" /> | |||
<path | |||
d="m 21.384115,-2.0540364 h -1.875 v 1.26953121 h 2.20052 V 0 h -3.177083 v -4.7395832 h 3.170573 v 0.7910156 h -2.19401 v 1.1295573 h 1.875 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path395" /> | |||
id="path415" /> | |||
<path | |||
d="M 27.915364,-3.9485676 H 26.463541 V 0 h -0.976563 v -3.9485676 h -1.432291 v -0.7910156 h 3.860677 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path397" /> | |||
id="path417" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g201" | |||
id="g207" | |||
transform="translate(5.5,304)"> | |||
<path | |||
transform="translate(0,-3)" | |||
style="fill:#bbbbbb" | |||
d="M 0,0 H 34 V 10 H 0 Z" | |||
id="rect195" /> | |||
id="rect201" /> | |||
<path | |||
style="fill:#bbbbbb" | |||
d="m 5,0 h 24 c 2.77,0 5,2.23 5,5 v 25 c 0,2.77 -2.23,5 -5,5 H 5 C 2.23,35 0,32.77 0,30 V 5 C 0,2.23 2.23,0 5,0 Z" | |||
id="rect197" /> | |||
id="rect203" /> | |||
<g | |||
aria-label="OUT" | |||
transform="translate(8.3,32)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text199"> | |||
id="text205"> | |||
<path | |||
d="m 4.3164061,-2.2623697 q 0,0.6998697 -0.2473958,1.2272135 -0.2473958,0.52734371 -0.7096354,0.81380204 -0.4589843,0.28645833 -1.0546875,0.28645833 -0.5891926,0 -1.0514322,-0.28320312 Q 0.79101561,-0.50130207 0.53710936,-1.0253906 0.28320312,-1.5527343 0.27994791,-2.2363281 v -0.234375 q 0,-0.6998697 0.25065104,-1.2304687 0.25390624,-0.5338541 0.71289065,-0.8170573 0.4622395,-0.2864583 1.0546874,-0.2864583 0.5924479,0 1.0514323,0.2864583 0.4622396,0.2832032 0.7128906,0.8170573 0.2539062,0.530599 0.2539062,1.2272135 z M 3.3268228,-2.4772135 q 0,-0.7454427 -0.266927,-1.1328125 -0.2669271,-0.3873697 -0.7617188,-0.3873697 -0.4915364,0 -0.7584635,0.3841145 -0.2669271,0.3808594 -0.2701823,1.1197917 v 0.2311198 q 0,0.7259114 0.2669271,1.126302 0.2669271,0.40039063 0.7682291,0.40039063 0.4915365,0 0.7552084,-0.38411453 0.2636718,-0.3873698 0.266927,-1.1263021 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path402" /> | |||
id="path422" /> | |||
<path | |||
d="m 10.619792,-4.7395832 v 3.1217447 q 0,0.77799477 -0.488282,1.23046872 -0.4850257,0.45247395 -1.3281246,0.45247395 -0.8300781,0 -1.3183594,-0.43945312 Q 6.9967448,-0.81380206 6.9869792,-1.5820312 v -3.157552 h 0.9765624 v 3.1282551 q 0,0.4654948 0.2213542,0.68033854 0.2246094,0.21158854 0.6184896,0.21158854 0.8235677,0 0.8365885,-0.86588538 v -3.1542968 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path404" /> | |||
id="path424" /> | |||
<path | |||
d="M 16.988281,-3.9485676 H 15.536458 V 0 h -0.976563 v -3.9485676 h -1.432291 v -0.7910156 h 3.860677 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path406" /> | |||
id="path426" /> | |||
</g> | |||
</g> | |||
</svg> |
@@ -0,0 +1,795 @@ | |||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
<svg | |||
xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
xmlns:cc="http://creativecommons.org/ns#" | |||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
xmlns:svg="http://www.w3.org/2000/svg" | |||
xmlns="http://www.w3.org/2000/svg" | |||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |||
version="1.1" | |||
width="90" | |||
height="380" | |||
viewBox="0 0 90 380" | |||
id="svg164" | |||
sodipodi:docname="svg_render_tmp.svg" | |||
inkscape:version="0.92.2 5c3e80d, 2017-08-06"> | |||
<metadata | |||
id="metadata168"> | |||
<rdf:RDF> | |||
<cc:Work | |||
rdf:about=""> | |||
<dc:format>image/svg+xml</dc:format> | |||
<dc:type | |||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
</cc:Work> | |||
</rdf:RDF> | |||
</metadata> | |||
<sodipodi:namedview | |||
pagecolor="#ffffff" | |||
bordercolor="#666666" | |||
borderopacity="1" | |||
objecttolerance="10" | |||
gridtolerance="10" | |||
guidetolerance="10" | |||
inkscape:pageopacity="0" | |||
inkscape:pageshadow="2" | |||
inkscape:window-width="468" | |||
inkscape:window-height="449" | |||
id="namedview166" | |||
showgrid="false" | |||
inkscape:zoom="0.62105263" | |||
inkscape:cx="45" | |||
inkscape:cy="190" | |||
inkscape:window-x="0" | |||
inkscape:window-y="0" | |||
inkscape:window-maximized="0" | |||
inkscape:current-layer="svg164" /> | |||
<style | |||
id="style2"> | |||
text { | |||
fill: #333; | |||
font-family: 'Roboto', sans-serif; | |||
font-weight: bold; | |||
} | |||
text.title { | |||
font-family: 'Comfortaa', sans-serif; | |||
font-weight: normal; | |||
} | |||
text.brand { | |||
font-family: 'Audiowide', sans-serif; | |||
font-weight: bold; | |||
} | |||
</style> | |||
<defs | |||
id="defs80"> | |||
<symbol | |||
id="knob" | |||
viewBox="0 0 45px 45px"> | |||
<g | |||
transform="translate(22.5 22.5)" | |||
id="g10"> | |||
<polyline | |||
points="-5,0 5,0" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline4" /> | |||
<polyline | |||
points="0,-5 0,5" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline6" /> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="14" | |||
stroke-width="1" | |||
stroke="#00f" | |||
fill="none" | |||
id="circle8" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="knobguide-select" | |||
viewBox="0 0 45px 45px"> | |||
<g | |||
transform="translate(22.5 22.5)" | |||
id="g29"> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-240) translate(20 0) rotate(240) translate(-2 2)" | |||
id="text13">1</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-197.1) translate(20 0) rotate(197.1) translate(-2 2)" | |||
id="text15">2</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-154.3) translate(20 0) rotate(154.3) translate(-2 2)" | |||
id="text17">3</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-111.4) translate(20 0) rotate(111.4) translate(-2 2)" | |||
id="text19">4</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-68.6) translate(20 0) rotate(68.6) translate(-2 2)" | |||
id="text21">5</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-25.7) translate(20 0) rotate(25.7) translate(-2 2)" | |||
id="text23">6</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(17.1) translate(20 0) rotate(-17.1) translate(-2 2)" | |||
id="text25">7</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(60) translate(20 0) rotate(-60) translate(-2 2)" | |||
id="text27">8</text> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="knob-smallest" | |||
viewBox="0 0 16px 16px"> | |||
<g | |||
transform="translate(8 8)" | |||
id="g38"> | |||
<polyline | |||
points="-3,0 3,0" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline32" /> | |||
<polyline | |||
points="0,-3 0,3" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline34" /> | |||
<circle | |||
r="7.5" | |||
stroke-width="1" | |||
stroke="#00f" | |||
fill="none" | |||
id="circle36" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="knobguide-steps" | |||
viewBox="0 0 40px 40px"> | |||
<g | |||
transform="translate(20 20)" | |||
id="g55"> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-240) translate(13 0) rotate(240) translate(-2 2)" | |||
id="text41">2</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-190) translate(13 0) rotate(190) translate(-2 2)" | |||
id="text43">3</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-140) translate(13 0) rotate(140) translate(-2 2)" | |||
id="text45">4</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-90) translate(13 0) rotate(90) translate(-2 2)" | |||
id="text47">5</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(-40) translate(13 0) rotate(40) translate(-2 2)" | |||
id="text49">6</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(10) translate(13 0) rotate(-10) translate(-2 2)" | |||
id="text51">7</text> | |||
<text | |||
font-size="5.0pt" | |||
transform="rotate(60) translate(13 0) rotate(-60) translate(-2 2)" | |||
id="text53">8</text> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="switch" | |||
viewBox="0 0 14px 24px"> | |||
<rect | |||
width="14px" | |||
height="24px" | |||
stroke-width="1" | |||
stroke="#000" | |||
fill="#ddd" | |||
id="rect58" /> | |||
<rect | |||
width="14px" | |||
height="12px" | |||
stroke-width="0" | |||
fill="#000" | |||
id="rect60" /> | |||
</symbol> | |||
<symbol | |||
id="light-small" | |||
viewBox="0 0 6.4px 6.4px"> | |||
<rect | |||
width="6.4" | |||
height="6.4" | |||
fill="#0f0" | |||
id="rect63" /> | |||
</symbol> | |||
<symbol | |||
id="input" | |||
viewBox="0 0 24px 24px"> | |||
<g | |||
transform="translate(12 12)" | |||
id="g70"> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="5" | |||
stroke-width="1" | |||
stroke="#0f0" | |||
fill="#0f0" | |||
id="circle66" /> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="10.5" | |||
stroke-width="3" | |||
stroke="#0f0" | |||
fill="none" | |||
id="circle68" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="output" | |||
viewBox="0 0 24px 24px"> | |||
<g | |||
transform="translate(12 12)" | |||
id="g77"> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="5" | |||
stroke-width="1" | |||
stroke="#f00" | |||
fill="#f00" | |||
id="circle73" /> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="10.5" | |||
stroke-width="3" | |||
stroke="#f00" | |||
fill="none" | |||
id="circle75" /> | |||
</g> | |||
</symbol> | |||
</defs> | |||
<path | |||
style="fill:#dddddd" | |||
d="M 0,0 H 90 V 380 H 0 Z" | |||
id="rect82" /> | |||
<path | |||
style="fill:none;stroke:#e4e4e4;stroke-width:0.5" | |||
d="M 1,1 H 89 V 379 H 1 V 1" | |||
id="polyline84" /> | |||
<path | |||
style="fill:none;stroke:#ebebeb;stroke-width:0.80000001" | |||
d="m 0.5,0.5 h 89 v 379 H 0.5 V 0.5" | |||
id="polyline86" /> | |||
<path | |||
style="fill:none;stroke:#f2f2f2;stroke-width:1" | |||
d="M 0,0 H 90 V 380 H 0 V 0" | |||
id="polyline88" /> | |||
<g | |||
aria-label="1:8" | |||
style="font-weight:normal;font-size:12px;font-family:Comfortaa, sans-serif;letter-spacing:3px;fill:#333333" | |||
id="text90"> | |||
<path | |||
d="M 65.868,17 Q 65.676,17 65.532,16.868 65.4,16.724 65.4,16.532 v -7.8 l -1.2,0.42 q -0.12,0.06 -0.24,0.06 -0.204,0 -0.336,-0.12 -0.132,-0.132 -0.132,-0.336 0,-0.348 0.3,-0.444 L 65.64,7.676 q 0.18,-0.06 0.24,-0.06 0.192,0 0.324,0.132 0.132,0.132 0.132,0.336 v 8.448 q 0,0.192 -0.132,0.336 Q 66.072,17 65.868,17 Z" | |||
style="font-weight:normal;font-size:12px;font-family:Comfortaa, sans-serif;letter-spacing:3px;fill:#333333" | |||
id="path321" /> | |||
<path | |||
d="m 71.626875,11.912 q -0.288,0 -0.504,-0.204 -0.204,-0.204 -0.204,-0.492 0,-0.3 0.204,-0.504 0.204,-0.204 0.504,-0.204 0.288,0 0.48,0.216 0.204,0.204 0.204,0.492 0,0.288 -0.204,0.492 -0.192,0.204 -0.48,0.204 z m 0.024,5.28 q -0.288,0 -0.492,-0.204 -0.204,-0.204 -0.204,-0.492 0,-0.3 0.204,-0.504 0.216,-0.204 0.492,-0.204 0.288,0 0.492,0.216 0.204,0.204 0.204,0.492 0,0.288 -0.204,0.492 -0.204,0.204 -0.492,0.204 z" | |||
style="font-weight:normal;font-size:12px;font-family:Comfortaa, sans-serif;letter-spacing:3px;fill:#333333" | |||
id="path323" /> | |||
<path | |||
d="m 80.822625,11.744 q 0.66,0.348 1.044,0.984 0.384,0.624 0.384,1.416 0,0.816 -0.372,1.476 -0.36,0.66 -1.008,1.044 -0.636,0.384 -1.416,0.384 -0.792,0 -1.44,-0.372 -0.636,-0.384 -1.008,-1.032 -0.36,-0.66 -0.36,-1.464 0,-0.804 0.384,-1.44 0.396,-0.648 1.056,-0.996 -0.444,-0.312 -0.696,-0.792 -0.252,-0.492 -0.252,-1.08 0,-0.636 0.3,-1.152 0.312,-0.528 0.84,-0.816 0.54,-0.3 1.2,-0.3 0.648,0 1.164,0.3 0.528,0.288 0.816,0.804 0.3,0.504 0.3,1.14 0,0.588 -0.252,1.092 -0.252,0.492 -0.684,0.804 z m -2.796,-1.86 q 0,0.624 0.408,1.056 0.408,0.42 1.02,0.42 0.612,0 1.008,-0.432 0.408,-0.444 0.408,-1.092 0,-0.588 -0.408,-0.984 -0.408,-0.396 -1.008,-0.396 -0.612,0 -1.02,0.408 -0.408,0.408 -0.408,1.02 z m 3.288,4.272 q 0,-0.54 -0.252,-0.972 -0.24,-0.432 -0.672,-0.684 -0.42,-0.252 -0.936,-0.252 -0.528,0 -0.96,0.264 -0.432,0.252 -0.672,0.696 -0.24,0.444 -0.24,0.996 0,0.552 0.24,1.02 0.252,0.456 0.672,0.72 0.432,0.264 0.96,0.264 0.528,0 0.948,-0.264 0.432,-0.276 0.672,-0.744 0.24,-0.48 0.24,-1.044 z" | |||
style="font-weight:normal;font-size:12px;font-family:Comfortaa, sans-serif;letter-spacing:3px;fill:#333333" | |||
id="path325" /> | |||
</g> | |||
<g | |||
aria-label="BOGAUDIO" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text92"> | |||
<path | |||
d="m 12.194662,372.66699 q 0,0.20313 -0.07194,0.43587 -0.06771,0.23275 -0.228516,0.43165 -0.156576,0.19889 -0.410482,0.33431 Q 11.229818,374 10.861654,374 H 6.6848959 q -0.1184896,0 -0.2200521,-0.0423 -0.1015625,-0.0423 -0.1777344,-0.11426 -0.07194,-0.0762 -0.1142578,-0.17773 -0.042318,-0.10156 -0.042318,-0.22005 V 368.486 q 0,-0.11426 0.042318,-0.21582 0.042318,-0.10156 0.1142578,-0.17773 0.076172,-0.0762 0.1777344,-0.11849 0.1015625,-0.0423 0.2200521,-0.0423 h 3.6816411 q 0.203125,0 0.435872,0.0719 0.232747,0.0719 0.431641,0.23275 0.203125,0.15657 0.33431,0.41048 0.135416,0.25391 0.135416,0.62207 v 0.20736 q 0,0.29199 -0.09733,0.63053 -0.09733,0.33431 -0.313152,0.63477 0.186198,0.11425 0.347006,0.27506 0.165039,0.16081 0.28776,0.3724 0.122721,0.21159 0.194662,0.47819 0.07194,0.2666 0.07194,0.58821 z m -1.100261,-0.21159 q 0,-0.21582 -0.06771,-0.38509 -0.06771,-0.1735 -0.19043,-0.29622 -0.122721,-0.12272 -0.296224,-0.1862 -0.173502,-0.0677 -0.389323,-0.0677 H 7.6708985 v -1.10872 h 1.9847006 q 0.2158203,0 0.3893229,-0.0635 0.173503,-0.0677 0.296224,-0.19043 0.122721,-0.12272 0.186198,-0.29199 0.06771,-0.1735 0.06771,-0.38932 v -0.20736 q 0,-0.23698 -0.228515,-0.23698 H 7.2307943 v 3.86784 h 3.6308597 q 0.02962,0 0.07194,-0.004 0.04232,-0.004 0.07617,-0.0254 0.03385,-0.0212 0.05924,-0.0719 0.02539,-0.0508 0.02539,-0.13965 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path328" /> | |||
<path | |||
d="m 21.515625,371.54557 q 0,0.55436 -0.190429,1.01986 -0.19043,0.46549 -0.528972,0.80404 -0.338541,0.33854 -0.804036,0.52897 -0.461263,0.1862 -1.007162,0.1862 h -1.489583 q -0.545899,0 -1.011393,-0.1862 -0.465495,-0.19043 -0.804037,-0.52897 -0.338542,-0.33855 -0.533203,-0.80404 -0.19043,-0.4655 -0.19043,-1.01986 v -1.1595 q 0,-0.55013 0.19043,-1.01563 0.194661,-0.46972 0.533203,-0.80403 0.338542,-0.33855 0.804037,-0.52898 0.465494,-0.19043 1.011393,-0.19043 h 1.489583 q 0.545899,0 1.007162,0.19043 0.465495,0.19043 0.804036,0.52898 0.338542,0.33431 0.528972,0.80403 0.190429,0.4655 0.190429,1.01563 z m -1.10026,-1.1595 q 0,-0.32585 -0.105794,-0.58822 -0.101563,-0.2666 -0.291993,-0.4528 -0.186198,-0.19043 -0.452799,-0.29199 -0.26237,-0.10579 -0.579753,-0.10579 h -1.489583 q -0.321615,0 -0.588216,0.10579 -0.26237,0.10156 -0.4528,0.29199 -0.19043,0.1862 -0.296224,0.4528 -0.101562,0.26237 -0.101562,0.58822 v 1.1595 q 0,0.32585 0.101562,0.59245 0.105794,0.26237 0.296224,0.4528 0.19043,0.1862 0.4528,0.29199 0.266601,0.10156 0.588216,0.10156 h 1.48112 q 0.321614,0 0.583984,-0.10156 0.266602,-0.10579 0.457031,-0.29199 0.19043,-0.19043 0.291993,-0.4528 0.105794,-0.2666 0.105794,-0.59245 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path330" /> | |||
<path | |||
d="m 30.59961,373.44564 q 0,0.11849 -0.04232,0.22005 -0.04232,0.10156 -0.11849,0.17773 -0.07194,0.0719 -0.173502,0.11426 Q 30.163737,374 30.045248,374 h -3.969402 q -0.152343,0 -0.330078,-0.0338 -0.173502,-0.0381 -0.347005,-0.11426 -0.169271,-0.0762 -0.325846,-0.19466 -0.156576,-0.12272 -0.279297,-0.292 -0.11849,-0.1735 -0.19043,-0.39778 -0.07194,-0.22852 -0.07194,-0.51205 v -2.97916 q 0,-0.15235 0.03385,-0.32585 0.03809,-0.17773 0.114258,-0.347 0.07617,-0.17351 0.198893,-0.33008 0.122722,-0.15658 0.291992,-0.27507 0.173503,-0.12272 0.397787,-0.19466 0.224284,-0.0719 0.507812,-0.0719 h 4.472982 v 1.10026 h -4.472982 q -0.21582,0 -0.330078,0.11426 -0.114258,0.11426 -0.114258,0.33854 v 2.9707 q 0,0.21159 0.114258,0.33008 0.11849,0.11426 0.330078,0.11426 h 3.423503 v -1.37956 h -2.928385 v -1.10872 h 3.474284 q 0.118489,0 0.220052,0.0466 0.101562,0.0423 0.173502,0.11849 0.07617,0.0762 0.11849,0.17773 0.04232,0.0973 0.04232,0.21159 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path332" /> | |||
<path | |||
d="m 39.708986,374 h -1.100261 v -1.48958 H 34.740887 V 374 h -1.100261 v -3.03418 q 0,-0.66439 0.228516,-1.22298 0.228516,-0.5586 0.634766,-0.96061 0.40625,-0.40202 0.960612,-0.62631 0.554362,-0.22428 1.210286,-0.22428 h 2.479818 q 0.114258,0 0.21582,0.0423 0.101563,0.0423 0.177735,0.11849 0.07617,0.0762 0.118489,0.17773 0.04232,0.10156 0.04232,0.21582 z m -4.968099,-2.58984 h 3.867838 v -2.37826 h -1.933919 q -0.05078,0 -0.21582,0.0169 -0.160808,0.0127 -0.376628,0.0719 -0.211588,0.0592 -0.448568,0.18196 -0.236979,0.12273 -0.435872,0.33855 -0.198893,0.21582 -0.330078,0.54166 -0.126953,0.32162 -0.126953,0.78288 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path334" /> | |||
<path | |||
d="m 48.928386,373.44564 q 0,0.11849 -0.04232,0.22005 -0.04232,0.10156 -0.11849,0.17773 -0.07617,0.0719 -0.177734,0.11426 Q 48.488281,374 48.374024,374 h -2.479818 q -0.351237,0 -0.710938,-0.0762 -0.3597,-0.0762 -0.698242,-0.23275 -0.33431,-0.16081 -0.630534,-0.40625 -0.296224,-0.24544 -0.520508,-0.57975 -0.220052,-0.33854 -0.347005,-0.77018 -0.126953,-0.43588 -0.126953,-0.96908 v -3.03418 h 1.100261 v 3.03418 q 0,0.4655 0.126953,0.78711 0.131185,0.32161 0.330078,0.53743 0.198893,0.21582 0.435872,0.33855 0.236979,0.12272 0.448568,0.18196 0.21582,0.0592 0.376628,0.0762 0.165039,0.0127 0.21582,0.0127 h 1.933919 v -4.9681 h 1.100261 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path336" /> | |||
<path | |||
d="m 58.266279,371.46094 q 0,0.55436 -0.194662,1.01985 -0.190429,0.4655 -0.528971,0.80404 -0.338542,0.33431 -0.804036,0.52474 Q 56.273115,374 55.727216,374 h -2.970703 q -0.11849,0 -0.220052,-0.0423 -0.101563,-0.0423 -0.177734,-0.11426 -0.07194,-0.0762 -0.114258,-0.17773 -0.04232,-0.10156 -0.04232,-0.22005 V 368.486 q 0,-0.11426 0.04232,-0.21582 0.04232,-0.10156 0.114258,-0.17773 0.07617,-0.0762 0.177734,-0.11849 0.101562,-0.0423 0.220052,-0.0423 h 2.970703 q 0.545899,0 1.011394,0.19043 0.465494,0.19043 0.804036,0.52897 0.338542,0.33431 0.528971,0.80404 0.194662,0.46549 0.194662,1.01562 z m -1.100261,-0.99024 q 0,-0.32161 -0.105794,-0.58821 -0.101562,-0.2666 -0.291992,-0.4528 -0.19043,-0.19043 -0.457031,-0.29199 -0.26237,-0.1058 -0.583985,-0.1058 h -2.424805 v 3.86784 h 2.424805 q 0.321615,0 0.583985,-0.10156 0.266601,-0.1058 0.457031,-0.292 0.19043,-0.19042 0.291992,-0.45279 0.105794,-0.26661 0.105794,-0.59245 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path338" /> | |||
<path | |||
d="m 62.462565,374 h -1.10026 v -6.06836 h 1.10026 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path340" /> | |||
<path | |||
d="m 72.126305,371.54557 q 0,0.55436 -0.19043,1.01986 -0.19043,0.46549 -0.528971,0.80404 -0.338542,0.33854 -0.804037,0.52897 -0.461263,0.1862 -1.007161,0.1862 h -1.489584 q -0.545898,0 -1.011393,-0.1862 -0.465495,-0.19043 -0.804036,-0.52897 -0.338542,-0.33855 -0.533203,-0.80404 -0.19043,-0.4655 -0.19043,-1.01986 v -1.1595 q 0,-0.55013 0.19043,-1.01563 0.194661,-0.46972 0.533203,-0.80403 0.338541,-0.33855 0.804036,-0.52898 0.465495,-0.19043 1.011393,-0.19043 h 1.489584 q 0.545898,0 1.007161,0.19043 0.465495,0.19043 0.804037,0.52898 0.338541,0.33431 0.528971,0.80403 0.19043,0.4655 0.19043,1.01563 z m -1.100261,-1.1595 q 0,-0.32585 -0.105794,-0.58822 -0.101562,-0.2666 -0.291992,-0.4528 -0.186198,-0.19043 -0.4528,-0.29199 -0.262369,-0.10579 -0.579752,-0.10579 h -1.489584 q -0.321614,0 -0.588216,0.10579 -0.26237,0.10156 -0.452799,0.29199 -0.19043,0.1862 -0.296224,0.4528 -0.101563,0.26237 -0.101563,0.58822 v 1.1595 q 0,0.32585 0.101563,0.59245 0.105794,0.26237 0.296224,0.4528 0.190429,0.1862 0.452799,0.29199 0.266602,0.10156 0.588216,0.10156 h 1.48112 q 0.321615,0 0.583985,-0.10156 0.266601,-0.10579 0.457031,-0.29199 0.19043,-0.19043 0.291992,-0.4528 0.105794,-0.2666 0.105794,-0.59245 z" | |||
style="font-weight:bold;font-size:8.66666698px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path342" /> | |||
</g> | |||
<path | |||
style="fill:#dddddd" | |||
d="M 26.5,370 H 28 v 2 h -1.5 z" | |||
id="rect94" /> | |||
<path | |||
style="fill:#fafafa" | |||
d="m 11.5,32 h 24 c 2.77,0 5,2.23 5,5 v 29 c 0,2.77 -2.23,5 -5,5 h -24 c -2.77,0 -5,-2.23 -5,-5 V 37 c 0,-2.77 2.23,-5 5,-5 z" | |||
id="rect98" /> | |||
<path | |||
style="fill:#fafafa" | |||
d="m 6.5,62 h 34 v 10 h -34 z" | |||
id="rect100" /> | |||
<g | |||
aria-label="CLOCK" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="text102"> | |||
<path | |||
d="m 14.64388,65.421224 q -0.05534,0.764974 -0.566406,1.204427 -0.507813,0.439453 -1.341146,0.439453 -0.911458,0 -1.435547,-0.611979 -0.520833,-0.615234 -0.520833,-1.686198 v -0.289713 q 0,-0.683594 0.240885,-1.204427 0.240886,-0.520834 0.686849,-0.797526 0.449219,-0.279948 1.041667,-0.279948 0.820312,0 1.321614,0.439453 0.501303,0.439453 0.579428,1.233724 h -0.976563 q -0.03581,-0.458985 -0.257161,-0.664063 -0.218099,-0.208333 -0.667318,-0.208333 -0.488281,0 -0.732422,0.351562 -0.240885,0.348308 -0.247396,1.083985 v 0.358073 q 0,0.768229 0.23112,1.123046 0.234375,0.354818 0.735677,0.354818 0.452474,0 0.673828,-0.205078 0.22461,-0.208333 0.257162,-0.641276 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path348" /> | |||
<path | |||
d="m 17.261719,66.215495 h 2.073567 V 67 h -3.05013 v -4.739583 h 0.976563 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path350" /> | |||
<path | |||
d="m 24.576822,64.73763 q 0,0.69987 -0.247396,1.227214 -0.247395,0.527344 -0.709635,0.813802 -0.458984,0.286458 -1.054688,0.286458 -0.589192,0 -1.051432,-0.283203 -0.462239,-0.283203 -0.716146,-0.807292 -0.253906,-0.527343 -0.257161,-1.210937 v -0.234375 q 0,-0.69987 0.250651,-1.230469 0.253906,-0.533854 0.712891,-0.817057 0.462239,-0.286458 1.054687,-0.286458 0.592448,0 1.051432,0.286458 0.46224,0.283203 0.712891,0.817057 0.253906,0.530599 0.253906,1.227214 z m -0.989583,-0.214843 q 0,-0.745443 -0.266927,-1.132813 -0.266927,-0.38737 -0.761719,-0.38737 -0.491536,0 -0.758463,0.384115 -0.266928,0.380859 -0.270183,1.119791 v 0.23112 q 0,0.725912 0.266927,1.126302 0.266927,0.400391 0.768229,0.400391 0.491537,0 0.755209,-0.384115 0.263672,-0.387369 0.266927,-1.126302 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path352" /> | |||
<path | |||
d="m 30.013671,65.421224 q -0.05534,0.764974 -0.566406,1.204427 -0.507813,0.439453 -1.341146,0.439453 -0.911458,0 -1.435547,-0.611979 -0.520833,-0.615234 -0.520833,-1.686198 v -0.289713 q 0,-0.683594 0.240885,-1.204427 0.240886,-0.520834 0.686849,-0.797526 0.449219,-0.279948 1.041667,-0.279948 0.820312,0 1.321614,0.439453 0.501303,0.439453 0.579428,1.233724 h -0.976563 q -0.03581,-0.458985 -0.257161,-0.664063 -0.218099,-0.208333 -0.667318,-0.208333 -0.488281,0 -0.732422,0.351562 -0.240885,0.348308 -0.247396,1.083985 v 0.358073 q 0,0.768229 0.23112,1.123046 0.234375,0.354818 0.735677,0.354818 0.452474,0 0.673828,-0.205078 0.22461,-0.208333 0.257162,-0.641276 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path354" /> | |||
<path | |||
d="m 33.139322,65.098958 -0.507813,0.546875 V 67 h -0.976562 v -4.739583 h 0.976562 v 2.148437 l 0.429688,-0.589192 1.207682,-1.559245 h 1.201172 L 33.787108,64.366537 35.518879,67 h -1.16211 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path356" /> | |||
</g> | |||
<path | |||
style="fill:#fafafa" | |||
d="m 11.5,69 h 24 c 2.77,0 5,2.23 5,5 v 29 c 0,2.77 -2.23,5 -5,5 h -24 c -2.77,0 -5,-2.23 -5,-5 V 74 c 0,-2.77 2.23,-5 5,-5 z" | |||
id="rect106" /> | |||
<g | |||
aria-label="RESET" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="text108"> | |||
<path | |||
d="M 13.677734,102.26497 H 12.89974 V 104 h -0.976563 v -4.739583 h 1.761068 q 0.839843,0 1.295573,0.374349 0.455729,0.374344 0.455729,1.057944 0,0.48502 -0.211589,0.81055 -0.208333,0.32226 -0.634765,0.51432 l 1.02539,1.93685 V 104 h -1.048177 z m -0.777994,-0.79101 h 0.78776 q 0.367838,0 0.569661,-0.18555 0.201823,-0.1888 0.201823,-0.51758 0,-0.33528 -0.192057,-0.52734 -0.188802,-0.19206 -0.582682,-0.19206 H 12.89974 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path360" /> | |||
<path | |||
d="m 20.032552,101.94596 h -1.875 v 1.26953 h 2.200521 V 104 H 17.18099 v -4.739583 h 3.170572 v 0.791013 h -2.19401 v 1.12956 h 1.875 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path362" /> | |||
<path | |||
d="m 24.388672,102.75651 q 0,-0.27669 -0.195313,-0.42318 -0.195312,-0.14974 -0.703125,-0.3125 -0.507812,-0.16601 -0.804036,-0.32552 -0.807292,-0.4362 -0.807292,-1.17513 0,-0.38411 0.214844,-0.683591 0.218099,-0.302735 0.621745,-0.472006 0.406901,-0.16927 0.911458,-0.16927 0.507813,0 0.904948,0.185546 0.397135,0.182292 0.615234,0.517579 0.221354,0.335282 0.221354,0.761722 h -0.976562 q 0,-0.32552 -0.205078,-0.50456 -0.205078,-0.182293 -0.576172,-0.182293 -0.358073,0 -0.556641,0.152993 -0.198567,0.14974 -0.198567,0.39714 0,0.23112 0.23112,0.38737 0.234374,0.15625 0.686848,0.29297 0.833334,0.25065 1.214193,0.62174 0.380859,0.37109 0.380859,0.92448 0,0.61523 -0.465494,0.9668 -0.465495,0.3483 -1.253255,0.3483 -0.546875,0 -0.996094,-0.19856 -0.449219,-0.20183 -0.686849,-0.55013 -0.234375,-0.34831 -0.234375,-0.8073 h 0.979818 q 0,0.78451 0.9375,0.78451 0.348307,0 0.543619,-0.13997 0.195313,-0.14323 0.195313,-0.39714 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path364" /> | |||
<path | |||
d="m 29.884115,101.94596 h -1.875 v 1.26953 h 2.20052 V 104 h -3.177083 v -4.739583 h 3.170573 v 0.791013 h -2.19401 v 1.12956 h 1.875 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path366" /> | |||
<path | |||
d="M 35.415364,100.05143 H 33.963541 V 104 h -0.976563 v -3.94857 h -1.432291 v -0.791013 h 3.860677 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:1px;fill:#333333" | |||
id="path368" /> | |||
</g> | |||
<g | |||
aria-label="STEPS" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="text112"> | |||
<path | |||
d="m 11.957031,119.50781 q 0,-0.33203 -0.234375,-0.50781 -0.234375,-0.17969 -0.84375,-0.375 -0.609375,-0.19922 -0.9648435,-0.39062 -0.96875,-0.52344 -0.96875,-1.41016 0,-0.46094 0.2578125,-0.82031 0.2617188,-0.36328 0.7460938,-0.56641 0.4882812,-0.20312 1.0937502,-0.20312 0.609375,0 1.085937,0.22265 0.476563,0.21875 0.738282,0.6211 0.265625,0.40234 0.265625,0.91406 h -1.171875 q 0,-0.39063 -0.246094,-0.60547 -0.246094,-0.21875 -0.691406,-0.21875 -0.429688,0 -0.667969,0.18359 -0.238281,0.17969 -0.238281,0.47657 0,0.27734 0.277343,0.46484 0.28125,0.1875 0.824219,0.35156 1,0.30078 1.457031,0.7461 0.457032,0.44531 0.457032,1.10937 0,0.73828 -0.558594,1.16016 -0.558594,0.41797 -1.503906,0.41797 -0.65625,0 -1.195313,-0.23829 -0.5390625,-0.24218 -0.8242187,-0.66015 -0.28125,-0.41797 -0.28125,-0.96875 h 1.1757812 q 0,0.9414 1.1250005,0.9414 0.417968,0 0.652343,-0.16796 0.234375,-0.17188 0.234375,-0.47657 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path371" /> | |||
<path | |||
d="M 19.710937,116.26172 H 17.96875 V 121 h -1.171875 v -4.73828 h -1.71875 v -0.94922 h 4.632812 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path373" /> | |||
<path | |||
d="m 25.304687,118.53516 h -2.25 v 1.52343 h 2.640625 V 121 h -3.8125 v -5.6875 H 25.6875 v 0.94922 h -2.632813 v 1.35547 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path375" /> | |||
<path | |||
d="M 29.054687,118.99609 V 121 h -1.171875 v -5.6875 h 2.21875 q 0.640625,0 1.125,0.23438 0.488282,0.23437 0.75,0.66796 0.261719,0.42969 0.261719,0.98047 0,0.83594 -0.574219,1.32032 -0.570312,0.48046 -1.582031,0.48046 z m 0,-0.94921 h 1.046875 q 0.464844,0 0.707032,-0.21875 0.246093,-0.21875 0.246093,-0.625 0,-0.41797 -0.246093,-0.67579 -0.246094,-0.25781 -0.679688,-0.26562 h -1.074219 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path377" /> | |||
<path | |||
d="m 37.488281,119.50781 q 0,-0.33203 -0.234375,-0.50781 -0.234375,-0.17969 -0.84375,-0.375 -0.609375,-0.19922 -0.964844,-0.39062 -0.96875,-0.52344 -0.96875,-1.41016 0,-0.46094 0.257813,-0.82031 0.261719,-0.36328 0.746094,-0.56641 0.488281,-0.20312 1.09375,-0.20312 0.609375,0 1.085937,0.22265 0.476563,0.21875 0.738281,0.6211 0.265625,0.40234 0.265625,0.91406 h -1.171875 q 0,-0.39063 -0.246093,-0.60547 Q 37,116.16797 36.554687,116.16797 q -0.429687,0 -0.667968,0.18359 -0.238282,0.17969 -0.238282,0.47657 0,0.27734 0.277344,0.46484 0.28125,0.1875 0.824219,0.35156 1,0.30078 1.457031,0.7461 0.457031,0.44531 0.457031,1.10937 0,0.73828 -0.558593,1.16016 -0.558594,0.41797 -1.503907,0.41797 -0.65625,0 -1.195312,-0.23829 -0.539063,-0.24218 -0.824219,-0.66015 -0.28125,-0.41797 -0.28125,-0.96875 h 1.175781 q 0,0.9414 1.125,0.9414 0.417969,0 0.652344,-0.16796 0.234375,-0.17188 0.234375,-0.47657 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path379" /> | |||
</g> | |||
<g | |||
id="use114" | |||
transform="translate(3.5,120)"> | |||
<g | |||
id="g212" | |||
transform="translate(20,20)"> | |||
<g | |||
aria-label="2" | |||
transform="translate(-8.5,13.25833)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text198"> | |||
<path | |||
d="M 3.5709635,0 H 0.32226562 V -0.64453123 L 1.8554687,-2.2786458 q 0.3157552,-0.3450521 0.4654948,-0.6022135 0.1529948,-0.2571615 0.1529948,-0.4882812 0,-0.3157552 -0.1595052,-0.4947917 -0.1595052,-0.1822917 -0.4557292,-0.1822917 -0.3190104,0 -0.5045573,0.2213542 -0.1822916,0.218099 -0.1822916,0.5761719 H 0.22786458 q 0,-0.4329427 0.20507812,-0.7910156 0.20833333,-0.358073 0.5859375,-0.5598959 0.3776041,-0.2050781 0.8561198,-0.2050781 0.7324218,0 1.1360676,0.3515625 0.4069011,0.3515625 0.4069011,0.9928385 0,0.3515625 -0.1822917,0.7161458 -0.1822917,0.3645834 -0.625,0.8496094 l -1.0774739,1.13606768 h 2.0377604 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path382" /> | |||
</g> | |||
<g | |||
aria-label="3" | |||
transform="translate(-14.802501,4.2574263)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text200"> | |||
<path | |||
d="m 1.2792968,-2.7864583 h 0.5013021 q 0.3580729,0 0.530599,-0.1790364 0.172526,-0.1790365 0.172526,-0.4752604 0,-0.2864584 -0.172526,-0.4459636 -0.1692709,-0.1595052 -0.46875,-0.1595052 -0.2701823,0 -0.452474,0.1497396 -0.1822916,0.1464844 -0.1822916,0.3841146 H 0.26692708 q 0,-0.3710937 0.1985677,-0.6640625 0.20182291,-0.2962239 0.55989582,-0.4622396 0.3613281,-0.1660156 0.7942708,-0.1660156 0.7519531,0 1.1783854,0.3613281 0.4264323,0.3580729 0.4264323,0.9895833 0,0.3255209 -0.1985677,0.5989584 -0.1985677,0.2734375 -0.5208333,0.4199218 0.4003906,0.1432292 0.5957031,0.4296875 0.1985677,0.2864583 0.1985677,0.6770833 0,0.63151043 -0.4622396,1.0123698 -0.4589844,0.38085937 -1.2174479,0.38085937 -0.7096354,0 -1.16210933,-0.37434895 Q 0.20833333,-0.68359373 0.20833333,-1.2988281 H 1.1490885 q 0,0.2669271 0.1985677,0.43619791 0.2018229,0.16927083 0.4947917,0.16927083 0.3352864,0 0.5240885,-0.17578124 0.1920573,-0.1790365 0.1920573,-0.4720052 0,-0.7096354 -0.78125,-0.7096354 H 1.2792968 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path385" /> | |||
</g> | |||
<g | |||
aria-label="4" | |||
transform="translate(-11.958578,-6.3562389)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text202"> | |||
<path | |||
d="M 3.1054687,-1.7838541 H 3.642578 v 0.7584635 H 3.1054687 V 0 H 2.1647135 V -1.0253906 H 0.22135416 L 0.17903645,-1.6178385 2.1549479,-4.7395832 h 0.9505208 z m -1.9889323,0 h 1.0481771 v -1.6731771 l -0.061849,0.1074219 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path388" /> | |||
</g> | |||
<g | |||
aria-label="5" | |||
transform="translate(-2,-11)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text204"> | |||
<path | |||
d="m 0.46223957,-2.3307291 0.2734375,-2.4088541 H 3.391927 V -3.955078 H 1.5071614 l -0.1171875,1.0188802 q 0.3352865,-0.1790365 0.7128906,-0.1790365 0.6770834,0 1.0611979,0.4199219 0.3841146,0.4199218 0.3841146,1.1751301 0,0.4589844 -0.1953125,0.82356773 -0.1920573,0.36132812 -0.5533854,0.56315103 -0.3613281,0.19856771 -0.8528646,0.19856771 -0.4296875,0 -0.797526,-0.17252604 Q 0.78124998,-0.28320312 0.56640624,-0.59895832 0.3548177,-0.91471352 0.34179687,-1.3183593 H 1.2727864 q 0.029297,0.2962239 0.2050781,0.46223953 0.1790365,0.16276041 0.4654948,0.16276041 0.3190104,0 0.4915365,-0.22786458 0.172526,-0.23111976 0.172526,-0.65104166 0,-0.4036458 -0.1985677,-0.6184896 -0.1985677,-0.2148437 -0.563151,-0.2148437 -0.3352865,0 -0.5436198,0.1757812 l -0.091146,0.084636 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path391" /> | |||
</g> | |||
<g | |||
aria-label="6" | |||
transform="translate(7.9585778,-6.3562389)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text206"> | |||
<path | |||
d="m 2.8743489,-4.7884113 v 0.7747395 h -0.091146 q -0.6380209,0.00977 -1.0286459,0.3320313 -0.3873697,0.3222656 -0.4654947,0.8951822 0.3776041,-0.3841145 0.953776,-0.3841145 0.6184896,0 0.9830729,0.4427083 0.3645833,0.4427083 0.3645833,1.1653645 0,0.4622396 -0.2018229,0.83658856 -0.1985677,0.37434895 -0.5664062,0.58268228 -0.3645834,0.20833333 -0.8268229,0.20833333 -0.7486979,0 -1.21093751,-0.52083333 Q 0.32552083,-0.97656248 0.32552083,-1.8457031 v -0.3385416 q 0,-0.7714844 0.28971353,-1.3606771 0.29296874,-0.5924479 0.83658854,-0.9147135 0.546875,-0.3255208 1.266276,-0.328776 z m -0.9179687,2.3730468 q -0.2278646,0 -0.4134115,0.1204427 -0.1855469,0.1171875 -0.2734375,0.3125 v 0.2864583 q 0,0.4720052 0.1855469,0.73893227 0.1855469,0.26367187 0.5208333,0.26367187 0.3027344,0 0.4882812,-0.2376302 0.1888021,-0.24088544 0.1888021,-0.62174474 0,-0.3873698 -0.1888021,-0.625 -0.188802,-0.2376302 -0.5078124,-0.2376302 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path394" /> | |||
</g> | |||
<g | |||
aria-label="7" | |||
transform="translate(10.802501,4.2574263)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text208"> | |||
<path | |||
d="M 3.5449218,-4.2122395 1.7122395,0 H 0.71940102 L 2.5553385,-3.9778645 H 0.1985677 v -0.7617187 h 3.3463541 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path397" /> | |||
</g> | |||
<g | |||
aria-label="8" | |||
transform="translate(4.5,13.25833)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text210"> | |||
<path | |||
d="m 3.4114583,-3.4798176 q 0,0.345052 -0.1725261,0.6119791 -0.172526,0.2669271 -0.4752604,0.4264323 0.3450521,0.1660156 0.546875,0.4589844 0.2018229,0.2897135 0.2018229,0.6835937 0,0.63151041 -0.4296875,0.99934894 -0.4296875,0.36458333 -1.1686197,0.36458333 -0.7389323,0 -1.17187502,-0.36783854 -0.4329427,-0.36783853 -0.4329427,-0.99609373 0,-0.3938802 0.20182292,-0.6868489 0.20182291,-0.2929688 0.5436198,-0.4557292 -0.30273439,-0.1595052 -0.47526043,-0.4264323 -0.16927083,-0.2669271 -0.16927083,-0.6119791 0,-0.6054688 0.40364582,-0.9635417 0.40364584,-0.3613281 1.09700514,-0.3613281 0.6901042,0 1.09375,0.3580729 0.4069011,0.3548177 0.4069011,0.9667969 z m -0.843099,2.1126301 q 0,-0.3092448 -0.1790364,-0.4947916 Q 2.2102864,-2.047526 1.907552,-2.047526 q -0.2994791,0 -0.4785156,0.1855469 Q 1.25,-1.6796875 1.25,-1.3671875 q 0,0.3027344 0.1757812,0.48828127 0.1757813,0.18554687 0.4882813,0.18554687 0.3059895,0 0.4785156,-0.17903645 0.1757812,-0.17903649 0.1757812,-0.49479169 z m -0.097656,-2.0670572 q 0,-0.2766927 -0.1464844,-0.4427083 -0.1464844,-0.1692709 -0.4134115,-0.1692709 -0.2636718,0 -0.4101562,0.1627605 -0.1464844,0.1627604 -0.1464844,0.4492187 0,0.2832031 0.1464844,0.4557291 0.1464844,0.1725261 0.4134115,0.1725261 0.266927,0 0.4101562,-0.1725261 0.1464844,-0.172526 0.1464844,-0.4557291 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path400" /> | |||
</g> | |||
</g> | |||
</g> | |||
<g | |||
aria-label="FWD" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text118"> | |||
<path | |||
d="m 17.974739,163.06315 h -1.875 V 165 h -0.976562 v -4.73958 h 3.085937 v 0.79101 h -2.109375 v 1.22396 h 1.875 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path403" /> | |||
<path | |||
d="m 24.473437,163.63281 0.638021,-3.37239 h 0.973307 L 25.033333,165 H 24.05026 L 23.278776,161.82943 22.507291,165 h -0.983073 l -1.051432,-4.73958 h 0.973307 l 0.641276,3.36588 0.78125,-3.36588 h 0.826823 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path405" /> | |||
<path | |||
d="m 28.615364,165 v -4.73958 h 1.458334 q 0.625,0 1.116536,0.2832 0.494792,0.27995 0.771484,0.80078 0.276693,0.51758 0.276693,1.17839 v 0.2181 q 0,0.6608 -0.273437,1.17513 -0.270183,0.51432 -0.764974,0.79752 -0.494792,0.2832 -1.116537,0.28646 z m 0.976563,-3.94857 v 3.16406 h 0.472005 q 0.572917,0 0.875651,-0.37434 0.302734,-0.37435 0.309245,-1.07097 v -0.25065 q 0,-0.72265 -0.299479,-1.09375 -0.299479,-0.37435 -0.875651,-0.37435 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path407" /> | |||
</g> | |||
<g | |||
aria-label="REV" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text120"> | |||
<path | |||
d="M 17.377734,198.26497 H 16.599739 V 200 h -0.976562 v -4.73958 h 1.761068 q 0.839843,0 1.295572,0.37435 0.45573,0.37434 0.45573,1.05794 0,0.48502 -0.211589,0.81055 -0.208333,0.32226 -0.634766,0.51432 l 1.025391,1.93685 V 200 h -1.048177 z m -0.777995,-0.79101 H 17.3875 q 0.367838,0 0.569661,-0.18555 0.201823,-0.1888 0.201823,-0.51758 0,-0.33528 -0.192057,-0.52734 -0.188802,-0.19206 -0.582682,-0.19206 h -0.784506 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path410" /> | |||
<path | |||
d="m 24.732552,197.94596 h -1.875 v 1.26953 h 2.200521 V 200 h -3.177084 v -4.73958 h 3.170573 v 0.79101 h -2.19401 v 1.12956 h 1.875 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path412" /> | |||
<path | |||
d="m 29.382291,198.82487 1.074219,-3.56445 h 1.08724 L 29.893359,200 h -1.01888 l -1.64388,-4.73958 h 1.083984 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path414" /> | |||
</g> | |||
<!-- <rect width="45" height="14" fill="#0f0" transform="translate(0 200)" /> --> | |||
<!-- <rect width="45" height="14" fill="#0f0" transform="translate(0 307)" /> --> | |||
<g | |||
aria-label="SELECT" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="text124"> | |||
<path | |||
d="m 8.9570313,218.50781 q 0,-0.33203 -0.234375,-0.50781 -0.234375,-0.17969 -0.8437501,-0.375 -0.609375,-0.19922 -0.9648437,-0.39063 -0.96875,-0.52343 -0.96875,-1.41015 0,-0.46094 0.2578125,-0.82031 0.2617187,-0.36329 0.7460937,-0.56641 0.4882813,-0.20313 1.0937501,-0.20313 0.609375,0 1.0859375,0.22266 0.4765625,0.21875 0.7382812,0.62109 0.2656255,0.40235 0.2656255,0.91407 H 8.9609375 q 0,-0.39063 -0.2460937,-0.60547 -0.2460938,-0.21875 -0.6914063,-0.21875 -0.4296875,0 -0.6679688,0.18359 -0.2382812,0.17969 -0.2382812,0.47656 0,0.27735 0.2773437,0.46485 0.28125,0.1875 0.8242188,0.35156 1,0.30078 1.4570313,0.74609 0.4570317,0.44532 0.4570317,1.10938 0,0.73828 -0.5585942,1.16016 -0.5585938,0.41796 -1.5039063,0.41796 -0.65625,0 -1.1953125,-0.23828 -0.5390625,-0.24218 -0.8242188,-0.66015 -0.28125,-0.41797 -0.28125,-0.96875 h 1.1757813 q 0,0.9414 1.125,0.9414 0.4179688,0 0.6523438,-0.16797 0.234375,-0.17187 0.234375,-0.47656 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path236" /> | |||
<path | |||
d="m 15.851563,217.53516 h -2.25 v 1.52343 h 2.640624 V 220 h -3.812499 v -5.6875 h 3.804687 v 0.94922 h -2.632812 v 1.35547 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path238" /> | |||
<path | |||
d="m 19.601562,219.05859 h 2.488282 V 220 h -3.660157 v -5.6875 h 1.171875 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path240" /> | |||
<path | |||
d="m 27.679687,217.53516 h -2.25 v 1.52343 h 2.640625 V 220 h -3.8125 v -5.6875 H 28.0625 v 0.94922 h -2.632813 v 1.35547 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path242" /> | |||
<path | |||
d="m 34.722656,218.10547 q -0.06641,0.91797 -0.679687,1.44531 -0.609375,0.52734 -1.609375,0.52734 -1.09375,0 -1.722657,-0.73437 -0.625,-0.73828 -0.625,-2.02344 v -0.34765 q 0,-0.82032 0.289063,-1.44532 0.289062,-0.625 0.824219,-0.95703 0.539062,-0.33594 1.25,-0.33594 0.984375,0 1.585937,0.52735 0.601563,0.52734 0.695313,1.48047 h -1.171875 q -0.04297,-0.55078 -0.308594,-0.79688 -0.261719,-0.25 -0.800781,-0.25 -0.585938,0 -0.878907,0.42188 -0.289062,0.41797 -0.296875,1.30078 v 0.42969 q 0,0.92187 0.277344,1.34765 0.28125,0.42578 0.882813,0.42578 0.542968,0 0.808593,-0.24609 0.269532,-0.25 0.308594,-0.76953 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path244" /> | |||
<path | |||
d="M 41.164062,215.26172 H 39.421875 V 220 H 38.25 v -4.73828 h -1.71875 v -0.94922 h 4.632812 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path246" /> | |||
</g> | |||
<g | |||
id="use126" | |||
transform="translate(1,222)"> | |||
<g | |||
id="g232" | |||
transform="translate(22.5,22.5)"> | |||
<g | |||
aria-label="1" | |||
transform="translate(-12,19.320508)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text216"> | |||
<path | |||
d="M 2.6074218,0 H 1.6666666 v -3.626302 l -1.12304682,0.3483073 v -0.764974 L 2.5065104,-4.7460936 h 0.1009114 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path249" /> | |||
</g> | |||
<g | |||
aria-label="2" | |||
transform="translate(-21.11586,7.8808065)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text218"> | |||
<path | |||
d="M 3.5709635,0 H 0.32226562 V -0.64453123 L 1.8554687,-2.2786458 q 0.3157552,-0.3450521 0.4654948,-0.6022135 0.1529948,-0.2571615 0.1529948,-0.4882812 0,-0.3157552 -0.1595052,-0.4947917 -0.1595052,-0.1822917 -0.4557292,-0.1822917 -0.3190104,0 -0.5045573,0.2213542 -0.1822916,0.218099 -0.1822916,0.5761719 H 0.22786458 q 0,-0.4329427 0.20507812,-0.7910156 0.20833333,-0.358073 0.5859375,-0.5598959 0.3776041,-0.2050781 0.8561198,-0.2050781 0.7324218,0 1.1360676,0.3515625 0.4069011,0.3515625 0.4069011,0.9928385 0,0.3515625 -0.1822917,0.7161458 -0.1822917,0.3645834 -0.625,0.8496094 l -1.0774739,1.13606768 h 2.0377604 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path252" /> | |||
</g> | |||
<g | |||
aria-label="3" | |||
transform="translate(-20.02154,-6.6731817)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text220"> | |||
<path | |||
d="m 1.2792968,-2.7864583 h 0.5013021 q 0.3580729,0 0.530599,-0.1790364 0.172526,-0.1790365 0.172526,-0.4752604 0,-0.2864584 -0.172526,-0.4459636 -0.1692709,-0.1595052 -0.46875,-0.1595052 -0.2701823,0 -0.452474,0.1497396 -0.1822916,0.1464844 -0.1822916,0.3841146 H 0.26692708 q 0,-0.3710937 0.1985677,-0.6640625 0.20182291,-0.2962239 0.55989582,-0.4622396 0.3613281,-0.1660156 0.7942708,-0.1660156 0.7519531,0 1.1783854,0.3613281 0.4264323,0.3580729 0.4264323,0.9895833 0,0.3255209 -0.1985677,0.5989584 -0.1985677,0.2734375 -0.5208333,0.4199218 0.4003906,0.1432292 0.5957031,0.4296875 0.1985677,0.2864583 0.1985677,0.6770833 0,0.63151043 -0.4622396,1.0123698 -0.4589844,0.38085937 -1.2174479,0.38085937 -0.7096354,0 -1.16210933,-0.37434895 Q 0.20833333,-0.68359373 0.20833333,-1.2988281 H 1.1490885 q 0,0.2669271 0.1985677,0.43619791 0.2018229,0.16927083 0.4947917,0.16927083 0.3352864,0 0.5240885,-0.17578124 0.1920573,-0.1790365 0.1920573,-0.4720052 0,-0.7096354 -0.78125,-0.7096354 H 1.2792968 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path255" /> | |||
</g> | |||
<g | |||
aria-label="4" | |||
transform="translate(-9.2975357,-16.621116)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text222"> | |||
<path | |||
d="M 3.1054687,-1.7838541 H 3.642578 v 0.7584635 H 3.1054687 V 0 H 2.1647135 V -1.0253906 H 0.22135416 L 0.17903645,-1.6178385 2.1549479,-4.7395832 h 0.9505208 z m -1.9889323,0 h 1.0481771 v -1.6731771 l -0.061849,0.1074219 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path258" /> | |||
</g> | |||
<g | |||
aria-label="5" | |||
transform="translate(5.2975357,-16.621116)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text224"> | |||
<path | |||
d="m 0.46223957,-2.3307291 0.2734375,-2.4088541 H 3.391927 V -3.955078 H 1.5071614 l -0.1171875,1.0188802 q 0.3352865,-0.1790365 0.7128906,-0.1790365 0.6770834,0 1.0611979,0.4199219 0.3841146,0.4199218 0.3841146,1.1751301 0,0.4589844 -0.1953125,0.82356773 -0.1920573,0.36132812 -0.5533854,0.56315103 -0.3613281,0.19856771 -0.8528646,0.19856771 -0.4296875,0 -0.797526,-0.17252604 Q 0.78124998,-0.28320312 0.56640624,-0.59895832 0.3548177,-0.91471352 0.34179687,-1.3183593 H 1.2727864 q 0.029297,0.2962239 0.2050781,0.46223953 0.1790365,0.16276041 0.4654948,0.16276041 0.3190104,0 0.4915365,-0.22786458 0.172526,-0.23111976 0.172526,-0.65104166 0,-0.4036458 -0.1985677,-0.6184896 -0.1985677,-0.2148437 -0.563151,-0.2148437 -0.3352865,0 -0.5436198,0.1757812 l -0.091146,0.084636 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path261" /> | |||
</g> | |||
<g | |||
aria-label="6" | |||
transform="translate(16.02154,-6.6731817)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text226"> | |||
<path | |||
d="m 2.8743489,-4.7884113 v 0.7747395 h -0.091146 q -0.6380209,0.00977 -1.0286459,0.3320313 -0.3873697,0.3222656 -0.4654947,0.8951822 0.3776041,-0.3841145 0.953776,-0.3841145 0.6184896,0 0.9830729,0.4427083 0.3645833,0.4427083 0.3645833,1.1653645 0,0.4622396 -0.2018229,0.83658856 -0.1985677,0.37434895 -0.5664062,0.58268228 -0.3645834,0.20833333 -0.8268229,0.20833333 -0.7486979,0 -1.21093751,-0.52083333 Q 0.32552083,-0.97656248 0.32552083,-1.8457031 v -0.3385416 q 0,-0.7714844 0.28971353,-1.3606771 0.29296874,-0.5924479 0.83658854,-0.9147135 0.546875,-0.3255208 1.266276,-0.328776 z m -0.9179687,2.3730468 q -0.2278646,0 -0.4134115,0.1204427 -0.1855469,0.1171875 -0.2734375,0.3125 v 0.2864583 q 0,0.4720052 0.1855469,0.73893227 0.1855469,0.26367187 0.5208333,0.26367187 0.3027344,0 0.4882812,-0.2376302 0.1888021,-0.24088544 0.1888021,-0.62174474 0,-0.3873698 -0.1888021,-0.625 -0.188802,-0.2376302 -0.5078124,-0.2376302 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path264" /> | |||
</g> | |||
<g | |||
aria-label="7" | |||
transform="translate(17.11586,7.8808065)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text228"> | |||
<path | |||
d="M 3.5449218,-4.2122395 1.7122395,0 H 0.71940102 L 2.5553385,-3.9778645 H 0.1985677 v -0.7617187 h 3.3463541 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path267" /> | |||
</g> | |||
<g | |||
aria-label="8" | |||
transform="translate(8,19.320508)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="text230"> | |||
<path | |||
d="m 3.4114583,-3.4798176 q 0,0.345052 -0.1725261,0.6119791 -0.172526,0.2669271 -0.4752604,0.4264323 0.3450521,0.1660156 0.546875,0.4589844 0.2018229,0.2897135 0.2018229,0.6835937 0,0.63151041 -0.4296875,0.99934894 -0.4296875,0.36458333 -1.1686197,0.36458333 -0.7389323,0 -1.17187502,-0.36783854 -0.4329427,-0.36783853 -0.4329427,-0.99609373 0,-0.3938802 0.20182292,-0.6868489 0.20182291,-0.2929688 0.5436198,-0.4557292 -0.30273439,-0.1595052 -0.47526043,-0.4264323 -0.16927083,-0.2669271 -0.16927083,-0.6119791 0,-0.6054688 0.40364582,-0.9635417 0.40364584,-0.3613281 1.09700514,-0.3613281 0.6901042,0 1.09375,0.3580729 0.4069011,0.3548177 0.4069011,0.9667969 z m -0.843099,2.1126301 q 0,-0.3092448 -0.1790364,-0.4947916 Q 2.2102864,-2.047526 1.907552,-2.047526 q -0.2994791,0 -0.4785156,0.1855469 Q 1.25,-1.6796875 1.25,-1.3671875 q 0,0.3027344 0.1757812,0.48828127 0.1757813,0.18554687 0.4882813,0.18554687 0.3059895,0 0.4785156,-0.17903645 0.1757812,-0.17903649 0.1757812,-0.49479169 z m -0.097656,-2.0670572 q 0,-0.2766927 -0.1464844,-0.4427083 -0.1464844,-0.1692709 -0.4134115,-0.1692709 -0.2636718,0 -0.4101562,0.1627605 -0.1464844,0.1627604 -0.1464844,0.4492187 0,0.2832031 0.1464844,0.4557291 0.1464844,0.1725261 0.4134115,0.1725261 0.266927,0 0.4101562,-0.1725261 0.1464844,-0.172526 0.1464844,-0.4557291 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;fill:#333333" | |||
id="path270" /> | |||
</g> | |||
</g> | |||
</g> | |||
<g | |||
id="g132" | |||
transform="translate(6.5,267)"> | |||
<path | |||
style="fill:#fafafa" | |||
d="m 5,0 h 24 c 2.77,0 5,2.23 5,5 v 29 c 0,2.77 -2.23,5 -5,5 H 5 C 2.23,39 0,36.77 0,34 V 5 C 0,2.23 2.23,0 5,0 Z" | |||
id="rect128" /> | |||
<g | |||
aria-label="CV" | |||
transform="translate(11.5,35)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text130"> | |||
<path | |||
d="m 4.1438801,-1.578776 q -0.055338,0.76497394 -0.5664062,1.20442705 -0.5078125,0.43945312 -1.3411458,0.43945312 -0.9114583,0 -1.43554687,-0.61197916 Q 0.27994791,-1.1621093 0.27994791,-2.2330729 v -0.2897135 q 0,-0.6835937 0.24088541,-1.2044271 0.24088541,-0.5208333 0.68684898,-0.797526 0.4492187,-0.2799479 1.0416666,-0.2799479 0.8203125,0 1.3216146,0.4394531 0.501302,0.4394531 0.579427,1.233724 H 3.173828 q -0.035807,-0.4589844 -0.2571614,-0.6640625 -0.218099,-0.2083334 -0.6673177,-0.2083334 -0.4882812,0 -0.7324219,0.3515625 -0.2408854,0.3483073 -0.2473958,1.0839844 v 0.3580729 q 0,0.7682291 0.2311198,1.1230468 0.234375,0.35481774 0.7356771,0.35481774 0.4524739,0 0.6738281,-0.20507812 Q 3.1347656,-1.1458333 3.1673176,-1.578776 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path274" /> | |||
<path | |||
d="m 8.5364581,-1.1751302 1.0742187,-3.564453 H 10.697916 L 9.0475258,0 H 8.0286456 L 6.3847655,-4.7395832 h 1.0839843 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path276" /> | |||
</g> | |||
</g> | |||
<path | |||
style="fill:#fafafa" | |||
d="m 11.5,321 h 24 c 2.77,0 5,2.23 5,5 v 29 c 0,2.77 -2.23,5 -5,5 h -24 c -2.77,0 -5,-2.23 -5,-5 v -29 c 0,-2.77 2.23,-5 5,-5 z" | |||
id="rect136" /> | |||
<g | |||
aria-label="IN" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text138"> | |||
<path | |||
d="m 20.461589,356 h -0.976563 v -4.73958 h 0.976563 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path280" /> | |||
<path | |||
d="m 27.217448,356 h -0.976563 l -1.901041,-3.11849 V 356 h -0.976563 v -4.73958 h 0.976563 l 1.904296,3.125 v -3.125 h 0.973308 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path282" /> | |||
</g> | |||
<path | |||
style="fill:#bbbbbb" | |||
d="m 54.5,23 h 24 c 2.77,0 5,2.23 5,5 v 327 c 0,2.77 -2.23,5 -5,5 h -24 c -2.77,0 -5,-2.23 -5,-5 V 28 c 0,-2.77 2.23,-5 5,-5 z" | |||
id="rect142" /> | |||
<g | |||
aria-label="OUT" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text144"> | |||
<path | |||
d="m 62.316406,29.73763 q 0,0.69987 -0.247396,1.227214 -0.247396,0.527344 -0.709635,0.813802 -0.458984,0.286458 -1.054688,0.286458 -0.589192,0 -1.051432,-0.283203 -0.462239,-0.283203 -0.716146,-0.807292 -0.253906,-0.527343 -0.257161,-1.210937 v -0.234375 q 0,-0.69987 0.250651,-1.230469 0.253906,-0.533854 0.712891,-0.817057 0.462239,-0.286458 1.054687,-0.286458 0.592448,0 1.051432,0.286458 0.46224,0.283203 0.712891,0.817057 0.253906,0.530599 0.253906,1.227214 z m -0.989583,-0.214843 q 0,-0.745443 -0.266927,-1.132813 -0.266927,-0.38737 -0.761719,-0.38737 -0.491536,0 -0.758463,0.384115 -0.266928,0.380859 -0.270183,1.119791 v 0.23112 q 0,0.725912 0.266927,1.126302 0.266927,0.400391 0.768229,0.400391 0.491537,0 0.755209,-0.384115 0.263672,-0.387369 0.266927,-1.126302 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path286" /> | |||
<path | |||
d="m 68.619792,27.260417 v 3.121744 q 0,0.777995 -0.488282,1.230469 -0.485026,0.452474 -1.328125,0.452474 -0.830078,0 -1.318359,-0.439453 -0.488281,-0.439453 -0.498047,-1.207682 v -3.157552 h 0.976563 v 3.128255 q 0,0.465495 0.221354,0.680338 0.224609,0.211589 0.618489,0.211589 0.823568,0 0.836589,-0.865885 v -3.154297 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path288" /> | |||
<path | |||
d="M 74.988281,28.051432 H 73.536458 V 32 h -0.976563 v -3.948568 h -1.432291 v -0.791015 h 3.860677 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path290" /> | |||
</g> | |||
<g | |||
aria-label="1" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text146"> | |||
<path | |||
d="m 63.107422,67 h -0.940755 v -3.626302 l -1.123047,0.348307 v -0.764974 l 1.96289,-0.703125 h 0.100912 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path293" /> | |||
</g> | |||
<g | |||
aria-label="2" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text148"> | |||
<path | |||
d="m 64.070963,108.3 h -3.248697 v -0.64453 l 1.533203,-1.63411 q 0.315755,-0.34505 0.465494,-0.60222 0.152995,-0.25716 0.152995,-0.48828 0,-0.31575 -0.159505,-0.49479 -0.159505,-0.18229 -0.455729,-0.18229 -0.31901,0 -0.504557,0.22135 -0.182292,0.2181 -0.182292,0.57618 h -0.94401 q 0,-0.43295 0.205078,-0.79102 0.208333,-0.35807 0.585937,-0.5599 0.377604,-0.20507 0.85612,-0.20507 0.732422,0 1.136068,0.35156 0.406901,0.35156 0.406901,0.99284 0,0.35156 -0.182292,0.71614 -0.182292,0.36459 -0.625,0.84961 l -1.077474,1.13607 h 2.03776 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path296" /> | |||
</g> | |||
<g | |||
aria-label="3" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text150"> | |||
<path | |||
d="m 61.779297,147.81355 h 0.501302 q 0.358073,0 0.530599,-0.17904 0.172526,-0.17904 0.172526,-0.47526 0,-0.28646 -0.172526,-0.44596 -0.169271,-0.15951 -0.46875,-0.15951 -0.270182,0 -0.452474,0.14974 -0.182292,0.14649 -0.182292,0.38412 h -0.940755 q 0,-0.3711 0.198568,-0.66407 0.201823,-0.29622 0.559896,-0.46224 0.361328,-0.16601 0.79427,-0.16601 0.751954,0 1.178386,0.36133 0.426432,0.35807 0.426432,0.98958 0,0.32552 -0.198568,0.59896 -0.198567,0.27344 -0.520833,0.41992 0.400391,0.14323 0.595703,0.42969 0.198568,0.28646 0.198568,0.67708 0,0.63151 -0.46224,1.01237 -0.458984,0.38086 -1.217448,0.38086 -0.709635,0 -1.162109,-0.37435 -0.449219,-0.37435 -0.449219,-0.98958 h 0.940756 q 0,0.26693 0.198567,0.4362 0.201823,0.16927 0.494792,0.16927 0.335286,0 0.524088,-0.17578 0.192058,-0.17904 0.192058,-0.47201 0,-0.70964 -0.78125,-0.70964 h -0.498047 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path299" /> | |||
</g> | |||
<g | |||
aria-label="4" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text152"> | |||
<path | |||
d="m 63.605469,189.11614 h 0.537109 v 0.75846 h -0.537109 v 1.02539 h -0.940756 v -1.02539 h -1.943359 l -0.04232,-0.59244 1.975912,-3.12175 h 0.950521 z m -1.988933,0 h 1.048177 v -1.67318 l -0.06185,0.10742 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path302" /> | |||
</g> | |||
<g | |||
aria-label="5" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text154"> | |||
<path | |||
d="m 60.96224,229.76928 0.273437,-2.40886 h 2.65625 v 0.78451 h -1.884766 l -0.117187,1.01888 q 0.335286,-0.17904 0.712891,-0.17904 0.677083,0 1.061197,0.41992 0.384115,0.41993 0.384115,1.17513 0,0.45899 -0.195312,0.82357 -0.192058,0.36133 -0.553386,0.56315 -0.361328,0.19857 -0.852864,0.19857 -0.429688,0 -0.797526,-0.17253 -0.367839,-0.17578 -0.582683,-0.49153 -0.211588,-0.31576 -0.224609,-0.7194 h 0.930989 q 0.0293,0.29622 0.205079,0.46224 0.179036,0.16276 0.465494,0.16276 0.319011,0 0.491537,-0.22787 0.172526,-0.23112 0.172526,-0.65104 0,-0.40365 -0.198568,-0.61849 -0.198568,-0.21484 -0.563151,-0.21484 -0.335286,0 -0.54362,0.17578 l -0.09115,0.0846 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path305" /> | |||
</g> | |||
<g | |||
aria-label="6" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text156"> | |||
<path | |||
d="m 63.374349,268.61158 v 0.77474 h -0.09115 q -0.638021,0.01 -1.028646,0.33203 -0.38737,0.32227 -0.465495,0.89519 0.377605,-0.38412 0.953776,-0.38412 0.61849,0 0.983073,0.44271 0.364584,0.44271 0.364584,1.16536 0,0.46224 -0.201823,0.83659 -0.198568,0.37435 -0.566406,0.58268 -0.364584,0.20834 -0.826823,0.20834 -0.748698,0 -1.210938,-0.52084 -0.458984,-0.52083 -0.458984,-1.38997 v -0.33854 q 0,-0.77149 0.289713,-1.36068 0.292969,-0.59245 0.836589,-0.91471 0.546875,-0.32552 1.266276,-0.32878 z m -0.917969,2.37305 q -0.227864,0 -0.413411,0.12044 -0.185547,0.11719 -0.273438,0.3125 v 0.28646 q 0,0.47201 0.185547,0.73893 0.185547,0.26367 0.520833,0.26367 0.302735,0 0.488282,-0.23763 0.188802,-0.24088 0.188802,-0.62174 0,-0.38737 -0.188802,-0.625 -0.188802,-0.23763 -0.507813,-0.23763 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path308" /> | |||
</g> | |||
<g | |||
aria-label="7" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text158"> | |||
<path | |||
d="m 64.044922,310.48777 -1.832682,4.21224 h -0.992839 l 1.835937,-3.97786 h -2.35677 v -0.76172 h 3.346354 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path311" /> | |||
</g> | |||
<g | |||
aria-label="8" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text160"> | |||
<path | |||
d="m 63.911458,352.52018 q 0,0.34505 -0.172526,0.61198 -0.172526,0.26693 -0.47526,0.42643 0.345052,0.16602 0.546875,0.45899 0.201823,0.28971 0.201823,0.68359 0,0.63151 -0.429688,0.99935 -0.429687,0.36458 -1.16862,0.36458 -0.738932,0 -1.171875,-0.36783 -0.432942,-0.36784 -0.432942,-0.9961 0,-0.39388 0.201823,-0.68685 0.201823,-0.29297 0.543619,-0.45573 -0.302734,-0.1595 -0.47526,-0.42643 -0.169271,-0.26693 -0.169271,-0.61198 0,-0.60547 0.403646,-0.96354 0.403646,-0.36133 1.097005,-0.36133 0.690104,0 1.09375,0.35808 0.406901,0.35481 0.406901,0.96679 z m -0.843099,2.11263 q 0,-0.30924 -0.179036,-0.49479 -0.179037,-0.18555 -0.481771,-0.18555 -0.299479,0 -0.478516,0.18555 -0.179036,0.18229 -0.179036,0.49479 0,0.30274 0.175781,0.48828 0.175781,0.18555 0.488281,0.18555 0.30599,0 0.478516,-0.17904 0.175781,-0.17903 0.175781,-0.49479 z m -0.09766,-2.06705 q 0,-0.2767 -0.146484,-0.44271 -0.146485,-0.16927 -0.413412,-0.16927 -0.263672,0 -0.410156,0.16276 -0.146484,0.16276 -0.146484,0.44922 0,0.2832 0.146484,0.45572 0.146484,0.17253 0.413411,0.17253 0.266928,0 0.410157,-0.17253 0.146484,-0.17252 0.146484,-0.45572 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path314" /> | |||
</g> | |||
<!-- <polyline points="0,0 90,0" stroke="#f00" stroke-width="1" fill="none" transform="translate(0 47)" /> --> | |||
<!-- <polyline points="0,0 90,0" stroke="#f00" stroke-width="1" fill="none" transform="translate(0 336)" /> --> | |||
<!-- <polyline points="0,0 90,0" stroke="#f00" stroke-width="1" fill="none" transform="translate(0 351)" /> --> | |||
<!-- <polyline points="0,0 0,360" stroke="#f00" stroke-width="1" fill="none" transform="translate(23.50 0)" /> --> | |||
</svg> |
@@ -0,0 +1,781 @@ | |||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
<svg | |||
xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
xmlns:cc="http://creativecommons.org/ns#" | |||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
xmlns:svg="http://www.w3.org/2000/svg" | |||
xmlns="http://www.w3.org/2000/svg" | |||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |||
version="1.1" | |||
width="45" | |||
height="380" | |||
viewBox="0 0 45 380" | |||
id="svg171" | |||
sodipodi:docname="svg_render_tmp.svg" | |||
inkscape:version="0.92.2 5c3e80d, 2017-08-06"> | |||
<metadata | |||
id="metadata175"> | |||
<rdf:RDF> | |||
<cc:Work | |||
rdf:about=""> | |||
<dc:format>image/svg+xml</dc:format> | |||
<dc:type | |||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
</cc:Work> | |||
</rdf:RDF> | |||
</metadata> | |||
<sodipodi:namedview | |||
pagecolor="#ffffff" | |||
bordercolor="#666666" | |||
borderopacity="1" | |||
objecttolerance="10" | |||
gridtolerance="10" | |||
guidetolerance="10" | |||
inkscape:pageopacity="0" | |||
inkscape:pageshadow="2" | |||
inkscape:window-width="468" | |||
inkscape:window-height="449" | |||
id="namedview173" | |||
showgrid="false" | |||
inkscape:zoom="0.62105263" | |||
inkscape:cx="22.5" | |||
inkscape:cy="190" | |||
inkscape:window-x="0" | |||
inkscape:window-y="0" | |||
inkscape:window-maximized="0" | |||
inkscape:current-layer="svg171" /> | |||
<style | |||
id="style2"> | |||
text { | |||
fill: #333; | |||
font-family: 'Roboto', sans-serif; | |||
font-weight: bold; | |||
} | |||
text.title { | |||
font-family: 'Comfortaa', sans-serif; | |||
font-weight: normal; | |||
} | |||
text.brand { | |||
font-family: 'Audiowide', sans-serif; | |||
font-weight: bold; | |||
} | |||
</style> | |||
<defs | |||
id="defs99"> | |||
<symbol | |||
id="knob-medium" | |||
viewBox="0 0 45px 45px"> | |||
<g | |||
transform="translate(22.5 22.5)" | |||
id="g10"> | |||
<polyline | |||
points="-5,0 5,0" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline4" /> | |||
<polyline | |||
points="0,-5 0,5" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline6" /> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="14" | |||
stroke-width="1" | |||
stroke="#00f" | |||
fill="none" | |||
id="circle8" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="knob-smallest" | |||
viewBox="0 0 16px 16px"> | |||
<g | |||
transform="translate(8 8)" | |||
id="g19"> | |||
<polyline | |||
points="-3,0 3,0" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline13" /> | |||
<polyline | |||
points="0,-3 0,3" | |||
stroke-width="1" | |||
stroke="#00f" | |||
id="polyline15" /> | |||
<circle | |||
r="7.5" | |||
stroke-width="1" | |||
stroke="#00f" | |||
fill="none" | |||
id="circle17" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="knobguide-change" | |||
viewBox="0 0 45px 45px"> | |||
<g | |||
transform="translate(22.5 22.5)" | |||
id="g44"> | |||
<polyline | |||
points="0,0 4,0" | |||
stroke-width="1.0" | |||
stroke="#333" | |||
transform="rotate(-240) translate(17 0)" | |||
id="polyline22" /> | |||
<polyline | |||
points="0,0 2.5,0" | |||
stroke-width="0.3" | |||
stroke="#333" | |||
transform="rotate(-210) translate(17 0)" | |||
id="polyline24" /> | |||
<polyline | |||
points="0,0 2.5,0" | |||
stroke-width="0.3" | |||
stroke="#333" | |||
transform="rotate(-180) translate(17 0)" | |||
id="polyline26" /> | |||
<polyline | |||
points="0,0 2.5,0" | |||
stroke-width="0.3" | |||
stroke="#333" | |||
transform="rotate(-150) translate(17 0)" | |||
id="polyline28" /> | |||
<polyline | |||
points="0,0 2.5,0" | |||
stroke-width="0.3" | |||
stroke="#333" | |||
transform="rotate(-120) translate(17 0)" | |||
id="polyline30" /> | |||
<polyline | |||
points="0,0 2.5,0" | |||
stroke-width="0.3" | |||
stroke="#333" | |||
transform="rotate(-90) translate(17 0)" | |||
id="polyline32" /> | |||
<polyline | |||
points="0,0 2.5,0" | |||
stroke-width="0.3" | |||
stroke="#333" | |||
transform="rotate(-60) translate(17 0)" | |||
id="polyline34" /> | |||
<polyline | |||
points="0,0 2.5,0" | |||
stroke-width="0.3" | |||
stroke="#333" | |||
transform="rotate(-30) translate(17 0)" | |||
id="polyline36" /> | |||
<polyline | |||
points="0,0 2.5,0" | |||
stroke-width="0.3" | |||
stroke="#333" | |||
transform="rotate(0) translate(17 0)" | |||
id="polyline38" /> | |||
<polyline | |||
points="0,0 2.5,0" | |||
stroke-width="0.3" | |||
stroke="#333" | |||
transform="rotate(30) translate(17 0)" | |||
id="polyline40" /> | |||
<polyline | |||
points="0,0 2.5,0" | |||
stroke-width="0.3" | |||
stroke="#333" | |||
transform="rotate(60) translate(17 0)" | |||
id="polyline42" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="knobguide-centertick" | |||
viewBox="0 0 40px 40px"> | |||
<g | |||
transform="translate(20 20)" | |||
id="g59"> | |||
<g | |||
transform="rotate(-90) translate(10 0)" | |||
id="g49"> | |||
<polyline | |||
points="0,0 4,0" | |||
stroke-width="1" | |||
stroke="#333" | |||
id="polyline47" /> | |||
</g> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(20)" | |||
id="path51" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(43)" | |||
id="path53" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(-20)" | |||
id="path55" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(-43)" | |||
id="path57" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="knobguide-maxtick" | |||
viewBox="0 0 40px 40px"> | |||
<g | |||
transform="translate(20 20)" | |||
id="g74"> | |||
<g | |||
transform="rotate(60) translate(10 0)" | |||
id="g64"> | |||
<polyline | |||
points="0,0 4,0" | |||
stroke-width="1" | |||
stroke="#333" | |||
id="polyline62" /> | |||
</g> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(0)" | |||
id="path66" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 1 12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(43)" | |||
id="path68" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(0)" | |||
id="path70" /> | |||
<path | |||
d="M 0 -12.5 A 12.5 12.5 0 0 0 -12.5 0" | |||
stroke="#333" | |||
stroke-width="0.5" | |||
stroke-linecap="round" | |||
fill="none" | |||
transform="rotate(-43)" | |||
id="path72" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="input" | |||
viewBox="0 0 24px 24px"> | |||
<g | |||
transform="translate(12 12)" | |||
id="g81"> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="5" | |||
stroke-width="1" | |||
stroke="#0f0" | |||
fill="#0f0" | |||
id="circle77" /> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="10.5" | |||
stroke-width="3" | |||
stroke="#0f0" | |||
fill="none" | |||
id="circle79" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="output" | |||
viewBox="0 0 24px 24px"> | |||
<g | |||
transform="translate(12 12)" | |||
id="g88"> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="5" | |||
stroke-width="1" | |||
stroke="#f00" | |||
fill="#f00" | |||
id="circle84" /> | |||
<circle | |||
cx="0" | |||
cy="0" | |||
r="10.5" | |||
stroke-width="3" | |||
stroke="#f00" | |||
fill="none" | |||
id="circle86" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="button-small" | |||
viewBox="0 0 9px 9px"> | |||
<g | |||
transform="translate(4.5 4.5)" | |||
id="g93"> | |||
<circle | |||
r="4" | |||
stroke-width="1" | |||
stroke="#00f" | |||
fill="#f00" | |||
id="circle91" /> | |||
</g> | |||
</symbol> | |||
<symbol | |||
id="light-small" | |||
viewBox="0 0 6.4px 6.4px"> | |||
<rect | |||
width="6.4" | |||
height="6.4" | |||
fill="#0f0" | |||
id="rect96" /> | |||
</symbol> | |||
</defs> | |||
<path | |||
style="fill:#dddddd" | |||
d="M 0,0 H 45 V 380 H 0 Z" | |||
id="rect101" /> | |||
<path | |||
style="fill:none;stroke:#e4e4e4;stroke-width:0.5" | |||
d="M 1,1 H 44 V 379 H 1 V 1" | |||
id="polyline103" /> | |||
<path | |||
style="fill:none;stroke:#ebebeb;stroke-width:0.80000001" | |||
d="m 0.5,0.5 h 44 v 379 H 0.5 V 0.5" | |||
id="polyline105" /> | |||
<path | |||
style="fill:none;stroke:#f2f2f2;stroke-width:1" | |||
d="M 0,0 H 45 V 380 H 0 V 0" | |||
id="polyline107" /> | |||
<g | |||
aria-label="WALK" | |||
transform="rotate(-90)" | |||
style="font-weight:normal;font-size:9.33333302px;font-family:Comfortaa, sans-serif;letter-spacing:2.5px;fill:#333333" | |||
id="text109"> | |||
<path | |||
d="m -367.768,5.7106669 q 0.14933,0 0.23333,0.1026667 0.084,0.093333 0.084,0.2426666 0,0.074667 -0.028,0.1773334 l -1.904,6.4586664 q -0.0467,0.149333 -0.14933,0.233333 Q -369.62533,13 -369.756,13 q -0.13067,0 -0.23333,-0.084 -0.0933,-0.084 -0.13067,-0.214667 l -1.512,-5.5159995 -1.50267,5.5066665 q -0.0467,0.14 -0.14933,0.224 -0.0933,0.084 -0.224,0.084 -0.13067,0 -0.23333,-0.084 -0.0933,-0.084 -0.13067,-0.214667 l -1.91333,-6.4679994 q -0.028,-0.1026667 -0.028,-0.168 0,-0.1586667 0.0933,-0.252 0.0933,-0.1026667 0.24267,-0.1026667 0.26133,0 0.35466,0.28 l 1.61467,5.6280001 1.53067,-5.4693334 q 0.028,-0.1026667 0.12133,-0.168 0.10267,-0.065333 0.224,-0.065333 0.12133,0 0.21467,0.065333 0.0933,0.065333 0.13066,0.1773333 l 1.54,5.4693331 1.624,-5.6746664 q 0.0747,-0.2426667 0.35467,-0.2426667 z" | |||
style="font-weight:normal;font-size:9.33333302px;font-family:Comfortaa, sans-serif;letter-spacing:2.5px;fill:#333333" | |||
id="path353" /> | |||
<path | |||
d="m -359.00358,12.486667 q 0.0373,0.06533 0.0373,0.149333 0,0.149333 -0.112,0.261333 Q -359.18092,13 -359.33025,13 q -0.24267,0 -0.34533,-0.224 l -0.62534,-1.512 h -3.612 l -0.62533,1.512 q -0.0747,0.224 -0.336,0.224 -0.15867,0 -0.26133,-0.102667 -0.0933,-0.112 -0.0933,-0.261333 0,-0.09333 0.028,-0.158667 l 2.744,-6.5146661 q 0.10267,-0.252 0.35467,-0.252 0.252,0 0.34533,0.252 z m -1.54934,-1.848 -1.54933,-3.7426668 -1.54933,3.7426668 z" | |||
style="font-weight:normal;font-size:9.33333302px;font-family:Comfortaa, sans-serif;letter-spacing:2.5px;fill:#333333" | |||
id="path355" /> | |||
<path | |||
d="m -355.04642,13 q -0.14933,0 -0.26133,-0.102667 -0.10267,-0.112 -0.10267,-0.261333 V 6.0746669 q 0,-0.1493333 0.10267,-0.252 0.112,-0.112 0.26133,-0.112 0.15867,0 0.26134,0.1026667 0.10266,0.1026666 0.10266,0.2613333 v 6.2346661 h 3.64934 q 0.15866,0 0.26133,0.102667 0.10267,0.09333 0.10267,0.242667 0,0.149333 -0.10267,0.252 Q -350.87442,13 -351.03308,13 Z" | |||
style="font-weight:normal;font-size:9.33333302px;font-family:Comfortaa, sans-serif;letter-spacing:2.5px;fill:#333333" | |||
id="path357" /> | |||
<path | |||
d="m -346.64017,13 q -0.14933,0 -0.26133,-0.102667 -0.10267,-0.112 -0.10267,-0.261333 V 6.0746669 q 0,-0.1493333 0.10267,-0.252 0.112,-0.112 0.26133,-0.112 0.15867,0 0.26134,0.1026667 0.10266,0.1026666 0.10266,0.2613333 v 3.1733332 l 3.40667,-3.4066665 q 0.13067,-0.1306667 0.28933,-0.1306667 0.15867,0 0.24267,0.093333 0.0933,0.093333 0.0933,0.2333334 0,0.168 -0.12133,0.2986666 l -2.55733,2.5573333 2.58533,3.5279995 q 0.0747,0.121334 0.0747,0.224 0,0.14 -0.10267,0.252 Q -342.45883,13 -342.59883,13 q -0.20534,0 -0.308,-0.158667 l -2.53867,-3.4346662 -0.83067,0.8400002 V 12.636 q 0,0.149333 -0.10266,0.261333 Q -346.4815,13 -346.64017,13 Z" | |||
style="font-weight:normal;font-size:9.33333302px;font-family:Comfortaa, sans-serif;letter-spacing:2.5px;fill:#333333" | |||
id="path359" /> | |||
</g> | |||
<g | |||
id="g115" | |||
transform="rotate(-90,200.5,175.5)"> | |||
<g | |||
aria-label="BGA" | |||
style="font-weight:bold;font-size:9.33333302px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text111"> | |||
<path | |||
d="m 7.2096352,-1.4355468 q 0,0.21875 -0.077474,0.469401 -0.072917,0.25065103 -0.2460937,0.46484373 -0.1686198,0.2141927 -0.4420573,0.36002603 Q 6.1705727,0 5.7740883,0 H 1.2760416 Q 1.1484375,0 1.0390625,-0.04557292 0.92968747,-0.09114583 0.84765622,-0.16861979 q -0.077474,-0.0820312 -0.12304687,-0.19140624 -0.0455729,-0.109375 -0.0455729,-0.23697916 V -5.9381508 q 0,-0.1230469 0.0455729,-0.2324219 0.0455729,-0.109375 0.12304687,-0.1914062 0.0820313,-0.082031 0.19140628,-0.1276042 0.109375,-0.045573 0.2369791,-0.045573 h 3.9648436 q 0.21875,0 0.4694011,0.077474 0.250651,0.077474 0.4648437,0.2506511 0.21875,0.1686197 0.360026,0.4420572 0.1458334,0.2734375 0.1458334,0.6699219 v 0.2233073 q 0,0.3144531 -0.1048177,0.6790364 -0.1048178,0.360026 -0.3372396,0.6835937 0.2005208,0.1230469 0.3736979,0.296224 0.1777344,0.1731771 0.3098958,0.4010416 0.1321615,0.2278646 0.2096354,0.514974 0.077474,0.2871093 0.077474,0.6334635 z M 6.0247394,-1.6634114 q 0,-0.2324219 -0.072917,-0.4147135 Q 5.878906,-2.2649739 5.7467446,-2.3971353 5.6145831,-2.5292968 5.4277342,-2.5976562 5.2408852,-2.6705728 5.0084634,-2.6705728 H 2.3378905 v -1.1940104 h 2.1373698 q 0.2324218,0 0.4192708,-0.068359 0.1868489,-0.072917 0.3190104,-0.2050781 0.1321614,-0.1321614 0.2005208,-0.3144531 0.072917,-0.186849 0.072917,-0.4192708 v -0.2233073 q 0,-0.2552083 -0.2460938,-0.2552083 h -3.376953 v 4.1653644 h 3.9101561 q 0.031901,0 0.077474,-0.00456 0.045573,-0.00456 0.082031,-0.027344 0.036458,-0.022787 0.063802,-0.077474 0.027344,-0.054687 0.027344,-0.1503906 z" | |||
style="font-weight:bold;font-size:9.33333302px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path362" /> | |||
<path | |||
d="m 16.683594,-0.59700519 q 0,0.12760416 -0.04557,0.23697916 -0.04557,0.109375 -0.127605,0.19140624 -0.07747,0.07747396 -0.186849,0.12304687 Q 16.214192,0 16.086588,0 h -4.274739 q -0.164063,0 -0.355469,-0.03645833 -0.186849,-0.04101563 -0.373698,-0.12304687 -0.182291,-0.0820313 -0.350911,-0.20963541 -0.16862,-0.13216146 -0.300781,-0.31445312 -0.127605,-0.18684895 -0.205079,-0.42838537 -0.07747,-0.2460938 -0.07747,-0.5514323 v -3.2083332 q 0,-0.1640625 0.03646,-0.3509115 0.04101,-0.1914062 0.123047,-0.3736979 0.08203,-0.1868489 0.214192,-0.3554687 0.132162,-0.1686198 0.314453,-0.296224 0.186849,-0.1321614 0.428386,-0.2096354 0.241536,-0.077474 0.546875,-0.077474 h 4.817057 v 1.1848958 h -4.817057 q -0.232422,0 -0.355469,0.1230468 -0.123047,0.1230469 -0.123047,0.3645834 v 3.1992186 q 0,0.2278646 0.123047,0.3554687 0.127604,0.1230469 0.355469,0.1230469 h 3.686849 v -1.485677 h -3.153646 v -1.1940104 h 3.741536 q 0.127604,0 0.236979,0.05013 0.109375,0.045573 0.186849,0.1276042 0.08203,0.082031 0.127605,0.1914062 0.04557,0.1048177 0.04557,0.2278646 z" | |||
style="font-weight:bold;font-size:9.33333302px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path364" /> | |||
<path | |||
d="M 26.339842,0 H 25.154946 V -1.6041666 H 20.989582 V 0 h -1.184896 v -3.267578 q 0,-0.7154948 0.246094,-1.3170573 0.246094,-0.6015624 0.683594,-1.0345051 0.4375,-0.4329427 1.034505,-0.6744792 0.597005,-0.2415364 1.303385,-0.2415364 h 2.670573 q 0.123047,0 0.232422,0.045573 0.109375,0.045573 0.191406,0.1276042 0.08203,0.082031 0.127604,0.1914062 0.04557,0.109375 0.04557,0.2324219 z m -5.35026,-2.7890624 h 4.165364 v -2.5611978 h -2.082682 q -0.05469,0 -0.232422,0.018229 -0.173177,0.013672 -0.405599,0.077474 -0.227864,0.063802 -0.483072,0.1959635 -0.255209,0.1321615 -0.469402,0.3645833 -0.214192,0.2324219 -0.355468,0.5833334 -0.136719,0.3463541 -0.136719,0.8430989 z" | |||
style="font-weight:bold;font-size:9.33333302px;font-family:Audiowide, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path366" /> | |||
</g> | |||
<path | |||
transform="translate(11.5,-5)" | |||
style="fill:#dddddd" | |||
d="M 0,0 H 3 V 3 H 0 Z" | |||
id="rect113" /> | |||
</g> | |||
<!-- <polyline points="0,0 0,300" stroke="#0f0" stroke-width="1" fill="none" transform="translate(22.5 0)" /> --> | |||
<g | |||
aria-label="RATE" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="text119"> | |||
<path | |||
d="M 12.613281,22.917969 H 11.679688 V 25 h -1.171875 v -5.6875 h 2.113281 q 1.007812,0 1.554687,0.449219 0.546875,0.449218 0.546875,1.269531 0,0.582031 -0.253906,0.972656 -0.25,0.386719 -0.761719,0.617188 L 14.9375,24.945312 V 25 H 13.679688 Z M 11.679688,21.96875 H 12.625 q 0.441406,0 0.683594,-0.222656 0.242187,-0.226563 0.242187,-0.621094 0,-0.402344 -0.230468,-0.632813 -0.226563,-0.230468 -0.699219,-0.230468 h -0.941406 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path261" /> | |||
<path | |||
d="M 20.328125,23.828125 H 18.273437 L 17.882812,25 h -1.246093 l 2.117187,-5.6875 h 1.085938 L 21.96875,25 h -1.246094 z m -1.738281,-0.949219 h 1.421875 L 19.296875,20.75 Z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path263" /> | |||
<path | |||
d="M 27.820312,20.261719 H 26.078125 V 25 H 24.90625 V 20.261719 H 23.1875 V 19.3125 h 4.632812 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path265" /> | |||
<path | |||
d="m 33.414062,22.535156 h -2.25 v 1.523438 h 2.640625 V 25 h -3.8125 v -5.6875 h 3.804688 v 0.949219 h -2.632813 v 1.355468 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path267" /> | |||
</g> | |||
<g | |||
id="use121" | |||
transform="translate(0,28)"> | |||
<g | |||
id="g257" | |||
transform="translate(22.5,22.5)"> | |||
<path | |||
transform="rotate(120,-8.5,4.9074773)" | |||
style="stroke:#333333;stroke-width:1" | |||
d="M 0,0 H 4" | |||
id="polyline235" /> | |||
<path | |||
transform="rotate(150,-8.5,2.2775681)" | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline237" /> | |||
<path | |||
transform="rotate(-180,-8.5,0)" | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline239" /> | |||
<path | |||
transform="rotate(-150,-8.5,-2.2775681)" | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline241" /> | |||
<path | |||
transform="rotate(-120,-8.5,-4.9074773)" | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline243" /> | |||
<path | |||
transform="rotate(-90,-8.5,-8.5)" | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline245" /> | |||
<path | |||
transform="rotate(-60,-8.5,-14.722432)" | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline247" /> | |||
<path | |||
transform="rotate(-30,-8.5,-31.722432)" | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline249" /> | |||
<path | |||
transform="translate(17)" | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline251" /> | |||
<path | |||
transform="rotate(30,-8.5,31.722432)" | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline253" /> | |||
<path | |||
transform="rotate(60,-8.5,14.722432)" | |||
style="stroke:#333333;stroke-width:0.30000001" | |||
d="M 0,0 H 2.5" | |||
id="polyline255" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g127" | |||
transform="translate(5.5,74)"> | |||
<path | |||
style="fill:#fafafa" | |||
d="m 5,0 h 24 c 2.77,0 5,2.23 5,5 v 29 c 0,2.77 -2.23,5 -5,5 H 5 C 2.23,39 0,36.77 0,34 V 5 C 0,2.23 2.23,0 5,0 Z" | |||
id="rect123" /> | |||
<g | |||
aria-label="CV" | |||
transform="translate(11,35)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text125"> | |||
<path | |||
d="m 4.1438801,-1.578776 q -0.055338,0.76497394 -0.5664062,1.20442705 -0.5078125,0.43945312 -1.3411458,0.43945312 -0.9114583,0 -1.43554687,-0.61197916 Q 0.27994791,-1.1621093 0.27994791,-2.2330729 v -0.2897135 q 0,-0.6835937 0.24088541,-1.2044271 0.24088541,-0.5208333 0.68684898,-0.797526 0.4492187,-0.2799479 1.0416666,-0.2799479 0.8203125,0 1.3216146,0.4394531 0.501302,0.4394531 0.579427,1.233724 H 3.173828 q -0.035807,-0.4589844 -0.2571614,-0.6640625 -0.218099,-0.2083334 -0.6673177,-0.2083334 -0.4882812,0 -0.7324219,0.3515625 -0.2408854,0.3483073 -0.2473958,1.0839844 v 0.3580729 q 0,0.7682291 0.2311198,1.1230468 0.234375,0.35481774 0.7356771,0.35481774 0.4524739,0 0.6738281,-0.20507812 Q 3.1347656,-1.1458333 3.1673176,-1.578776 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path282" /> | |||
<path | |||
d="m 8.5364581,-1.1751302 1.0742187,-3.564453 H 10.697916 L 9.0475258,0 H 8.0286456 L 6.3847655,-4.7395832 h 1.0839843 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path284" /> | |||
</g> | |||
</g> | |||
<g | |||
aria-label="OFFSET" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="text131"> | |||
<path | |||
d="m 9.6796875,125.28516 q 0,0.83984 -0.296875,1.47265 -0.296875,0.63282 -0.8515625,0.97657 -0.5507813,0.34374 -1.265625,0.34374 -0.7070313,0 -1.2617188,-0.33984 -0.5546875,-0.33984 -0.859375,-0.96875 -0.3046875,-0.63281 -0.3085937,-1.45312 v -0.28125 q 0,-0.83985 0.3007812,-1.47657 0.3046875,-0.64062 0.8554688,-0.98046 0.5546875,-0.34375 1.265625,-0.34375 0.7109375,0 1.2617188,0.34375 0.5546875,0.33984 0.8554687,0.98046 0.3046875,0.63672 0.3046875,1.47266 z m -1.1875,-0.25782 q 0,-0.89453 -0.3203125,-1.35937 -0.3203125,-0.46484 -0.9140625,-0.46484 -0.5898438,0 -0.9101563,0.46093 -0.3203125,0.45703 -0.3242187,1.34375 v 0.27735 q 0,0.87109 0.3203125,1.35156 0.3203125,0.48047 0.921875,0.48047 0.5898437,0 0.90625,-0.46094 0.3164063,-0.46484 0.3203125,-1.35156 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path287" /> | |||
<path | |||
d="m 15.460938,125.67578 h -2.25 V 128 h -1.171875 v -5.6875 h 3.703125 v 0.94922 h -2.53125 v 1.46875 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path289" /> | |||
<path | |||
d="m 21.351562,125.67578 h -2.25 V 128 h -1.171875 v -5.6875 h 3.703125 v 0.94922 h -2.53125 v 1.46875 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path291" /> | |||
<path | |||
d="m 26.769531,126.50781 q 0,-0.33203 -0.234375,-0.50781 -0.234375,-0.17969 -0.84375,-0.375 -0.609375,-0.19922 -0.964844,-0.39062 -0.96875,-0.52344 -0.96875,-1.41016 0,-0.46094 0.257813,-0.82031 0.261719,-0.36328 0.746094,-0.56641 0.488281,-0.20312 1.09375,-0.20312 0.609375,0 1.085937,0.22265 0.476563,0.21875 0.738281,0.6211 0.265625,0.40234 0.265625,0.91406 h -1.171875 q 0,-0.39063 -0.246093,-0.60547 -0.246094,-0.21875 -0.691407,-0.21875 -0.429687,0 -0.667968,0.18359 -0.238282,0.17969 -0.238282,0.47657 0,0.27734 0.277344,0.46484 0.28125,0.1875 0.824219,0.35156 1,0.30078 1.457031,0.7461 0.457031,0.44531 0.457031,1.10937 0,0.73828 -0.558593,1.16016 -0.558594,0.41796 -1.503907,0.41796 -0.65625,0 -1.195312,-0.23828 -0.539063,-0.24218 -0.824219,-0.66015 -0.28125,-0.41797 -0.28125,-0.96875 h 1.175781 q 0,0.9414 1.125,0.9414 0.417969,0 0.652344,-0.16796 0.234375,-0.17188 0.234375,-0.47657 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path293" /> | |||
<path | |||
d="m 33.664062,125.53516 h -2.25 v 1.52343 h 2.640625 V 128 h -3.8125 v -5.6875 h 3.804688 v 0.94922 h -2.632813 v 1.35547 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path295" /> | |||
<path | |||
d="M 40.601562,123.26172 H 38.859375 V 128 H 37.6875 v -4.73828 h -1.71875 v -0.94922 h 4.632812 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:1.5px;fill:#333333" | |||
id="path297" /> | |||
</g> | |||
<g | |||
id="use133" | |||
transform="translate(2.5,125)"> | |||
<g | |||
id="g231" | |||
transform="translate(20,20)"> | |||
<g | |||
id="g221" | |||
transform="rotate(-90,-5,-5)"> | |||
<path | |||
style="stroke:#333333;stroke-width:1" | |||
d="M 0,0 H 4" | |||
id="polyline219" /> | |||
</g> | |||
<path | |||
id="path223" | |||
transform="rotate(20)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 1 12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path225" | |||
transform="rotate(43)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 1 12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path227" | |||
transform="rotate(-20)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 0 -12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path229" | |||
transform="rotate(-43)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 0 -12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
</g> | |||
</g> | |||
<g | |||
aria-label="SCALE" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text137"> | |||
<path | |||
d="m 8.9570313,167.50781 q 0,-0.33203 -0.234375,-0.50781 -0.234375,-0.17969 -0.8437501,-0.375 -0.609375,-0.19922 -0.9648437,-0.39063 -0.96875,-0.52343 -0.96875,-1.41015 0,-0.46094 0.2578125,-0.82031 0.2617187,-0.36329 0.7460937,-0.56641 0.4882813,-0.20313 1.0937501,-0.20313 0.609375,0 1.0859375,0.22266 0.4765625,0.21875 0.7382812,0.62109 0.2656255,0.40235 0.2656255,0.91407 H 8.9609375 q 0,-0.39063 -0.2460937,-0.60547 -0.2460938,-0.21875 -0.6914063,-0.21875 -0.4296875,0 -0.6679688,0.18359 -0.2382812,0.17969 -0.2382812,0.47656 0,0.27735 0.2773437,0.46485 0.28125,0.1875 0.8242188,0.35156 1,0.30078 1.4570313,0.74609 0.4570317,0.44532 0.4570317,1.10938 0,0.73828 -0.5585942,1.16016 -0.5585938,0.41796 -1.5039063,0.41796 -0.65625,0 -1.1953125,-0.23828 -0.5390625,-0.24218 -0.8242188,-0.66015 -0.28125,-0.41797 -0.28125,-0.96875 h 1.1757813 q 0,0.9414 1.125,0.9414 0.4179688,0 0.6523438,-0.16797 0.234375,-0.17187 0.234375,-0.47656 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path301" /> | |||
<path | |||
d="m 17.394531,167.10547 q -0.06641,0.91797 -0.679687,1.44531 -0.609375,0.52734 -1.609375,0.52734 -1.09375,0 -1.722656,-0.73437 -0.625,-0.73828 -0.625,-2.02344 v -0.34765 q 0,-0.82032 0.289062,-1.44532 0.289063,-0.625 0.824219,-0.95703 0.539062,-0.33594 1.25,-0.33594 0.984375,0 1.585937,0.52735 0.601563,0.52734 0.695313,1.48047 h -1.171875 q -0.04297,-0.55078 -0.308594,-0.79688 -0.261719,-0.25 -0.800781,-0.25 -0.585938,0 -0.878906,0.42188 -0.289063,0.41797 -0.296875,1.30078 v 0.42969 q 0,0.92187 0.277343,1.34765 0.28125,0.42578 0.882813,0.42578 0.542969,0 0.808594,-0.24609 0.269531,-0.25 0.308593,-0.76953 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path303" /> | |||
<path | |||
d="M 23.375,167.82812 H 21.320312 L 20.929687,169 h -1.246093 l 2.117187,-5.6875 h 1.085938 L 25.015625,169 h -1.246094 z m -1.738281,-0.94921 h 1.421875 L 22.34375,164.75 Z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path305" /> | |||
<path | |||
d="m 28.726562,168.05859 h 2.488282 V 169 h -3.660157 v -5.6875 h 1.171875 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path307" /> | |||
<path | |||
d="m 37.304687,166.53516 h -2.25 v 1.52343 h 2.640625 V 169 h -3.8125 v -5.6875 H 37.6875 v 0.94922 h -2.632813 v 1.35547 h 2.25 z" | |||
style="font-weight:bold;font-size:8px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path309" /> | |||
</g> | |||
<g | |||
id="use139" | |||
transform="translate(2.5,166)"> | |||
<g | |||
id="g215" | |||
transform="translate(20,20)"> | |||
<g | |||
id="g205" | |||
transform="rotate(60,-5,8.660254)"> | |||
<path | |||
style="stroke:#333333;stroke-width:1" | |||
d="M 0,0 H 4" | |||
id="polyline203" /> | |||
</g> | |||
<path | |||
id="path207" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 1 12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path209" | |||
transform="rotate(43)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 1 12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path211" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 0 -12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
<path | |||
id="path213" | |||
transform="rotate(-43)" | |||
d="M 0,-12.5 A 12.5,12.5 0 0 0 -12.5,0" | |||
inkscape:connector-curvature="0" | |||
style="fill:none;stroke:#333333;stroke-width:0.5;stroke-linecap:round" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g151" | |||
transform="translate(0,207)"> | |||
<g | |||
id="g149" | |||
transform="translate(5.5)"> | |||
<path | |||
transform="translate(0,78)" | |||
style="fill:#fafafa" | |||
d="M 0,0 H 34 V 10 H 0 Z" | |||
id="rect143" /> | |||
<path | |||
style="fill:#fafafa" | |||
d="m 5,0 h 24 c 2.77,0 5,2.23 5,5 v 72 c 0,2.77 -2.23,5 -5,5 H 5 C 2.23,82 0,79.77 0,77 V 5 C 0,2.23 2.23,0 5,0 Z" | |||
id="rect145" /> | |||
<g | |||
aria-label="GATE" | |||
transform="translate(5.5,35)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text147"> | |||
<path | |||
d="m 4.173177,-0.59895832 q -0.2636719,0.3157552 -0.7454427,0.49153645 -0.4817708,0.17252604 -1.0677083,0.17252604 -0.6152344,0 -1.0807292,-0.26692708 Q 0.81705727,-0.4720052 0.56315103,-0.98307289 0.31249999,-1.4941406 0.30598958,-2.1842447 v -0.3222657 q 0,-0.7096354 0.2376302,-1.2272135 0.24088541,-0.5208333 0.69010412,-0.7942708 0.452474,-0.2766927 1.0579427,-0.2766927 0.843099,0 1.3183594,0.4036458 0.4752604,0.4003907 0.563151,1.1686198 H 3.2226562 Q 3.157552,-3.6393228 2.9329426,-3.8281249 2.7115885,-4.016927 2.3209635,-4.016927 q -0.4980469,0 -0.7584635,0.374349 -0.2604167,0.3743489 -0.2636719,1.1132812 v 0.3027344 q 0,0.7454426 0.2832031,1.126302 0.2832031,0.38085938 0.8300781,0.38085938 0.5501302,0 0.7845052,-0.234375 V -1.7708333 H 2.3079427 v -0.719401 H 4.173177 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path315" /> | |||
<path | |||
d="M 9.6432288,-0.97656248 H 7.9309892 L 7.6054684,0 H 6.567057 L 8.3313798,-4.7395832 H 9.2363277 L 11.010416,0 H 9.9720048 Z M 8.1946611,-1.7675781 H 9.3795569 L 8.7838538,-3.5416666 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path317" /> | |||
<path | |||
d="M 16.636718,-3.9485676 H 15.184895 V 0 h -0.976562 v -3.9485676 h -1.432292 v -0.7910156 h 3.860677 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path319" /> | |||
<path | |||
d="m 22.048177,-2.0540364 h -1.875 v 1.26953121 h 2.200521 V 0 h -3.177083 v -4.7395832 h 3.170572 v 0.7910156 h -2.19401 v 1.1295573 h 1.875 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path321" /> | |||
</g> | |||
</g> | |||
</g> | |||
<g | |||
id="g167" | |||
transform="translate(0,207)"> | |||
<g | |||
id="g155" | |||
transform="translate(7,41)"> | |||
<g | |||
aria-label="TRK" | |||
transform="translate(7.3,5.5)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:0.5px;fill:#333333" | |||
id="text153"> | |||
<path | |||
d="M 3.9908853,-3.9485676 H 2.5390624 V 0 H 1.5625 V -3.9485676 H 0.13020833 V -4.7395832 H 3.9908853 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:0.5px;fill:#333333" | |||
id="path324" /> | |||
<path | |||
d="M 6.8053383,-1.735026 H 6.0273436 V 0 H 5.0507811 v -4.7395832 h 1.7610676 q 0.8398438,0 1.2955729,0.3743489 0.4557292,0.374349 0.4557292,1.0579427 0,0.485026 -0.2115885,0.8105469 -0.2083334,0.3222656 -0.6347657,0.5143229 l 1.0253906,1.93684888 V 0 H 7.6940102 Z M 6.0273436,-2.5260416 H 6.815104 q 0.3678385,0 0.5696614,-0.1855469 0.2018229,-0.1888021 0.2018229,-0.5175781 0,-0.3352864 -0.1920573,-0.5273437 Q 7.2057289,-3.9485676 6.8118487,-3.9485676 H 6.0273436 Z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:0.5px;fill:#333333" | |||
id="path326" /> | |||
<path | |||
d="m 11.292968,-1.9010416 -0.507812,0.546875 V 0 H 9.8085931 v -4.7395832 h 0.9765629 v 2.1484374 l 0.429687,-0.5891927 1.207682,-1.5592447 h 1.201172 L 11.940755,-2.6334635 13.672525,0 h -1.162109 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:0.5px;fill:#333333" | |||
id="path328" /> | |||
</g> | |||
</g> | |||
<g | |||
id="g165" | |||
transform="translate(5.5,54)"> | |||
<path | |||
transform="translate(0,-3)" | |||
style="fill:#bbbbbb" | |||
d="M 0,0 H 34 V 10 H 0 Z" | |||
id="rect157" /> | |||
<path | |||
style="fill:#bbbbbb" | |||
d="m 5,0 h 24 c 2.77,0 5,2.23 5,5 v 60 c 0,2.77 -2.23,5 -5,5 H 5 C 2.23,70 0,67.77 0,65 V 5 C 0,2.23 2.23,0 5,0 Z" | |||
id="rect159" /> | |||
<g | |||
aria-label="HOLD" | |||
transform="translate(5.8,32)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text161"> | |||
<path | |||
d="M 4.2805989,0 H 3.3040364 V -2.03125 H 1.3997395 V 0 H 0.42317707 V -4.7395832 H 1.3997395 v 1.9205729 h 1.9042969 v -1.9205729 h 0.9765625 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path333" /> | |||
<path | |||
d="m 11.029948,-2.2623697 q 0,0.6998697 -0.247396,1.2272135 -0.247396,0.52734371 -0.709636,0.81380204 -0.4589839,0.28645833 -1.054687,0.28645833 -0.5891927,0 -1.0514323,-0.28320312 Q 7.5045571,-0.50130207 7.2506509,-1.0253906 6.9967446,-1.5527343 6.9934894,-2.2363281 v -0.234375 q 0,-0.6998697 0.2506511,-1.2304687 0.2539062,-0.5338541 0.7128906,-0.8170573 0.4622395,-0.2864583 1.0546874,-0.2864583 0.5924479,0 1.0514325,0.2864583 0.462239,0.2832032 0.71289,0.8170573 0.253907,0.530599 0.253907,1.2272135 z m -0.989584,-0.2148438 q 0,-0.7454427 -0.2669267,-1.1328125 -0.2669271,-0.3873697 -0.7617188,-0.3873697 -0.4915364,0 -0.7584635,0.3841145 -0.2669271,0.3808594 -0.2701823,1.1197917 v 0.2311198 q 0,0.7259114 0.2669271,1.126302 0.2669271,0.40039063 0.7682292,0.40039063 0.4915364,0 0.7552083,-0.38411453 0.2636717,-0.3873698 0.2669267,-1.1263021 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path335" /> | |||
<path | |||
d="m 14.722656,-0.78450519 h 2.073567 V 0 h -3.05013 v -4.7395832 h 0.976563 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path337" /> | |||
<path | |||
d="m 19.352865,0 v -4.7395832 h 1.458333 q 0.625,0 1.116536,0.2832031 0.494792,0.2799479 0.771485,0.8007812 0.276692,0.5175781 0.276692,1.1783854 v 0.218099 q 0,0.6608072 -0.273437,1.1751302 Q 22.432292,-0.56966144 21.9375,-0.28645833 21.442708,-0.00325521 20.820963,0 Z m 0.976562,-3.9485676 v 3.16406241 h 0.472005 q 0.572917,0 0.875651,-0.37434891 0.302735,-0.374349 0.309245,-1.0709636 v -0.250651 q 0,-0.7226562 -0.299479,-1.09375 -0.299479,-0.3743489 -0.875651,-0.3743489 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path339" /> | |||
</g> | |||
<g | |||
aria-label="OUT" | |||
transform="translate(8.3,67)" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="text163"> | |||
<path | |||
d="m 4.3164061,-2.2623697 q 0,0.6998697 -0.2473958,1.2272135 -0.2473958,0.52734371 -0.7096354,0.81380204 -0.4589843,0.28645833 -1.0546875,0.28645833 -0.5891926,0 -1.0514322,-0.28320312 Q 0.79101561,-0.50130207 0.53710936,-1.0253906 0.28320312,-1.5527343 0.27994791,-2.2363281 v -0.234375 q 0,-0.6998697 0.25065104,-1.2304687 0.25390624,-0.5338541 0.71289065,-0.8170573 0.4622395,-0.2864583 1.0546874,-0.2864583 0.5924479,0 1.0514323,0.2864583 0.4622396,0.2832032 0.7128906,0.8170573 0.2539062,0.530599 0.2539062,1.2272135 z M 3.3268228,-2.4772135 q 0,-0.7454427 -0.266927,-1.1328125 -0.2669271,-0.3873697 -0.7617188,-0.3873697 -0.4915364,0 -0.7584635,0.3841145 -0.2669271,0.3808594 -0.2701823,1.1197917 v 0.2311198 q 0,0.7259114 0.2669271,1.126302 0.2669271,0.40039063 0.7682291,0.40039063 0.4915365,0 0.7552084,-0.38411453 0.2636718,-0.3873698 0.266927,-1.1263021 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path342" /> | |||
<path | |||
d="m 10.619792,-4.7395832 v 3.1217447 q 0,0.77799477 -0.488282,1.23046872 -0.4850257,0.45247395 -1.3281246,0.45247395 -0.8300781,0 -1.3183594,-0.43945312 Q 6.9967448,-0.81380206 6.9869792,-1.5820312 v -3.157552 h 0.9765624 v 3.1282551 q 0,0.4654948 0.2213542,0.68033854 0.2246094,0.21158854 0.6184896,0.21158854 0.8235677,0 0.8365885,-0.86588538 v -3.1542968 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path344" /> | |||
<path | |||
d="M 16.988281,-3.9485676 H 15.536458 V 0 h -0.976563 v -3.9485676 h -1.432291 v -0.7910156 h 3.860677 z" | |||
style="font-weight:bold;font-size:6.66666651px;font-family:Roboto, sans-serif;letter-spacing:2px;fill:#333333" | |||
id="path346" /> | |||
</g> | |||
</g> | |||
</g> | |||
</svg> |
@@ -0,0 +1,98 @@ | |||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
<svg | |||
xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
xmlns:cc="http://creativecommons.org/ns#" | |||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
xmlns:svg="http://www.w3.org/2000/svg" | |||
xmlns="http://www.w3.org/2000/svg" | |||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |||
version="1.1" | |||
width="18" | |||
height="18" | |||
viewBox="0 0 18 18" | |||
id="svg28" | |||
sodipodi:docname="svg_render_tmp.svg" | |||
inkscape:version="0.92.2 5c3e80d, 2017-08-06"> | |||
<metadata | |||
id="metadata34"> | |||
<rdf:RDF> | |||
<cc:Work | |||
rdf:about=""> | |||
<dc:format>image/svg+xml</dc:format> | |||
<dc:type | |||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
</cc:Work> | |||
</rdf:RDF> | |||
</metadata> | |||
<defs | |||
id="defs32" /> | |||
<sodipodi:namedview | |||
pagecolor="#ffffff" | |||
bordercolor="#666666" | |||
borderopacity="1" | |||
objecttolerance="10" | |||
gridtolerance="10" | |||
guidetolerance="10" | |||
inkscape:pageopacity="0" | |||
inkscape:pageshadow="2" | |||
inkscape:window-width="468" | |||
inkscape:window-height="449" | |||
id="namedview30" | |||
showgrid="false" | |||
inkscape:zoom="13.111111" | |||
inkscape:cx="9" | |||
inkscape:cy="9" | |||
inkscape:window-x="0" | |||
inkscape:window-y="0" | |||
inkscape:window-maximized="0" | |||
inkscape:current-layer="svg28" /> | |||
<path | |||
style="fill:#888888" | |||
d="M 17.9,9 A 8.8999996,8.8999996 0 0 1 9,17.9 8.8999996,8.8999996 0 0 1 0.10000038,9 8.8999996,8.8999996 0 0 1 9,0.10000038 8.8999996,8.8999996 0 0 1 17.9,9 Z" | |||
id="circle2" /> | |||
<path | |||
style="fill:#333333" | |||
d="M 17.4,9 A 8.3999996,8.3999996 0 0 1 9,17.4 8.3999996,8.3999996 0 0 1 0.60000038,9 8.3999996,8.3999996 0 0 1 9,0.60000038 8.3999996,8.3999996 0 0 1 17.4,9 Z" | |||
id="circle4" /> | |||
<path | |||
style="fill:#55ff55" | |||
d="M 17.1,9 A 8.1000004,8.1000004 0 0 1 9,17.1 8.1000004,8.1000004 0 0 1 0.89999962,9 8.1000004,8.1000004 0 0 1 9,0.89999962 8.1000004,8.1000004 0 0 1 17.1,9 Z" | |||
id="circle6" /> | |||
<path | |||
style="fill:#666666;fill-opacity:0.5" | |||
d="M 17.1,9 A 8.1000004,8.1000004 0 0 1 9,17.1 8.1000004,8.1000004 0 0 1 0.89999962,9 8.1000004,8.1000004 0 0 1 9,0.89999962 8.1000004,8.1000004 0 0 1 17.1,9 Z" | |||
id="circle8" /> | |||
<path | |||
style="fill:#55ff55" | |||
d="M 16.8,9 A 7.8000002,7.8000002 0 0 1 9,16.8 7.8000002,7.8000002 0 0 1 1.1999998,9 7.8000002,7.8000002 0 0 1 9,1.1999998 7.8000002,7.8000002 0 0 1 16.8,9 Z" | |||
id="circle10" /> | |||
<path | |||
style="fill:#777777;fill-opacity:0.5" | |||
d="M 16.8,9 A 7.8000002,7.8000002 0 0 1 9,16.8 7.8000002,7.8000002 0 0 1 1.1999998,9 7.8000002,7.8000002 0 0 1 9,1.1999998 7.8000002,7.8000002 0 0 1 16.8,9 Z" | |||
id="circle12" /> | |||
<path | |||
style="fill:#55ff55" | |||
d="M 16.5,9 A 7.5,7.5 0 0 1 9,16.5 7.5,7.5 0 0 1 1.5,9 7.5,7.5 0 0 1 9,1.5 7.5,7.5 0 0 1 16.5,9 Z" | |||
id="circle14" /> | |||
<path | |||
style="fill:#888888;fill-opacity:0.5" | |||
d="M 16.5,9 A 7.5,7.5 0 0 1 9,16.5 7.5,7.5 0 0 1 1.5,9 7.5,7.5 0 0 1 9,1.5 7.5,7.5 0 0 1 16.5,9 Z" | |||
id="circle16" /> | |||
<path | |||
style="fill:#55ff55" | |||
d="M 16.2,9 A 7.1999998,7.1999998 0 0 1 9,16.2 7.1999998,7.1999998 0 0 1 1.8000002,9 7.1999998,7.1999998 0 0 1 9,1.8000002 7.1999998,7.1999998 0 0 1 16.2,9 Z" | |||
id="circle18" /> | |||
<path | |||
style="fill:#999999;fill-opacity:0.5" | |||
d="M 16.2,9 A 7.1999998,7.1999998 0 0 1 9,16.2 7.1999998,7.1999998 0 0 1 1.8000002,9 7.1999998,7.1999998 0 0 1 9,1.8000002 7.1999998,7.1999998 0 0 1 16.2,9 Z" | |||
id="circle20" /> | |||
<path | |||
style="fill:#55ff55" | |||
d="M 15.9,9 A 6.9000001,6.9000001 0 0 1 9,15.9 6.9000001,6.9000001 0 0 1 2.0999999,9 6.9000001,6.9000001 0 0 1 9,2.0999999 6.9000001,6.9000001 0 0 1 15.9,9 Z" | |||
id="circle22" /> | |||
<path | |||
style="fill:#aaaaaa;fill-opacity:0.5" | |||
d="M 15.9,9 A 6.9000001,6.9000001 0 0 1 9,15.9 6.9000001,6.9000001 0 0 1 2.0999999,9 6.9000001,6.9000001 0 0 1 9,2.0999999 6.9000001,6.9000001 0 0 1 15.9,9 Z" | |||
id="circle24" /> | |||
</svg> |