Browse Source

fix VST param assignment when module is duplicated; pre-select default VST MIDI input device; remove VultModules; add dBiz and Ohmer modules

pull/1639/head
bsp2 7 years ago
parent
commit
7c57fadba9
100 changed files with 116986 additions and 432 deletions
  1. +30
    -13
      README.md
  2. +4
    -0
      include/global_ui.hpp
  3. +1
    -0
      include/midi.hpp
  4. +121
    -0
      plugins/community/repos/BOKONTEPByteBeatMachine/LICENSE.txt
  5. +31
    -0
      plugins/community/repos/BOKONTEPByteBeatMachine/Makefile
  6. +66
    -0
      plugins/community/repos/BOKONTEPByteBeatMachine/README.md
  7. BIN
      plugins/community/repos/BOKONTEPByteBeatMachine/bytebeatmachine.png
  8. +4
    -0
      plugins/community/repos/BOKONTEPByteBeatMachine/make.objects
  9. +7
    -0
      plugins/community/repos/BOKONTEPByteBeatMachine/makefile.msvc
  10. +187
    -0
      plugins/community/repos/BOKONTEPByteBeatMachine/res/MyModule - Αντιγραφή.svg
  11. +222
    -0
      plugins/community/repos/BOKONTEPByteBeatMachine/res/MyModule.svg
  12. +231
    -0
      plugins/community/repos/BOKONTEPByteBeatMachine/src/MyModule.cpp
  13. +9
    -0
      plugins/community/repos/BOKONTEPByteBeatMachine/src/Template.cpp
  14. +9
    -0
      plugins/community/repos/BOKONTEPByteBeatMachine/src/Template.hpp
  15. +3672
    -0
      plugins/community/repos/BOKONTEPByteBeatMachine/src/duk_config.h
  16. +95142
    -0
      plugins/community/repos/BOKONTEPByteBeatMachine/src/duktape.c
  17. +1349
    -0
      plugins/community/repos/BOKONTEPByteBeatMachine/src/duktape.h
  18. +20
    -0
      plugins/community/repos/Ohmer/LICENSE.txt
  19. +27
    -0
      plugins/community/repos/Ohmer/Makefile
  20. +148
    -0
      plugins/community/repos/Ohmer/README.md
  21. +125
    -0
      plugins/community/repos/Ohmer/doc/CHANGELOG.txt
  22. +19
    -0
      plugins/community/repos/Ohmer/doc/Patch compatibility.txt
  23. BIN
      plugins/community/repos/Ohmer/doc/images/Blank_2HP_Screws_Opts.png
  24. BIN
      plugins/community/repos/Ohmer/doc/images/KlokSpid.png
  25. BIN
      plugins/community/repos/Ohmer/doc/images/Logo_Ohmer.png
  26. BIN
      plugins/community/repos/Ohmer/doc/images/Metriks.png
  27. BIN
      plugins/community/repos/Ohmer/doc/images/Ohmer_Modules.png
  28. BIN
      plugins/community/repos/Ohmer/doc/images/RKD-RKDBRK.png
  29. +13
    -0
      plugins/community/repos/Ohmer/make.objects
  30. +1
    -1
      plugins/community/repos/Ohmer/makefile.msvc
  31. +70
    -0
      plugins/community/repos/Ohmer/res/Blank_16HP.svg
  32. +63
    -0
      plugins/community/repos/Ohmer/res/Blank_1HP.svg
  33. +63
    -0
      plugins/community/repos/Ohmer/res/Blank_2HP.svg
  34. +70
    -0
      plugins/community/repos/Ohmer/res/Blank_32HP.svg
  35. +65
    -0
      plugins/community/repos/Ohmer/res/Blank_4HP.svg
  36. +65
    -0
      plugins/community/repos/Ohmer/res/Blank_8HP.svg
  37. +338
    -0
      plugins/community/repos/Ohmer/res/KlokSpid_Absolute_Night.svg
  38. +338
    -0
      plugins/community/repos/Ohmer/res/KlokSpid_Carbon_Signature.svg
  39. +388
    -0
      plugins/community/repos/Ohmer/res/KlokSpid_Classic.svg
  40. +338
    -0
      plugins/community/repos/Ohmer/res/KlokSpid_Dark_Signature.svg
  41. +337
    -0
      plugins/community/repos/Ohmer/res/KlokSpid_Deepblue_Signature.svg
  42. +338
    -0
      plugins/community/repos/Ohmer/res/KlokSpid_Stage_Repro.svg
  43. BIN
      plugins/community/repos/Ohmer/res/Manuals/RKD User's Manual.pdf
  44. +322
    -0
      plugins/community/repos/Ohmer/res/Metriks_Absolute_Night.svg
  45. +320
    -0
      plugins/community/repos/Ohmer/res/Metriks_Carbon_Signature.svg
  46. +319
    -0
      plugins/community/repos/Ohmer/res/Metriks_Classic.svg
  47. +320
    -0
      plugins/community/repos/Ohmer/res/Metriks_Dark_Signature.svg
  48. +320
    -0
      plugins/community/repos/Ohmer/res/Metriks_Deepblue_Signature.svg
  49. +320
    -0
      plugins/community/repos/Ohmer/res/Metriks_Stage_Repro.svg
  50. +411
    -0
      plugins/community/repos/Ohmer/res/RKD.svg
  51. +945
    -0
      plugins/community/repos/Ohmer/res/RKDBRK.svg
  52. +352
    -0
      plugins/community/repos/Ohmer/res/RKD_PCB.svg
  53. +103
    -0
      plugins/community/repos/Ohmer/res/Splitter1x9.svg
  54. +449
    -0
      plugins/community/repos/Ohmer/res/components/CL1362_In.svg
  55. +449
    -0
      plugins/community/repos/Ohmer/res/components/CL1362_In_RR.svg
  56. +445
    -0
      plugins/community/repos/Ohmer/res/components/CL1362_Out.svg
  57. +188
    -0
      plugins/community/repos/Ohmer/res/components/KS_Button_Down_Gold.svg
  58. +188
    -0
      plugins/community/repos/Ohmer/res/components/KS_Button_Down_Silver.svg
  59. +188
    -0
      plugins/community/repos/Ohmer/res/components/KS_Button_Up_Gold.svg
  60. +188
    -0
      plugins/community/repos/Ohmer/res/components/KS_Button_Up_Silver.svg
  61. +234
    -0
      plugins/community/repos/Ohmer/res/components/KS_Encoder.svg
  62. +97
    -0
      plugins/community/repos/Ohmer/res/components/NKKH_0.svg
  63. +98
    -0
      plugins/community/repos/Ohmer/res/components/NKKH_1.svg
  64. +85
    -0
      plugins/community/repos/Ohmer/res/components/PCB_BJ_Off.svg
  65. +85
    -0
      plugins/community/repos/Ohmer/res/components/PCB_BJ_On.svg
  66. +200
    -0
      plugins/community/repos/Ohmer/res/components/PJ301M_In.svg
  67. +200
    -0
      plugins/community/repos/Ohmer/res/components/PJ301M_Out.svg
  68. +121
    -0
      plugins/community/repos/Ohmer/res/components/Torx_Gold.svg
  69. +121
    -0
      plugins/community/repos/Ohmer/res/components/Torx_Silver.svg
  70. BIN
      plugins/community/repos/Ohmer/res/fonts/LEDCounter7.ttf
  71. BIN
      plugins/community/repos/Ohmer/res/fonts/digital-readout.medium.ttf
  72. +53
    -0
      plugins/community/repos/Ohmer/res/fonts/readme-LEDCounter7.txt
  73. +49
    -0
      plugins/community/repos/Ohmer/src/BlankPanel16HP.cpp
  74. +47
    -0
      plugins/community/repos/Ohmer/src/BlankPanel1HP.cpp
  75. +145
    -0
      plugins/community/repos/Ohmer/src/BlankPanel2HP.cpp
  76. +49
    -0
      plugins/community/repos/Ohmer/src/BlankPanel32HP.cpp
  77. +49
    -0
      plugins/community/repos/Ohmer/src/BlankPanel4HP.cpp
  78. +49
    -0
      plugins/community/repos/Ohmer/src/BlankPanel8HP.cpp
  79. +1932
    -0
      plugins/community/repos/Ohmer/src/KlokSpid.cpp
  80. +1162
    -0
      plugins/community/repos/Ohmer/src/Metriks.cpp
  81. +36
    -0
      plugins/community/repos/Ohmer/src/Ohmer.cpp
  82. +175
    -0
      plugins/community/repos/Ohmer/src/Ohmer.hpp
  83. +1115
    -0
      plugins/community/repos/Ohmer/src/RKD.cpp
  84. +1042
    -0
      plugins/community/repos/Ohmer/src/RKDBRK.cpp
  85. +104
    -0
      plugins/community/repos/Ohmer/src/Splitter1x9.cpp
  86. +0
    -12
      plugins/community/repos/VultModules/LICENSE.txt
  87. +0
    -11
      plugins/community/repos/VultModules/Makefile
  88. +0
    -52
      plugins/community/repos/VultModules/README.md
  89. BIN
      plugins/community/repos/VultModules/images/Debriatus-render.png
  90. BIN
      plugins/community/repos/VultModules/images/Lateralus-render.png
  91. BIN
      plugins/community/repos/VultModules/images/Rescomb-render.png
  92. BIN
      plugins/community/repos/VultModules/images/Splie-render.png
  93. BIN
      plugins/community/repos/VultModules/images/Stabile-render.png
  94. BIN
      plugins/community/repos/VultModules/images/Tangents-render.png
  95. BIN
      plugins/community/repos/VultModules/images/Tohe-render.png
  96. BIN
      plugins/community/repos/VultModules/images/Trummor-render.png
  97. +0
    -13
      plugins/community/repos/VultModules/make.objects
  98. +0
    -297
      plugins/community/repos/VultModules/res/Debriatus.svg
  99. +0
    -15
      plugins/community/repos/VultModules/res/Jack.svg
  100. +0
    -18
      plugins/community/repos/VultModules/res/Knob.svg

+ 30
- 13
README.md View File

@@ -23,7 +23,7 @@ Tested in
# Downloads
The current release can be found in the [vst2_bin/](vst2_bin/) folder.

Here's a snapshot of it: [veeseevstrack_0_6_1_win64_bin-11Jul2018.7z](dist/veeseevstrack_0_6_1_win64_bin-11Jul2018.7z) (64bit)
Here's a snapshot of it: [veeseevstrack_0_6_1_win64_bin-12Jul2018.7z](dist/veeseevstrack_0_6_1_win64_bin-12Jul2018.7z) (64bit)

**WARNING: DON'T TRY TO USE THE INSTRUMENT AND EFFECT PLUGINS IN THE SAME PROJECT OR YOUR DAW WILL CRASH.**

@@ -41,7 +41,7 @@ Here's a demo video of it: https://vimeo.com/277703414

# Add-on modules

The following (459) add-on modules are statically linked with the VST plugin:
The following (478) add-on modules are statically linked with the VST plugin:
- Alikins.IdleSwitch
- Alikins.MomentaryOnButtons
- Alikins.BigMuteButton
@@ -204,6 +204,22 @@ The following (459) add-on modules are statically linked with the VST plugin:
- cf.PATCH
- cf.LEDS
- cf.DAVE
- dBiz.dBizBlank
- dBiz.Multiple
- dBiz.Contorno
- dBiz.Chord
- dBiz.Utility
- dBiz.Transpose
- dBiz.Bene
- dBiz.Bene2
- dBiz.BenePads
- dBiz.SubMix
- dBiz.Remix
- dBiz.PerfMixer
- dBiz.VCA530
- dBiz.Verbo
- dBiz.DVCO
- dBiz.DAOSC
- DHE-Modules.BoosterStage
- DHE-Modules.Cubic
- DHE-Modules.Hostage
@@ -377,6 +393,17 @@ The following (459) add-on modules are statically linked with the VST plugin:
- ML_modules.TrigSwitch2
- ML_modules.TrigSwitch3
- ML_modules.TrigSwitch3_2
- Ohmer.KlokSpid
- Ohmer.RKD
- Ohmer.RKDBRK
- Ohmer.Metriks
- Ohmer.Splitter1x9
- Ohmer.BlankPanel1
- Ohmer.BlankPanel2
- Ohmer.BlankPanel4
- Ohmer.BlankPanel8
- Ohmer.BlankPanel16
- Ohmer.BlankPanel32
- Qwelk.Automaton
- Qwelk.Byte
- Qwelk.Chaos
@@ -493,17 +520,7 @@ The following (459) add-on modules are statically linked with the VST plugin:
- Valley.UGraph
- Valley.Dexter
- Valley.Plateau
- VultModules.Debriatus
- VultModules.Lateralus
- VultModules.Rescomb
- VultModules.Splie
- VultModules.Stabile
- VultModules.Tangents
- VultModules.Tohe
- VultModules.Trummor

Please notice that the Audible/Mutable Instruments modules appear under a different name in the UI.
For example, "Clouds" is listed as "Texture Synthesizer".



# License


+ 4
- 0
include/global_ui.hpp View File

@@ -83,6 +83,8 @@ struct GlobalUI {
RackScene *gRackScene;

std::mutex mtx_param;

bool bLoadVSTUniqueParamBaseId; // temp. false while cloning ModuleWidget
} app;

#ifdef USE_VST2
@@ -131,6 +133,8 @@ struct GlobalUI {
app.gRackWidget = NULL;
app.gToolbar = NULL;
app.gRackScene = NULL;
app.bLoadVSTUniqueParamBaseId = true;

#ifdef USE_VST2
vst2.b_close_window = 0;


+ 1
- 0
include/midi.hpp View File

@@ -85,6 +85,7 @@ struct MidiIO {
/** Not owned */
MidiDriver *driver = NULL;

MidiIO(void);
virtual ~MidiIO();

std::vector<int> getDriverIds();


+ 121
- 0
plugins/community/repos/BOKONTEPByteBeatMachine/LICENSE.txt View File

@@ -0,0 +1,121 @@
Creative Commons Legal Code

CC0 1.0 Universal

CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN
ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS
PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM
THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED
HEREUNDER.

Statement of Purpose

The laws of most jurisdictions throughout the world automatically confer
exclusive Copyright and Related Rights (defined below) upon the creator
and subsequent owner(s) (each and all, an "owner") of an original work of
authorship and/or a database (each, a "Work").

Certain owners wish to permanently relinquish those rights to a Work for
the purpose of contributing to a commons of creative, cultural and
scientific works ("Commons") that the public can reliably and without fear
of later claims of infringement build upon, modify, incorporate in other
works, reuse and redistribute as freely as possible in any form whatsoever
and for any purposes, including without limitation commercial purposes.
These owners may contribute to the Commons to promote the ideal of a free
culture and the further production of creative, cultural and scientific
works, or to gain reputation or greater distribution for their Work in
part through the use and efforts of others.

For these and/or other purposes and motivations, and without any
expectation of additional consideration or compensation, the person
associating CC0 with a Work (the "Affirmer"), to the extent that he or she
is an owner of Copyright and Related Rights in the Work, voluntarily
elects to apply CC0 to the Work and publicly distribute the Work under its
terms, with knowledge of his or her Copyright and Related Rights in the
Work and the meaning and intended legal effect of CC0 on those rights.

1. Copyright and Related Rights. A Work made available under CC0 may be
protected by copyright and related or neighboring rights ("Copyright and
Related Rights"). Copyright and Related Rights include, but are not
limited to, the following:

i. the right to reproduce, adapt, distribute, perform, display,
communicate, and translate a Work;
ii. moral rights retained by the original author(s) and/or performer(s);
iii. publicity and privacy rights pertaining to a person's image or
likeness depicted in a Work;
iv. rights protecting against unfair competition in regards to a Work,
subject to the limitations in paragraph 4(a), below;
v. rights protecting the extraction, dissemination, use and reuse of data
in a Work;
vi. database rights (such as those arising under Directive 96/9/EC of the
European Parliament and of the Council of 11 March 1996 on the legal
protection of databases, and under any national implementation
thereof, including any amended or successor version of such
directive); and
vii. other similar, equivalent or corresponding rights throughout the
world based on applicable law or treaty, and any national
implementations thereof.

2. Waiver. To the greatest extent permitted by, but not in contravention
of, applicable law, Affirmer hereby overtly, fully, permanently,
irrevocably and unconditionally waives, abandons, and surrenders all of
Affirmer's Copyright and Related Rights and associated claims and causes
of action, whether now known or unknown (including existing as well as
future claims and causes of action), in the Work (i) in all territories
worldwide, (ii) for the maximum duration provided by applicable law or
treaty (including future time extensions), (iii) in any current or future
medium and for any number of copies, and (iv) for any purpose whatsoever,
including without limitation commercial, advertising or promotional
purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each
member of the public at large and to the detriment of Affirmer's heirs and
successors, fully intending that such Waiver shall not be subject to
revocation, rescission, cancellation, termination, or any other legal or
equitable action to disrupt the quiet enjoyment of the Work by the public
as contemplated by Affirmer's express Statement of Purpose.

3. Public License Fallback. Should any part of the Waiver for any reason
be judged legally invalid or ineffective under applicable law, then the
Waiver shall be preserved to the maximum extent permitted taking into
account Affirmer's express Statement of Purpose. In addition, to the
extent the Waiver is so judged Affirmer hereby grants to each affected
person a royalty-free, non transferable, non sublicensable, non exclusive,
irrevocable and unconditional license to exercise Affirmer's Copyright and
Related Rights in the Work (i) in all territories worldwide, (ii) for the
maximum duration provided by applicable law or treaty (including future
time extensions), (iii) in any current or future medium and for any number
of copies, and (iv) for any purpose whatsoever, including without
limitation commercial, advertising or promotional purposes (the
"License"). The License shall be deemed effective as of the date CC0 was
applied by Affirmer to the Work. Should any part of the License for any
reason be judged legally invalid or ineffective under applicable law, such
partial invalidity or ineffectiveness shall not invalidate the remainder
of the License, and in such case Affirmer hereby affirms that he or she
will not (i) exercise any of his or her remaining Copyright and Related
Rights in the Work or (ii) assert any associated claims and causes of
action with respect to the Work, in either case contrary to Affirmer's
express Statement of Purpose.

4. Limitations and Disclaimers.

a. No trademark or patent rights held by Affirmer are waived, abandoned,
surrendered, licensed or otherwise affected by this document.
b. Affirmer offers the Work as-is and makes no representations or
warranties of any kind concerning the Work, express, implied,
statutory or otherwise, including without limitation warranties of
title, merchantability, fitness for a particular purpose, non
infringement, or the absence of latent or other defects, accuracy, or
the present or absence of errors, whether or not discoverable, all to
the greatest extent permissible under applicable law.
c. Affirmer disclaims responsibility for clearing rights of other persons
that may apply to the Work or any use thereof, including without
limitation any person's Copyright and Related Rights in the Work.
Further, Affirmer disclaims responsibility for obtaining any necessary
consents, permissions or other rights required for any use of the
Work.
d. Affirmer understands and acknowledges that Creative Commons is not a
party to this document and has no duty or obligation with respect to
this CC0 or use of the Work.

+ 31
- 0
plugins/community/repos/BOKONTEPByteBeatMachine/Makefile View File

@@ -0,0 +1,31 @@
# If RACK_DIR is not defined when calling the Makefile, default to two directories above
RACK_DIR ?= ../..

# Must follow the format in the Naming section of
# https://vcvrack.com/manual/PluginDevelopmentTutorial.html
SLUG = BOKONTEPByteBeatMachine

# Must follow the format in the Versioning section of
# https://vcvrack.com/manual/PluginDevelopmentTutorial.html
VERSION = 0.6.1

# FLAGS will be passed to both the C and C++ compiler
FLAGS +=
CFLAGS +=
CXXFLAGS +=

# Careful about linking to shared libraries, since you can't assume much about the user's environment and library search path.
# Static libraries are fine.
LDFLAGS +=

# Add .cpp and .c files to the build
SOURCES += $(wildcard src/*.cpp)
SOURCES += $(wildcard src/*.c)


# Add files to the ZIP package when running `make dist`
# The compiled plugin is automatically added.
DISTRIBUTABLES += $(wildcard LICENSE*) res

# Include the VCV Rack plugin Makefile framework
include $(RACK_DIR)/plugin.mk

+ 66
- 0
plugins/community/repos/BOKONTEPByteBeatMachine/README.md View File

@@ -0,0 +1,66 @@

# BokontepByteBeatMachine

javascript bytebeat on VCVRack
Now you can burn countless cpu cycles by creating 8 bit oscillators with javascript! Built with duktape and caffeine drinks!

Demo video here:
[![BokontepByteBeatMachine demo](http://img.youtube.com/vi/AQctoH3ucmQ/0.jpg)](http://www.youtube.com/watch?v=AQctoH3ucmQ)

Some kind of manual
===================

![alt text](bytebeatmachine.png "BokontepByteBeatMachine on VCVRack")
BokontepByteBeatMachine is an 8bit, 8000 Hz javascript oscillator. You can enter a javascript expression in the textbox
(better write it in a text editor if is more than one line and paste it there), right click on the context menu and select initialize (or just press CTRL+I)
to compile the expression. If the expression is compiled successfully the red led over the textarea with the javascript turns to red.
If there is an error in compiling the statement the red led flashes. If the expression is successfully compiled, when a trigger is received on the trigger input, or if you
press the button above the trigger input the expression is evaluated and eventually outputted as an 8bit unsigned integer (0-255),
which in turn is converted to the -5.0 .. 5.0 values that VCVRack works with.
The javascript expression can contain javascript functions, bit and arithmetic operations and 3 variables. t, X and Y (look out for case sensitivity t is lower case, X and Y upper case).
t is the current time. X and Y are 8 bit unsigned ints coming from the X and Y inputs. Each value from the inputs with a value between -5.0 and 5.0 is mapped to an integer between 0 and 255.
This works at a glorious 8000 samples per second so there you have it, a bytebeat oscillator in javascript!
You can also use the trigger led button over the trigger input to test the oscillator.
A few things to try.

The simplest thing to try is just putting t as the expression. This produces a kind of stepped saw.
Or you can try my personal favorite (([1.122,1.259,1.498,1.681,1.887][((t >> 12) ^ ((t >> 10)+ 3561)) %5]) * t & 128 | (([1.122,1.259,1.498,1.681,1.887][((t >> 11) ^ ((t >> 9) +2137)) %5]) * t) & ((t>>14)%120+8) | (t>>4) )
I call the above snippet ΚΙΝΕΖΙΚΑ ΠΑΡΑΘΥΡΑ (chinese windows if this is greek to you)
If you want to learn more about bytebeat you can start here:
https://www.reddit.com/r/bytebeat/
http://countercomplex.blogspot.gr/2011/10/algorithmic-symphonies-from-one-line-of.html
http://countercomplex.blogspot.gr/2011/10/some-deep-analysis-of-one-line-music.html


Some more technical mumbo jumbo
===============================
BokontepByteBeatMachine is built using the opensource duktape javascript engine. The expression you enter on the textbox is actually turned into a javascript function before
compilation so if you enter just the t, internally a function is constructed like this:

```
function f(t,X,Y)
{
return (t);
}
```

The function is compiled and then repeatedly executed. That's it. Each time a trigger is received t is reset to 0. For more insights on how this works just look at the source code.

A small disclaimerish note on audio quality
===========================================
This plugin produces sound with a lot of unpleasant frequencies due to low bit rate and aliasing. This is by design in this case.


Legal stuff aka license
=======================
This code is left on the public domain. Do as you please with it.


Peace,

ВОКОИТЕР 2018

Oh, and if you like this don't forget to check out my music and my ramblings on
http://bokontep.blogspot.gr



BIN
plugins/community/repos/BOKONTEPByteBeatMachine/bytebeatmachine.png View File

Before After
Width: 2672  |  Height: 1504  |  Size: 291KB

+ 4
- 0
plugins/community/repos/BOKONTEPByteBeatMachine/make.objects View File

@@ -0,0 +1,4 @@
ALL_OBJ= \
src/duktape.o \
src/MyModule.o \
src/Template.o

+ 7
- 0
plugins/community/repos/BOKONTEPByteBeatMachine/makefile.msvc View File

@@ -0,0 +1,7 @@
SLUG=BOKONTEPByteBeatMachine

include ../../../build_plugin_pre.mk

include make.objects

include ../../../build_plugin_post.mk

+ 187
- 0
plugins/community/repos/BOKONTEPByteBeatMachine/res/MyModule - Αντιγραφή.svg
File diff suppressed because it is too large
View File


+ 222
- 0
plugins/community/repos/BOKONTEPByteBeatMachine/res/MyModule.svg
File diff suppressed because it is too large
View File


+ 231
- 0
plugins/community/repos/BOKONTEPByteBeatMachine/src/MyModule.cpp View File

@@ -0,0 +1,231 @@
#include "Template.hpp"
//#include "Fundamental.hpp"
#include "dsp/digital.hpp"
#include "duktape.h"

namespace rack_plugin_BokontepByteBeat {

struct BokontepByteBeatModule : Module {
enum ParamIds {
TRIG_PARAM,
TRIG_PARAM_BUTTON,
X_PARAM,
Y_PARAM,
NUM_PARAMS
};
enum InputIds {
TRIG_INPUT,
X_INPUT,
Y_INPUT,
NUM_INPUTS
};
enum OutputIds {
BYTEBEAT_OUTPUT,
NUM_OUTPUTS
};
enum LightIds {
BLINK_LIGHT,
TRIGGER_LIGHT,
NUM_LIGHTS
};
char javascriptBuffer[512];
const char* header = "function f(t,X,Y) { return (";
const char* footer = "); } ";
float accumulator = 0.0f;
float timestep = 1.0/8000.0f;
TextField* textField;
bool running = false;
bool compiled = false;
SchmittTrigger trigger;
float phase = 0.0;
float blinkPhase = 0.0;
int t = 0;
duk_context *ctx = NULL;
BokontepByteBeatModule() : Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) {
}
void step() override;

// For more advanced Module features, read Rack's engine.hpp header file
// - toJson, fromJson: serialization of internal data
// - onSampleRateChange: event triggered by a change of sample rate
// - onReset, onRandomize, onCreate, onDelete: implements special behavior when user clicks these from the context menu
void onCreate () override
{
if(ctx)
{
duk_destroy_heap(ctx);
ctx = duk_create_heap_default();
}
else
{
ctx = duk_create_heap_default();
}
//textField->text = "t = t+1;";
running = false;
if(strlen(textField->text.c_str())<512)
{
sprintf(javascriptBuffer,"%s%s%s",header,textField->text.c_str(),footer);
if (duk_pcompile_string(ctx, DUK_COMPILE_FUNCTION,javascriptBuffer)==0)
{
compiled = true;
}
else
{
compiled = false;
running = false;
}
}
else
{
compiled = false;
running = false;
}
}
void onDelete() override
{
if(ctx)
{
duk_destroy_heap(ctx);
}
if(!ctx)
{
ctx = NULL;
}
}
void onReset () override
{
onCreate();
}

};


void BokontepByteBeatModule::step() {
// Implement a bytebeat oscillator
float deltaTime = engineGetSampleTime();
int x = 0;
int y = 0;
if((inputs[TRIG_INPUT].value || params[TRIG_PARAM_BUTTON].value) && compiled)
{
t = 0;
accumulator = 0.0f;
running = true;
}
x=(uint8_t)(((inputs[X_INPUT].value+5.0f)/10.0)*255); //scale -5.0 .. +5.0 to 0-255
y=(uint8_t)(((inputs[Y_INPUT].value+5.0f)/10.0)*255); //scale -5.0 .. +5.0 to 0-255
accumulator = accumulator + deltaTime;
t = accumulator/timestep;
// Compute the output
int retval = 0;
if(running)
{
duk_dup(ctx, 0);
duk_push_int(ctx, t);
duk_push_int(ctx, x);
duk_push_int(ctx, y);
duk_call(ctx, 3);
retval = (uint8_t)duk_get_int_default(ctx, 1, 0);
duk_pop(ctx);
//retval = rand()*255;
}
outputs[BYTEBEAT_OUTPUT].value = 5.0f * ((retval-127.0)/127.0);
lights[TRIGGER_LIGHT].value = max(inputs[TRIG_INPUT].value , params[TRIG_PARAM_BUTTON].value);
// Blink light at 1Hz
blinkPhase += deltaTime;
if (blinkPhase >= 1.0f)
blinkPhase -= 1.0f;
if(compiled)
{
lights[BLINK_LIGHT].value = 1.0f;
}
else
{
lights[BLINK_LIGHT].value = (blinkPhase < 0.5f) ? 1.0f : 0.0f;
}
}


struct BokontepByteBeatWidget : ModuleWidget {
TextField *textField;
BokontepByteBeatWidget(BokontepByteBeatModule *module) : ModuleWidget(module) {

setPanel(SVG::load(assetPlugin(plugin, "res/MyModule.svg")));

addChild(Widget::create<ScrewSilver>(Vec(RACK_GRID_WIDTH, 0)));
addChild(Widget::create<ScrewSilver>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, 0)));
addChild(Widget::create<ScrewSilver>(Vec(RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
addChild(Widget::create<ScrewSilver>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));

//addParam(ParamWidget::create<Davies1900hBlackKnob>(Vec(28, 87), module, BokontepByteBeatModule::TRIG_PARAM, -3.0, 3.0, 0.0));
addParam(ParamWidget::create<LEDButton>(Vec(42, 270), module, BokontepByteBeatModule::TRIG_PARAM_BUTTON, 0.0f, 1.0f, 0.0f));
addChild(ModuleLightWidget::create<MediumLight<GreenLight>>(Vec(46.4f, 274.4f), module, BokontepByteBeatModule::TRIGGER_LIGHT));
addInput(Port::create<PJ301MPort>(Vec(38, 300), Port::INPUT, module, BokontepByteBeatModule::TRIG_INPUT));
addInput(Port::create<PJ301MPort>(Vec(98, 300), Port::INPUT, module, BokontepByteBeatModule::X_INPUT));
addInput(Port::create<PJ301MPort>(Vec(153, 300), Port::INPUT, module, BokontepByteBeatModule::Y_INPUT));
addOutput(Port::create<PJ301MPort>(Vec(215, 300), Port::OUTPUT, module, BokontepByteBeatModule::BYTEBEAT_OUTPUT));

addChild(ModuleLightWidget::create<MediumLight<RedLight>>(Vec(125, 100), module, BokontepByteBeatModule::BLINK_LIGHT));
textField = Widget::create<LedDisplayTextField>(mm2px(Vec(3, 42)));
textField->box.size = mm2px(Vec(85, 40));
textField->multiline = true;
addChild(textField);
module->textField = this->textField;
}
json_t *toJson() override {
json_t *rootJ = ModuleWidget::toJson();

// text
json_object_set_new(rootJ, "text", json_string(textField->text.c_str()));
return rootJ;
}

void fromJson(json_t *rootJ) override {
ModuleWidget::fromJson(rootJ);

// text
json_t *textJ = json_object_get(rootJ, "text");
if (textJ)
{
textField->text = json_string_value(textJ);
module->onCreate();
}
}
};

} // namespace rack_plugin_BokontepByteBeat

using namespace rack_plugin_BokontepByteBeat;

RACK_PLUGIN_MODEL_INIT(BOKONTEPByteBeatMachine, BokontepByteBeatMachine) {
// Specify the Module and ModuleWidget subclass, human-readable
// author name for categorization per plugin, module slug (should never
// change), human-readable module name, and any number of tags
// (found in `include/tags.hpp`) separated by commas.
Model *modelBokontepByteBeatMachine = Model::create<BokontepByteBeatModule, BokontepByteBeatWidget>("BokontepByteBeat", "BokontepByteBeatMachine", "Bokontep ByteBeat Machine", OSCILLATOR_TAG);
return modelBokontepByteBeatMachine;
}

+ 9
- 0
plugins/community/repos/BOKONTEPByteBeatMachine/src/Template.cpp View File

@@ -0,0 +1,9 @@
#include "Template.hpp"

RACK_PLUGIN_MODEL_DECLARE(BOKONTEPByteBeatMachine, BokontepByteBeatMachine);

RACK_PLUGIN_INIT(BOKONTEPByteBeatMachine) {
RACK_PLUGIN_INIT_ID();

RACK_PLUGIN_MODEL_ADD(BOKONTEPByteBeatMachine, BokontepByteBeatMachine);
}

+ 9
- 0
plugins/community/repos/BOKONTEPByteBeatMachine/src/Template.hpp View File

@@ -0,0 +1,9 @@
#include "rack.hpp"

using namespace rack;

RACK_PLUGIN_DECLARE(BOKONTEPByteBeatMachine);

#ifdef USE_VST2
#define plugin "BOKONTEPByteBeatMachine"
#endif // USE_VST2

+ 3672
- 0
plugins/community/repos/BOKONTEPByteBeatMachine/src/duk_config.h
File diff suppressed because it is too large
View File


+ 95142
- 0
plugins/community/repos/BOKONTEPByteBeatMachine/src/duktape.c
File diff suppressed because it is too large
View File


+ 1349
- 0
plugins/community/repos/BOKONTEPByteBeatMachine/src/duktape.h
File diff suppressed because it is too large
View File


+ 20
- 0
plugins/community/repos/Ohmer/LICENSE.txt View File

@@ -0,0 +1,20 @@
Copyright (c) 2018, Dominique CAMUS (Ohmer Modules)

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.

3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this
software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

The BSD 3-Clause license (SPDX short identifier: BSD-3-Clause) - Original license text: https://opensource.org/licenses/BSD-3-Clause

+ 27
- 0
plugins/community/repos/Ohmer/Makefile View File

@@ -0,0 +1,27 @@
# Must follow the format in the Naming section of https://vcvrack.com/manual/PluginDevelopmentTutorial.html
SLUG = Ohmer

# Must follow the format in the Versioning section of https://vcvrack.com/manual/PluginDevelopmentTutorial.html
VERSION = 0.6.4

# FLAGS will be passed to both the C and C++ compiler
FLAGS +=
CFLAGS +=
CXXFLAGS +=

# Careful about linking to shared libraries, since you can't assume much about the user's environment and library search path.
# Static libraries are fine.
LDFLAGS +=

# Add .cpp and .c files to the build
SOURCES += $(wildcard src/*.cpp)

# Add files to the ZIP package when running `make dist`
# The compiled plugin is automatically added.
DISTRIBUTABLES += $(wildcard LICENSE*) res

# If RACK_DIR is not defined when calling the Makefile, default to two levels above
RACK_DIR ?= ../..

# Include the VCV Rack plugin Makefile framework
include $(RACK_DIR)/plugin.mk

+ 148
- 0
plugins/community/repos/Ohmer/README.md View File

@@ -0,0 +1,148 @@
# ![](doc/images/Logo_Ohmer.png)Ohmer Modules for VCV Rack

### ***MANUALS:***

[RKD / RKD with "Break" User's Guide (PDF)](./res/Manuals/RKD%20User's%20Manual.pdf) (still under construction).

------

Flagship of *Ohmer Modules* is **KlokSpid** (pronunciation of "clock speed"), a modern "CPU-controlled"-style clocking module, designed for any rack requiring BPM-based clock sources and/or clock modulators (clock multipliers and dividers).

Available as six models, can be changed anytime you want, from context-menu (right-click menu).

**Classic** (default beige), **Stage Repro** and **Absolute Night** models embed LCD dot-matrix displays (DMD) and silver parts (button and screws). The Absolute Night model embeds a yellow-backlit LCD DMD, though.

**Dark "Signature"**, **Deepblue "Signature"** and **Carbon "Signature"** models embed a plasma-gas dot-matrix displays, and luxury golden button and screws, instead.

All Ohmer Modules having jacks (KlokSpid, Metriks, Splitter 1x9, also valid for QuadPercs, from [OhmerPrems](https://github.com/DomiKamu/OhmerPrems)) embed mandatory **golden connectors**, due to expected *high-level quality standards* concerning all of our modules.

Basically, KlokSpid module provides two modes:

- **Standalone BPM-clock generator**, covering all possible BPM from 1 to... 960 (beats), selectable only by encoder (no CV). The small button (at the right side of module) may be used as toggle, to start or stop BPM clocking (current state is reflected by "SYNC" LED: green while running, red when stopped). However, each output jack may receives a predefined clock ratio, and jack #4 (when set at x1) may delivers LFO waveform (based on displayed BPM).
- **Clock modulator** (sometimes designed as *clock multiplier or divider*) covers a lot of predefined ratios (or rates), from 1 to 10 (all), 12, 15, 16, 24, 32 and 64, when the ratio (rate) is set manually (via encoder). However, the ratio is ***voltage-controllable*** (thanks to **CV-RATIO/TRIG.** input jack) to reach any multiplier or divider value you'd like, including "exotic" ratios (like x37 or /59), from 1 to 64.

![](./doc/images/KlokSpid.png)



Clocking mode is automatically selected by an internal sensor (and module's firmware), in fact, depending the **CLK** input jack is connected, or not.

If connected (patched), KlokSpid module works as ***clock modulator*** (multiplier or divider), otherwise, it works as standalone BPM-based ***clock generator***.

As clock modulator, generated signals are always sent to **four identical** outputs (like a "1x4" multi), to avoid splitter/multiples usage behind module (or multiples patch cables connected on the same jack).

However, while KlokSpid works as clock generator, several options (determinable via module's SETUP) permits to select a specific multiplier or divider for any output jack, and output a specific LFO waveform to output jack #4 such sine, inverted sine, triangle, inverted triangle, sawtooth or inverted sawtooth (sometimes called *down sawtooth*). From module's SETUP, this feature is **Out. #4 LFO**. (disabled by default), but can be enabled only if jack #4 ratio is set as "x1" (ratio take priority over LFO).

Voltages sent to all outputs is, by default, defined to **+5V**, but, in case you'll need another voltage, it can be changed to either **+2V**, **+10V**, or **+11.7V**.

Output signal duration is mainly *gate-based*, by default as **Square** waveform (aka gate 50%) of BPM pulse, if working as standalone BPM-clock generator, or current multiplied/divided frequency (as soon as the source frequency is stable / established by the module - indicated by SYNC" LED - green means source frequency is stable). This factory setting covers major usages about a clocking device, but of course, other duration can be selected, in fact depending your needs (e.g.: to control longer sustains for ADSR envelope generators, to hold longer playing sample, etc.). Shortest durations are mostly designed to control a sequencer or to trigger a drum module.

The right-side input jack labeled both **CV-RATIO** and **TRIG.** is versatile: when KlokSpid module is working as clock multiplier/divider, this jack can accept CV to control clocking ratio (any integer value from /64 to x64), via **-5V/+5V bipolar** voltage (default), or optionally 0V/+10V unipolar. At the other side, when KlokSpid module is working as standalone BPM-clock generator, this jack becomes a "trigger" input, and provides, in this case, one of these features:

- as BPM-reset (most common usage) to keep separate KlokSpid modules, as clock generators, perfectly synchronized (default) between each other. Also all waveforms generated by KlokSpid become "in phase" after a reset. Obviously, all related BPM-clock generators must have exactly the same BPM!
- to toggle BPM "start/stop" state, exactly like a "remote" does (optional, can be defined via SETUP).

<u>**TIP:**</u> two small orange LEDs belong this jack reflect, when lit, the current jack role: CV-RATIO, or TRIG.

Please note both **CLK** and **TRIG.** input jacks will trigger at +1.7V (or above), on rising edge. Low voltage for "retrigger" is +0.2V (or below), on falling edge.

One of interesting feature offered by KlokSpid module is an embedded SETUP program (like personal computer does), in order to customize some settings. To enter the module's SETUP mode, simply **press and hold** the small button for approx. 2 seconds, until the message **- SETUP -** is displayed, confirming the module's SETUP now is running. Press the button (like indicated) to go to first setting: *CV Polarity*.

Setting's name is displayed on first line, its current value is displayed on second line.

During SETUP operation, you'll can notice the module continues to work, except you can't alter, via encoder, the current ratio (or BPM), because the encoder becomes... the value selector (to select another value, for current displayed setting, simply turn the knob clockwise or counter-clockwise). Any setting you're currently editing is reflected, in real-time, by the module, it may be useful, for example, to experiment different output durations, voltages, CV polarity behaviors...

To advance to next setting, just press the button.

Note: as long as you don't touch the encoder, the current value (for related parameter) remains unaffected.

The last setting is SETUP-exit "decision" (you'll can use encoder to change, then press button):

- **Save/Exit**: all changes made during SETUP operation are saved (this option is always default).
- **Canc./Exit**: settings prior entered SETUP are fully restored (meaning changes made are ignored).
- **Review...**: return to first setting (CV Polarity) and browse all settings again!
- **Factory**: restore initial settings (same as fresh added module in rack), aka "reset to factory".

**<u>TIP:</u>** while SETUP is running, **long press/hold** on button does an **immediate** "Save/Exit", it's a kind of "shortcut", or quick way to quit SETUP, as soon as you consider the current settings are fine, useful to avoid browsing all remaining settings until SETUP-exit decision!

Obviously, all settings you've defined via SETUP are automatically saved along your ".vcv" patch file (including "autosave.vcv"). Also, all current settings are transferred "on-the-fly" when you duplicate (clone) the module, even during SETUP operation (in this situation, new clone isn't running SETUP mode, however, because cloning assumes an "automatic Save/Exit" for its clone!)



#### **Other Ohmer modules:**

![./doc/images/Ohmer_Modules.png](./doc/images/Ohmer_Modules.png)



**RKD (Rotate Klok Divider)**, inspired by 4ms Company's **RCD** module (with limited permission).

**RKD with "Break"**, its big Brother, inspired by 4ms Company's **RCDBO** module (with limited permission).

![./doc/images/RKD-RKDBRK.png](doc/images/RKD-RKDBRK.png)

**RKD with "Break"** is mainly a (4 HP) RKD module, and an additional panel (4 HP too, alongside RKD) providing six deported switches. By this way, it's more comfortable to change module's settings "on-the-fly", without need to access PCB to change jumpers. ***Both modules provide exactly the same features!***

**Metriks**, a 8 HP measurement module: voltmeter, frequency counter (incl. BPM meter and Note Tuner) and "Peak Counter". Press ***MODE*** button to select measurement mode (voltmeter, frequency counter, peak counter). Depending current mode, the encoder have different features: to select number of displayed decimals (from voltmeter), to select BPM meter or note tuner (from frequency counter), and to choose threshold voltage (trigger) from peak counter (also used by frequency meter). **Working fine, but still in development (frequency meter parts can be enhanced a bit, rounding values in particular).**

![./doc/images/Metriks.png](./doc/images/Metriks.png)


**Splitter 1x9**, a classic "multi" 1-in to 9-outs, voltage limited into -11.7V/+11.7V bounds (hard clipping, indicated by a red LED near input jack, lit when the incoming signal must be clipped).

**Set of blank panels** (without logo) to fill any holes in your rack: 1 HP, 2 HP, 4 HP, 8 HP, 16 HP and 32 HP. Please note the 2 HP blank panel have its own context-menu, in order to change screws number and arrangement, anytime you want!

![Blank_2HP_Screws_Opt](./doc/images/Blank_2HP_Screws_Opts.png)




## Releases

Releases for Windows, MacOS and Linux platforms may (or will) be available either from VCV's [Plugins](https://vcvrack.com/plugins.html) page, and/or from [my GitHub "releases" page](https://github.com/DomiKamu/Ohmer-Modules/releases).



## License Clauses

All Ohmer Modules are free, source code is provided.

Source code licensed under **BSD 3-Clause** by Dominique Camus. Some graphic materials can't be used for derivative works without my permission.

About RKD modules, the "4ms Company" doesn't endorse any support or responsability about this conversion, anyway. These modules follow guidelines given by "4ms Company", including respect of non-usage of company logo, brand name, and trademarked modules names (RCD, Rotating Clock Divider, RCDBO, and RCD Breakout). Both RKD modules use exclusively 100% homemade C++ code (Open Source), have some variations regardling some graphicals and technical specifications, and provide additional features, like different panel colors and segment-LED displays (instead of silkscreen prints) showing dividers for every output jack, in real-time.

**Small donations are welcome!** if you appreciate my stuff. Please be sure they will serious motivation for me to develop another modules - by this way, I'll can buy "delivered at home pizzas" while I'm working for you! ;) More seriously, donations permits me to buy commercial modules, or making donations, too!

https://www.paypal.me/DominiqueCAMUS



Feature requests, suggestions, and bug reports are welcome on GitHub repository.



### Current release: v0.6.4 (April 28th, 2018):

- Bugfixes and enhancements are described in details into [CHANGELOG.TXT](doc/CHANGELOG.txt).


### Thanks to:

- **Andrew Belt** (and development team) for his fantastic VCV Rack software!
- **Artur Karlov** about KlokSpid source code merge tip (source maintenance is more easy, BTW).
- **Dale Johnson** (author of Valley's *Topograph* & *Dexter* modules), for GUI-change on the fly and *framing*.
- **Michael Struggl** , for similar suggestion (about Audible Instruments' Tidal, using similar feature).
- **Gerhard Brandt**, about Prime numbers & Fibonacci tables for RKD / RKD+BRK modules.
- 4ms Company, for their (conditional) permission about their RCD / RCDBO modules partial conversion.
- **Builders** for MacOS & Linux (particular mention to Clément Foulc for MacOS builds, and to Zulu Echo Romeo-Oscar for Linux builds).
- Many enthusiast users!
- Generous contributors, for donations, coding tips & optimizations, enhancements and features ideas!
- Our existing (and growing every day) communities around VCV Rack.


### Who am I?

My name is Dominique CAMUS, 54 years old French guy, my job is networks and systems administrator (but actually, unemployed), living [Chartres](https://en.wikipedia.org/wiki/Chartres) (world-famous about its wonderful cathedral) located 100 km southwest of Paris, France. Mine hobbies are mainly C.M. experimentations (as curious guy I am), playing keyboard (only live performance, at home in my living room, using M-Audio CODE61 MIDI controller and sometimes, Liine Lemur on iPad 3), flight simulation (Prepar3D v4, flying mainly Boeing 737 and 777 airliners), Kerbal Space Program, videogame emulators (for sure, I'm a nostalgic guy ;), pinball games, homemade developments, friends, swimming pool...


### Enjoy!

+ 125
- 0
plugins/community/repos/Ohmer/doc/CHANGELOG.txt View File

@@ -0,0 +1,125 @@
==============================================================================================================================
CHANGELOG
==============================================================================================================================

Release v0.6.4 (April 28th, 2018):

- KlokSpid: added individual ratios (per output jack) while running as BPM-clock generator (changed via SETUP). When running
as clock modulator, for now individual ratios remain as x1 (all identical).
- KlokSpid: additional display is added between output jacks, to display ratio (and LFO on jack #4 if applicable).
- KlokSpid: LFO on jack #4 is enabled only if its ratio is x1 (otherwise priority is given to ratio).
- KlokSpid: enhanced afterglow for red LED (CLK).
- KlokSpid, Metriks: background DMD (dot matrix display) now is more dark for Deepblue Signature models.

------------------------------------------------------------------------------------------------------------------------------

Release v0.6.3 (April 8th, 2018):

- KlokSpid: added new feature: optional LFO to jack #4 (BPM-clock generator only). Can be enabled via SETUP.
- KlokSpid, Metriks: added initialization blinking (fake "Calibrating...") message on DMD, while encoder isn't stable.

------------------------------------------------------------------------------------------------------------------------------

Release v0.6.2 (April 2st, 2018):

- KlokSpid: reworked encoder routine, better but not perfect, really a pain because knobs & encoders are badly implemented
(why as modified knob ? why no auto rescale to "0.0" - neutral - on mouse release for an encoder?, why it uses - like knobs
the stupid transient values during instanciation?). Hey, the goal of an encoder is to work AS RELATIVE (aka + or -), not
as absolute like knobs do! an another unfinished stuff => WTF?

------------------------------------------------------------------------------------------------------------------------------

Release v0.6.1 (April 1st, 2018):

- KlokSpid: knob is replaced by a continuous encoder.
- KlokSpid: redesigned dot-matrix display, same frame of mind than Metriks.
- KlokSpid: new ratios (when set ky know, duh'... by encoder): 12, 15, and 24 (as divider and multiplier).
- KlokSpid: fixed model selection from context-menu.

NOTE: developments/maintenances around previous v0.5.x (for VCV Rack v0.5.1) are cancelled!

------------------------------------------------------------------------------------------------------------------------------

Release v0.6.0 (March 28th, 2018):

- KlokSpid: fixed BPM-clock generator sometimes is very long to start (was due to smooth knob moves during initialization).
- RKD modules: fixed issue concerning Max Div, when 8 (default J3/J4 On), and Spread On (J5), Max Div now is fixed to 16
(required for auto-reset sequence, when enabled/On by jumper J6).
- New module (0.6 only): Metriks (voltmeter and peak counter operatioal, frequency meter stays in development).

------------------------------------------------------------------------------------------------------------------------------

Release v0.6.0.7-beta (March 25th, 2018):

- KlokSpid: fixed BPM-clock generator sometimes is very long to start (was due to knob/encoder initialization).
- KlokSpid: default (factory) waveform now is square wave ("Square W." from Setup), instead of "Gate 1/4" previously.
- RKD modules: added counting down feature for trigger mode.
- RKD modules: reworked RESET jack routine behavior (buffered).
- RKD modules: RESET LED was replaced by... tri-colored (red, orange, blue), red for module timeout (aka no source CLK),
orange for incoming trigger on RESET jack, and blue when "Auto-Reset" is fired (if enabled via JP6 or switch on BRK panel).
- RKD modules: Max Div forced to 64 for all extra tables (required for "Auto-Reset" on these tables, too).
- RKD modules: "Auto-Reset" sequence is fully optimized.
- RKD modules: Added 5th table: "Triplet & 16ths": 1, 2, 3, 4, 8, 16, 32, and 64. Having 8 possible rotations.
- RKD modules: implemented adaptative "Max Div" for "Prime numbers" table, may be 32 or 64 (based on highest current divider).
- RKD module only (not applicable for RKD with "Break"): state of PCB view is saved/recalled.
- RKD module only (not applicable for RKD with "Break"): jumpers are always read at begining of module's step() method, to
avoid issues on some dividers when cloning RKD module while its PCB isn't visible.
- New (experimental) module: Metriks (WIP) - for continuous encoder training... working as voltmeter for now...

------------------------------------------------------------------------------------------------------------------------------

Release v0.6.0.6-beta (March 19th, 2018):

- RKD modules: pulsing engine entirely redesigned.
- RKD modules: RESET jack and Auto-Reset features are operational.
- RKD modules: added a bi-colored LED near RESET jack: red on full module reset (or disabled/idle), cyan during "Auto-Reset"
(if configured by jumper J6 ON, or via switch on BRK panel).

------------------------------------------------------------------------------------------------------------------------------

Release v0.6.0.5-beta (March 17th, 2018):

- Introduced two new modules: RKD (Rotate Klok Divider), and RKD with "Break". Both inspired by 4ms' RCD and RCDBO modules.
With limited permission allowed by 4ms Company (thanks!).
- KlokSpid: fixed issue when "Signature" module was choosen from context-menu, then the module was cloned, resulting bad text
color in DMD instead of "plasma-like" color (white, orange or cyan).

------------------------------------------------------------------------------------------------------------------------------

Release v0.6.0.4-beta (March 8th, 2018):

- KlokSpid: single green/red LED replaces two separate green & red LEDs, as SYNC indicator.
- KlokSpid: during SETUP operations, SYNC LED continues to report synchronization status.
- KlokSpid: added +2V as possible output voltage. Appears from "Out Voltg." setting, in module's SETUP.
- KlokSpid: fixed issue when knob affects pulse duration (clock multiplier only) when editing any setting from SETUP.
- KlokSpid: 2s hold button to enter/quick exit module's SETUP, is fixed.
- KlokSpid: Fixed SVG cosmetic, for all panels, concerning two serigraphy lines above CV-RATIO/TRIG. port. Now both lines are
correctly aligned on the port edge!
- KlokSpid: now default factory for CV-RATIO/TRIG. input port, TRIG. is BPM-clocking reset, instead of BPM start/stop toggle.

------------------------------------------------------------------------------------------------------------------------------

Release v0.6.0.3-beta (February 28th, 2018):

- Source code initially designed for Rack v0.5.1 was migrated against Rack v0.6 API.
- Merged KlokSpid sources, now once KlokSpid as "common base", model (GUI variation) can be changed anytime via context-menu.
- Now KlokSpid family is six models (panl theme & DMD variations), befault is Classic (beige, like blank panels & splitter).
- Maximum possible voltage on outputs can be delivered is +11.7V (displayed +12V from SETUP menu), due to protection diodes.
More infos: https://vcvrack.com/manual/VoltageStandards.html
- Trigger voltage thresholds are set +1.7V for high state, +0.2V for low state.
- Limited context-menus are removed (Andrew recommendation, in order to keep a standard for every Rack module).
- KlokSpid: "Initialize" (Ctrl+I, Command+I) and "Randomize" (Ctrl+R, Command+R) - context-menu - are (actually) bypassed!
- KlokSpid: long press/hold on button during SETUP does an "immediate Save/Exit".
- KlokSpid: CV-RATIO now covers all possible ratios from 1 to 64 (both divider and multiplier).
- Splitter 1x9: added a "clipping" red LED, near input port.
- Splitter 1x9: reworked port positions.
- 2 HP Blank Panel have a context-menu to change its screws setting (three settings).

------------------------------------------------------------------------------------------------------------------------------
TODO LIST / PLANNED:
------------------------------------------------------------------------------------------------------------------------------

- RKD modules: LED are off on small duration pulses.
- RKD modules: PDF manual still under construction, YT video later.
- KlokSpid: PDF manual (under consideration), YT video tutorial (redo a separate dedicated video).
- Metriks: add thresold (V) for pulse counter, freq counter and note tuner must be (re)designed/enhanced.

+ 19
- 0
plugins/community/repos/Ohmer/doc/Patch compatibility.txt View File

@@ -0,0 +1,19 @@
Hi,

Since release v0.5.4, KlokSpid internal modules IDs are changed (due to source merge).

In case you get an error message while you're opening .vcv patch file, open the .vcv file by using any
text editor (like Notepad on Windows, or Text Edit on MacOS).

Search any occurences of following (include first quote in your search criteria), exactly like this:

"KlokSpid

Per found occurence, remove trailings such Classic, Stage, Dark or DBlue - BUT DON'T REMOVE quotation
marks surrounding "KlokSpid" word, it's very important!

Save file, close text editor, then you'll can repoen .vcv file: all KlokSpid modules will come back,
correctly configured, but as Classic (beige). So you'll can change model you'd like, via its right-click
menu (context-menu).

Selected model will be saved along .vcv patch files (don't forget to re-save it).

BIN
plugins/community/repos/Ohmer/doc/images/Blank_2HP_Screws_Opts.png View File

Before After
Width: 391  |  Height: 395  |  Size: 18KB

BIN
plugins/community/repos/Ohmer/doc/images/KlokSpid.png View File

Before After
Width: 1073  |  Height: 434  |  Size: 198KB

BIN
plugins/community/repos/Ohmer/doc/images/Logo_Ohmer.png View File

Before After
Width: 92  |  Height: 108  |  Size: 13KB

BIN
plugins/community/repos/Ohmer/doc/images/Metriks.png View File

Before After
Width: 960  |  Height: 448  |  Size: 176KB

BIN
plugins/community/repos/Ohmer/doc/images/Ohmer_Modules.png View File

Before After
Width: 1215  |  Height: 760  |  Size: 293KB

BIN
plugins/community/repos/Ohmer/doc/images/RKD-RKDBRK.png View File

Before After
Width: 780  |  Height: 396  |  Size: 134KB

+ 13
- 0
plugins/community/repos/Ohmer/make.objects View File

@@ -0,0 +1,13 @@
ALL_OBJ= \
src/BlankPanel16HP.o \
src/BlankPanel1HP.o \
src/BlankPanel2HP.o \
src/BlankPanel32HP.o \
src/BlankPanel4HP.o \
src/BlankPanel8HP.o \
src/KlokSpid.o \
src/Metriks.o \
src/Ohmer.o \
src/RKD.o \
src/RKDBRK.o \
src/Splitter1x9.o

plugins/community/repos/VultModules/makefile.msvc → plugins/community/repos/Ohmer/makefile.msvc View File

@@ -1,4 +1,4 @@
SLUG=VultModules
SLUG=Ohmer

include ../../../build_plugin_pre.mk


+ 70
- 0
plugins/community/repos/Ohmer/res/Blank_16HP.svg View File

@@ -0,0 +1,70 @@
<?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"
id="svg8"
viewBox="0 0 240 380"
version="1.1"
sodipodi:docname="OhmerBlank16White.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
width="240"
height="380">
<title
id="title9">Blank Panel for VCV Rack</title>
<metadata
id="metadata39">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Blank Panel for VCV Rack</dc:title>
<cc:license
rdf:resource="" />
<dc:rights>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:rights>
</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="1920"
inkscape:window-height="1058"
id="namedview37"
showgrid="false"
inkscape:zoom="1.9612909"
inkscape:cx="-210.89413"
inkscape:cy="161.1575"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg8" />
<defs
id="defs4">
<style
id="style2">.cls-1{fill:#ab2d2d;}.cls-2{fill:#952d2d;}.cls-3{fill:#251e1e;}.cls-4{fill:#fff7d4;}.cls-5{fill:#202020;}</style>
</defs>
<rect
style="opacity:1;vector-effect:none;fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:1.37699854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="ModuleLayer"
width="240"
height="380"
x="0"
y="0" />
</svg>

+ 63
- 0
plugins/community/repos/Ohmer/res/Blank_1HP.svg View File

@@ -0,0 +1,63 @@
<?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"
id="svg8"
viewBox="0 0 15 380"
version="1.1"
sodipodi:docname="OhmerBlank1White.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
width="15"
height="380">
<metadata
id="metadata39">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Blank Panel for VCV Rack</dc:title>
</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="1920"
inkscape:window-height="1058"
id="namedview37"
showgrid="false"
inkscape:zoom="1.9612909"
inkscape:cx="-309.57227"
inkscape:cy="161.1575"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg8" />
<defs
id="defs4">
<style
id="style2">.cls-1{fill:#ab2d2d;}.cls-2{fill:#952d2d;}.cls-3{fill:#251e1e;}.cls-4{fill:#fff7d4;}.cls-5{fill:#202020;}</style>
</defs>
<title
id="title6">Blank Panel for VCV Rack</title>
<rect
style="opacity:1;vector-effect:none;fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:0.34424964;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="ModuleLayer"
width="15"
height="380"
x="0"
y="0" />
</svg>

+ 63
- 0
plugins/community/repos/Ohmer/res/Blank_2HP.svg View File

@@ -0,0 +1,63 @@
<?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"
id="svg8"
viewBox="0 0 30 380"
version="1.1"
sodipodi:docname="OhmerBlank2White.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
width="30"
height="380">
<metadata
id="metadata39">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Blank Panel for VCV Rack</dc:title>
</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="1920"
inkscape:window-height="1058"
id="namedview37"
showgrid="false"
inkscape:zoom="1.9612909"
inkscape:cx="-279.57227"
inkscape:cy="161.1575"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg8" />
<defs
id="defs4">
<style
id="style2">.cls-1{fill:#ab2d2d;}.cls-2{fill:#952d2d;}.cls-3{fill:#251e1e;}.cls-4{fill:#fff7d4;}.cls-5{fill:#202020;}</style>
</defs>
<title
id="title6">Blank Panel for VCV Rack</title>
<rect
style="opacity:1;vector-effect:none;fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:0.48684251;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="ModuleLayer"
width="30"
height="380"
x="0"
y="0" />
</svg>

+ 70
- 0
plugins/community/repos/Ohmer/res/Blank_32HP.svg View File

@@ -0,0 +1,70 @@
<?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"
id="svg8"
viewBox="0 0 480 380"
version="1.1"
sodipodi:docname="OhmerBlank32White.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
width="480"
height="380">
<title
id="title9">Blank Panel for VCV Rack</title>
<metadata
id="metadata39">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Blank Panel for VCV Rack</dc:title>
<cc:license
rdf:resource="" />
<dc:rights>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:rights>
</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="1920"
inkscape:window-height="1058"
id="namedview37"
showgrid="false"
inkscape:zoom="1.9612909"
inkscape:cx="-99.720224"
inkscape:cy="161.1575"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg8" />
<defs
id="defs4">
<style
id="style2">.cls-1{fill:#ab2d2d;}.cls-2{fill:#952d2d;}.cls-3{fill:#251e1e;}.cls-4{fill:#fff7d4;}.cls-5{fill:#202020;}</style>
</defs>
<rect
style="opacity:1;vector-effect:none;fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:1.94737005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="ModuleLayer"
width="480"
height="380"
x="0"
y="0" />
</svg>

+ 65
- 0
plugins/community/repos/Ohmer/res/Blank_4HP.svg View File

@@ -0,0 +1,65 @@
<?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"
id="svg8"
viewBox="0 0 60 380"
version="1.1"
sodipodi:docname="OhmerBlank4White.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
width="60"
height="380">
<metadata
id="metadata39">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Blank Panel for VCV Rack</dc:title>
<cc:license
rdf:resource="" />
</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="1920"
inkscape:window-height="1058"
id="namedview37"
showgrid="false"
inkscape:zoom="1.9612909"
inkscape:cx="-333.77878"
inkscape:cy="161.1575"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg8" />
<defs
id="defs4">
<style
id="style2">.cls-1{fill:#ab2d2d;}.cls-2{fill:#952d2d;}.cls-3{fill:#251e1e;}.cls-4{fill:#fff7d4;}.cls-5{fill:#202020;}</style>
</defs>
<title
id="title6">Blank Panel for VCV Rack</title>
<rect
style="opacity:1;vector-effect:none;fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:0.68849927;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="ModuleLayer"
width="60"
height="380"
x="0"
y="0" />
</svg>

+ 65
- 0
plugins/community/repos/Ohmer/res/Blank_8HP.svg View File

@@ -0,0 +1,65 @@
<?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"
id="svg8"
viewBox="0 0 120 380"
version="1.1"
sodipodi:docname="OhmerBlank8White.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
width="120"
height="380">
<title
id="title9">Blank Panel for VCV Rack</title>
<metadata
id="metadata39">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Blank Panel for VCV Rack</dc:title>
<cc:license
rdf:resource="" />
</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="1920"
inkscape:window-height="1058"
id="namedview37"
showgrid="false"
inkscape:zoom="1.9612909"
inkscape:cx="-348.13305"
inkscape:cy="161.1575"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg8" />
<defs
id="defs4">
<style
id="style2">.cls-1{fill:#ab2d2d;}.cls-2{fill:#952d2d;}.cls-3{fill:#251e1e;}.cls-4{fill:#fff7d4;}.cls-5{fill:#202020;}</style>
</defs>
<rect
style="opacity:1;vector-effect:none;fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:0.97368503;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="ModuleLayer"
width="120"
height="380"
x="0"
y="0" />
</svg>

+ 338
- 0
plugins/community/repos/Ohmer/res/KlokSpid_Absolute_Night.svg View File

@@ -0,0 +1,338 @@
<?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"
id="svg8"
viewBox="0 0 120 380"
version="1.1"
sodipodi:docname="KlokSpid_Absolute_Night.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
width="120"
height="380">
<title
id="title9">KlokSpid modules 8 HP for VCV Rack</title>
<metadata
id="metadata39">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>KlokSpid modules 8 HP for VCV Rack</dc:title>
<cc:license
rdf:resource="" />
</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="1920"
inkscape:window-height="1058"
id="namedview37"
showgrid="false"
inkscape:zoom="2.7736842"
inkscape:cx="-119.44972"
inkscape:cy="193.3079"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg8"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-text-baseline="false" />
<defs
id="defs4">
<marker
inkscape:stockid="TriangleOutL"
orient="auto"
refY="0.0"
refX="0.0"
id="TriangleOutL"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path999"
d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
style="fill-rule:evenodd;stroke:#00ff00;stroke-width:1pt;stroke-opacity:1;fill:#00ff00;fill-opacity:1"
transform="scale(0.8)" />
</marker>
<style
id="style2">.cls-1{fill:#ab2d2d;}.cls-2{fill:#952d2d;}.cls-3{fill:#251e1e;}.cls-4{fill:#fff7d4;}.cls-5{fill:#202020;}</style>
</defs>
<path
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.97368503;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 0,-3.03e-6 H 120 V 380 H 0 Z"
id="ModuleLayer"
inkscape:connector-curvature="0" />
<g
aria-label="KlokSpid"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text846"
transform="translate(0,3e-6)">
<path
d="m 28.27116,18.815756 h 3.852864 v 0.608724 h -0.272135 q -0.472657,0 -0.666016,0.114583 -0.193359,0.114583 -0.272135,0.358073 -0.06445,0.179036 -0.06445,0.587239 v 3.774089 l 3.752604,-3.974609 q 0.29362,-0.315105 0.34375,-0.408204 0.05729,-0.0931 0.05729,-0.193359 0,-0.128906 -0.128906,-0.193359 -0.121745,-0.06445 -0.537109,-0.06445 H 34.10775 v -0.608724 h 3.580729 v 0.608724 q -0.422526,-0.0072 -0.766276,0.0931 -0.34375,0.10026 -0.54427,0.250651 -0.436849,0.322265 -0.623047,0.515625 l -2.678386,2.742838 3.057943,4.053386 q 0.415365,0.551432 0.658854,0.759114 0.24349,0.200521 0.501302,0.286459 0.257813,0.07878 0.802084,0.07878 v 0.601562 h -4.239584 v -0.601562 h 0.250651 q 0.422526,0 0.501302,-0.02148 0.121745,-0.02865 0.19336,-0.114583 0.07161,-0.08594 0.07161,-0.179036 0,-0.186198 -0.49414,-0.852214 l -2.25586,-3.065104 -1.274739,1.317708 v 1.91211 q 0,0.49414 0.10026,0.673177 0.10026,0.179036 0.307943,0.264974 0.164713,0.06445 0.866536,0.06445 V 28.80599 H 28.27116 v -0.601562 h 0.300781 q 0.451172,0 0.615885,-0.08594 0.164714,-0.0931 0.250651,-0.300781 0.0931,-0.207682 0.0931,-0.73763 v -6.595704 q 0,-0.522786 -0.08594,-0.708984 -0.08594,-0.193359 -0.250651,-0.272135 -0.164714,-0.07878 -0.701823,-0.07878 H 28.27116 Z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path820"
inkscape:connector-curvature="0" />
<path
d="m 38.555014,19.488933 v -0.58724 q 0.973958,-0.07161 1.897786,-0.601562 h 0.529948 v 8.815755 q 0,0.558594 0.07162,0.701823 0.0931,0.200521 0.272135,0.29362 0.179037,0.0931 0.6875,0.0931 h 0.229167 v 0.601562 h -3.688151 v -0.601562 h 0.372396 q 0.350911,0 0.522786,-0.107422 0.179036,-0.107422 0.250651,-0.29362 0.07878,-0.186198 0.07878,-0.744792 v -7.569661 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path822"
inkscape:connector-curvature="0" />
<path
d="m 46.661785,21.723308 q 1.052735,0 1.819011,0.436849 0.773437,0.436849 1.217448,1.274739 0.44401,0.837891 0.44401,1.91211 0,1.074219 -0.458333,1.912109 -0.451172,0.837891 -1.238933,1.281901 -0.780599,0.436849 -1.86914,0.436849 -1.733073,0 -2.606771,-1.08138 -0.866537,-1.08138 -0.866537,-2.542318 0,-1.067057 0.451172,-1.890625 0.451172,-0.830729 1.260417,-1.281901 0.816406,-0.458333 1.847656,-0.458333 z m -0.05729,0.694661 q -0.816407,0 -1.382162,0.644532 -0.716146,0.802083 -0.716146,2.334635 0,1.47526 0.608724,2.248698 0.551432,0.6875 1.496745,0.6875 0.608724,0 1.08138,-0.322266 0.479818,-0.322265 0.773438,-1.024088 0.29362,-0.708985 0.29362,-1.661459 0,-0.930989 -0.315105,-1.668619 -0.243489,-0.58724 -0.73763,-0.909506 -0.486979,-0.329427 -1.102864,-0.329427 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path824"
inkscape:connector-curvature="0" />
<path
d="m 51.166342,19.488933 v -0.58724 q 0.916666,-0.07161 1.897786,-0.601562 h 0.551433 v 7.147135 l 2.628255,-2.091146 q 0.630208,-0.501302 0.630208,-0.666015 0,-0.100261 -0.136068,-0.157552 -0.08594,-0.03581 -0.422526,-0.03581 h -0.379557 v -0.601562 h 3.63086 v 0.601562 q -0.608724,0 -0.973959,0.128907 -0.365234,0.121744 -0.845052,0.486979 l -2.076823,1.582682 2.449219,2.678386 q 0.350911,0.386718 0.572917,0.54427 0.222005,0.157552 0.44401,0.222006 0.222005,0.05729 0.694662,0.06445 v 0.601562 h -3.809896 v -0.601562 h 0.293619 q 0.436849,0 0.551433,-0.06445 0.114583,-0.07162 0.114583,-0.186198 0,-0.114584 -0.214844,-0.329427 -0.03581,-0.03581 -0.07878,-0.08594 l -1.904948,-2.191406 -1.167317,0.895182 v 0.938151 q 0,0.522787 0.07878,0.6875 0.07878,0.164714 0.243489,0.250651 0.171875,0.08594 0.651693,0.08594 h 0.264974 v 0.601562 h -3.688151 v -0.601562 q 0.623047,-0.0072 0.766276,-0.05013 0.250651,-0.07878 0.358073,-0.279296 0.114583,-0.200521 0.114583,-0.773438 v -7.61263 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path826"
inkscape:connector-curvature="0" />
<path
d="m 67.2653,18.815756 h 0.515625 l 0.766276,3.079427 -0.658854,0.200521 q -0.630208,-1.296224 -1.675781,-2.041016 -0.859375,-0.623047 -1.904948,-0.623047 -0.630208,0 -1.131511,0.229167 -0.501302,0.222005 -0.751953,0.580078 -0.250651,0.358073 -0.250651,0.730469 0,0.336588 0.19336,0.651692 0.193359,0.315105 0.587239,0.558594 0.39388,0.236328 1.289063,0.501302 l 1.86914,0.551433 q 0.34375,0.10026 0.995443,0.386718 0.658854,0.286459 1.024089,0.608724 0.365234,0.315104 0.572916,0.780599 0.207683,0.458334 0.207683,0.995443 0,1.188802 -1.045573,2.083984 -1.038412,0.888021 -2.692709,0.888021 -0.852213,0 -1.52539,-0.243489 -0.673177,-0.250651 -1.453776,-0.88086 l -0.329427,0.952474 h -0.501303 l -0.666015,-3.58789 0.666015,-0.136068 q 0.365235,0.995443 0.966797,1.690104 0.608724,0.694661 1.339193,1.052734 0.73763,0.350912 1.496745,0.350912 1.03125,0 1.804687,-0.623047 0.644532,-0.522786 0.644532,-1.231771 0,-0.651693 -0.465495,-1.067057 -0.472656,-0.415365 -1.690104,-0.773438 l -1.790365,-0.515625 q -1.503906,-0.436849 -2.119792,-1.117187 -0.615885,-0.680339 -0.615885,-1.561198 0,-0.6875 0.401042,-1.267578 0.401041,-0.58724 1.231771,-0.98112 0.830729,-0.39388 1.81901,-0.39388 0.830729,0 1.589844,0.286458 0.537109,0.200521 0.988281,0.572917 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path828"
inkscape:connector-curvature="0" />
<path
d="m 69.986656,22.919271 v -0.587239 q 0.537109,0 0.952474,-0.136068 0.415364,-0.136068 0.909505,-0.472656 h 0.565755 v 1.195963 q 0.895182,-0.708984 1.489583,-0.952474 0.594401,-0.243489 1.188802,-0.243489 1.22461,0 2.083985,0.959635 0.866536,0.959636 0.866536,2.499349 0,1.704427 -0.981119,2.792969 -0.895183,1.002604 -2.30599,1.002604 -0.701823,0 -1.317708,-0.264974 -0.444011,-0.186198 -1.024089,-0.666015 v 2.356119 q 0,0.529948 0.02865,0.623047 0.03581,0.136068 0.143229,0.229167 0.107422,0.0931 0.272135,0.121745 0.121745,0.02148 0.816407,0.02148 v 0.601563 H 69.98666 v -0.601563 h 0.322265 q 0.494141,0 0.63737,-0.07878 0.150391,-0.07161 0.222005,-0.229167 0.04297,-0.121744 0.04297,-0.744791 v -7.426433 z m 2.427734,0.737631 v 2.463541 q 0,0.486979 0.05729,0.723308 0.08594,0.365234 0.329427,0.658854 0.250651,0.29362 0.673177,0.501302 0.429687,0.207682 0.895182,0.207682 0.93099,0 1.611328,-0.701823 0.6875,-0.701823 0.6875,-2.126953 0,-1.332031 -0.565755,-2.055339 -0.565755,-0.730468 -1.339193,-0.730468 -0.501302,0 -1.088541,0.264974 -0.58724,0.264974 -1.260417,0.794922 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path830"
inkscape:connector-curvature="0" />
<path
d="m 80.936525,18.49349 q 0.34375,0 0.58724,0.24349 0.24349,0.236328 0.24349,0.580078 0,0.34375 -0.24349,0.587239 -0.24349,0.24349 -0.58724,0.24349 -0.34375,0 -0.587239,-0.24349 -0.24349,-0.243489 -0.24349,-0.587239 0,-0.34375 0.24349,-0.580078 0.243489,-0.24349 0.587239,-0.24349 z m -1.826172,4.432943 v -0.594401 q 0.594402,-0.07162 0.995443,-0.200521 0.408203,-0.128906 0.923828,-0.408203 h 0.522787 v 5.743489 q 0,0.300782 0.08594,0.451172 0.08594,0.150391 0.236328,0.222006 0.157553,0.06445 0.565756,0.06445 h 0.336588 v 0.601562 h -3.666667 v -0.601562 h 0.29362 q 0.479818,0 0.644532,-0.08594 0.164713,-0.08594 0.229166,-0.243489 0.07162,-0.157552 0.07162,-0.737631 v -4.210937 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path832"
inkscape:connector-curvature="0" />
<path
d="m 88.040691,19.510417 v -0.608724 q 0.486979,-0.04297 0.888021,-0.164713 0.408203,-0.128907 1.016927,-0.436849 h 0.537109 v 8.686849 q 0,0.601562 0.02865,0.730469 0.07162,0.272135 0.24349,0.379557 0.171875,0.107422 0.666015,0.107422 h 0.307943 v 0.601562 l -2.485026,0.114584 v -1.138672 q -0.716146,0.651692 -1.346354,0.923828 -0.623047,0.272135 -1.253256,0.272135 -1.296224,0 -2.155599,-1.038411 -0.852213,-1.045573 -0.852213,-2.513672 0,-1.045573 0.451172,-1.91211 0.458333,-0.873698 1.203125,-1.332031 0.744791,-0.458333 1.632812,-0.458333 0.680339,0 1.260417,0.236328 0.580078,0.236328 1.059896,0.708984 v -3.158203 z m 1.203125,7.5625 v -2.707031 q 0,-0.580078 -0.222005,-0.945313 -0.214844,-0.372395 -0.716146,-0.644531 -0.494141,-0.272135 -1.016927,-0.272135 -0.623047,0 -1.152995,0.34375 -0.522787,0.336588 -0.823568,0.98112 -0.29362,0.637369 -0.29362,1.546875 0,0.859375 0.272136,1.489583 0.279297,0.623047 0.744791,0.952474 0.465495,0.322266 0.952474,0.322266 0.479818,0 1.088542,-0.272136 0.608724,-0.279297 1.167318,-0.794922 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path834"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="Ω"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#d20f00;fill-opacity:1;stroke:none"
id="text17"
transform="translate(44.587105,-11.21199)">
<path
id="path13"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66666603px;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d20f00;fill-opacity:1"
d="m 7.2553434,372.35199 v -4.27083 h 3.0208336 q -3.1380211,-2.04427 -3.1380211,-5.58594 0,-3.52865 2.3828125,-5.9375 2.3958336,-2.42188 5.8984376,-2.42188 3.489583,0 5.872395,2.42188 2.395834,2.40885 2.395834,5.9375 0,3.54167 -3.151042,5.58594 h 3.033854 v 4.27083 h -7.330729 v -3.93229 q 2.513021,-1.22396 2.513021,-5.19531 0,-4.8698 -3.346354,-4.8698 -3.333333,0 -3.333333,4.84375 0,4.01042 2.5,5.22136 v 3.93229 z"
inkscape:connector-curvature="0" />
</g>
<path
id="path3707"
style="font-style:italic;font-variant:normal;font-weight:600;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Lucida Bright';-inkscape-font-specification:'Lucida Bright, Semi-Bold Italic';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:#6a0a0a;stroke-width:0.60000002;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 63.921903,358.84168 h -1.175782 l -0.683593,3.42709 -0.209636,1.23958 q 0,0.48307 0.929688,0.54688 l 0.164062,0.009 -0.173177,0.84766 h -5.395833 l 0.164063,-0.84766 0.173177,-0.009 q 0.957031,-0.0638 1.148437,-0.27344 0.200521,-0.21875 0.501302,-1.51302 l 1.63151,-8.21224 q 0.08203,-0.48307 0.191407,-1.17578 0,-0.52865 -1.121094,-0.61068 l -0.173177,-0.009 0.173177,-0.83855 h 4.046875 l 2.351562,-0.0638 q 1.822917,0 2.725261,0.66537 0.911458,0.65625 0.911458,1.98698 0,1.43099 -0.957031,2.63411 -0.947917,1.20313 -2.606771,1.8776 l 1.768229,3.73698 q 0.65625,1.3125 0.847656,1.54037 0.191407,0.21875 0.710938,0.25521 l 0.164062,0.009 -0.164062,0.84766 h -3.308594 z m -0.99349,-0.90234 h 0.610677 q 1.686198,0 2.72526,-0.99349 1.039063,-1.0026 1.039063,-2.63411 0,-1.00261 -0.574219,-1.49479 -0.574219,-0.50131 -1.731771,-0.50131 h -0.947916 z"
inkscape:connector-curvature="0" />
<rect
style="fill:#b6e910;fill-opacity:1;stroke:#43435b;stroke-width:4.45609856;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
id="rect840"
width="110.24391"
height="50.0509"
x="4.878046"
y="41.27948"
ry="9.0788364" />
<g
aria-label="CLK IN"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text2356"
transform="translate(6.794772)">
<path
d="m 24.727895,205.31774 v 1.736 q 0,1.58667 -0.784,2.44534 -0.765333,0.84 -2.277333,0.84 -1.512,0 -2.296,-0.84 -0.765334,-0.85867 -0.765334,-2.44534 v -6.79466 q 0,-1.58667 0.765334,-2.42667 0.784,-0.85867 2.296,-0.85867 1.512,0 2.277333,0.85867 0.784,0.84 0.784,2.42667 v 1.26933 h -1.941333 v -1.4 q 0,-0.70933 -0.298667,-0.98933 -0.28,-0.29867 -0.765333,-0.29867 -0.485334,0 -0.784,0.29867 -0.28,0.28 -0.28,0.98933 v 7.056 q 0,0.70933 0.28,0.98933 0.298666,0.28 0.784,0.28 0.485333,0 0.765333,-0.28 0.298667,-0.28 0.298667,-0.98933 v -1.86667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path30"
inkscape:connector-curvature="0" />
<path
d="m 25.991978,197.12308 h 2.053333 v 11.2 h 3.378667 v 1.86666 h -5.432 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path32"
inkscape:connector-curvature="0" />
<path
d="m 35.060185,204.98174 -0.634666,1.19467 v 4.01333 h -2.053334 v -13.06666 h 2.053334 v 5.69333 l 2.725333,-5.69333 h 2.016 l -2.856,5.824 2.856,7.24266 h -2.109333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path34"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="SYNC"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text52">
<path
d="m 18.032001,98.740006 q 0,-0.906667 0.426666,-1.386667 0.437334,-0.490666 1.301334,-0.490666 0.864,0 1.290666,0.490666 0.437334,0.48 0.437334,1.386667 v 0.288 h -1.109334 v -0.362667 q 0,-0.405333 -0.16,-0.565333 -0.149333,-0.170667 -0.426666,-0.170667 -0.277334,0 -0.437334,0.170667 -0.149333,0.16 -0.149333,0.565333 0,0.384 0.170667,0.682667 0.170666,0.288 0.426666,0.554667 0.256,0.255997 0.544,0.522667 0.298667,0.256 0.554667,0.56533 0.256,0.30934 0.426667,0.704 0.170666,0.39467 0.170666,0.928 0,0.90667 -0.448,1.39734 -0.437333,0.48 -1.301333,0.48 -0.864,0 -1.312,-0.48 -0.437333,-0.49067 -0.437333,-1.39734 v -0.512 h 1.109333 v 0.58667 q 0,0.40533 0.16,0.56533 0.170667,0.16 0.448,0.16 0.277333,0 0.437333,-0.16 0.170667,-0.16 0.170667,-0.56533 0,-0.384 -0.170667,-0.672 -0.170666,-0.29867 -0.426666,-0.55467 -0.256,-0.26666 -0.554667,-0.52266 -0.288,-0.26667 -0.544,-0.576 -0.256,-0.30934 -0.426667,-0.704004 -0.170666,-0.394667 -0.170666,-0.928 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path53"
inkscape:connector-curvature="0" />
<path
d="m 23.175834,101.94001 -1.482667,-4.992004 h 1.226667 l 0.896,3.402664 0.896,-3.402664 h 1.12 l -1.482666,4.992004 v 2.47466 h -1.173334 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path55"
inkscape:connector-curvature="0" />
<path
d="m 27.351667,99.006673 v 5.407997 h -1.056 v -7.466664 h 1.472 l 1.205334,4.469334 v -4.469334 h 1.045333 v 7.466664 h -1.205333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path57"
inkscape:connector-curvature="0" />
<path
d="m 34.271501,101.63067 v 0.992 q 0,0.90667 -0.448,1.39734 -0.437334,0.48 -1.301334,0.48 -0.864,0 -1.312,-0.48 -0.437333,-0.49067 -0.437333,-1.39734 v -3.882664 q 0,-0.906667 0.437333,-1.386667 0.448,-0.490666 1.312,-0.490666 0.864,0 1.301334,0.490666 0.448,0.48 0.448,1.386667 v 0.725333 h -1.109334 v -0.8 q 0,-0.405333 -0.170666,-0.565333 -0.16,-0.170667 -0.437334,-0.170667 -0.277333,0 -0.448,0.170667 -0.16,0.16 -0.16,0.565333 v 4.032001 q 0,0.40533 0.16,0.56533 0.170667,0.16 0.448,0.16 0.277334,0 0.437334,-0.16 0.170666,-0.16 0.170666,-0.56533 v -1.06667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path59"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="CV-RATIO"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text1009"
transform="translate(-1.000001,1.99999)">
<path
d="m 59.498668,200.13067 v 0.992 q 0,0.90667 -0.448,1.39734 -0.437334,0.48 -1.301334,0.48 -0.864,0 -1.312,-0.48 -0.437333,-0.49067 -0.437333,-1.39734 v -3.88266 q 0,-0.90667 0.437333,-1.38667 0.448,-0.49067 1.312,-0.49067 0.864,0 1.301334,0.49067 0.448,0.48 0.448,1.38667 v 0.72533 h -1.109334 v -0.8 q 0,-0.40533 -0.170666,-0.56533 -0.16,-0.17067 -0.437334,-0.17067 -0.277333,0 -0.448,0.17067 -0.16,0.16 -0.16,0.56533 v 4.032 q 0,0.40533 0.16,0.56533 0.170667,0.16 0.448,0.16 0.277334,0 0.437334,-0.16 0.170666,-0.16 0.170666,-0.56533 v -1.06667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1015"
inkscape:connector-curvature="0" />
<path
d="m 61.991668,201.53867 0.896,-6.09066 h 1.077333 l -1.152,7.46666 h -1.749333 l -1.152,-7.46666 h 1.184 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1017"
inkscape:connector-curvature="0" />
<path
d="m 64.355168,198.64801 h 2.133333 v 1.06666 h -2.133333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1019"
inkscape:connector-curvature="0" />
<path
d="m 69.736834,202.91467 q -0.02133,-0.0747 -0.04267,-0.13866 -0.02133,-0.064 -0.04267,-0.16 -0.01067,-0.096 -0.02133,-0.24534 0,-0.14933 0,-0.37333 v -1.17333 q 0,-0.52267 -0.181334,-0.736 -0.181333,-0.21334 -0.586666,-0.21334 H 68.45683 v 3.04 h -1.173333 v -7.46666 h 1.770667 q 0.917333,0 1.322667,0.42666 0.416,0.42667 0.416,1.29067 v 0.58667 q 0,1.152 -0.768,1.51466 0.448,0.18134 0.608,0.59734 0.170666,0.40533 0.170666,0.992 v 1.152 q 0,0.27733 0.02133,0.49066 0.02133,0.20267 0.106666,0.416 z m -1.28,-6.4 v 2.29334 h 0.458667 q 0.330667,0 0.512,-0.17067 0.192,-0.17067 0.192,-0.61867 v -0.736 q 0,-0.40533 -0.149333,-0.58666 -0.138667,-0.18134 -0.448,-0.18134 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1021"
inkscape:connector-curvature="0" />
<path
d="m 75.372502,202.91467 h -1.184001 l -0.202666,-1.35466 h -1.44 l -0.202667,1.35466 h -1.077333 l 1.194666,-7.46666 h 1.717334 z m -2.677334,-2.368 h 1.130667 l -0.565334,-3.776 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1023"
inkscape:connector-curvature="0" />
<path
d="m 75.588501,195.44801 h 3.626667 v 1.06666 h -1.226667 v 6.4 h -1.173333 v -6.4 h -1.226667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1025"
inkscape:connector-curvature="0" />
<path
d="m 79.741835,195.44801 h 1.173333 v 7.46666 h -1.173333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1027"
inkscape:connector-curvature="0" />
<path
d="m 82.840002,201.19734 q 0,0.40533 0.16,0.576 0.170667,0.16 0.448,0.16 0.277334,0 0.437334,-0.16 0.170666,-0.17067 0.170666,-0.576 v -4.032 q 0,-0.40533 -0.170666,-0.56533 -0.16,-0.17067 -0.437334,-0.17067 -0.277333,0 -0.448,0.17067 -0.16,0.16 -0.16,0.56533 z m -1.173333,-3.95733 q 0,-0.90667 0.458667,-1.38667 0.458666,-0.49067 1.322666,-0.49067 0.864,0 1.322667,0.49067 0.458667,0.48 0.458667,1.38667 v 3.88266 q 0,0.90667 -0.458667,1.39734 -0.458667,0.48 -1.322667,0.48 -0.864,0 -1.322666,-0.48 -0.458667,-0.49067 -0.458667,-1.39734 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1029"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(3.05e-4,-1.6e-4)"
aria-label="TRIG."
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text889">
<path
d="m 94.083695,197.44816 h 3.626666 v 1.06667 h -1.226666 v 6.4 h -1.173334 v -6.4 h -1.226666 z"
id="path891"
inkscape:connector-curvature="0" />
<path
d="m 100.69036,204.91483 q -0.0213,-0.0747 -0.0427,-0.13867 -0.0213,-0.064 -0.0427,-0.16 -0.0107,-0.096 -0.0213,-0.24533 0,-0.14934 0,-0.37334 v -1.17333 q 0,-0.52267 -0.18133,-0.736 -0.18133,-0.21333 -0.586665,-0.21333 h -0.405334 v 3.04 h -1.173333 v -7.46667 h 1.770662 q 0.91734,0 1.32267,0.42667 0.416,0.42666 0.416,1.29066 v 0.58667 q 0,1.152 -0.768,1.51467 0.448,0.18133 0.608,0.59733 0.17067,0.40533 0.17067,0.992 v 1.152 q 0,0.27733 0.0213,0.49067 0.0213,0.20266 0.10667,0.416 z m -1.279999,-6.4 v 2.29333 h 0.458667 q 0.330662,0 0.512002,-0.17067 0.192,-0.17066 0.192,-0.61866 v -0.736 q 0,-0.40534 -0.14934,-0.58667 -0.13866,-0.18133 -0.447995,-0.18133 z"
id="path893"
inkscape:connector-curvature="0" />
<path
d="m 102.52869,197.44816 h 1.17334 v 7.46667 h -1.17334 z"
id="path895"
inkscape:connector-curvature="0" />
<path
d="m 106.30953,200.75483 h 1.64267 v 2.368 q 0,0.90666 -0.448,1.39733 -0.43734,0.48 -1.30134,0.48 -0.864,0 -1.312,-0.48 -0.43733,-0.49067 -0.43733,-1.39733 v -3.88267 q 0,-0.90667 0.43733,-1.38667 0.448,-0.49066 1.312,-0.49066 0.864,0 1.30134,0.49066 0.448,0.48 0.448,1.38667 v 0.72533 h -1.10934 v -0.8 q 0,-0.40533 -0.17066,-0.56533 -0.16,-0.17067 -0.43734,-0.17067 -0.27733,0 -0.448,0.17067 -0.16,0.16 -0.16,0.56533 v 4.032 q 0,0.40534 0.16,0.56534 0.17067,0.16 0.448,0.16 0.27734,0 0.43734,-0.16 0.17066,-0.16 0.17066,-0.56534 v -1.376 h -0.53333 z"
id="path897"
inkscape:connector-curvature="0" />
<path
d="m 109.7427,203.78416 v 1.13067 h -1.13067 v -1.13067 z"
id="path899"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#d2d2cd;stroke-width:1.53684449;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 68.743183,207.5581 8.912911,8.91372"
id="path960"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#d2d2cd;stroke-width:1.53676915;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 99.941074,207.55823 -8.912881,8.91326"
id="path960-0"
inkscape:connector-curvature="0" />
<rect
style="fill:none;fill-opacity:1;stroke:#00a000;stroke-width:5.23562336;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
id="rect829"
width="108.76438"
height="80.764374"
x="5.6178117"
y="257.27582"
ry="12.882656" />
<g
aria-label="1"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text938"
transform="translate(-0.78499942,0.30042392)">
<path
d="m 44.180001,265.076 q 0.597334,0 0.970667,-0.13067 0.392,-0.13066 0.634667,-0.35466 0.242666,-0.224 0.392,-0.52267 0.149333,-0.29867 0.261333,-0.63467 h 1.381333 V 276.5 h -2.053333 v -9.968 h -1.586667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#00a000;fill-opacity:1"
id="path952"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="2"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text942"
transform="translate(0.78500218,0.30042392)">
<path
d="m 75.008001,266.644 q 0,-0.87733 -0.298666,-1.176 -0.28,-0.31733 -0.765334,-0.31733 -0.485333,0 -0.784,0.29866 -0.28,0.28 -0.28,0.98934 v 1.4 h -1.941333 v -1.26934 q 0,-1.58666 0.765333,-2.42666 0.784,-0.85867 2.296,-0.85867 1.512,0 2.277333,0.85867 0.784,0.84 0.784,2.42666 0,1.064 -0.336,1.92267 -0.317333,0.85867 -0.802666,1.568 -0.485334,0.70933 -1.045333,1.30667 -0.56,0.57866 -1.008,1.12 -0.448,0.52266 -0.709334,1.04533 -0.261333,0.52267 -0.168,1.10133 h 3.882667 V 276.5 h -5.936 v -1.60533 q 0,-0.952 0.298667,-1.68 0.298666,-0.728 0.746666,-1.32534 0.466667,-0.616 0.989334,-1.13866 0.522666,-0.54134 0.970666,-1.13867 0.466667,-0.59733 0.765334,-1.30667 0.298666,-0.70933 0.298666,-1.66133 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#00a000;fill-opacity:1"
id="path955"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="3"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text946"
transform="translate(-0.78499892,-0.94890608)">
<path
d="m 47.008001,322.644 q 0,-0.87733 -0.298667,-1.176 -0.28,-0.31733 -0.765333,-0.31733 -0.485334,0 -0.784,0.29866 -0.28,0.28 -0.28,0.98934 v 0.84 h -1.941334 v -0.70934 q 0,-1.58666 0.765334,-2.42666 0.784,-0.85867 2.296,-0.85867 1.512,0 2.277333,0.85867 0.784,0.84 0.784,2.42666 v 0.336 q 0,2.09067 -1.437333,2.688 0.784,0.336 1.101333,1.04534 0.336,0.69066 0.336,1.69866 v 1.02667 q 0,1.58667 -0.784,2.44533 -0.765333,0.84 -2.277333,0.84 -1.512,0 -2.296,-0.84 -0.765334,-0.85866 -0.765334,-2.44533 v -1.08267 h 1.941334 v 1.21334 q 0,0.70933 0.28,1.008 0.298666,0.28 0.784,0.28 0.485333,0 0.765333,-0.29867 0.298667,-0.29867 0.298667,-1.176 v -1.02667 q 0,-0.91466 -0.317334,-1.288 Q 46.373334,326.62 45.664001,326.62 h -0.690667 v -1.86667 h 0.802667 q 0.578666,0 0.896,-0.29866 0.336,-0.29867 0.336,-1.08267 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#00a000;fill-opacity:1"
id="path958"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="4"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text950"
transform="translate(0.78499968,-0.79957608)">
<path
d="m 70.528004,328.26267 3.733333,-8.82934 h 2.24 v 8.82934 h 0.970666 v 1.86666 H 76.501337 V 332.5 h -2.053334 v -2.37067 h -3.919999 z m 3.919999,0 V 323.428 l -2.034666,4.83467 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#00a000;fill-opacity:1"
id="path961"
inkscape:connector-curvature="0" />
</g>
<rect
style="opacity:1;fill:#b6e910;fill-opacity:1;stroke:#43435b;stroke-width:3;stroke-linecap:butt;stroke-miterlimit:2.29999995;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="rect867"
width="56.738419"
height="32.424419"
x="31.631001"
y="281.44559"
ry="4.9140596" />
</svg>

+ 338
- 0
plugins/community/repos/Ohmer/res/KlokSpid_Carbon_Signature.svg View File

@@ -0,0 +1,338 @@
<?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"
id="svg8"
viewBox="0 0 120 380"
version="1.1"
sodipodi:docname="KlokSpid_Carbon_Signature.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
width="120"
height="380">
<title
id="title9">KlokSpid modules 8 HP for VCV Rack</title>
<metadata
id="metadata39">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>KlokSpid modules 8 HP for VCV Rack</dc:title>
<cc:license
rdf:resource="" />
</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="1920"
inkscape:window-height="1058"
id="namedview37"
showgrid="false"
inkscape:zoom="2.7736842"
inkscape:cx="-119.44972"
inkscape:cy="196.76386"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg8"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-text-baseline="false" />
<defs
id="defs4">
<marker
inkscape:stockid="TriangleOutL"
orient="auto"
refY="0.0"
refX="0.0"
id="TriangleOutL"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path999"
d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
style="fill-rule:evenodd;stroke:#00ff00;stroke-width:1pt;stroke-opacity:1;fill:#00ff00;fill-opacity:1"
transform="scale(0.8)" />
</marker>
<style
id="style2">.cls-1{fill:#ab2d2d;}.cls-2{fill:#952d2d;}.cls-3{fill:#251e1e;}.cls-4{fill:#fff7d4;}.cls-5{fill:#202020;}</style>
</defs>
<path
style="opacity:1;vector-effect:none;fill:#303030;fill-opacity:1;stroke:none;stroke-width:0.97368503;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 0,-3.03e-6 H 120 V 380 H 0 Z"
id="ModuleLayer"
inkscape:connector-curvature="0" />
<g
aria-label="KlokSpid"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text846"
transform="translate(0,3e-6)">
<path
d="m 28.27116,18.815756 h 3.852864 v 0.608724 h -0.272135 q -0.472657,0 -0.666016,0.114583 -0.193359,0.114583 -0.272135,0.358073 -0.06445,0.179036 -0.06445,0.587239 v 3.774089 l 3.752604,-3.974609 q 0.29362,-0.315105 0.34375,-0.408204 0.05729,-0.0931 0.05729,-0.193359 0,-0.128906 -0.128906,-0.193359 -0.121745,-0.06445 -0.537109,-0.06445 H 34.10775 v -0.608724 h 3.580729 v 0.608724 q -0.422526,-0.0072 -0.766276,0.0931 -0.34375,0.10026 -0.54427,0.250651 -0.436849,0.322265 -0.623047,0.515625 l -2.678386,2.742838 3.057943,4.053386 q 0.415365,0.551432 0.658854,0.759114 0.24349,0.200521 0.501302,0.286459 0.257813,0.07878 0.802084,0.07878 v 0.601562 h -4.239584 v -0.601562 h 0.250651 q 0.422526,0 0.501302,-0.02148 0.121745,-0.02865 0.19336,-0.114583 0.07161,-0.08594 0.07161,-0.179036 0,-0.186198 -0.49414,-0.852214 l -2.25586,-3.065104 -1.274739,1.317708 v 1.91211 q 0,0.49414 0.10026,0.673177 0.10026,0.179036 0.307943,0.264974 0.164713,0.06445 0.866536,0.06445 V 28.80599 H 28.27116 v -0.601562 h 0.300781 q 0.451172,0 0.615885,-0.08594 0.164714,-0.0931 0.250651,-0.300781 0.0931,-0.207682 0.0931,-0.73763 v -6.595704 q 0,-0.522786 -0.08594,-0.708984 -0.08594,-0.193359 -0.250651,-0.272135 -0.164714,-0.07878 -0.701823,-0.07878 H 28.27116 Z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path820"
inkscape:connector-curvature="0" />
<path
d="m 38.555014,19.488933 v -0.58724 q 0.973958,-0.07161 1.897786,-0.601562 h 0.529948 v 8.815755 q 0,0.558594 0.07162,0.701823 0.0931,0.200521 0.272135,0.29362 0.179037,0.0931 0.6875,0.0931 h 0.229167 v 0.601562 h -3.688151 v -0.601562 h 0.372396 q 0.350911,0 0.522786,-0.107422 0.179036,-0.107422 0.250651,-0.29362 0.07878,-0.186198 0.07878,-0.744792 v -7.569661 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path822"
inkscape:connector-curvature="0" />
<path
d="m 46.661785,21.723308 q 1.052735,0 1.819011,0.436849 0.773437,0.436849 1.217448,1.274739 0.44401,0.837891 0.44401,1.91211 0,1.074219 -0.458333,1.912109 -0.451172,0.837891 -1.238933,1.281901 -0.780599,0.436849 -1.86914,0.436849 -1.733073,0 -2.606771,-1.08138 -0.866537,-1.08138 -0.866537,-2.542318 0,-1.067057 0.451172,-1.890625 0.451172,-0.830729 1.260417,-1.281901 0.816406,-0.458333 1.847656,-0.458333 z m -0.05729,0.694661 q -0.816407,0 -1.382162,0.644532 -0.716146,0.802083 -0.716146,2.334635 0,1.47526 0.608724,2.248698 0.551432,0.6875 1.496745,0.6875 0.608724,0 1.08138,-0.322266 0.479818,-0.322265 0.773438,-1.024088 0.29362,-0.708985 0.29362,-1.661459 0,-0.930989 -0.315105,-1.668619 -0.243489,-0.58724 -0.73763,-0.909506 -0.486979,-0.329427 -1.102864,-0.329427 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path824"
inkscape:connector-curvature="0" />
<path
d="m 51.166342,19.488933 v -0.58724 q 0.916666,-0.07161 1.897786,-0.601562 h 0.551433 v 7.147135 l 2.628255,-2.091146 q 0.630208,-0.501302 0.630208,-0.666015 0,-0.100261 -0.136068,-0.157552 -0.08594,-0.03581 -0.422526,-0.03581 h -0.379557 v -0.601562 h 3.63086 v 0.601562 q -0.608724,0 -0.973959,0.128907 -0.365234,0.121744 -0.845052,0.486979 l -2.076823,1.582682 2.449219,2.678386 q 0.350911,0.386718 0.572917,0.54427 0.222005,0.157552 0.44401,0.222006 0.222005,0.05729 0.694662,0.06445 v 0.601562 h -3.809896 v -0.601562 h 0.293619 q 0.436849,0 0.551433,-0.06445 0.114583,-0.07162 0.114583,-0.186198 0,-0.114584 -0.214844,-0.329427 -0.03581,-0.03581 -0.07878,-0.08594 l -1.904948,-2.191406 -1.167317,0.895182 v 0.938151 q 0,0.522787 0.07878,0.6875 0.07878,0.164714 0.243489,0.250651 0.171875,0.08594 0.651693,0.08594 h 0.264974 v 0.601562 h -3.688151 v -0.601562 q 0.623047,-0.0072 0.766276,-0.05013 0.250651,-0.07878 0.358073,-0.279296 0.114583,-0.200521 0.114583,-0.773438 v -7.61263 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path826"
inkscape:connector-curvature="0" />
<path
d="m 67.2653,18.815756 h 0.515625 l 0.766276,3.079427 -0.658854,0.200521 q -0.630208,-1.296224 -1.675781,-2.041016 -0.859375,-0.623047 -1.904948,-0.623047 -0.630208,0 -1.131511,0.229167 -0.501302,0.222005 -0.751953,0.580078 -0.250651,0.358073 -0.250651,0.730469 0,0.336588 0.19336,0.651692 0.193359,0.315105 0.587239,0.558594 0.39388,0.236328 1.289063,0.501302 l 1.86914,0.551433 q 0.34375,0.10026 0.995443,0.386718 0.658854,0.286459 1.024089,0.608724 0.365234,0.315104 0.572916,0.780599 0.207683,0.458334 0.207683,0.995443 0,1.188802 -1.045573,2.083984 -1.038412,0.888021 -2.692709,0.888021 -0.852213,0 -1.52539,-0.243489 -0.673177,-0.250651 -1.453776,-0.88086 l -0.329427,0.952474 h -0.501303 l -0.666015,-3.58789 0.666015,-0.136068 q 0.365235,0.995443 0.966797,1.690104 0.608724,0.694661 1.339193,1.052734 0.73763,0.350912 1.496745,0.350912 1.03125,0 1.804687,-0.623047 0.644532,-0.522786 0.644532,-1.231771 0,-0.651693 -0.465495,-1.067057 -0.472656,-0.415365 -1.690104,-0.773438 l -1.790365,-0.515625 q -1.503906,-0.436849 -2.119792,-1.117187 -0.615885,-0.680339 -0.615885,-1.561198 0,-0.6875 0.401042,-1.267578 0.401041,-0.58724 1.231771,-0.98112 0.830729,-0.39388 1.81901,-0.39388 0.830729,0 1.589844,0.286458 0.537109,0.200521 0.988281,0.572917 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path828"
inkscape:connector-curvature="0" />
<path
d="m 69.986656,22.919271 v -0.587239 q 0.537109,0 0.952474,-0.136068 0.415364,-0.136068 0.909505,-0.472656 h 0.565755 v 1.195963 q 0.895182,-0.708984 1.489583,-0.952474 0.594401,-0.243489 1.188802,-0.243489 1.22461,0 2.083985,0.959635 0.866536,0.959636 0.866536,2.499349 0,1.704427 -0.981119,2.792969 -0.895183,1.002604 -2.30599,1.002604 -0.701823,0 -1.317708,-0.264974 -0.444011,-0.186198 -1.024089,-0.666015 v 2.356119 q 0,0.529948 0.02865,0.623047 0.03581,0.136068 0.143229,0.229167 0.107422,0.0931 0.272135,0.121745 0.121745,0.02148 0.816407,0.02148 v 0.601563 H 69.98666 v -0.601563 h 0.322265 q 0.494141,0 0.63737,-0.07878 0.150391,-0.07161 0.222005,-0.229167 0.04297,-0.121744 0.04297,-0.744791 v -7.426433 z m 2.427734,0.737631 v 2.463541 q 0,0.486979 0.05729,0.723308 0.08594,0.365234 0.329427,0.658854 0.250651,0.29362 0.673177,0.501302 0.429687,0.207682 0.895182,0.207682 0.93099,0 1.611328,-0.701823 0.6875,-0.701823 0.6875,-2.126953 0,-1.332031 -0.565755,-2.055339 -0.565755,-0.730468 -1.339193,-0.730468 -0.501302,0 -1.088541,0.264974 -0.58724,0.264974 -1.260417,0.794922 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path830"
inkscape:connector-curvature="0" />
<path
d="m 80.936525,18.49349 q 0.34375,0 0.58724,0.24349 0.24349,0.236328 0.24349,0.580078 0,0.34375 -0.24349,0.587239 -0.24349,0.24349 -0.58724,0.24349 -0.34375,0 -0.587239,-0.24349 -0.24349,-0.243489 -0.24349,-0.587239 0,-0.34375 0.24349,-0.580078 0.243489,-0.24349 0.587239,-0.24349 z m -1.826172,4.432943 v -0.594401 q 0.594402,-0.07162 0.995443,-0.200521 0.408203,-0.128906 0.923828,-0.408203 h 0.522787 v 5.743489 q 0,0.300782 0.08594,0.451172 0.08594,0.150391 0.236328,0.222006 0.157553,0.06445 0.565756,0.06445 h 0.336588 v 0.601562 h -3.666667 v -0.601562 h 0.29362 q 0.479818,0 0.644532,-0.08594 0.164713,-0.08594 0.229166,-0.243489 0.07162,-0.157552 0.07162,-0.737631 v -4.210937 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path832"
inkscape:connector-curvature="0" />
<path
d="m 88.040691,19.510417 v -0.608724 q 0.486979,-0.04297 0.888021,-0.164713 0.408203,-0.128907 1.016927,-0.436849 h 0.537109 v 8.686849 q 0,0.601562 0.02865,0.730469 0.07162,0.272135 0.24349,0.379557 0.171875,0.107422 0.666015,0.107422 h 0.307943 v 0.601562 l -2.485026,0.114584 v -1.138672 q -0.716146,0.651692 -1.346354,0.923828 -0.623047,0.272135 -1.253256,0.272135 -1.296224,0 -2.155599,-1.038411 -0.852213,-1.045573 -0.852213,-2.513672 0,-1.045573 0.451172,-1.91211 0.458333,-0.873698 1.203125,-1.332031 0.744791,-0.458333 1.632812,-0.458333 0.680339,0 1.260417,0.236328 0.580078,0.236328 1.059896,0.708984 v -3.158203 z m 1.203125,7.5625 v -2.707031 q 0,-0.580078 -0.222005,-0.945313 -0.214844,-0.372395 -0.716146,-0.644531 -0.494141,-0.272135 -1.016927,-0.272135 -0.623047,0 -1.152995,0.34375 -0.522787,0.336588 -0.823568,0.98112 -0.29362,0.637369 -0.29362,1.546875 0,0.859375 0.272136,1.489583 0.279297,0.623047 0.744791,0.952474 0.465495,0.322266 0.952474,0.322266 0.479818,0 1.088542,-0.272136 0.608724,-0.279297 1.167318,-0.794922 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path834"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="Ω"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#d20f00;fill-opacity:1;stroke:none"
id="text17"
transform="translate(44.587105,-11.21199)">
<path
id="path13"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66666603px;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d20f00;fill-opacity:1"
d="m 7.2553434,372.35199 v -4.27083 h 3.0208336 q -3.1380211,-2.04427 -3.1380211,-5.58594 0,-3.52865 2.3828125,-5.9375 2.3958336,-2.42188 5.8984376,-2.42188 3.489583,0 5.872395,2.42188 2.395834,2.40885 2.395834,5.9375 0,3.54167 -3.151042,5.58594 h 3.033854 v 4.27083 h -7.330729 v -3.93229 q 2.513021,-1.22396 2.513021,-5.19531 0,-4.8698 -3.346354,-4.8698 -3.333333,0 -3.333333,4.84375 0,4.01042 2.5,5.22136 v 3.93229 z"
inkscape:connector-curvature="0" />
</g>
<path
id="path3707"
style="font-style:italic;font-variant:normal;font-weight:600;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Lucida Bright';-inkscape-font-specification:'Lucida Bright, Semi-Bold Italic';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:#6a0a0a;stroke-width:0.60000002;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 63.921903,358.84168 h -1.175782 l -0.683593,3.42709 -0.209636,1.23958 q 0,0.48307 0.929688,0.54688 l 0.164062,0.009 -0.173177,0.84766 h -5.395833 l 0.164063,-0.84766 0.173177,-0.009 q 0.957031,-0.0638 1.148437,-0.27344 0.200521,-0.21875 0.501302,-1.51302 l 1.63151,-8.21224 q 0.08203,-0.48307 0.191407,-1.17578 0,-0.52865 -1.121094,-0.61068 l -0.173177,-0.009 0.173177,-0.83855 h 4.046875 l 2.351562,-0.0638 q 1.822917,0 2.725261,0.66537 0.911458,0.65625 0.911458,1.98698 0,1.43099 -0.957031,2.63411 -0.947917,1.20313 -2.606771,1.8776 l 1.768229,3.73698 q 0.65625,1.3125 0.847656,1.54037 0.191407,0.21875 0.710938,0.25521 l 0.164062,0.009 -0.164062,0.84766 h -3.308594 z m -0.99349,-0.90234 h 0.610677 q 1.686198,0 2.72526,-0.99349 1.039063,-1.0026 1.039063,-2.63411 0,-1.00261 -0.574219,-1.49479 -0.574219,-0.50131 -1.731771,-0.50131 h -0.947916 z"
inkscape:connector-curvature="0" />
<rect
style="fill:#060614;fill-opacity:1;stroke:#43435b;stroke-width:4.45609856;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
id="rect840"
width="110.24391"
height="50.0509"
x="4.878046"
y="41.27948"
ry="9.0788364" />
<g
aria-label="CLK IN"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text2356"
transform="translate(6.794772)">
<path
d="m 24.727895,205.31774 v 1.736 q 0,1.58667 -0.784,2.44534 -0.765333,0.84 -2.277333,0.84 -1.512,0 -2.296,-0.84 -0.765334,-0.85867 -0.765334,-2.44534 v -6.79466 q 0,-1.58667 0.765334,-2.42667 0.784,-0.85867 2.296,-0.85867 1.512,0 2.277333,0.85867 0.784,0.84 0.784,2.42667 v 1.26933 h -1.941333 v -1.4 q 0,-0.70933 -0.298667,-0.98933 -0.28,-0.29867 -0.765333,-0.29867 -0.485334,0 -0.784,0.29867 -0.28,0.28 -0.28,0.98933 v 7.056 q 0,0.70933 0.28,0.98933 0.298666,0.28 0.784,0.28 0.485333,0 0.765333,-0.28 0.298667,-0.28 0.298667,-0.98933 v -1.86667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path30"
inkscape:connector-curvature="0" />
<path
d="m 25.991978,197.12308 h 2.053333 v 11.2 h 3.378667 v 1.86666 h -5.432 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path32"
inkscape:connector-curvature="0" />
<path
d="m 35.060185,204.98174 -0.634666,1.19467 v 4.01333 h -2.053334 v -13.06666 h 2.053334 v 5.69333 l 2.725333,-5.69333 h 2.016 l -2.856,5.824 2.856,7.24266 h -2.109333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path34"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="SYNC"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text52">
<path
d="m 18.032001,98.740006 q 0,-0.906667 0.426666,-1.386667 0.437334,-0.490666 1.301334,-0.490666 0.864,0 1.290666,0.490666 0.437334,0.48 0.437334,1.386667 v 0.288 h -1.109334 v -0.362667 q 0,-0.405333 -0.16,-0.565333 -0.149333,-0.170667 -0.426666,-0.170667 -0.277334,0 -0.437334,0.170667 -0.149333,0.16 -0.149333,0.565333 0,0.384 0.170667,0.682667 0.170666,0.288 0.426666,0.554667 0.256,0.255997 0.544,0.522667 0.298667,0.256 0.554667,0.56533 0.256,0.30934 0.426667,0.704 0.170666,0.39467 0.170666,0.928 0,0.90667 -0.448,1.39734 -0.437333,0.48 -1.301333,0.48 -0.864,0 -1.312,-0.48 -0.437333,-0.49067 -0.437333,-1.39734 v -0.512 h 1.109333 v 0.58667 q 0,0.40533 0.16,0.56533 0.170667,0.16 0.448,0.16 0.277333,0 0.437333,-0.16 0.170667,-0.16 0.170667,-0.56533 0,-0.384 -0.170667,-0.672 -0.170666,-0.29867 -0.426666,-0.55467 -0.256,-0.26666 -0.554667,-0.52266 -0.288,-0.26667 -0.544,-0.576 -0.256,-0.30934 -0.426667,-0.704004 -0.170666,-0.394667 -0.170666,-0.928 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path53"
inkscape:connector-curvature="0" />
<path
d="m 23.175834,101.94001 -1.482667,-4.992004 h 1.226667 l 0.896,3.402664 0.896,-3.402664 h 1.12 l -1.482666,4.992004 v 2.47466 h -1.173334 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path55"
inkscape:connector-curvature="0" />
<path
d="m 27.351667,99.006673 v 5.407997 h -1.056 v -7.466664 h 1.472 l 1.205334,4.469334 v -4.469334 h 1.045333 v 7.466664 h -1.205333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path57"
inkscape:connector-curvature="0" />
<path
d="m 34.271501,101.63067 v 0.992 q 0,0.90667 -0.448,1.39734 -0.437334,0.48 -1.301334,0.48 -0.864,0 -1.312,-0.48 -0.437333,-0.49067 -0.437333,-1.39734 v -3.882664 q 0,-0.906667 0.437333,-1.386667 0.448,-0.490666 1.312,-0.490666 0.864,0 1.301334,0.490666 0.448,0.48 0.448,1.386667 v 0.725333 h -1.109334 v -0.8 q 0,-0.405333 -0.170666,-0.565333 -0.16,-0.170667 -0.437334,-0.170667 -0.277333,0 -0.448,0.170667 -0.16,0.16 -0.16,0.565333 v 4.032001 q 0,0.40533 0.16,0.56533 0.170667,0.16 0.448,0.16 0.277334,0 0.437334,-0.16 0.170666,-0.16 0.170666,-0.56533 v -1.06667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path59"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="CV-RATIO"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text1009"
transform="translate(-1.000001,1.99999)">
<path
d="m 59.498668,200.13067 v 0.992 q 0,0.90667 -0.448,1.39734 -0.437334,0.48 -1.301334,0.48 -0.864,0 -1.312,-0.48 -0.437333,-0.49067 -0.437333,-1.39734 v -3.88266 q 0,-0.90667 0.437333,-1.38667 0.448,-0.49067 1.312,-0.49067 0.864,0 1.301334,0.49067 0.448,0.48 0.448,1.38667 v 0.72533 h -1.109334 v -0.8 q 0,-0.40533 -0.170666,-0.56533 -0.16,-0.17067 -0.437334,-0.17067 -0.277333,0 -0.448,0.17067 -0.16,0.16 -0.16,0.56533 v 4.032 q 0,0.40533 0.16,0.56533 0.170667,0.16 0.448,0.16 0.277334,0 0.437334,-0.16 0.170666,-0.16 0.170666,-0.56533 v -1.06667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1015"
inkscape:connector-curvature="0" />
<path
d="m 61.991668,201.53867 0.896,-6.09066 h 1.077333 l -1.152,7.46666 h -1.749333 l -1.152,-7.46666 h 1.184 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1017"
inkscape:connector-curvature="0" />
<path
d="m 64.355168,198.64801 h 2.133333 v 1.06666 h -2.133333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1019"
inkscape:connector-curvature="0" />
<path
d="m 69.736834,202.91467 q -0.02133,-0.0747 -0.04267,-0.13866 -0.02133,-0.064 -0.04267,-0.16 -0.01067,-0.096 -0.02133,-0.24534 0,-0.14933 0,-0.37333 v -1.17333 q 0,-0.52267 -0.181334,-0.736 -0.181333,-0.21334 -0.586666,-0.21334 H 68.45683 v 3.04 h -1.173333 v -7.46666 h 1.770667 q 0.917333,0 1.322667,0.42666 0.416,0.42667 0.416,1.29067 v 0.58667 q 0,1.152 -0.768,1.51466 0.448,0.18134 0.608,0.59734 0.170666,0.40533 0.170666,0.992 v 1.152 q 0,0.27733 0.02133,0.49066 0.02133,0.20267 0.106666,0.416 z m -1.28,-6.4 v 2.29334 h 0.458667 q 0.330667,0 0.512,-0.17067 0.192,-0.17067 0.192,-0.61867 v -0.736 q 0,-0.40533 -0.149333,-0.58666 -0.138667,-0.18134 -0.448,-0.18134 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1021"
inkscape:connector-curvature="0" />
<path
d="m 75.372502,202.91467 h -1.184001 l -0.202666,-1.35466 h -1.44 l -0.202667,1.35466 h -1.077333 l 1.194666,-7.46666 h 1.717334 z m -2.677334,-2.368 h 1.130667 l -0.565334,-3.776 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1023"
inkscape:connector-curvature="0" />
<path
d="m 75.588501,195.44801 h 3.626667 v 1.06666 h -1.226667 v 6.4 h -1.173333 v -6.4 h -1.226667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1025"
inkscape:connector-curvature="0" />
<path
d="m 79.741835,195.44801 h 1.173333 v 7.46666 h -1.173333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1027"
inkscape:connector-curvature="0" />
<path
d="m 82.840002,201.19734 q 0,0.40533 0.16,0.576 0.170667,0.16 0.448,0.16 0.277334,0 0.437334,-0.16 0.170666,-0.17067 0.170666,-0.576 v -4.032 q 0,-0.40533 -0.170666,-0.56533 -0.16,-0.17067 -0.437334,-0.17067 -0.277333,0 -0.448,0.17067 -0.16,0.16 -0.16,0.56533 z m -1.173333,-3.95733 q 0,-0.90667 0.458667,-1.38667 0.458666,-0.49067 1.322666,-0.49067 0.864,0 1.322667,0.49067 0.458667,0.48 0.458667,1.38667 v 3.88266 q 0,0.90667 -0.458667,1.39734 -0.458667,0.48 -1.322667,0.48 -0.864,0 -1.322666,-0.48 -0.458667,-0.49067 -0.458667,-1.39734 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1029"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(3.05e-4,-1.6e-4)"
aria-label="TRIG."
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text889">
<path
d="m 94.083695,197.44816 h 3.626666 v 1.06667 h -1.226666 v 6.4 h -1.173334 v -6.4 h -1.226666 z"
id="path891"
inkscape:connector-curvature="0" />
<path
d="m 100.69036,204.91483 q -0.0213,-0.0747 -0.0427,-0.13867 -0.0213,-0.064 -0.0427,-0.16 -0.0107,-0.096 -0.0213,-0.24533 0,-0.14934 0,-0.37334 v -1.17333 q 0,-0.52267 -0.18133,-0.736 -0.18133,-0.21333 -0.586665,-0.21333 h -0.405334 v 3.04 h -1.173333 v -7.46667 h 1.770662 q 0.91734,0 1.32267,0.42667 0.416,0.42666 0.416,1.29066 v 0.58667 q 0,1.152 -0.768,1.51467 0.448,0.18133 0.608,0.59733 0.17067,0.40533 0.17067,0.992 v 1.152 q 0,0.27733 0.0213,0.49067 0.0213,0.20266 0.10667,0.416 z m -1.279999,-6.4 v 2.29333 h 0.458667 q 0.330662,0 0.512002,-0.17067 0.192,-0.17066 0.192,-0.61866 v -0.736 q 0,-0.40534 -0.14934,-0.58667 -0.13866,-0.18133 -0.447995,-0.18133 z"
id="path893"
inkscape:connector-curvature="0" />
<path
d="m 102.52869,197.44816 h 1.17334 v 7.46667 h -1.17334 z"
id="path895"
inkscape:connector-curvature="0" />
<path
d="m 106.30953,200.75483 h 1.64267 v 2.368 q 0,0.90666 -0.448,1.39733 -0.43734,0.48 -1.30134,0.48 -0.864,0 -1.312,-0.48 -0.43733,-0.49067 -0.43733,-1.39733 v -3.88267 q 0,-0.90667 0.43733,-1.38667 0.448,-0.49066 1.312,-0.49066 0.864,0 1.30134,0.49066 0.448,0.48 0.448,1.38667 v 0.72533 h -1.10934 v -0.8 q 0,-0.40533 -0.17066,-0.56533 -0.16,-0.17067 -0.43734,-0.17067 -0.27733,0 -0.448,0.17067 -0.16,0.16 -0.16,0.56533 v 4.032 q 0,0.40534 0.16,0.56534 0.17067,0.16 0.448,0.16 0.27734,0 0.43734,-0.16 0.17066,-0.16 0.17066,-0.56534 v -1.376 h -0.53333 z"
id="path897"
inkscape:connector-curvature="0" />
<path
d="m 109.7427,203.78416 v 1.13067 h -1.13067 v -1.13067 z"
id="path899"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#d2d2cd;stroke-width:1.53684449;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 68.743183,207.5581 8.912911,8.91372"
id="path960"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#d2d2cd;stroke-width:1.53676915;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 99.941074,207.55823 -8.912881,8.91326"
id="path960-0"
inkscape:connector-curvature="0" />
<rect
style="fill:none;fill-opacity:1;stroke:#00a000;stroke-width:5.23562336;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
id="rect829"
width="108.76438"
height="80.764374"
x="5.6178117"
y="257.27582"
ry="12.882656" />
<g
aria-label="1"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text938"
transform="translate(-0.78499942,0.30042392)">
<path
d="m 44.180001,265.076 q 0.597334,0 0.970667,-0.13067 0.392,-0.13066 0.634667,-0.35466 0.242666,-0.224 0.392,-0.52267 0.149333,-0.29867 0.261333,-0.63467 h 1.381333 V 276.5 h -2.053333 v -9.968 h -1.586667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#00a000;fill-opacity:1"
id="path952"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="2"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text942"
transform="translate(0.78500218,0.30042392)">
<path
d="m 75.008001,266.644 q 0,-0.87733 -0.298666,-1.176 -0.28,-0.31733 -0.765334,-0.31733 -0.485333,0 -0.784,0.29866 -0.28,0.28 -0.28,0.98934 v 1.4 h -1.941333 v -1.26934 q 0,-1.58666 0.765333,-2.42666 0.784,-0.85867 2.296,-0.85867 1.512,0 2.277333,0.85867 0.784,0.84 0.784,2.42666 0,1.064 -0.336,1.92267 -0.317333,0.85867 -0.802666,1.568 -0.485334,0.70933 -1.045333,1.30667 -0.56,0.57866 -1.008,1.12 -0.448,0.52266 -0.709334,1.04533 -0.261333,0.52267 -0.168,1.10133 h 3.882667 V 276.5 h -5.936 v -1.60533 q 0,-0.952 0.298667,-1.68 0.298666,-0.728 0.746666,-1.32534 0.466667,-0.616 0.989334,-1.13866 0.522666,-0.54134 0.970666,-1.13867 0.466667,-0.59733 0.765334,-1.30667 0.298666,-0.70933 0.298666,-1.66133 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#00a000;fill-opacity:1"
id="path955"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="3"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text946"
transform="translate(-0.78499892,-0.94890608)">
<path
d="m 47.008001,322.644 q 0,-0.87733 -0.298667,-1.176 -0.28,-0.31733 -0.765333,-0.31733 -0.485334,0 -0.784,0.29866 -0.28,0.28 -0.28,0.98934 v 0.84 h -1.941334 v -0.70934 q 0,-1.58666 0.765334,-2.42666 0.784,-0.85867 2.296,-0.85867 1.512,0 2.277333,0.85867 0.784,0.84 0.784,2.42666 v 0.336 q 0,2.09067 -1.437333,2.688 0.784,0.336 1.101333,1.04534 0.336,0.69066 0.336,1.69866 v 1.02667 q 0,1.58667 -0.784,2.44533 -0.765333,0.84 -2.277333,0.84 -1.512,0 -2.296,-0.84 -0.765334,-0.85866 -0.765334,-2.44533 v -1.08267 h 1.941334 v 1.21334 q 0,0.70933 0.28,1.008 0.298666,0.28 0.784,0.28 0.485333,0 0.765333,-0.29867 0.298667,-0.29867 0.298667,-1.176 v -1.02667 q 0,-0.91466 -0.317334,-1.288 Q 46.373334,326.62 45.664001,326.62 h -0.690667 v -1.86667 h 0.802667 q 0.578666,0 0.896,-0.29866 0.336,-0.29867 0.336,-1.08267 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#00a000;fill-opacity:1"
id="path958"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="4"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text950"
transform="translate(0.78499968,-0.79957608)">
<path
d="m 70.528004,328.26267 3.733333,-8.82934 h 2.24 v 8.82934 h 0.970666 v 1.86666 H 76.501337 V 332.5 h -2.053334 v -2.37067 h -3.919999 z m 3.919999,0 V 323.428 l -2.034666,4.83467 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#00a000;fill-opacity:1"
id="path961"
inkscape:connector-curvature="0" />
</g>
<rect
style="opacity:1;fill:#060614;fill-opacity:1;stroke:#43435b;stroke-width:3;stroke-linecap:butt;stroke-miterlimit:2.29999995;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="rect867"
width="56.738419"
height="32.424419"
x="31.631001"
y="281.44559"
ry="4.9140596" />
</svg>

+ 388
- 0
plugins/community/repos/Ohmer/res/KlokSpid_Classic.svg View File

@@ -0,0 +1,388 @@
<?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"
id="svg8"
viewBox="0 0 120 380"
version="1.1"
sodipodi:docname="KlokSpid_Classic.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
width="120"
height="380">
<title
id="title9">KlokSpid modules 8 HP for VCV Rack</title>
<metadata
id="metadata39">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>KlokSpid modules 8 HP for VCV Rack</dc:title>
<cc:license
rdf:resource="" />
</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="1920"
inkscape:window-height="1058"
id="namedview37"
showgrid="false"
inkscape:zoom="1.3868421"
inkscape:cx="-7.4880414"
inkscape:cy="277.87343"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg8"
showguides="true"
inkscape:guide-bbox="true" />
<defs
id="defs4">
<style
id="style2">.cls-1{fill:#ab2d2d;}.cls-2{fill:#952d2d;}.cls-3{fill:#251e1e;}.cls-4{fill:#fff7d4;}.cls-5{fill:#202020;}</style>
</defs>
<path
style="opacity:1;vector-effect:none;fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:0.97368503;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 0,0 H 120 V 380 H 0 Z"
id="ModuleLayer" />
<g
aria-label="KlokSpid"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text846"
transform="translate(0,3e-6)">
<path
d="m 28.27116,18.815756 h 3.852864 v 0.608724 h -0.272135 q -0.472657,0 -0.666016,0.114583 -0.193359,0.114583 -0.272135,0.358073 -0.06445,0.179036 -0.06445,0.587239 v 3.774089 l 3.752604,-3.974609 q 0.29362,-0.315105 0.34375,-0.408204 0.05729,-0.0931 0.05729,-0.193359 0,-0.128906 -0.128906,-0.193359 -0.121745,-0.06445 -0.537109,-0.06445 H 34.10775 v -0.608724 h 3.580729 v 0.608724 q -0.422526,-0.0072 -0.766276,0.0931 -0.34375,0.10026 -0.54427,0.250651 -0.436849,0.322265 -0.623047,0.515625 l -2.678386,2.742838 3.057943,4.053386 q 0.415365,0.551432 0.658854,0.759114 0.24349,0.200521 0.501302,0.286459 0.257813,0.07878 0.802084,0.07878 v 0.601562 h -4.239584 v -0.601562 h 0.250651 q 0.422526,0 0.501302,-0.02148 0.121745,-0.02865 0.19336,-0.114583 0.07161,-0.08594 0.07161,-0.179036 0,-0.186198 -0.49414,-0.852214 l -2.25586,-3.065104 -1.274739,1.317708 v 1.91211 q 0,0.49414 0.10026,0.673177 0.10026,0.179036 0.307943,0.264974 0.164713,0.06445 0.866536,0.06445 V 28.80599 H 28.27116 v -0.601562 h 0.300781 q 0.451172,0 0.615885,-0.08594 0.164714,-0.0931 0.250651,-0.300781 0.0931,-0.207682 0.0931,-0.73763 v -6.595704 q 0,-0.522786 -0.08594,-0.708984 -0.08594,-0.193359 -0.250651,-0.272135 -0.164714,-0.07878 -0.701823,-0.07878 H 28.27116 Z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1"
id="path820"
inkscape:connector-curvature="0" />
<path
d="m 38.555014,19.488933 v -0.58724 q 0.973958,-0.07161 1.897786,-0.601562 h 0.529948 v 8.815755 q 0,0.558594 0.07162,0.701823 0.0931,0.200521 0.272135,0.29362 0.179037,0.0931 0.6875,0.0931 h 0.229167 v 0.601562 h -3.688151 v -0.601562 h 0.372396 q 0.350911,0 0.522786,-0.107422 0.179036,-0.107422 0.250651,-0.29362 0.07878,-0.186198 0.07878,-0.744792 v -7.569661 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1"
id="path822"
inkscape:connector-curvature="0" />
<path
d="m 46.661785,21.723308 q 1.052735,0 1.819011,0.436849 0.773437,0.436849 1.217448,1.274739 0.44401,0.837891 0.44401,1.91211 0,1.074219 -0.458333,1.912109 -0.451172,0.837891 -1.238933,1.281901 -0.780599,0.436849 -1.86914,0.436849 -1.733073,0 -2.606771,-1.08138 -0.866537,-1.08138 -0.866537,-2.542318 0,-1.067057 0.451172,-1.890625 0.451172,-0.830729 1.260417,-1.281901 0.816406,-0.458333 1.847656,-0.458333 z m -0.05729,0.694661 q -0.816407,0 -1.382162,0.644532 -0.716146,0.802083 -0.716146,2.334635 0,1.47526 0.608724,2.248698 0.551432,0.6875 1.496745,0.6875 0.608724,0 1.08138,-0.322266 0.479818,-0.322265 0.773438,-1.024088 0.29362,-0.708985 0.29362,-1.661459 0,-0.930989 -0.315105,-1.668619 -0.243489,-0.58724 -0.73763,-0.909506 -0.486979,-0.329427 -1.102864,-0.329427 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1"
id="path824"
inkscape:connector-curvature="0" />
<path
d="m 51.166342,19.488933 v -0.58724 q 0.916666,-0.07161 1.897786,-0.601562 h 0.551433 v 7.147135 l 2.628255,-2.091146 q 0.630208,-0.501302 0.630208,-0.666015 0,-0.100261 -0.136068,-0.157552 -0.08594,-0.03581 -0.422526,-0.03581 h -0.379557 v -0.601562 h 3.63086 v 0.601562 q -0.608724,0 -0.973959,0.128907 -0.365234,0.121744 -0.845052,0.486979 l -2.076823,1.582682 2.449219,2.678386 q 0.350911,0.386718 0.572917,0.54427 0.222005,0.157552 0.44401,0.222006 0.222005,0.05729 0.694662,0.06445 v 0.601562 h -3.809896 v -0.601562 h 0.293619 q 0.436849,0 0.551433,-0.06445 0.114583,-0.07162 0.114583,-0.186198 0,-0.114584 -0.214844,-0.329427 -0.03581,-0.03581 -0.07878,-0.08594 l -1.904948,-2.191406 -1.167317,0.895182 v 0.938151 q 0,0.522787 0.07878,0.6875 0.07878,0.164714 0.243489,0.250651 0.171875,0.08594 0.651693,0.08594 h 0.264974 v 0.601562 h -3.688151 v -0.601562 q 0.623047,-0.0072 0.766276,-0.05013 0.250651,-0.07878 0.358073,-0.279296 0.114583,-0.200521 0.114583,-0.773438 v -7.61263 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1"
id="path826"
inkscape:connector-curvature="0" />
<path
d="m 67.2653,18.815756 h 0.515625 l 0.766276,3.079427 -0.658854,0.200521 q -0.630208,-1.296224 -1.675781,-2.041016 -0.859375,-0.623047 -1.904948,-0.623047 -0.630208,0 -1.131511,0.229167 -0.501302,0.222005 -0.751953,0.580078 -0.250651,0.358073 -0.250651,0.730469 0,0.336588 0.19336,0.651692 0.193359,0.315105 0.587239,0.558594 0.39388,0.236328 1.289063,0.501302 l 1.86914,0.551433 q 0.34375,0.10026 0.995443,0.386718 0.658854,0.286459 1.024089,0.608724 0.365234,0.315104 0.572916,0.780599 0.207683,0.458334 0.207683,0.995443 0,1.188802 -1.045573,2.083984 -1.038412,0.888021 -2.692709,0.888021 -0.852213,0 -1.52539,-0.243489 -0.673177,-0.250651 -1.453776,-0.88086 l -0.329427,0.952474 h -0.501303 l -0.666015,-3.58789 0.666015,-0.136068 q 0.365235,0.995443 0.966797,1.690104 0.608724,0.694661 1.339193,1.052734 0.73763,0.350912 1.496745,0.350912 1.03125,0 1.804687,-0.623047 0.644532,-0.522786 0.644532,-1.231771 0,-0.651693 -0.465495,-1.067057 -0.472656,-0.415365 -1.690104,-0.773438 l -1.790365,-0.515625 q -1.503906,-0.436849 -2.119792,-1.117187 -0.615885,-0.680339 -0.615885,-1.561198 0,-0.6875 0.401042,-1.267578 0.401041,-0.58724 1.231771,-0.98112 0.830729,-0.39388 1.81901,-0.39388 0.830729,0 1.589844,0.286458 0.537109,0.200521 0.988281,0.572917 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1"
id="path828"
inkscape:connector-curvature="0" />
<path
d="m 69.986656,22.919271 v -0.587239 q 0.537109,0 0.952474,-0.136068 0.415364,-0.136068 0.909505,-0.472656 h 0.565755 v 1.195963 q 0.895182,-0.708984 1.489583,-0.952474 0.594401,-0.243489 1.188802,-0.243489 1.22461,0 2.083985,0.959635 0.866536,0.959636 0.866536,2.499349 0,1.704427 -0.981119,2.792969 -0.895183,1.002604 -2.30599,1.002604 -0.701823,0 -1.317708,-0.264974 -0.444011,-0.186198 -1.024089,-0.666015 v 2.356119 q 0,0.529948 0.02865,0.623047 0.03581,0.136068 0.143229,0.229167 0.107422,0.0931 0.272135,0.121745 0.121745,0.02148 0.816407,0.02148 v 0.601563 H 69.98666 v -0.601563 h 0.322265 q 0.494141,0 0.63737,-0.07878 0.150391,-0.07161 0.222005,-0.229167 0.04297,-0.121744 0.04297,-0.744791 v -7.426433 z m 2.427734,0.737631 v 2.463541 q 0,0.486979 0.05729,0.723308 0.08594,0.365234 0.329427,0.658854 0.250651,0.29362 0.673177,0.501302 0.429687,0.207682 0.895182,0.207682 0.93099,0 1.611328,-0.701823 0.6875,-0.701823 0.6875,-2.126953 0,-1.332031 -0.565755,-2.055339 -0.565755,-0.730468 -1.339193,-0.730468 -0.501302,0 -1.088541,0.264974 -0.58724,0.264974 -1.260417,0.794922 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1"
id="path830"
inkscape:connector-curvature="0" />
<path
d="m 80.936525,18.49349 q 0.34375,0 0.58724,0.24349 0.24349,0.236328 0.24349,0.580078 0,0.34375 -0.24349,0.587239 -0.24349,0.24349 -0.58724,0.24349 -0.34375,0 -0.587239,-0.24349 -0.24349,-0.243489 -0.24349,-0.587239 0,-0.34375 0.24349,-0.580078 0.243489,-0.24349 0.587239,-0.24349 z m -1.826172,4.432943 v -0.594401 q 0.594402,-0.07162 0.995443,-0.200521 0.408203,-0.128906 0.923828,-0.408203 h 0.522787 v 5.743489 q 0,0.300782 0.08594,0.451172 0.08594,0.150391 0.236328,0.222006 0.157553,0.06445 0.565756,0.06445 h 0.336588 v 0.601562 h -3.666667 v -0.601562 h 0.29362 q 0.479818,0 0.644532,-0.08594 0.164713,-0.08594 0.229166,-0.243489 0.07162,-0.157552 0.07162,-0.737631 v -4.210937 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1"
id="path832"
inkscape:connector-curvature="0" />
<path
d="m 88.040691,19.510417 v -0.608724 q 0.486979,-0.04297 0.888021,-0.164713 0.408203,-0.128907 1.016927,-0.436849 h 0.537109 v 8.686849 q 0,0.601562 0.02865,0.730469 0.07162,0.272135 0.24349,0.379557 0.171875,0.107422 0.666015,0.107422 h 0.307943 v 0.601562 l -2.485026,0.114584 v -1.138672 q -0.716146,0.651692 -1.346354,0.923828 -0.623047,0.272135 -1.253256,0.272135 -1.296224,0 -2.155599,-1.038411 -0.852213,-1.045573 -0.852213,-2.513672 0,-1.045573 0.451172,-1.91211 0.458333,-0.873698 1.203125,-1.332031 0.744791,-0.458333 1.632812,-0.458333 0.680339,0 1.260417,0.236328 0.580078,0.236328 1.059896,0.708984 v -3.158203 z m 1.203125,7.5625 v -2.707031 q 0,-0.580078 -0.222005,-0.945313 -0.214844,-0.372395 -0.716146,-0.644531 -0.494141,-0.272135 -1.016927,-0.272135 -0.623047,0 -1.152995,0.34375 -0.522787,0.336588 -0.823568,0.98112 -0.29362,0.637369 -0.29362,1.546875 0,0.859375 0.272136,1.489583 0.279297,0.623047 0.744791,0.952474 0.465495,0.322266 0.952474,0.322266 0.479818,0 1.088542,-0.272136 0.608724,-0.279297 1.167318,-0.794922 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1"
id="path834"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="Ω"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#d20f00;fill-opacity:1;stroke:none"
id="text17"
transform="translate(44.587105,-11.21199)">
<path
id="path13"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66666603px;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d20f00;fill-opacity:1"
d="m 7.2553434,372.35199 v -4.27083 h 3.0208336 q -3.1380211,-2.04427 -3.1380211,-5.58594 0,-3.52865 2.3828125,-5.9375 2.3958336,-2.42188 5.8984376,-2.42188 3.489583,0 5.872395,2.42188 2.395834,2.40885 2.395834,5.9375 0,3.54167 -3.151042,5.58594 h 3.033854 v 4.27083 h -7.330729 v -3.93229 q 2.513021,-1.22396 2.513021,-5.19531 0,-4.8698 -3.346354,-4.8698 -3.333333,0 -3.333333,4.84375 0,4.01042 2.5,5.22136 v 3.93229 z"
inkscape:connector-curvature="0" />
</g>
<path
id="path3707"
style="font-style:italic;font-variant:normal;font-weight:600;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Lucida Bright';-inkscape-font-specification:'Lucida Bright, Semi-Bold Italic';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#6a0a0a;stroke-width:0.60000002;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 63.921903,358.84168 h -1.175782 l -0.683593,3.42709 -0.209636,1.23958 q 0,0.48307 0.929688,0.54688 l 0.164062,0.009 -0.173177,0.84766 h -5.395833 l 0.164063,-0.84766 0.173177,-0.009 q 0.957031,-0.0638 1.148437,-0.27344 0.200521,-0.21875 0.501302,-1.51302 l 1.63151,-8.21224 q 0.08203,-0.48307 0.191407,-1.17578 0,-0.52865 -1.121094,-0.61068 l -0.173177,-0.009 0.173177,-0.83855 h 4.046875 l 2.351562,-0.0638 q 1.822917,0 2.725261,0.66537 0.911458,0.65625 0.911458,1.98698 0,1.43099 -0.957031,2.63411 -0.947917,1.20313 -2.606771,1.8776 l 1.768229,3.73698 q 0.65625,1.3125 0.847656,1.54037 0.191407,0.21875 0.710938,0.25521 l 0.164062,0.009 -0.164062,0.84766 h -3.308594 z m -0.99349,-0.90234 h 0.610677 q 1.686198,0 2.72526,-0.99349 1.039063,-1.0026 1.039063,-2.63411 0,-1.00261 -0.574219,-1.49479 -0.574219,-0.50131 -1.731771,-0.50131 h -0.947916 z"
inkscape:connector-curvature="0" />
<rect
style="fill:#8ca073;fill-opacity:1;stroke:#43435b;stroke-width:4.45609856;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
id="rect840"
width="110.24391"
height="50.0509"
x="4.878046"
y="41.27948"
ry="9.0788364" />
<g
aria-label="CLK IN"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text2356-8"
transform="translate(6.794772)">
<path
d="m 24.727895,205.31774 v 1.736 q 0,1.58667 -0.784,2.44534 -0.765333,0.84 -2.277333,0.84 -1.512,0 -2.296,-0.84 -0.765334,-0.85867 -0.765334,-2.44534 v -6.79466 q 0,-1.58667 0.765334,-2.42667 0.784,-0.85867 2.296,-0.85867 1.512,0 2.277333,0.85867 0.784,0.84 0.784,2.42667 v 1.26933 h -1.941333 v -1.4 q 0,-0.70933 -0.298667,-0.98933 -0.28,-0.29867 -0.765333,-0.29867 -0.485334,0 -0.784,0.29867 -0.28,0.28 -0.28,0.98933 v 7.056 q 0,0.70933 0.28,0.98933 0.298666,0.28 0.784,0.28 0.485333,0 0.765333,-0.28 0.298667,-0.28 0.298667,-0.98933 v -1.86667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1"
id="path30-2"
inkscape:connector-curvature="0" />
<path
d="m 25.991978,197.12308 h 2.053333 v 11.2 h 3.378667 v 1.86666 h -5.432 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1"
id="path32-1"
inkscape:connector-curvature="0" />
<path
d="m 35.060185,204.98174 -0.634666,1.19467 v 4.01333 h -2.053334 v -13.06666 h 2.053334 v 5.69333 l 2.725333,-5.69333 h 2.016 l -2.856,5.824 2.856,7.24266 h -2.109333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1"
id="path34-0"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="SYNC"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text43"
transform="translate(5.5,2.74484)">
<path
d="m 12.532,95.995163 q 0,-0.906666 0.426666,-1.386666 Q 13.396,94.11783 14.26,94.11783 q 0.864,0 1.290666,0.490667 0.437334,0.48 0.437334,1.386666 v 0.288 h -1.109334 v -0.362666 q 0,-0.405334 -0.16,-0.565334 -0.149333,-0.170666 -0.426666,-0.170666 -0.277334,0 -0.437334,0.170666 -0.149333,0.16 -0.149333,0.565334 0,0.384 0.170667,0.682667 0.170666,0.288 0.426666,0.554666 0.256,0.256 0.544,0.522667 0.298667,0.256 0.554667,0.565333 0.256,0.309334 0.426667,0.704 0.170666,0.394667 0.170666,0.928 0,0.90667 -0.448,1.39733 -0.437333,0.48 -1.301333,0.48 -0.864,0 -1.312,-0.48 Q 12.5,100.7845 12.5,99.87783 v -0.512 h 1.109333 v 0.586667 q 0,0.405333 0.16,0.565333 0.170667,0.16 0.448,0.16 0.277333,0 0.437333,-0.16 0.170667,-0.16 0.170667,-0.565333 0,-0.384 -0.170667,-0.672 Q 14.484,98.98183 14.228,98.72583 q -0.256,-0.266666 -0.554667,-0.522666 -0.288,-0.266667 -0.544,-0.576 -0.256,-0.309334 -0.426667,-0.704 Q 12.532,96.528497 12.532,95.995163 Z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path44"
inkscape:connector-curvature="0" />
<path
d="m 17.675833,99.195164 -1.482667,-4.992001 h 1.226667 l 0.896,3.402667 0.896,-3.402667 h 1.12 l -1.482666,4.992001 v 2.474666 h -1.173334 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path46"
inkscape:connector-curvature="0" />
<path
d="m 21.851666,96.26183 v 5.408 h -1.056 v -7.466667 h 1.472 L 23.473,98.672497 v -4.469334 h 1.045333 v 7.466667 H 23.313 Z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path48"
inkscape:connector-curvature="0" />
<path
d="m 28.7715,98.88583 v 0.992 q 0,0.90667 -0.448,1.39733 -0.437334,0.48 -1.301334,0.48 -0.864,0 -1.312,-0.48 -0.437333,-0.49066 -0.437333,-1.39733 v -3.882667 q 0,-0.906666 0.437333,-1.386666 0.448,-0.490667 1.312,-0.490667 0.864,0 1.301334,0.490667 0.448,0.48 0.448,1.386666 v 0.725334 h -1.109334 v -0.8 q 0,-0.405334 -0.170666,-0.565334 -0.16,-0.170666 -0.437334,-0.170666 -0.277333,0 -0.448,0.170666 -0.16,0.16 -0.16,0.565334 v 4.032 q 0,0.405333 0.16,0.565333 0.170667,0.16 0.448,0.16 0.277334,0 0.437334,-0.16 0.170666,-0.16 0.170666,-0.565333 V 98.88583 Z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path50"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="CV-RATIO"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text894"
transform="translate(-1.573545,4.45927)">
<path
d="m 60.072211,197.6714 v 0.992 q 0,0.90667 -0.448,1.39733 -0.437333,0.48 -1.301333,0.48 -0.864,0 -1.312,-0.48 -0.437333,-0.49066 -0.437333,-1.39733 v -3.88267 q 0,-0.90666 0.437333,-1.38666 0.448,-0.49067 1.312,-0.49067 0.864,0 1.301333,0.49067 0.448,0.48 0.448,1.38666 v 0.72534 h -1.109333 v -0.8 q 0,-0.40534 -0.170667,-0.56534 -0.16,-0.17066 -0.437333,-0.17066 -0.277333,0 -0.448,0.17066 -0.16,0.16 -0.16,0.56534 v 4.032 q 0,0.40533 0.16,0.56533 0.170667,0.16 0.448,0.16 0.277333,0 0.437333,-0.16 0.170667,-0.16 0.170667,-0.56533 v -1.06667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path897"
inkscape:connector-curvature="0" />
<path
d="m 62.565211,199.0794 0.896,-6.09067 h 1.077334 l -1.152,7.46667 h -1.749334 l -1.152,-7.46667 h 1.184 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path899"
inkscape:connector-curvature="0" />
<path
d="m 64.928711,196.18873 h 2.133334 v 1.06667 h -2.133334 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path901"
inkscape:connector-curvature="0" />
<path
d="m 70.310378,200.4554 q -0.02133,-0.0747 -0.04267,-0.13867 -0.02133,-0.064 -0.04267,-0.16 -0.01067,-0.096 -0.02133,-0.24533 0,-0.14933 0,-0.37333 v -1.17334 q 0,-0.52266 -0.181333,-0.736 -0.181333,-0.21333 -0.586667,-0.21333 h -0.405333 v 3.04 h -1.173333 v -7.46667 h 1.770666 q 0.917334,0 1.322667,0.42667 0.416,0.42667 0.416,1.29067 v 0.58666 q 0,1.152 -0.768,1.51467 0.448,0.18133 0.608,0.59733 0.170667,0.40534 0.170667,0.992 v 1.152 q 0,0.27734 0.02133,0.49067 0.02133,0.20267 0.106667,0.416 z m -1.28,-6.4 v 2.29333 h 0.458667 q 0.330666,0 0.512,-0.17066 0.192,-0.17067 0.192,-0.61867 v -0.736 q 0,-0.40533 -0.149334,-0.58667 -0.138666,-0.18133 -0.448,-0.18133 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path903"
inkscape:connector-curvature="0" />
<path
d="m 75.946045,200.4554 h -1.184 l -0.202667,-1.35467 h -1.44 l -0.202666,1.35467 h -1.077334 l 1.194667,-7.46667 h 1.717333 z m -2.677333,-2.368 h 1.130666 l -0.565333,-3.776 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path905"
inkscape:connector-curvature="0" />
<path
d="m 76.162045,192.98873 h 3.626666 v 1.06667 h -1.226666 v 6.4 h -1.173334 v -6.4 h -1.226666 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path907"
inkscape:connector-curvature="0" />
<path
d="m 80.315379,192.98873 h 1.173333 v 7.46667 h -1.173333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path909"
inkscape:connector-curvature="0" />
<path
d="m 83.413546,198.73807 q 0,0.40533 0.16,0.576 0.170667,0.16 0.448,0.16 0.277333,0 0.437333,-0.16 0.170667,-0.17067 0.170667,-0.576 v -4.032 q 0,-0.40534 -0.170667,-0.56534 -0.16,-0.17066 -0.437333,-0.17066 -0.277333,0 -0.448,0.17066 -0.16,0.16 -0.16,0.56534 z m -1.173333,-3.95734 q 0,-0.90666 0.458666,-1.38666 0.458667,-0.49067 1.322667,-0.49067 0.864,0 1.322667,0.49067 0.458666,0.48 0.458666,1.38666 v 3.88267 q 0,0.90667 -0.458666,1.39733 -0.458667,0.48 -1.322667,0.48 -0.864,0 -1.322667,-0.48 -0.458666,-0.49066 -0.458666,-1.39733 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path911"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(3.05e-4,-1.6e-4)"
aria-label="TRIG."
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text889">
<path
d="m 94.083695,197.44816 h 3.626666 v 1.06667 h -1.226666 v 6.4 h -1.173334 v -6.4 h -1.226666 z"
id="path891"
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1" />
<path
d="m 100.69036,204.91483 q -0.0213,-0.0747 -0.0427,-0.13867 -0.0213,-0.064 -0.0427,-0.16 -0.0107,-0.096 -0.0213,-0.24533 0,-0.14934 0,-0.37334 v -1.17333 q 0,-0.52267 -0.18133,-0.736 -0.18133,-0.21333 -0.586665,-0.21333 h -0.405334 v 3.04 h -1.173333 v -7.46667 h 1.770662 q 0.91734,0 1.32267,0.42667 0.416,0.42666 0.416,1.29066 v 0.58667 q 0,1.152 -0.768,1.51467 0.448,0.18133 0.608,0.59733 0.17067,0.40533 0.17067,0.992 v 1.152 q 0,0.27733 0.0213,0.49067 0.0213,0.20266 0.10667,0.416 z m -1.279999,-6.4 v 2.29333 h 0.458667 q 0.330662,0 0.512002,-0.17067 0.192,-0.17066 0.192,-0.61866 v -0.736 q 0,-0.40534 -0.14934,-0.58667 -0.13866,-0.18133 -0.447995,-0.18133 z"
id="path893"
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1" />
<path
d="m 102.52869,197.44816 h 1.17334 v 7.46667 h -1.17334 z"
id="path895"
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1" />
<path
d="m 106.30953,200.75483 h 1.64267 v 2.368 q 0,0.90666 -0.448,1.39733 -0.43734,0.48 -1.30134,0.48 -0.864,0 -1.312,-0.48 -0.43733,-0.49067 -0.43733,-1.39733 v -3.88267 q 0,-0.90667 0.43733,-1.38667 0.448,-0.49066 1.312,-0.49066 0.864,0 1.30134,0.49066 0.448,0.48 0.448,1.38667 v 0.72533 h -1.10934 v -0.8 q 0,-0.40533 -0.17066,-0.56533 -0.16,-0.17067 -0.43734,-0.17067 -0.27733,0 -0.448,0.17067 -0.16,0.16 -0.16,0.56533 v 4.032 q 0,0.40534 0.16,0.56534 0.17067,0.16 0.448,0.16 0.27734,0 0.43734,-0.16 0.17066,-0.16 0.17066,-0.56534 v -1.376 h -0.53333 z"
id="path897-8"
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1" />
<path
d="m 109.7427,203.78416 v 1.13067 h -1.13067 v -1.13067 z"
id="path899-8"
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1" />
</g>
<path
style="fill:none;stroke:#000000;stroke-width:1.53684449;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 68.743183,207.5581 8.912911,8.91372"
id="path960"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:1.53676915;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 99.941074,207.55823 -8.912881,8.91326"
id="path960-0"
inkscape:connector-curvature="0" />
<rect
style="fill:none;fill-opacity:1;stroke:#00a000;stroke-width:5.23562336;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
id="rect829"
width="108.76438"
height="80.764374"
x="5.6178093"
y="257.27539"
ry="12.882656" />
<g
aria-label="1"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text938"
transform="translate(-0.7850018,0.3)">
<path
d="m 44.180001,265.076 q 0.597334,0 0.970667,-0.13067 0.392,-0.13066 0.634667,-0.35466 0.242666,-0.224 0.392,-0.52267 0.149333,-0.29867 0.261333,-0.63467 h 1.381333 V 276.5 h -2.053333 v -9.968 h -1.586667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#00a000;fill-opacity:1"
id="path952"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="2"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text942"
transform="translate(0.7849998,0.3)">
<path
d="m 75.008001,266.644 q 0,-0.87733 -0.298666,-1.176 -0.28,-0.31733 -0.765334,-0.31733 -0.485333,0 -0.784,0.29866 -0.28,0.28 -0.28,0.98934 v 1.4 h -1.941333 v -1.26934 q 0,-1.58666 0.765333,-2.42666 0.784,-0.85867 2.296,-0.85867 1.512,0 2.277333,0.85867 0.784,0.84 0.784,2.42666 0,1.064 -0.336,1.92267 -0.317333,0.85867 -0.802666,1.568 -0.485334,0.70933 -1.045333,1.30667 -0.56,0.57866 -1.008,1.12 -0.448,0.52266 -0.709334,1.04533 -0.261333,0.52267 -0.168,1.10133 h 3.882667 V 276.5 h -5.936 v -1.60533 q 0,-0.952 0.298667,-1.68 0.298666,-0.728 0.746666,-1.32534 0.466667,-0.616 0.989334,-1.13866 0.522666,-0.54134 0.970666,-1.13867 0.466667,-0.59733 0.765334,-1.30667 0.298666,-0.70933 0.298666,-1.66133 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#00a000;fill-opacity:1"
id="path955"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="3"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text946"
transform="translate(-0.7850013,-0.94933)">
<path
d="m 47.008001,322.644 q 0,-0.87733 -0.298667,-1.176 -0.28,-0.31733 -0.765333,-0.31733 -0.485334,0 -0.784,0.29866 -0.28,0.28 -0.28,0.98934 v 0.84 h -1.941334 v -0.70934 q 0,-1.58666 0.765334,-2.42666 0.784,-0.85867 2.296,-0.85867 1.512,0 2.277333,0.85867 0.784,0.84 0.784,2.42666 v 0.336 q 0,2.09067 -1.437333,2.688 0.784,0.336 1.101333,1.04534 0.336,0.69066 0.336,1.69866 v 1.02667 q 0,1.58667 -0.784,2.44533 -0.765333,0.84 -2.277333,0.84 -1.512,0 -2.296,-0.84 -0.765334,-0.85866 -0.765334,-2.44533 v -1.08267 h 1.941334 v 1.21334 q 0,0.70933 0.28,1.008 0.298666,0.28 0.784,0.28 0.485333,0 0.765333,-0.29867 0.298667,-0.29867 0.298667,-1.176 v -1.02667 q 0,-0.91466 -0.317334,-1.288 Q 46.373334,326.62 45.664001,326.62 h -0.690667 v -1.86667 h 0.802667 q 0.578666,0 0.896,-0.29866 0.336,-0.29867 0.336,-1.08267 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#00a000;fill-opacity:1"
id="path958"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="4"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text950"
transform="translate(0.7849973,-0.8)">
<path
d="m 70.528004,328.26267 3.733333,-8.82934 h 2.24 v 8.82934 h 0.970666 v 1.86666 H 76.501337 V 332.5 h -2.053334 v -2.37067 h -3.919999 z m 3.919999,0 V 323.428 l -2.034666,4.83467 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#00a000;fill-opacity:1"
id="path961"
inkscape:connector-curvature="0" />
</g>
<rect
style="opacity:1;fill:#8ca073;fill-opacity:1;stroke:#43435b;stroke-width:3;stroke-linecap:butt;stroke-miterlimit:2.29999995;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="rect867"
width="56.738419"
height="32.424419"
x="31.630791"
y="281.44537"
ry="4.9140596" />
<g
transform="matrix(0.18317539,0,0,0.18317539,13.754152,108.48799)"
id="g14"
style="opacity:0.13999999" />
<g
transform="matrix(0.18317539,0,0,0.18317539,13.754152,108.48799)"
id="g16"
style="opacity:0.13999999" />
<g
transform="matrix(0.18317539,0,0,0.18317539,13.754152,108.48799)"
id="g18"
style="opacity:0.13999999" />
<g
transform="matrix(0.18317539,0,0,0.18317539,13.754152,108.48799)"
id="g20"
style="opacity:0.13999999" />
<g
transform="matrix(0.18317539,0,0,0.18317539,13.754152,108.48799)"
id="g22"
style="opacity:0.13999999" />
<g
transform="matrix(0.18317539,0,0,0.18317539,13.754152,108.48799)"
id="g24"
style="opacity:0.13999999" />
<g
transform="matrix(0.18317539,0,0,0.18317539,13.754152,108.48799)"
id="g26"
style="opacity:0.13999999" />
<g
transform="matrix(0.18317539,0,0,0.18317539,13.754152,108.48799)"
id="g28"
style="opacity:0.13999999" />
<g
transform="matrix(0.18317539,0,0,0.18317539,13.754152,108.48799)"
id="g30"
style="opacity:0.13999999" />
<g
transform="matrix(0.18317539,0,0,0.18317539,13.754152,108.48799)"
id="g32"
style="opacity:0.13999999" />
<g
transform="matrix(0.18317539,0,0,0.18317539,13.754152,108.48799)"
id="g34"
style="opacity:0.13999999" />
<g
transform="matrix(0.18317539,0,0,0.18317539,13.754152,108.48799)"
id="g36"
style="opacity:0.13999999" />
<g
transform="matrix(0.18317539,0,0,0.18317539,13.754152,108.48799)"
id="g38"
style="opacity:0.13999999" />
<g
transform="matrix(0.18317539,0,0,0.18317539,13.754152,108.48799)"
id="g40"
style="opacity:0.13999999" />
<g
transform="matrix(0.18317539,0,0,0.18317539,13.754152,108.48799)"
id="g42"
style="opacity:0.13999999" />
</svg>

+ 338
- 0
plugins/community/repos/Ohmer/res/KlokSpid_Dark_Signature.svg View File

@@ -0,0 +1,338 @@
<?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"
id="svg8"
viewBox="0 0 120 380"
version="1.1"
sodipodi:docname="KlokSpid_Dark_Signature.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
width="120"
height="380">
<title
id="title9">KlokSpid modules 8 HP for VCV Rack</title>
<metadata
id="metadata39">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>KlokSpid modules 8 HP for VCV Rack</dc:title>
<cc:license
rdf:resource="" />
</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="1920"
inkscape:window-height="1058"
id="namedview37"
showgrid="false"
inkscape:zoom="7.8451636"
inkscape:cx="17.000812"
inkscape:cy="77.251809"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg8"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-text-baseline="false" />
<defs
id="defs4">
<marker
inkscape:stockid="TriangleOutL"
orient="auto"
refY="0.0"
refX="0.0"
id="TriangleOutL"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path999"
d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
style="fill-rule:evenodd;stroke:#00ff00;stroke-width:1pt;stroke-opacity:1;fill:#00ff00;fill-opacity:1"
transform="scale(0.8)" />
</marker>
<style
id="style2">.cls-1{fill:#ab2d2d;}.cls-2{fill:#952d2d;}.cls-3{fill:#251e1e;}.cls-4{fill:#fff7d4;}.cls-5{fill:#202020;}</style>
</defs>
<path
style="opacity:1;vector-effect:none;fill:#0a0a1e;fill-opacity:1;stroke:none;stroke-width:0.97368503;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 0,-3.03e-6 H 120 V 380 H 0 Z"
id="ModuleLayer"
inkscape:connector-curvature="0" />
<g
aria-label="KlokSpid"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text846"
transform="translate(0,3e-6)">
<path
d="m 28.27116,18.815756 h 3.852864 v 0.608724 h -0.272135 q -0.472657,0 -0.666016,0.114583 -0.193359,0.114583 -0.272135,0.358073 -0.06445,0.179036 -0.06445,0.587239 v 3.774089 l 3.752604,-3.974609 q 0.29362,-0.315105 0.34375,-0.408204 0.05729,-0.0931 0.05729,-0.193359 0,-0.128906 -0.128906,-0.193359 -0.121745,-0.06445 -0.537109,-0.06445 H 34.10775 v -0.608724 h 3.580729 v 0.608724 q -0.422526,-0.0072 -0.766276,0.0931 -0.34375,0.10026 -0.54427,0.250651 -0.436849,0.322265 -0.623047,0.515625 l -2.678386,2.742838 3.057943,4.053386 q 0.415365,0.551432 0.658854,0.759114 0.24349,0.200521 0.501302,0.286459 0.257813,0.07878 0.802084,0.07878 v 0.601562 h -4.239584 v -0.601562 h 0.250651 q 0.422526,0 0.501302,-0.02148 0.121745,-0.02865 0.19336,-0.114583 0.07161,-0.08594 0.07161,-0.179036 0,-0.186198 -0.49414,-0.852214 l -2.25586,-3.065104 -1.274739,1.317708 v 1.91211 q 0,0.49414 0.10026,0.673177 0.10026,0.179036 0.307943,0.264974 0.164713,0.06445 0.866536,0.06445 V 28.80599 H 28.27116 v -0.601562 h 0.300781 q 0.451172,0 0.615885,-0.08594 0.164714,-0.0931 0.250651,-0.300781 0.0931,-0.207682 0.0931,-0.73763 v -6.595704 q 0,-0.522786 -0.08594,-0.708984 -0.08594,-0.193359 -0.250651,-0.272135 -0.164714,-0.07878 -0.701823,-0.07878 H 28.27116 Z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path820"
inkscape:connector-curvature="0" />
<path
d="m 38.555014,19.488933 v -0.58724 q 0.973958,-0.07161 1.897786,-0.601562 h 0.529948 v 8.815755 q 0,0.558594 0.07162,0.701823 0.0931,0.200521 0.272135,0.29362 0.179037,0.0931 0.6875,0.0931 h 0.229167 v 0.601562 h -3.688151 v -0.601562 h 0.372396 q 0.350911,0 0.522786,-0.107422 0.179036,-0.107422 0.250651,-0.29362 0.07878,-0.186198 0.07878,-0.744792 v -7.569661 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path822"
inkscape:connector-curvature="0" />
<path
d="m 46.661785,21.723308 q 1.052735,0 1.819011,0.436849 0.773437,0.436849 1.217448,1.274739 0.44401,0.837891 0.44401,1.91211 0,1.074219 -0.458333,1.912109 -0.451172,0.837891 -1.238933,1.281901 -0.780599,0.436849 -1.86914,0.436849 -1.733073,0 -2.606771,-1.08138 -0.866537,-1.08138 -0.866537,-2.542318 0,-1.067057 0.451172,-1.890625 0.451172,-0.830729 1.260417,-1.281901 0.816406,-0.458333 1.847656,-0.458333 z m -0.05729,0.694661 q -0.816407,0 -1.382162,0.644532 -0.716146,0.802083 -0.716146,2.334635 0,1.47526 0.608724,2.248698 0.551432,0.6875 1.496745,0.6875 0.608724,0 1.08138,-0.322266 0.479818,-0.322265 0.773438,-1.024088 0.29362,-0.708985 0.29362,-1.661459 0,-0.930989 -0.315105,-1.668619 -0.243489,-0.58724 -0.73763,-0.909506 -0.486979,-0.329427 -1.102864,-0.329427 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path824"
inkscape:connector-curvature="0" />
<path
d="m 51.166342,19.488933 v -0.58724 q 0.916666,-0.07161 1.897786,-0.601562 h 0.551433 v 7.147135 l 2.628255,-2.091146 q 0.630208,-0.501302 0.630208,-0.666015 0,-0.100261 -0.136068,-0.157552 -0.08594,-0.03581 -0.422526,-0.03581 h -0.379557 v -0.601562 h 3.63086 v 0.601562 q -0.608724,0 -0.973959,0.128907 -0.365234,0.121744 -0.845052,0.486979 l -2.076823,1.582682 2.449219,2.678386 q 0.350911,0.386718 0.572917,0.54427 0.222005,0.157552 0.44401,0.222006 0.222005,0.05729 0.694662,0.06445 v 0.601562 h -3.809896 v -0.601562 h 0.293619 q 0.436849,0 0.551433,-0.06445 0.114583,-0.07162 0.114583,-0.186198 0,-0.114584 -0.214844,-0.329427 -0.03581,-0.03581 -0.07878,-0.08594 l -1.904948,-2.191406 -1.167317,0.895182 v 0.938151 q 0,0.522787 0.07878,0.6875 0.07878,0.164714 0.243489,0.250651 0.171875,0.08594 0.651693,0.08594 h 0.264974 v 0.601562 h -3.688151 v -0.601562 q 0.623047,-0.0072 0.766276,-0.05013 0.250651,-0.07878 0.358073,-0.279296 0.114583,-0.200521 0.114583,-0.773438 v -7.61263 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path826"
inkscape:connector-curvature="0" />
<path
d="m 67.2653,18.815756 h 0.515625 l 0.766276,3.079427 -0.658854,0.200521 q -0.630208,-1.296224 -1.675781,-2.041016 -0.859375,-0.623047 -1.904948,-0.623047 -0.630208,0 -1.131511,0.229167 -0.501302,0.222005 -0.751953,0.580078 -0.250651,0.358073 -0.250651,0.730469 0,0.336588 0.19336,0.651692 0.193359,0.315105 0.587239,0.558594 0.39388,0.236328 1.289063,0.501302 l 1.86914,0.551433 q 0.34375,0.10026 0.995443,0.386718 0.658854,0.286459 1.024089,0.608724 0.365234,0.315104 0.572916,0.780599 0.207683,0.458334 0.207683,0.995443 0,1.188802 -1.045573,2.083984 -1.038412,0.888021 -2.692709,0.888021 -0.852213,0 -1.52539,-0.243489 -0.673177,-0.250651 -1.453776,-0.88086 l -0.329427,0.952474 h -0.501303 l -0.666015,-3.58789 0.666015,-0.136068 q 0.365235,0.995443 0.966797,1.690104 0.608724,0.694661 1.339193,1.052734 0.73763,0.350912 1.496745,0.350912 1.03125,0 1.804687,-0.623047 0.644532,-0.522786 0.644532,-1.231771 0,-0.651693 -0.465495,-1.067057 -0.472656,-0.415365 -1.690104,-0.773438 l -1.790365,-0.515625 q -1.503906,-0.436849 -2.119792,-1.117187 -0.615885,-0.680339 -0.615885,-1.561198 0,-0.6875 0.401042,-1.267578 0.401041,-0.58724 1.231771,-0.98112 0.830729,-0.39388 1.81901,-0.39388 0.830729,0 1.589844,0.286458 0.537109,0.200521 0.988281,0.572917 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path828"
inkscape:connector-curvature="0" />
<path
d="m 69.986656,22.919271 v -0.587239 q 0.537109,0 0.952474,-0.136068 0.415364,-0.136068 0.909505,-0.472656 h 0.565755 v 1.195963 q 0.895182,-0.708984 1.489583,-0.952474 0.594401,-0.243489 1.188802,-0.243489 1.22461,0 2.083985,0.959635 0.866536,0.959636 0.866536,2.499349 0,1.704427 -0.981119,2.792969 -0.895183,1.002604 -2.30599,1.002604 -0.701823,0 -1.317708,-0.264974 -0.444011,-0.186198 -1.024089,-0.666015 v 2.356119 q 0,0.529948 0.02865,0.623047 0.03581,0.136068 0.143229,0.229167 0.107422,0.0931 0.272135,0.121745 0.121745,0.02148 0.816407,0.02148 v 0.601563 H 69.98666 v -0.601563 h 0.322265 q 0.494141,0 0.63737,-0.07878 0.150391,-0.07161 0.222005,-0.229167 0.04297,-0.121744 0.04297,-0.744791 v -7.426433 z m 2.427734,0.737631 v 2.463541 q 0,0.486979 0.05729,0.723308 0.08594,0.365234 0.329427,0.658854 0.250651,0.29362 0.673177,0.501302 0.429687,0.207682 0.895182,0.207682 0.93099,0 1.611328,-0.701823 0.6875,-0.701823 0.6875,-2.126953 0,-1.332031 -0.565755,-2.055339 -0.565755,-0.730468 -1.339193,-0.730468 -0.501302,0 -1.088541,0.264974 -0.58724,0.264974 -1.260417,0.794922 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path830"
inkscape:connector-curvature="0" />
<path
d="m 80.936525,18.49349 q 0.34375,0 0.58724,0.24349 0.24349,0.236328 0.24349,0.580078 0,0.34375 -0.24349,0.587239 -0.24349,0.24349 -0.58724,0.24349 -0.34375,0 -0.587239,-0.24349 -0.24349,-0.243489 -0.24349,-0.587239 0,-0.34375 0.24349,-0.580078 0.243489,-0.24349 0.587239,-0.24349 z m -1.826172,4.432943 v -0.594401 q 0.594402,-0.07162 0.995443,-0.200521 0.408203,-0.128906 0.923828,-0.408203 h 0.522787 v 5.743489 q 0,0.300782 0.08594,0.451172 0.08594,0.150391 0.236328,0.222006 0.157553,0.06445 0.565756,0.06445 h 0.336588 v 0.601562 h -3.666667 v -0.601562 h 0.29362 q 0.479818,0 0.644532,-0.08594 0.164713,-0.08594 0.229166,-0.243489 0.07162,-0.157552 0.07162,-0.737631 v -4.210937 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path832"
inkscape:connector-curvature="0" />
<path
d="m 88.040691,19.510417 v -0.608724 q 0.486979,-0.04297 0.888021,-0.164713 0.408203,-0.128907 1.016927,-0.436849 h 0.537109 v 8.686849 q 0,0.601562 0.02865,0.730469 0.07162,0.272135 0.24349,0.379557 0.171875,0.107422 0.666015,0.107422 h 0.307943 v 0.601562 l -2.485026,0.114584 v -1.138672 q -0.716146,0.651692 -1.346354,0.923828 -0.623047,0.272135 -1.253256,0.272135 -1.296224,0 -2.155599,-1.038411 -0.852213,-1.045573 -0.852213,-2.513672 0,-1.045573 0.451172,-1.91211 0.458333,-0.873698 1.203125,-1.332031 0.744791,-0.458333 1.632812,-0.458333 0.680339,0 1.260417,0.236328 0.580078,0.236328 1.059896,0.708984 v -3.158203 z m 1.203125,7.5625 v -2.707031 q 0,-0.580078 -0.222005,-0.945313 -0.214844,-0.372395 -0.716146,-0.644531 -0.494141,-0.272135 -1.016927,-0.272135 -0.623047,0 -1.152995,0.34375 -0.522787,0.336588 -0.823568,0.98112 -0.29362,0.637369 -0.29362,1.546875 0,0.859375 0.272136,1.489583 0.279297,0.623047 0.744791,0.952474 0.465495,0.322266 0.952474,0.322266 0.479818,0 1.088542,-0.272136 0.608724,-0.279297 1.167318,-0.794922 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path834"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="Ω"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#d20f00;fill-opacity:1;stroke:none"
id="text17"
transform="translate(44.587105,-11.21199)">
<path
id="path13"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66666603px;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d20f00;fill-opacity:1"
d="m 7.2553434,372.35199 v -4.27083 h 3.0208336 q -3.1380211,-2.04427 -3.1380211,-5.58594 0,-3.52865 2.3828125,-5.9375 2.3958336,-2.42188 5.8984376,-2.42188 3.489583,0 5.872395,2.42188 2.395834,2.40885 2.395834,5.9375 0,3.54167 -3.151042,5.58594 h 3.033854 v 4.27083 h -7.330729 v -3.93229 q 2.513021,-1.22396 2.513021,-5.19531 0,-4.8698 -3.346354,-4.8698 -3.333333,0 -3.333333,4.84375 0,4.01042 2.5,5.22136 v 3.93229 z"
inkscape:connector-curvature="0" />
</g>
<path
id="path3707"
style="font-style:italic;font-variant:normal;font-weight:600;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Lucida Bright';-inkscape-font-specification:'Lucida Bright, Semi-Bold Italic';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:#6a0a0a;stroke-width:0.60000002;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 63.921903,358.84168 h -1.175782 l -0.683593,3.42709 -0.209636,1.23958 q 0,0.48307 0.929688,0.54688 l 0.164062,0.009 -0.173177,0.84766 h -5.395833 l 0.164063,-0.84766 0.173177,-0.009 q 0.957031,-0.0638 1.148437,-0.27344 0.200521,-0.21875 0.501302,-1.51302 l 1.63151,-8.21224 q 0.08203,-0.48307 0.191407,-1.17578 0,-0.52865 -1.121094,-0.61068 l -0.173177,-0.009 0.173177,-0.83855 h 4.046875 l 2.351562,-0.0638 q 1.822917,0 2.725261,0.66537 0.911458,0.65625 0.911458,1.98698 0,1.43099 -0.957031,2.63411 -0.947917,1.20313 -2.606771,1.8776 l 1.768229,3.73698 q 0.65625,1.3125 0.847656,1.54037 0.191407,0.21875 0.710938,0.25521 l 0.164062,0.009 -0.164062,0.84766 h -3.308594 z m -0.99349,-0.90234 h 0.610677 q 1.686198,0 2.72526,-0.99349 1.039063,-1.0026 1.039063,-2.63411 0,-1.00261 -0.574219,-1.49479 -0.574219,-0.50131 -1.731771,-0.50131 h -0.947916 z"
inkscape:connector-curvature="0" />
<rect
style="fill:#1e23e1;fill-opacity:1;stroke:#43435b;stroke-width:4.45609856;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
id="rect840"
width="110.24391"
height="50.0509"
x="4.878046"
y="41.27948"
ry="9.0788364" />
<g
aria-label="CLK IN"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text2356"
transform="translate(6.794772)">
<path
d="m 24.727895,205.31774 v 1.736 q 0,1.58667 -0.784,2.44534 -0.765333,0.84 -2.277333,0.84 -1.512,0 -2.296,-0.84 -0.765334,-0.85867 -0.765334,-2.44534 v -6.79466 q 0,-1.58667 0.765334,-2.42667 0.784,-0.85867 2.296,-0.85867 1.512,0 2.277333,0.85867 0.784,0.84 0.784,2.42667 v 1.26933 h -1.941333 v -1.4 q 0,-0.70933 -0.298667,-0.98933 -0.28,-0.29867 -0.765333,-0.29867 -0.485334,0 -0.784,0.29867 -0.28,0.28 -0.28,0.98933 v 7.056 q 0,0.70933 0.28,0.98933 0.298666,0.28 0.784,0.28 0.485333,0 0.765333,-0.28 0.298667,-0.28 0.298667,-0.98933 v -1.86667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path30"
inkscape:connector-curvature="0" />
<path
d="m 25.991978,197.12308 h 2.053333 v 11.2 h 3.378667 v 1.86666 h -5.432 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path32"
inkscape:connector-curvature="0" />
<path
d="m 35.060185,204.98174 -0.634666,1.19467 v 4.01333 h -2.053334 v -13.06666 h 2.053334 v 5.69333 l 2.725333,-5.69333 h 2.016 l -2.856,5.824 2.856,7.24266 h -2.109333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path34"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="SYNC"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text52">
<path
d="m 18.032001,98.740006 q 0,-0.906667 0.426666,-1.386667 0.437334,-0.490666 1.301334,-0.490666 0.864,0 1.290666,0.490666 0.437334,0.48 0.437334,1.386667 v 0.288 h -1.109334 v -0.362667 q 0,-0.405333 -0.16,-0.565333 -0.149333,-0.170667 -0.426666,-0.170667 -0.277334,0 -0.437334,0.170667 -0.149333,0.16 -0.149333,0.565333 0,0.384 0.170667,0.682667 0.170666,0.288 0.426666,0.554667 0.256,0.255997 0.544,0.522667 0.298667,0.256 0.554667,0.56533 0.256,0.30934 0.426667,0.704 0.170666,0.39467 0.170666,0.928 0,0.90667 -0.448,1.39734 -0.437333,0.48 -1.301333,0.48 -0.864,0 -1.312,-0.48 -0.437333,-0.49067 -0.437333,-1.39734 v -0.512 h 1.109333 v 0.58667 q 0,0.40533 0.16,0.56533 0.170667,0.16 0.448,0.16 0.277333,0 0.437333,-0.16 0.170667,-0.16 0.170667,-0.56533 0,-0.384 -0.170667,-0.672 -0.170666,-0.29867 -0.426666,-0.55467 -0.256,-0.26666 -0.554667,-0.52266 -0.288,-0.26667 -0.544,-0.576 -0.256,-0.30934 -0.426667,-0.704004 -0.170666,-0.394667 -0.170666,-0.928 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path53"
inkscape:connector-curvature="0" />
<path
d="m 23.175834,101.94001 -1.482667,-4.992004 h 1.226667 l 0.896,3.402664 0.896,-3.402664 h 1.12 l -1.482666,4.992004 v 2.47466 h -1.173334 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path55"
inkscape:connector-curvature="0" />
<path
d="m 27.351667,99.006673 v 5.407997 h -1.056 v -7.466664 h 1.472 l 1.205334,4.469334 v -4.469334 h 1.045333 v 7.466664 h -1.205333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path57"
inkscape:connector-curvature="0" />
<path
d="m 34.271501,101.63067 v 0.992 q 0,0.90667 -0.448,1.39734 -0.437334,0.48 -1.301334,0.48 -0.864,0 -1.312,-0.48 -0.437333,-0.49067 -0.437333,-1.39734 v -3.882664 q 0,-0.906667 0.437333,-1.386667 0.448,-0.490666 1.312,-0.490666 0.864,0 1.301334,0.490666 0.448,0.48 0.448,1.386667 v 0.725333 h -1.109334 v -0.8 q 0,-0.405333 -0.170666,-0.565333 -0.16,-0.170667 -0.437334,-0.170667 -0.277333,0 -0.448,0.170667 -0.16,0.16 -0.16,0.565333 v 4.032001 q 0,0.40533 0.16,0.56533 0.170667,0.16 0.448,0.16 0.277334,0 0.437334,-0.16 0.170666,-0.16 0.170666,-0.56533 v -1.06667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path59"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="CV-RATIO"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text1009"
transform="translate(-1.000001,1.99999)">
<path
d="m 59.498668,200.13067 v 0.992 q 0,0.90667 -0.448,1.39734 -0.437334,0.48 -1.301334,0.48 -0.864,0 -1.312,-0.48 -0.437333,-0.49067 -0.437333,-1.39734 v -3.88266 q 0,-0.90667 0.437333,-1.38667 0.448,-0.49067 1.312,-0.49067 0.864,0 1.301334,0.49067 0.448,0.48 0.448,1.38667 v 0.72533 h -1.109334 v -0.8 q 0,-0.40533 -0.170666,-0.56533 -0.16,-0.17067 -0.437334,-0.17067 -0.277333,0 -0.448,0.17067 -0.16,0.16 -0.16,0.56533 v 4.032 q 0,0.40533 0.16,0.56533 0.170667,0.16 0.448,0.16 0.277334,0 0.437334,-0.16 0.170666,-0.16 0.170666,-0.56533 v -1.06667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1015"
inkscape:connector-curvature="0" />
<path
d="m 61.991668,201.53867 0.896,-6.09066 h 1.077333 l -1.152,7.46666 h -1.749333 l -1.152,-7.46666 h 1.184 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1017"
inkscape:connector-curvature="0" />
<path
d="m 64.355168,198.64801 h 2.133333 v 1.06666 h -2.133333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1019"
inkscape:connector-curvature="0" />
<path
d="m 69.736834,202.91467 q -0.02133,-0.0747 -0.04267,-0.13866 -0.02133,-0.064 -0.04267,-0.16 -0.01067,-0.096 -0.02133,-0.24534 0,-0.14933 0,-0.37333 v -1.17333 q 0,-0.52267 -0.181334,-0.736 -0.181333,-0.21334 -0.586666,-0.21334 H 68.45683 v 3.04 h -1.173333 v -7.46666 h 1.770667 q 0.917333,0 1.322667,0.42666 0.416,0.42667 0.416,1.29067 v 0.58667 q 0,1.152 -0.768,1.51466 0.448,0.18134 0.608,0.59734 0.170666,0.40533 0.170666,0.992 v 1.152 q 0,0.27733 0.02133,0.49066 0.02133,0.20267 0.106666,0.416 z m -1.28,-6.4 v 2.29334 h 0.458667 q 0.330667,0 0.512,-0.17067 0.192,-0.17067 0.192,-0.61867 v -0.736 q 0,-0.40533 -0.149333,-0.58666 -0.138667,-0.18134 -0.448,-0.18134 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1021"
inkscape:connector-curvature="0" />
<path
d="m 75.372502,202.91467 h -1.184001 l -0.202666,-1.35466 h -1.44 l -0.202667,1.35466 h -1.077333 l 1.194666,-7.46666 h 1.717334 z m -2.677334,-2.368 h 1.130667 l -0.565334,-3.776 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1023"
inkscape:connector-curvature="0" />
<path
d="m 75.588501,195.44801 h 3.626667 v 1.06666 h -1.226667 v 6.4 h -1.173333 v -6.4 h -1.226667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1025"
inkscape:connector-curvature="0" />
<path
d="m 79.741835,195.44801 h 1.173333 v 7.46666 h -1.173333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1027"
inkscape:connector-curvature="0" />
<path
d="m 82.840002,201.19734 q 0,0.40533 0.16,0.576 0.170667,0.16 0.448,0.16 0.277334,0 0.437334,-0.16 0.170666,-0.17067 0.170666,-0.576 v -4.032 q 0,-0.40533 -0.170666,-0.56533 -0.16,-0.17067 -0.437334,-0.17067 -0.277333,0 -0.448,0.17067 -0.16,0.16 -0.16,0.56533 z m -1.173333,-3.95733 q 0,-0.90667 0.458667,-1.38667 0.458666,-0.49067 1.322666,-0.49067 0.864,0 1.322667,0.49067 0.458667,0.48 0.458667,1.38667 v 3.88266 q 0,0.90667 -0.458667,1.39734 -0.458667,0.48 -1.322667,0.48 -0.864,0 -1.322666,-0.48 -0.458667,-0.49067 -0.458667,-1.39734 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1029"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(3.05e-4,-1.6e-4)"
aria-label="TRIG."
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text889">
<path
d="m 94.083695,197.44816 h 3.626666 v 1.06667 h -1.226666 v 6.4 h -1.173334 v -6.4 h -1.226666 z"
id="path891"
inkscape:connector-curvature="0" />
<path
d="m 100.69036,204.91483 q -0.0213,-0.0747 -0.0427,-0.13867 -0.0213,-0.064 -0.0427,-0.16 -0.0107,-0.096 -0.0213,-0.24533 0,-0.14934 0,-0.37334 v -1.17333 q 0,-0.52267 -0.18133,-0.736 -0.18133,-0.21333 -0.586665,-0.21333 h -0.405334 v 3.04 h -1.173333 v -7.46667 h 1.770662 q 0.91734,0 1.32267,0.42667 0.416,0.42666 0.416,1.29066 v 0.58667 q 0,1.152 -0.768,1.51467 0.448,0.18133 0.608,0.59733 0.17067,0.40533 0.17067,0.992 v 1.152 q 0,0.27733 0.0213,0.49067 0.0213,0.20266 0.10667,0.416 z m -1.279999,-6.4 v 2.29333 h 0.458667 q 0.330662,0 0.512002,-0.17067 0.192,-0.17066 0.192,-0.61866 v -0.736 q 0,-0.40534 -0.14934,-0.58667 -0.13866,-0.18133 -0.447995,-0.18133 z"
id="path893"
inkscape:connector-curvature="0" />
<path
d="m 102.52869,197.44816 h 1.17334 v 7.46667 h -1.17334 z"
id="path895"
inkscape:connector-curvature="0" />
<path
d="m 106.30953,200.75483 h 1.64267 v 2.368 q 0,0.90666 -0.448,1.39733 -0.43734,0.48 -1.30134,0.48 -0.864,0 -1.312,-0.48 -0.43733,-0.49067 -0.43733,-1.39733 v -3.88267 q 0,-0.90667 0.43733,-1.38667 0.448,-0.49066 1.312,-0.49066 0.864,0 1.30134,0.49066 0.448,0.48 0.448,1.38667 v 0.72533 h -1.10934 v -0.8 q 0,-0.40533 -0.17066,-0.56533 -0.16,-0.17067 -0.43734,-0.17067 -0.27733,0 -0.448,0.17067 -0.16,0.16 -0.16,0.56533 v 4.032 q 0,0.40534 0.16,0.56534 0.17067,0.16 0.448,0.16 0.27734,0 0.43734,-0.16 0.17066,-0.16 0.17066,-0.56534 v -1.376 h -0.53333 z"
id="path897"
inkscape:connector-curvature="0" />
<path
d="m 109.7427,203.78416 v 1.13067 h -1.13067 v -1.13067 z"
id="path899"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#d2d2cd;stroke-width:1.53684449;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 68.743183,207.5581 8.912911,8.91372"
id="path960"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#d2d2cd;stroke-width:1.53676915;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 99.941074,207.55823 -8.912881,8.91326"
id="path960-0"
inkscape:connector-curvature="0" />
<rect
style="fill:none;fill-opacity:1;stroke:#00a000;stroke-width:5.23562336;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
id="rect829"
width="108.76438"
height="80.764374"
x="5.6178117"
y="257.27582"
ry="12.882656" />
<g
aria-label="1"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text938"
transform="translate(-0.78499942,0.30042392)">
<path
d="m 44.180001,265.076 q 0.597334,0 0.970667,-0.13067 0.392,-0.13066 0.634667,-0.35466 0.242666,-0.224 0.392,-0.52267 0.149333,-0.29867 0.261333,-0.63467 h 1.381333 V 276.5 h -2.053333 v -9.968 h -1.586667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#00a000;fill-opacity:1"
id="path952"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="2"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text942"
transform="translate(0.78500218,0.30042392)">
<path
d="m 75.008001,266.644 q 0,-0.87733 -0.298666,-1.176 -0.28,-0.31733 -0.765334,-0.31733 -0.485333,0 -0.784,0.29866 -0.28,0.28 -0.28,0.98934 v 1.4 h -1.941333 v -1.26934 q 0,-1.58666 0.765333,-2.42666 0.784,-0.85867 2.296,-0.85867 1.512,0 2.277333,0.85867 0.784,0.84 0.784,2.42666 0,1.064 -0.336,1.92267 -0.317333,0.85867 -0.802666,1.568 -0.485334,0.70933 -1.045333,1.30667 -0.56,0.57866 -1.008,1.12 -0.448,0.52266 -0.709334,1.04533 -0.261333,0.52267 -0.168,1.10133 h 3.882667 V 276.5 h -5.936 v -1.60533 q 0,-0.952 0.298667,-1.68 0.298666,-0.728 0.746666,-1.32534 0.466667,-0.616 0.989334,-1.13866 0.522666,-0.54134 0.970666,-1.13867 0.466667,-0.59733 0.765334,-1.30667 0.298666,-0.70933 0.298666,-1.66133 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#00a000;fill-opacity:1"
id="path955"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="3"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text946"
transform="translate(-0.78499892,-0.94890608)">
<path
d="m 47.008001,322.644 q 0,-0.87733 -0.298667,-1.176 -0.28,-0.31733 -0.765333,-0.31733 -0.485334,0 -0.784,0.29866 -0.28,0.28 -0.28,0.98934 v 0.84 h -1.941334 v -0.70934 q 0,-1.58666 0.765334,-2.42666 0.784,-0.85867 2.296,-0.85867 1.512,0 2.277333,0.85867 0.784,0.84 0.784,2.42666 v 0.336 q 0,2.09067 -1.437333,2.688 0.784,0.336 1.101333,1.04534 0.336,0.69066 0.336,1.69866 v 1.02667 q 0,1.58667 -0.784,2.44533 -0.765333,0.84 -2.277333,0.84 -1.512,0 -2.296,-0.84 -0.765334,-0.85866 -0.765334,-2.44533 v -1.08267 h 1.941334 v 1.21334 q 0,0.70933 0.28,1.008 0.298666,0.28 0.784,0.28 0.485333,0 0.765333,-0.29867 0.298667,-0.29867 0.298667,-1.176 v -1.02667 q 0,-0.91466 -0.317334,-1.288 Q 46.373334,326.62 45.664001,326.62 h -0.690667 v -1.86667 h 0.802667 q 0.578666,0 0.896,-0.29866 0.336,-0.29867 0.336,-1.08267 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#00a000;fill-opacity:1"
id="path958"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="4"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text950"
transform="translate(0.78499968,-0.79957608)">
<path
d="m 70.528004,328.26267 3.733333,-8.82934 h 2.24 v 8.82934 h 0.970666 v 1.86666 H 76.501337 V 332.5 h -2.053334 v -2.37067 h -3.919999 z m 3.919999,0 V 323.428 l -2.034666,4.83467 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#00a000;fill-opacity:1"
id="path961"
inkscape:connector-curvature="0" />
</g>
<rect
style="opacity:1;fill:#1e23e1;fill-opacity:1;stroke:#43435b;stroke-width:3;stroke-linecap:butt;stroke-miterlimit:2.29999995;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="rect867"
width="56.738419"
height="32.424419"
x="31.631001"
y="281.44559"
ry="4.9140596" />
</svg>

+ 337
- 0
plugins/community/repos/Ohmer/res/KlokSpid_Deepblue_Signature.svg View File

@@ -0,0 +1,337 @@
<?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"
id="svg8"
viewBox="0 0 120 380"
version="1.1"
sodipodi:docname="KlokSpid_Deepblue_Signature.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
width="120"
height="380">
<title
id="title9">KlokSpid modules 8 HP for VCV Rack</title>
<metadata
id="metadata39">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>KlokSpid modules 8 HP for VCV Rack</dc:title>
<cc:license
rdf:resource="" />
</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="1920"
inkscape:window-height="1058"
id="namedview37"
showgrid="false"
inkscape:zoom="2.1036427"
inkscape:cx="-233.9398"
inkscape:cy="208.14084"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg8"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-text-baseline="false" />
<defs
id="defs4">
<marker
inkscape:stockid="TriangleOutL"
orient="auto"
refY="0.0"
refX="0.0"
id="TriangleOutL"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path999"
d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
style="fill-rule:evenodd;stroke:#00ff00;stroke-width:1pt;stroke-opacity:1;fill:#00ff00;fill-opacity:1"
transform="scale(0.8)" />
</marker>
<style
id="style2">.cls-1{fill:#ab2d2d;}.cls-2{fill:#952d2d;}.cls-3{fill:#251e1e;}.cls-4{fill:#fff7d4;}.cls-5{fill:#202020;}</style>
</defs>
<path
style="opacity:1;vector-effect:none;fill:#1a1a57;fill-opacity:1;stroke:none;stroke-width:0.97368503;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 0,-3.03e-6 H 120 V 380 H 0 Z"
id="ModuleLayer"
inkscape:connector-curvature="0" />
<g
aria-label="KlokSpid"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text846"
transform="translate(0,3e-6)">
<path
d="m 28.27116,18.815756 h 3.852864 v 0.608724 h -0.272135 q -0.472657,0 -0.666016,0.114583 -0.193359,0.114583 -0.272135,0.358073 -0.06445,0.179036 -0.06445,0.587239 v 3.774089 l 3.752604,-3.974609 q 0.29362,-0.315105 0.34375,-0.408204 0.05729,-0.0931 0.05729,-0.193359 0,-0.128906 -0.128906,-0.193359 -0.121745,-0.06445 -0.537109,-0.06445 H 34.10775 v -0.608724 h 3.580729 v 0.608724 q -0.422526,-0.0072 -0.766276,0.0931 -0.34375,0.10026 -0.54427,0.250651 -0.436849,0.322265 -0.623047,0.515625 l -2.678386,2.742838 3.057943,4.053386 q 0.415365,0.551432 0.658854,0.759114 0.24349,0.200521 0.501302,0.286459 0.257813,0.07878 0.802084,0.07878 v 0.601562 h -4.239584 v -0.601562 h 0.250651 q 0.422526,0 0.501302,-0.02148 0.121745,-0.02865 0.19336,-0.114583 0.07161,-0.08594 0.07161,-0.179036 0,-0.186198 -0.49414,-0.852214 l -2.25586,-3.065104 -1.274739,1.317708 v 1.91211 q 0,0.49414 0.10026,0.673177 0.10026,0.179036 0.307943,0.264974 0.164713,0.06445 0.866536,0.06445 V 28.80599 H 28.27116 v -0.601562 h 0.300781 q 0.451172,0 0.615885,-0.08594 0.164714,-0.0931 0.250651,-0.300781 0.0931,-0.207682 0.0931,-0.73763 v -6.595704 q 0,-0.522786 -0.08594,-0.708984 -0.08594,-0.193359 -0.250651,-0.272135 -0.164714,-0.07878 -0.701823,-0.07878 H 28.27116 Z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path820"
inkscape:connector-curvature="0" />
<path
d="m 38.555014,19.488933 v -0.58724 q 0.973958,-0.07161 1.897786,-0.601562 h 0.529948 v 8.815755 q 0,0.558594 0.07162,0.701823 0.0931,0.200521 0.272135,0.29362 0.179037,0.0931 0.6875,0.0931 h 0.229167 v 0.601562 h -3.688151 v -0.601562 h 0.372396 q 0.350911,0 0.522786,-0.107422 0.179036,-0.107422 0.250651,-0.29362 0.07878,-0.186198 0.07878,-0.744792 v -7.569661 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path822"
inkscape:connector-curvature="0" />
<path
d="m 46.661785,21.723308 q 1.052735,0 1.819011,0.436849 0.773437,0.436849 1.217448,1.274739 0.44401,0.837891 0.44401,1.91211 0,1.074219 -0.458333,1.912109 -0.451172,0.837891 -1.238933,1.281901 -0.780599,0.436849 -1.86914,0.436849 -1.733073,0 -2.606771,-1.08138 -0.866537,-1.08138 -0.866537,-2.542318 0,-1.067057 0.451172,-1.890625 0.451172,-0.830729 1.260417,-1.281901 0.816406,-0.458333 1.847656,-0.458333 z m -0.05729,0.694661 q -0.816407,0 -1.382162,0.644532 -0.716146,0.802083 -0.716146,2.334635 0,1.47526 0.608724,2.248698 0.551432,0.6875 1.496745,0.6875 0.608724,0 1.08138,-0.322266 0.479818,-0.322265 0.773438,-1.024088 0.29362,-0.708985 0.29362,-1.661459 0,-0.930989 -0.315105,-1.668619 -0.243489,-0.58724 -0.73763,-0.909506 -0.486979,-0.329427 -1.102864,-0.329427 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path824"
inkscape:connector-curvature="0" />
<path
d="m 51.166342,19.488933 v -0.58724 q 0.916666,-0.07161 1.897786,-0.601562 h 0.551433 v 7.147135 l 2.628255,-2.091146 q 0.630208,-0.501302 0.630208,-0.666015 0,-0.100261 -0.136068,-0.157552 -0.08594,-0.03581 -0.422526,-0.03581 h -0.379557 v -0.601562 h 3.63086 v 0.601562 q -0.608724,0 -0.973959,0.128907 -0.365234,0.121744 -0.845052,0.486979 l -2.076823,1.582682 2.449219,2.678386 q 0.350911,0.386718 0.572917,0.54427 0.222005,0.157552 0.44401,0.222006 0.222005,0.05729 0.694662,0.06445 v 0.601562 h -3.809896 v -0.601562 h 0.293619 q 0.436849,0 0.551433,-0.06445 0.114583,-0.07162 0.114583,-0.186198 0,-0.114584 -0.214844,-0.329427 -0.03581,-0.03581 -0.07878,-0.08594 l -1.904948,-2.191406 -1.167317,0.895182 v 0.938151 q 0,0.522787 0.07878,0.6875 0.07878,0.164714 0.243489,0.250651 0.171875,0.08594 0.651693,0.08594 h 0.264974 v 0.601562 h -3.688151 v -0.601562 q 0.623047,-0.0072 0.766276,-0.05013 0.250651,-0.07878 0.358073,-0.279296 0.114583,-0.200521 0.114583,-0.773438 v -7.61263 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path826"
inkscape:connector-curvature="0" />
<path
d="m 67.2653,18.815756 h 0.515625 l 0.766276,3.079427 -0.658854,0.200521 q -0.630208,-1.296224 -1.675781,-2.041016 -0.859375,-0.623047 -1.904948,-0.623047 -0.630208,0 -1.131511,0.229167 -0.501302,0.222005 -0.751953,0.580078 -0.250651,0.358073 -0.250651,0.730469 0,0.336588 0.19336,0.651692 0.193359,0.315105 0.587239,0.558594 0.39388,0.236328 1.289063,0.501302 l 1.86914,0.551433 q 0.34375,0.10026 0.995443,0.386718 0.658854,0.286459 1.024089,0.608724 0.365234,0.315104 0.572916,0.780599 0.207683,0.458334 0.207683,0.995443 0,1.188802 -1.045573,2.083984 -1.038412,0.888021 -2.692709,0.888021 -0.852213,0 -1.52539,-0.243489 -0.673177,-0.250651 -1.453776,-0.88086 l -0.329427,0.952474 h -0.501303 l -0.666015,-3.58789 0.666015,-0.136068 q 0.365235,0.995443 0.966797,1.690104 0.608724,0.694661 1.339193,1.052734 0.73763,0.350912 1.496745,0.350912 1.03125,0 1.804687,-0.623047 0.644532,-0.522786 0.644532,-1.231771 0,-0.651693 -0.465495,-1.067057 -0.472656,-0.415365 -1.690104,-0.773438 l -1.790365,-0.515625 q -1.503906,-0.436849 -2.119792,-1.117187 -0.615885,-0.680339 -0.615885,-1.561198 0,-0.6875 0.401042,-1.267578 0.401041,-0.58724 1.231771,-0.98112 0.830729,-0.39388 1.81901,-0.39388 0.830729,0 1.589844,0.286458 0.537109,0.200521 0.988281,0.572917 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path828"
inkscape:connector-curvature="0" />
<path
d="m 69.986656,22.919271 v -0.587239 q 0.537109,0 0.952474,-0.136068 0.415364,-0.136068 0.909505,-0.472656 h 0.565755 v 1.195963 q 0.895182,-0.708984 1.489583,-0.952474 0.594401,-0.243489 1.188802,-0.243489 1.22461,0 2.083985,0.959635 0.866536,0.959636 0.866536,2.499349 0,1.704427 -0.981119,2.792969 -0.895183,1.002604 -2.30599,1.002604 -0.701823,0 -1.317708,-0.264974 -0.444011,-0.186198 -1.024089,-0.666015 v 2.356119 q 0,0.529948 0.02865,0.623047 0.03581,0.136068 0.143229,0.229167 0.107422,0.0931 0.272135,0.121745 0.121745,0.02148 0.816407,0.02148 v 0.601563 H 69.98666 v -0.601563 h 0.322265 q 0.494141,0 0.63737,-0.07878 0.150391,-0.07161 0.222005,-0.229167 0.04297,-0.121744 0.04297,-0.744791 v -7.426433 z m 2.427734,0.737631 v 2.463541 q 0,0.486979 0.05729,0.723308 0.08594,0.365234 0.329427,0.658854 0.250651,0.29362 0.673177,0.501302 0.429687,0.207682 0.895182,0.207682 0.93099,0 1.611328,-0.701823 0.6875,-0.701823 0.6875,-2.126953 0,-1.332031 -0.565755,-2.055339 -0.565755,-0.730468 -1.339193,-0.730468 -0.501302,0 -1.088541,0.264974 -0.58724,0.264974 -1.260417,0.794922 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path830"
inkscape:connector-curvature="0" />
<path
d="m 80.936525,18.49349 q 0.34375,0 0.58724,0.24349 0.24349,0.236328 0.24349,0.580078 0,0.34375 -0.24349,0.587239 -0.24349,0.24349 -0.58724,0.24349 -0.34375,0 -0.587239,-0.24349 -0.24349,-0.243489 -0.24349,-0.587239 0,-0.34375 0.24349,-0.580078 0.243489,-0.24349 0.587239,-0.24349 z m -1.826172,4.432943 v -0.594401 q 0.594402,-0.07162 0.995443,-0.200521 0.408203,-0.128906 0.923828,-0.408203 h 0.522787 v 5.743489 q 0,0.300782 0.08594,0.451172 0.08594,0.150391 0.236328,0.222006 0.157553,0.06445 0.565756,0.06445 h 0.336588 v 0.601562 h -3.666667 v -0.601562 h 0.29362 q 0.479818,0 0.644532,-0.08594 0.164713,-0.08594 0.229166,-0.243489 0.07162,-0.157552 0.07162,-0.737631 v -4.210937 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path832"
inkscape:connector-curvature="0" />
<path
d="m 88.040691,19.510417 v -0.608724 q 0.486979,-0.04297 0.888021,-0.164713 0.408203,-0.128907 1.016927,-0.436849 h 0.537109 v 8.686849 q 0,0.601562 0.02865,0.730469 0.07162,0.272135 0.24349,0.379557 0.171875,0.107422 0.666015,0.107422 h 0.307943 v 0.601562 l -2.485026,0.114584 v -1.138672 q -0.716146,0.651692 -1.346354,0.923828 -0.623047,0.272135 -1.253256,0.272135 -1.296224,0 -2.155599,-1.038411 -0.852213,-1.045573 -0.852213,-2.513672 0,-1.045573 0.451172,-1.91211 0.458333,-0.873698 1.203125,-1.332031 0.744791,-0.458333 1.632812,-0.458333 0.680339,0 1.260417,0.236328 0.580078,0.236328 1.059896,0.708984 v -3.158203 z m 1.203125,7.5625 v -2.707031 q 0,-0.580078 -0.222005,-0.945313 -0.214844,-0.372395 -0.716146,-0.644531 -0.494141,-0.272135 -1.016927,-0.272135 -0.623047,0 -1.152995,0.34375 -0.522787,0.336588 -0.823568,0.98112 -0.29362,0.637369 -0.29362,1.546875 0,0.859375 0.272136,1.489583 0.279297,0.623047 0.744791,0.952474 0.465495,0.322266 0.952474,0.322266 0.479818,0 1.088542,-0.272136 0.608724,-0.279297 1.167318,-0.794922 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path834"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="Ω"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#d20f00;fill-opacity:1;stroke:none"
id="text17"
transform="translate(44.587105,-11.21199)">
<path
id="path13"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66666603px;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d20f00;fill-opacity:1"
d="m 7.2553434,372.35199 v -4.27083 h 3.0208336 q -3.1380211,-2.04427 -3.1380211,-5.58594 0,-3.52865 2.3828125,-5.9375 2.3958336,-2.42188 5.8984376,-2.42188 3.489583,0 5.872395,2.42188 2.395834,2.40885 2.395834,5.9375 0,3.54167 -3.151042,5.58594 h 3.033854 v 4.27083 h -7.330729 v -3.93229 q 2.513021,-1.22396 2.513021,-5.19531 0,-4.8698 -3.346354,-4.8698 -3.333333,0 -3.333333,4.84375 0,4.01042 2.5,5.22136 v 3.93229 z"
inkscape:connector-curvature="0" />
</g>
<path
id="path3707"
style="font-style:italic;font-variant:normal;font-weight:600;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Lucida Bright';-inkscape-font-specification:'Lucida Bright, Semi-Bold Italic';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:#6a0a0a;stroke-width:0.60000002;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 63.921903,358.84168 h -1.175782 l -0.683593,3.42709 -0.209636,1.23958 q 0,0.48307 0.929688,0.54688 l 0.164062,0.009 -0.173177,0.84766 h -5.395833 l 0.164063,-0.84766 0.173177,-0.009 q 0.957031,-0.0638 1.148437,-0.27344 0.200521,-0.21875 0.501302,-1.51302 l 1.63151,-8.21224 q 0.08203,-0.48307 0.191407,-1.17578 0,-0.52865 -1.121094,-0.61068 l -0.173177,-0.009 0.173177,-0.83855 h 4.046875 l 2.351562,-0.0638 q 1.822917,0 2.725261,0.66537 0.911458,0.65625 0.911458,1.98698 0,1.43099 -0.957031,2.63411 -0.947917,1.20313 -2.606771,1.8776 l 1.768229,3.73698 q 0.65625,1.3125 0.847656,1.54037 0.191407,0.21875 0.710938,0.25521 l 0.164062,0.009 -0.164062,0.84766 h -3.308594 z m -0.99349,-0.90234 h 0.610677 q 1.686198,0 2.72526,-0.99349 1.039063,-1.0026 1.039063,-2.63411 0,-1.00261 -0.574219,-1.49479 -0.574219,-0.50131 -1.731771,-0.50131 h -0.947916 z"
inkscape:connector-curvature="0" />
<rect
style="fill:#161404;fill-opacity:1;stroke:#43435b;stroke-width:4.45609856;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
id="rect840"
width="110.24391"
height="50.0509"
x="4.878046"
y="41.27948"
ry="9.0788364" />
<g
aria-label="CLK IN"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text2356"
transform="translate(6.794772)">
<path
d="m 24.727895,205.31774 v 1.736 q 0,1.58667 -0.784,2.44534 -0.765333,0.84 -2.277333,0.84 -1.512,0 -2.296,-0.84 -0.765334,-0.85867 -0.765334,-2.44534 v -6.79466 q 0,-1.58667 0.765334,-2.42667 0.784,-0.85867 2.296,-0.85867 1.512,0 2.277333,0.85867 0.784,0.84 0.784,2.42667 v 1.26933 h -1.941333 v -1.4 q 0,-0.70933 -0.298667,-0.98933 -0.28,-0.29867 -0.765333,-0.29867 -0.485334,0 -0.784,0.29867 -0.28,0.28 -0.28,0.98933 v 7.056 q 0,0.70933 0.28,0.98933 0.298666,0.28 0.784,0.28 0.485333,0 0.765333,-0.28 0.298667,-0.28 0.298667,-0.98933 v -1.86667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path30"
inkscape:connector-curvature="0" />
<path
d="m 25.991978,197.12308 h 2.053333 v 11.2 h 3.378667 v 1.86666 h -5.432 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path32"
inkscape:connector-curvature="0" />
<path
d="m 35.060185,204.98174 -0.634666,1.19467 v 4.01333 h -2.053334 v -13.06666 h 2.053334 v 5.69333 l 2.725333,-5.69333 h 2.016 l -2.856,5.824 2.856,7.24266 h -2.109333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path34"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="SYNC"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text52">
<path
d="m 18.032001,98.740006 q 0,-0.906667 0.426666,-1.386667 0.437334,-0.490666 1.301334,-0.490666 0.864,0 1.290666,0.490666 0.437334,0.48 0.437334,1.386667 v 0.288 h -1.109334 v -0.362667 q 0,-0.405333 -0.16,-0.565333 -0.149333,-0.170667 -0.426666,-0.170667 -0.277334,0 -0.437334,0.170667 -0.149333,0.16 -0.149333,0.565333 0,0.384 0.170667,0.682667 0.170666,0.288 0.426666,0.554667 0.256,0.255997 0.544,0.522667 0.298667,0.256 0.554667,0.56533 0.256,0.30934 0.426667,0.704 0.170666,0.39467 0.170666,0.928 0,0.90667 -0.448,1.39734 -0.437333,0.48 -1.301333,0.48 -0.864,0 -1.312,-0.48 -0.437333,-0.49067 -0.437333,-1.39734 v -0.512 h 1.109333 v 0.58667 q 0,0.40533 0.16,0.56533 0.170667,0.16 0.448,0.16 0.277333,0 0.437333,-0.16 0.170667,-0.16 0.170667,-0.56533 0,-0.384 -0.170667,-0.672 -0.170666,-0.29867 -0.426666,-0.55467 -0.256,-0.26666 -0.554667,-0.52266 -0.288,-0.26667 -0.544,-0.576 -0.256,-0.30934 -0.426667,-0.704004 -0.170666,-0.394667 -0.170666,-0.928 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path53"
inkscape:connector-curvature="0" />
<path
d="m 23.175834,101.94001 -1.482667,-4.992004 h 1.226667 l 0.896,3.402664 0.896,-3.402664 h 1.12 l -1.482666,4.992004 v 2.47466 h -1.173334 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path55"
inkscape:connector-curvature="0" />
<path
d="m 27.351667,99.006673 v 5.407997 h -1.056 v -7.466664 h 1.472 l 1.205334,4.469334 v -4.469334 h 1.045333 v 7.466664 h -1.205333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path57"
inkscape:connector-curvature="0" />
<path
d="m 34.271501,101.63067 v 0.992 q 0,0.90667 -0.448,1.39734 -0.437334,0.48 -1.301334,0.48 -0.864,0 -1.312,-0.48 -0.437333,-0.49067 -0.437333,-1.39734 v -3.882664 q 0,-0.906667 0.437333,-1.386667 0.448,-0.490666 1.312,-0.490666 0.864,0 1.301334,0.490666 0.448,0.48 0.448,1.386667 v 0.725333 h -1.109334 v -0.8 q 0,-0.405333 -0.170666,-0.565333 -0.16,-0.170667 -0.437334,-0.170667 -0.277333,0 -0.448,0.170667 -0.16,0.16 -0.16,0.565333 v 4.032001 q 0,0.40533 0.16,0.56533 0.170667,0.16 0.448,0.16 0.277334,0 0.437334,-0.16 0.170666,-0.16 0.170666,-0.56533 v -1.06667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path59"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="CV-RATIO"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text1009"
transform="translate(-1.000001,1.99999)">
<path
d="m 59.498668,200.13067 v 0.992 q 0,0.90667 -0.448,1.39734 -0.437334,0.48 -1.301334,0.48 -0.864,0 -1.312,-0.48 -0.437333,-0.49067 -0.437333,-1.39734 v -3.88266 q 0,-0.90667 0.437333,-1.38667 0.448,-0.49067 1.312,-0.49067 0.864,0 1.301334,0.49067 0.448,0.48 0.448,1.38667 v 0.72533 h -1.109334 v -0.8 q 0,-0.40533 -0.170666,-0.56533 -0.16,-0.17067 -0.437334,-0.17067 -0.277333,0 -0.448,0.17067 -0.16,0.16 -0.16,0.56533 v 4.032 q 0,0.40533 0.16,0.56533 0.170667,0.16 0.448,0.16 0.277334,0 0.437334,-0.16 0.170666,-0.16 0.170666,-0.56533 v -1.06667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1015"
inkscape:connector-curvature="0" />
<path
d="m 61.991668,201.53867 0.896,-6.09066 h 1.077333 l -1.152,7.46666 h -1.749333 l -1.152,-7.46666 h 1.184 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1017"
inkscape:connector-curvature="0" />
<path
d="m 64.355168,198.64801 h 2.133333 v 1.06666 h -2.133333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1019"
inkscape:connector-curvature="0" />
<path
d="m 69.736834,202.91467 q -0.02133,-0.0747 -0.04267,-0.13866 -0.02133,-0.064 -0.04267,-0.16 -0.01067,-0.096 -0.02133,-0.24534 0,-0.14933 0,-0.37333 v -1.17333 q 0,-0.52267 -0.181334,-0.736 -0.181333,-0.21334 -0.586666,-0.21334 H 68.45683 v 3.04 h -1.173333 v -7.46666 h 1.770667 q 0.917333,0 1.322667,0.42666 0.416,0.42667 0.416,1.29067 v 0.58667 q 0,1.152 -0.768,1.51466 0.448,0.18134 0.608,0.59734 0.170666,0.40533 0.170666,0.992 v 1.152 q 0,0.27733 0.02133,0.49066 0.02133,0.20267 0.106666,0.416 z m -1.28,-6.4 v 2.29334 h 0.458667 q 0.330667,0 0.512,-0.17067 0.192,-0.17067 0.192,-0.61867 v -0.736 q 0,-0.40533 -0.149333,-0.58666 -0.138667,-0.18134 -0.448,-0.18134 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1021"
inkscape:connector-curvature="0" />
<path
d="m 75.372502,202.91467 h -1.184001 l -0.202666,-1.35466 h -1.44 l -0.202667,1.35466 h -1.077333 l 1.194666,-7.46666 h 1.717334 z m -2.677334,-2.368 h 1.130667 l -0.565334,-3.776 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1023"
inkscape:connector-curvature="0" />
<path
d="m 75.588501,195.44801 h 3.626667 v 1.06666 h -1.226667 v 6.4 h -1.173333 v -6.4 h -1.226667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1025"
inkscape:connector-curvature="0" />
<path
d="m 79.741835,195.44801 h 1.173333 v 7.46666 h -1.173333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1027"
inkscape:connector-curvature="0" />
<path
d="m 82.840002,201.19734 q 0,0.40533 0.16,0.576 0.170667,0.16 0.448,0.16 0.277334,0 0.437334,-0.16 0.170666,-0.17067 0.170666,-0.576 v -4.032 q 0,-0.40533 -0.170666,-0.56533 -0.16,-0.17067 -0.437334,-0.17067 -0.277333,0 -0.448,0.17067 -0.16,0.16 -0.16,0.56533 z m -1.173333,-3.95733 q 0,-0.90667 0.458667,-1.38667 0.458666,-0.49067 1.322666,-0.49067 0.864,0 1.322667,0.49067 0.458667,0.48 0.458667,1.38667 v 3.88266 q 0,0.90667 -0.458667,1.39734 -0.458667,0.48 -1.322667,0.48 -0.864,0 -1.322666,-0.48 -0.458667,-0.49067 -0.458667,-1.39734 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1029"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="TRIG."
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text889">
<path
d="m 94.083695,197.44816 h 3.626666 v 1.06667 h -1.226666 v 6.4 h -1.173334 v -6.4 h -1.226666 z"
id="path891"
inkscape:connector-curvature="0" />
<path
d="m 100.69036,204.91483 q -0.0213,-0.0747 -0.0427,-0.13867 -0.0213,-0.064 -0.0427,-0.16 -0.0107,-0.096 -0.0213,-0.24533 0,-0.14934 0,-0.37334 v -1.17333 q 0,-0.52267 -0.18133,-0.736 -0.18133,-0.21333 -0.586665,-0.21333 h -0.405334 v 3.04 h -1.173333 v -7.46667 h 1.770662 q 0.91734,0 1.32267,0.42667 0.416,0.42666 0.416,1.29066 v 0.58667 q 0,1.152 -0.768,1.51467 0.448,0.18133 0.608,0.59733 0.17067,0.40533 0.17067,0.992 v 1.152 q 0,0.27733 0.0213,0.49067 0.0213,0.20266 0.10667,0.416 z m -1.279999,-6.4 v 2.29333 h 0.458667 q 0.330662,0 0.512002,-0.17067 0.192,-0.17066 0.192,-0.61866 v -0.736 q 0,-0.40534 -0.14934,-0.58667 -0.13866,-0.18133 -0.447995,-0.18133 z"
id="path893"
inkscape:connector-curvature="0" />
<path
d="m 102.52869,197.44816 h 1.17334 v 7.46667 h -1.17334 z"
id="path895"
inkscape:connector-curvature="0" />
<path
d="m 106.30953,200.75483 h 1.64267 v 2.368 q 0,0.90666 -0.448,1.39733 -0.43734,0.48 -1.30134,0.48 -0.864,0 -1.312,-0.48 -0.43733,-0.49067 -0.43733,-1.39733 v -3.88267 q 0,-0.90667 0.43733,-1.38667 0.448,-0.49066 1.312,-0.49066 0.864,0 1.30134,0.49066 0.448,0.48 0.448,1.38667 v 0.72533 h -1.10934 v -0.8 q 0,-0.40533 -0.17066,-0.56533 -0.16,-0.17067 -0.43734,-0.17067 -0.27733,0 -0.448,0.17067 -0.16,0.16 -0.16,0.56533 v 4.032 q 0,0.40534 0.16,0.56534 0.17067,0.16 0.448,0.16 0.27734,0 0.43734,-0.16 0.17066,-0.16 0.17066,-0.56534 v -1.376 h -0.53333 z"
id="path897"
inkscape:connector-curvature="0" />
<path
d="m 109.7427,203.78416 v 1.13067 h -1.13067 v -1.13067 z"
id="path899"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#d2d2cd;stroke-width:1.53684449;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 68.743183,207.5581 8.912911,8.91372"
id="path960"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#d2d2cd;stroke-width:1.53676915;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 99.941074,207.55823 -8.912881,8.91326"
id="path960-0"
inkscape:connector-curvature="0" />
<rect
style="fill:none;fill-opacity:1;stroke:#00a000;stroke-width:5.23562336;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
id="rect829"
width="108.76438"
height="80.764374"
x="5.6178117"
y="257.27582"
ry="12.882656" />
<g
aria-label="1"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text938"
transform="translate(-0.78499942,0.30042392)">
<path
d="m 44.180001,265.076 q 0.597334,0 0.970667,-0.13067 0.392,-0.13066 0.634667,-0.35466 0.242666,-0.224 0.392,-0.52267 0.149333,-0.29867 0.261333,-0.63467 h 1.381333 V 276.5 h -2.053333 v -9.968 h -1.586667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#00a000;fill-opacity:1"
id="path952"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="2"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text942"
transform="translate(0.78500218,0.30042392)">
<path
d="m 75.008001,266.644 q 0,-0.87733 -0.298666,-1.176 -0.28,-0.31733 -0.765334,-0.31733 -0.485333,0 -0.784,0.29866 -0.28,0.28 -0.28,0.98934 v 1.4 h -1.941333 v -1.26934 q 0,-1.58666 0.765333,-2.42666 0.784,-0.85867 2.296,-0.85867 1.512,0 2.277333,0.85867 0.784,0.84 0.784,2.42666 0,1.064 -0.336,1.92267 -0.317333,0.85867 -0.802666,1.568 -0.485334,0.70933 -1.045333,1.30667 -0.56,0.57866 -1.008,1.12 -0.448,0.52266 -0.709334,1.04533 -0.261333,0.52267 -0.168,1.10133 h 3.882667 V 276.5 h -5.936 v -1.60533 q 0,-0.952 0.298667,-1.68 0.298666,-0.728 0.746666,-1.32534 0.466667,-0.616 0.989334,-1.13866 0.522666,-0.54134 0.970666,-1.13867 0.466667,-0.59733 0.765334,-1.30667 0.298666,-0.70933 0.298666,-1.66133 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#00a000;fill-opacity:1"
id="path955"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="3"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text946"
transform="translate(-0.78499892,-0.94890608)">
<path
d="m 47.008001,322.644 q 0,-0.87733 -0.298667,-1.176 -0.28,-0.31733 -0.765333,-0.31733 -0.485334,0 -0.784,0.29866 -0.28,0.28 -0.28,0.98934 v 0.84 h -1.941334 v -0.70934 q 0,-1.58666 0.765334,-2.42666 0.784,-0.85867 2.296,-0.85867 1.512,0 2.277333,0.85867 0.784,0.84 0.784,2.42666 v 0.336 q 0,2.09067 -1.437333,2.688 0.784,0.336 1.101333,1.04534 0.336,0.69066 0.336,1.69866 v 1.02667 q 0,1.58667 -0.784,2.44533 -0.765333,0.84 -2.277333,0.84 -1.512,0 -2.296,-0.84 -0.765334,-0.85866 -0.765334,-2.44533 v -1.08267 h 1.941334 v 1.21334 q 0,0.70933 0.28,1.008 0.298666,0.28 0.784,0.28 0.485333,0 0.765333,-0.29867 0.298667,-0.29867 0.298667,-1.176 v -1.02667 q 0,-0.91466 -0.317334,-1.288 Q 46.373334,326.62 45.664001,326.62 h -0.690667 v -1.86667 h 0.802667 q 0.578666,0 0.896,-0.29866 0.336,-0.29867 0.336,-1.08267 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#00a000;fill-opacity:1"
id="path958"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="4"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text950"
transform="translate(0.78499968,-0.79957608)">
<path
d="m 70.528004,328.26267 3.733333,-8.82934 h 2.24 v 8.82934 h 0.970666 v 1.86666 H 76.501337 V 332.5 h -2.053334 v -2.37067 h -3.919999 z m 3.919999,0 V 323.428 l -2.034666,4.83467 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#00a000;fill-opacity:1"
id="path961"
inkscape:connector-curvature="0" />
</g>
<rect
style="opacity:1;fill:#161404;fill-opacity:1;stroke:#43435b;stroke-width:3;stroke-linecap:butt;stroke-miterlimit:2.29999995;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="rect867"
width="56.738419"
height="32.424419"
x="31.631001"
y="281.44559"
ry="4.9140596" />
</svg>

+ 338
- 0
plugins/community/repos/Ohmer/res/KlokSpid_Stage_Repro.svg View File

@@ -0,0 +1,338 @@
<?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"
id="svg8"
viewBox="0 0 120 380"
version="1.1"
sodipodi:docname="KlokSpid_Stage_Repro.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
width="120"
height="380">
<title
id="title9">KlokSpid modules 8 HP for VCV Rack</title>
<metadata
id="metadata39">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>KlokSpid modules 8 HP for VCV Rack</dc:title>
<cc:license
rdf:resource="" />
</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="1920"
inkscape:window-height="1058"
id="namedview37"
showgrid="false"
inkscape:zoom="1.9612909"
inkscape:cx="-268.33867"
inkscape:cy="160.06324"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg8"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-text-baseline="false" />
<defs
id="defs4">
<marker
inkscape:stockid="TriangleOutL"
orient="auto"
refY="0.0"
refX="0.0"
id="TriangleOutL"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path999"
d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
style="fill-rule:evenodd;stroke:#00ff00;stroke-width:1pt;stroke-opacity:1;fill:#00ff00;fill-opacity:1"
transform="scale(0.8)" />
</marker>
<style
id="style2">.cls-1{fill:#ab2d2d;}.cls-2{fill:#952d2d;}.cls-3{fill:#251e1e;}.cls-4{fill:#fff7d4;}.cls-5{fill:#202020;}</style>
</defs>
<path
style="opacity:1;vector-effect:none;fill:#700000;fill-opacity:1;stroke:none;stroke-width:0.97368503;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 0,3.8500002e-7 H 120 V 380 H 0 Z"
id="ModuleLayer"
inkscape:connector-curvature="0" />
<g
aria-label="KlokSpid"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text846"
transform="translate(0,3e-6)">
<path
d="m 28.27116,18.815756 h 3.852864 v 0.608724 h -0.272135 q -0.472657,0 -0.666016,0.114583 -0.193359,0.114583 -0.272135,0.358073 -0.06445,0.179036 -0.06445,0.587239 v 3.774089 l 3.752604,-3.974609 q 0.29362,-0.315105 0.34375,-0.408204 0.05729,-0.0931 0.05729,-0.193359 0,-0.128906 -0.128906,-0.193359 -0.121745,-0.06445 -0.537109,-0.06445 H 34.10775 v -0.608724 h 3.580729 v 0.608724 q -0.422526,-0.0072 -0.766276,0.0931 -0.34375,0.10026 -0.54427,0.250651 -0.436849,0.322265 -0.623047,0.515625 l -2.678386,2.742838 3.057943,4.053386 q 0.415365,0.551432 0.658854,0.759114 0.24349,0.200521 0.501302,0.286459 0.257813,0.07878 0.802084,0.07878 v 0.601562 h -4.239584 v -0.601562 h 0.250651 q 0.422526,0 0.501302,-0.02148 0.121745,-0.02865 0.19336,-0.114583 0.07161,-0.08594 0.07161,-0.179036 0,-0.186198 -0.49414,-0.852214 l -2.25586,-3.065104 -1.274739,1.317708 v 1.91211 q 0,0.49414 0.10026,0.673177 0.10026,0.179036 0.307943,0.264974 0.164713,0.06445 0.866536,0.06445 V 28.80599 H 28.27116 v -0.601562 h 0.300781 q 0.451172,0 0.615885,-0.08594 0.164714,-0.0931 0.250651,-0.300781 0.0931,-0.207682 0.0931,-0.73763 v -6.595704 q 0,-0.522786 -0.08594,-0.708984 -0.08594,-0.193359 -0.250651,-0.272135 -0.164714,-0.07878 -0.701823,-0.07878 H 28.27116 Z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path820"
inkscape:connector-curvature="0" />
<path
d="m 38.555014,19.488933 v -0.58724 q 0.973958,-0.07161 1.897786,-0.601562 h 0.529948 v 8.815755 q 0,0.558594 0.07162,0.701823 0.0931,0.200521 0.272135,0.29362 0.179037,0.0931 0.6875,0.0931 h 0.229167 v 0.601562 h -3.688151 v -0.601562 h 0.372396 q 0.350911,0 0.522786,-0.107422 0.179036,-0.107422 0.250651,-0.29362 0.07878,-0.186198 0.07878,-0.744792 v -7.569661 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path822"
inkscape:connector-curvature="0" />
<path
d="m 46.661785,21.723308 q 1.052735,0 1.819011,0.436849 0.773437,0.436849 1.217448,1.274739 0.44401,0.837891 0.44401,1.91211 0,1.074219 -0.458333,1.912109 -0.451172,0.837891 -1.238933,1.281901 -0.780599,0.436849 -1.86914,0.436849 -1.733073,0 -2.606771,-1.08138 -0.866537,-1.08138 -0.866537,-2.542318 0,-1.067057 0.451172,-1.890625 0.451172,-0.830729 1.260417,-1.281901 0.816406,-0.458333 1.847656,-0.458333 z m -0.05729,0.694661 q -0.816407,0 -1.382162,0.644532 -0.716146,0.802083 -0.716146,2.334635 0,1.47526 0.608724,2.248698 0.551432,0.6875 1.496745,0.6875 0.608724,0 1.08138,-0.322266 0.479818,-0.322265 0.773438,-1.024088 0.29362,-0.708985 0.29362,-1.661459 0,-0.930989 -0.315105,-1.668619 -0.243489,-0.58724 -0.73763,-0.909506 -0.486979,-0.329427 -1.102864,-0.329427 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path824"
inkscape:connector-curvature="0" />
<path
d="m 51.166342,19.488933 v -0.58724 q 0.916666,-0.07161 1.897786,-0.601562 h 0.551433 v 7.147135 l 2.628255,-2.091146 q 0.630208,-0.501302 0.630208,-0.666015 0,-0.100261 -0.136068,-0.157552 -0.08594,-0.03581 -0.422526,-0.03581 h -0.379557 v -0.601562 h 3.63086 v 0.601562 q -0.608724,0 -0.973959,0.128907 -0.365234,0.121744 -0.845052,0.486979 l -2.076823,1.582682 2.449219,2.678386 q 0.350911,0.386718 0.572917,0.54427 0.222005,0.157552 0.44401,0.222006 0.222005,0.05729 0.694662,0.06445 v 0.601562 h -3.809896 v -0.601562 h 0.293619 q 0.436849,0 0.551433,-0.06445 0.114583,-0.07162 0.114583,-0.186198 0,-0.114584 -0.214844,-0.329427 -0.03581,-0.03581 -0.07878,-0.08594 l -1.904948,-2.191406 -1.167317,0.895182 v 0.938151 q 0,0.522787 0.07878,0.6875 0.07878,0.164714 0.243489,0.250651 0.171875,0.08594 0.651693,0.08594 h 0.264974 v 0.601562 h -3.688151 v -0.601562 q 0.623047,-0.0072 0.766276,-0.05013 0.250651,-0.07878 0.358073,-0.279296 0.114583,-0.200521 0.114583,-0.773438 v -7.61263 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path826"
inkscape:connector-curvature="0" />
<path
d="m 67.2653,18.815756 h 0.515625 l 0.766276,3.079427 -0.658854,0.200521 q -0.630208,-1.296224 -1.675781,-2.041016 -0.859375,-0.623047 -1.904948,-0.623047 -0.630208,0 -1.131511,0.229167 -0.501302,0.222005 -0.751953,0.580078 -0.250651,0.358073 -0.250651,0.730469 0,0.336588 0.19336,0.651692 0.193359,0.315105 0.587239,0.558594 0.39388,0.236328 1.289063,0.501302 l 1.86914,0.551433 q 0.34375,0.10026 0.995443,0.386718 0.658854,0.286459 1.024089,0.608724 0.365234,0.315104 0.572916,0.780599 0.207683,0.458334 0.207683,0.995443 0,1.188802 -1.045573,2.083984 -1.038412,0.888021 -2.692709,0.888021 -0.852213,0 -1.52539,-0.243489 -0.673177,-0.250651 -1.453776,-0.88086 l -0.329427,0.952474 h -0.501303 l -0.666015,-3.58789 0.666015,-0.136068 q 0.365235,0.995443 0.966797,1.690104 0.608724,0.694661 1.339193,1.052734 0.73763,0.350912 1.496745,0.350912 1.03125,0 1.804687,-0.623047 0.644532,-0.522786 0.644532,-1.231771 0,-0.651693 -0.465495,-1.067057 -0.472656,-0.415365 -1.690104,-0.773438 l -1.790365,-0.515625 q -1.503906,-0.436849 -2.119792,-1.117187 -0.615885,-0.680339 -0.615885,-1.561198 0,-0.6875 0.401042,-1.267578 0.401041,-0.58724 1.231771,-0.98112 0.830729,-0.39388 1.81901,-0.39388 0.830729,0 1.589844,0.286458 0.537109,0.200521 0.988281,0.572917 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path828"
inkscape:connector-curvature="0" />
<path
d="m 69.986656,22.919271 v -0.587239 q 0.537109,0 0.952474,-0.136068 0.415364,-0.136068 0.909505,-0.472656 h 0.565755 v 1.195963 q 0.895182,-0.708984 1.489583,-0.952474 0.594401,-0.243489 1.188802,-0.243489 1.22461,0 2.083985,0.959635 0.866536,0.959636 0.866536,2.499349 0,1.704427 -0.981119,2.792969 -0.895183,1.002604 -2.30599,1.002604 -0.701823,0 -1.317708,-0.264974 -0.444011,-0.186198 -1.024089,-0.666015 v 2.356119 q 0,0.529948 0.02865,0.623047 0.03581,0.136068 0.143229,0.229167 0.107422,0.0931 0.272135,0.121745 0.121745,0.02148 0.816407,0.02148 v 0.601563 H 69.98666 v -0.601563 h 0.322265 q 0.494141,0 0.63737,-0.07878 0.150391,-0.07161 0.222005,-0.229167 0.04297,-0.121744 0.04297,-0.744791 v -7.426433 z m 2.427734,0.737631 v 2.463541 q 0,0.486979 0.05729,0.723308 0.08594,0.365234 0.329427,0.658854 0.250651,0.29362 0.673177,0.501302 0.429687,0.207682 0.895182,0.207682 0.93099,0 1.611328,-0.701823 0.6875,-0.701823 0.6875,-2.126953 0,-1.332031 -0.565755,-2.055339 -0.565755,-0.730468 -1.339193,-0.730468 -0.501302,0 -1.088541,0.264974 -0.58724,0.264974 -1.260417,0.794922 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path830"
inkscape:connector-curvature="0" />
<path
d="m 80.936525,18.49349 q 0.34375,0 0.58724,0.24349 0.24349,0.236328 0.24349,0.580078 0,0.34375 -0.24349,0.587239 -0.24349,0.24349 -0.58724,0.24349 -0.34375,0 -0.587239,-0.24349 -0.24349,-0.243489 -0.24349,-0.587239 0,-0.34375 0.24349,-0.580078 0.243489,-0.24349 0.587239,-0.24349 z m -1.826172,4.432943 v -0.594401 q 0.594402,-0.07162 0.995443,-0.200521 0.408203,-0.128906 0.923828,-0.408203 h 0.522787 v 5.743489 q 0,0.300782 0.08594,0.451172 0.08594,0.150391 0.236328,0.222006 0.157553,0.06445 0.565756,0.06445 h 0.336588 v 0.601562 h -3.666667 v -0.601562 h 0.29362 q 0.479818,0 0.644532,-0.08594 0.164713,-0.08594 0.229166,-0.243489 0.07162,-0.157552 0.07162,-0.737631 v -4.210937 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path832"
inkscape:connector-curvature="0" />
<path
d="m 88.040691,19.510417 v -0.608724 q 0.486979,-0.04297 0.888021,-0.164713 0.408203,-0.128907 1.016927,-0.436849 h 0.537109 v 8.686849 q 0,0.601562 0.02865,0.730469 0.07162,0.272135 0.24349,0.379557 0.171875,0.107422 0.666015,0.107422 h 0.307943 v 0.601562 l -2.485026,0.114584 v -1.138672 q -0.716146,0.651692 -1.346354,0.923828 -0.623047,0.272135 -1.253256,0.272135 -1.296224,0 -2.155599,-1.038411 -0.852213,-1.045573 -0.852213,-2.513672 0,-1.045573 0.451172,-1.91211 0.458333,-0.873698 1.203125,-1.332031 0.744791,-0.458333 1.632812,-0.458333 0.680339,0 1.260417,0.236328 0.580078,0.236328 1.059896,0.708984 v -3.158203 z m 1.203125,7.5625 v -2.707031 q 0,-0.580078 -0.222005,-0.945313 -0.214844,-0.372395 -0.716146,-0.644531 -0.494141,-0.272135 -1.016927,-0.272135 -0.623047,0 -1.152995,0.34375 -0.522787,0.336588 -0.823568,0.98112 -0.29362,0.637369 -0.29362,1.546875 0,0.859375 0.272136,1.489583 0.279297,0.623047 0.744791,0.952474 0.465495,0.322266 0.952474,0.322266 0.479818,0 1.088542,-0.272136 0.608724,-0.279297 1.167318,-0.794922 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path834"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="Ω"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#d20f00;fill-opacity:1;stroke:none"
id="text17"
transform="translate(44.587105,-11.21199)">
<path
id="path13"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66666603px;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d20f00;fill-opacity:1"
d="m 7.2553434,372.35199 v -4.27083 h 3.0208336 q -3.1380211,-2.04427 -3.1380211,-5.58594 0,-3.52865 2.3828125,-5.9375 2.3958336,-2.42188 5.8984376,-2.42188 3.489583,0 5.872395,2.42188 2.395834,2.40885 2.395834,5.9375 0,3.54167 -3.151042,5.58594 h 3.033854 v 4.27083 h -7.330729 v -3.93229 q 2.513021,-1.22396 2.513021,-5.19531 0,-4.8698 -3.346354,-4.8698 -3.333333,0 -3.333333,4.84375 0,4.01042 2.5,5.22136 v 3.93229 z"
inkscape:connector-curvature="0" />
</g>
<path
id="path3707"
style="font-style:italic;font-variant:normal;font-weight:600;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Lucida Bright';-inkscape-font-specification:'Lucida Bright, Semi-Bold Italic';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:#6a0a0a;stroke-width:0.60000002;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 63.921903,358.84168 h -1.175782 l -0.683593,3.42709 -0.209636,1.23958 q 0,0.48307 0.929688,0.54688 l 0.164062,0.009 -0.173177,0.84766 h -5.395833 l 0.164063,-0.84766 0.173177,-0.009 q 0.957031,-0.0638 1.148437,-0.27344 0.200521,-0.21875 0.501302,-1.51302 l 1.63151,-8.21224 q 0.08203,-0.48307 0.191407,-1.17578 0,-0.52865 -1.121094,-0.61068 l -0.173177,-0.009 0.173177,-0.83855 h 4.046875 l 2.351562,-0.0638 q 1.822917,0 2.725261,0.66537 0.911458,0.65625 0.911458,1.98698 0,1.43099 -0.957031,2.63411 -0.947917,1.20313 -2.606771,1.8776 l 1.768229,3.73698 q 0.65625,1.3125 0.847656,1.54037 0.191407,0.21875 0.710938,0.25521 l 0.164062,0.009 -0.164062,0.84766 h -3.308594 z m -0.99349,-0.90234 h 0.610677 q 1.686198,0 2.72526,-0.99349 1.039063,-1.0026 1.039063,-2.63411 0,-1.00261 -0.574219,-1.49479 -0.574219,-0.50131 -1.731771,-0.50131 h -0.947916 z"
inkscape:connector-curvature="0" />
<rect
style="fill:#72aec6;fill-opacity:1;stroke:#43435b;stroke-width:4.45609856;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
id="rect840"
width="110.24391"
height="50.0509"
x="4.8780441"
y="41.27948"
ry="9.0788364" />
<g
aria-label="CLK IN"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text2356"
transform="translate(6.794772)">
<path
d="m 24.727895,205.31774 v 1.736 q 0,1.58667 -0.784,2.44534 -0.765333,0.84 -2.277333,0.84 -1.512,0 -2.296,-0.84 -0.765334,-0.85867 -0.765334,-2.44534 v -6.79466 q 0,-1.58667 0.765334,-2.42667 0.784,-0.85867 2.296,-0.85867 1.512,0 2.277333,0.85867 0.784,0.84 0.784,2.42667 v 1.26933 h -1.941333 v -1.4 q 0,-0.70933 -0.298667,-0.98933 -0.28,-0.29867 -0.765333,-0.29867 -0.485334,0 -0.784,0.29867 -0.28,0.28 -0.28,0.98933 v 7.056 q 0,0.70933 0.28,0.98933 0.298666,0.28 0.784,0.28 0.485333,0 0.765333,-0.28 0.298667,-0.28 0.298667,-0.98933 v -1.86667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path30"
inkscape:connector-curvature="0" />
<path
d="m 25.991978,197.12308 h 2.053333 v 11.2 h 3.378667 v 1.86666 h -5.432 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path32"
inkscape:connector-curvature="0" />
<path
d="m 35.060185,204.98174 -0.634666,1.19467 v 4.01333 h -2.053334 v -13.06666 h 2.053334 v 5.69333 l 2.725333,-5.69333 h 2.016 l -2.856,5.824 2.856,7.24266 h -2.109333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path34"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="SYNC"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text52">
<path
d="m 18.032001,98.740006 q 0,-0.906667 0.426666,-1.386667 0.437334,-0.490666 1.301334,-0.490666 0.864,0 1.290666,0.490666 0.437334,0.48 0.437334,1.386667 v 0.288 h -1.109334 v -0.362667 q 0,-0.405333 -0.16,-0.565333 -0.149333,-0.170667 -0.426666,-0.170667 -0.277334,0 -0.437334,0.170667 -0.149333,0.16 -0.149333,0.565333 0,0.384 0.170667,0.682667 0.170666,0.288 0.426666,0.554667 0.256,0.255997 0.544,0.522667 0.298667,0.256 0.554667,0.56533 0.256,0.30934 0.426667,0.704 0.170666,0.39467 0.170666,0.928 0,0.90667 -0.448,1.39734 -0.437333,0.48 -1.301333,0.48 -0.864,0 -1.312,-0.48 -0.437333,-0.49067 -0.437333,-1.39734 v -0.512 h 1.109333 v 0.58667 q 0,0.40533 0.16,0.56533 0.170667,0.16 0.448,0.16 0.277333,0 0.437333,-0.16 0.170667,-0.16 0.170667,-0.56533 0,-0.384 -0.170667,-0.672 -0.170666,-0.29867 -0.426666,-0.55467 -0.256,-0.26666 -0.554667,-0.52266 -0.288,-0.26667 -0.544,-0.576 -0.256,-0.30934 -0.426667,-0.704004 -0.170666,-0.394667 -0.170666,-0.928 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path53"
inkscape:connector-curvature="0" />
<path
d="m 23.175834,101.94001 -1.482667,-4.992004 h 1.226667 l 0.896,3.402664 0.896,-3.402664 h 1.12 l -1.482666,4.992004 v 2.47466 h -1.173334 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path55"
inkscape:connector-curvature="0" />
<path
d="m 27.351667,99.006673 v 5.407997 h -1.056 v -7.466664 h 1.472 l 1.205334,4.469334 v -4.469334 h 1.045333 v 7.466664 h -1.205333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path57"
inkscape:connector-curvature="0" />
<path
d="m 34.271501,101.63067 v 0.992 q 0,0.90667 -0.448,1.39734 -0.437334,0.48 -1.301334,0.48 -0.864,0 -1.312,-0.48 -0.437333,-0.49067 -0.437333,-1.39734 v -3.882664 q 0,-0.906667 0.437333,-1.386667 0.448,-0.490666 1.312,-0.490666 0.864,0 1.301334,0.490666 0.448,0.48 0.448,1.386667 v 0.725333 h -1.109334 v -0.8 q 0,-0.405333 -0.170666,-0.565333 -0.16,-0.170667 -0.437334,-0.170667 -0.277333,0 -0.448,0.170667 -0.16,0.16 -0.16,0.565333 v 4.032001 q 0,0.40533 0.16,0.56533 0.170667,0.16 0.448,0.16 0.277334,0 0.437334,-0.16 0.170666,-0.16 0.170666,-0.56533 v -1.06667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path59"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="CV-RATIO"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text1009"
transform="translate(-1.000001,1.99999)">
<path
d="m 59.498668,200.13067 v 0.992 q 0,0.90667 -0.448,1.39734 -0.437334,0.48 -1.301334,0.48 -0.864,0 -1.312,-0.48 -0.437333,-0.49067 -0.437333,-1.39734 v -3.88266 q 0,-0.90667 0.437333,-1.38667 0.448,-0.49067 1.312,-0.49067 0.864,0 1.301334,0.49067 0.448,0.48 0.448,1.38667 v 0.72533 h -1.109334 v -0.8 q 0,-0.40533 -0.170666,-0.56533 -0.16,-0.17067 -0.437334,-0.17067 -0.277333,0 -0.448,0.17067 -0.16,0.16 -0.16,0.56533 v 4.032 q 0,0.40533 0.16,0.56533 0.170667,0.16 0.448,0.16 0.277334,0 0.437334,-0.16 0.170666,-0.16 0.170666,-0.56533 v -1.06667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1015"
inkscape:connector-curvature="0" />
<path
d="m 61.991668,201.53867 0.896,-6.09066 h 1.077333 l -1.152,7.46666 h -1.749333 l -1.152,-7.46666 h 1.184 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1017"
inkscape:connector-curvature="0" />
<path
d="m 64.355168,198.64801 h 2.133333 v 1.06666 h -2.133333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1019"
inkscape:connector-curvature="0" />
<path
d="m 69.736834,202.91467 q -0.02133,-0.0747 -0.04267,-0.13866 -0.02133,-0.064 -0.04267,-0.16 -0.01067,-0.096 -0.02133,-0.24534 0,-0.14933 0,-0.37333 v -1.17333 q 0,-0.52267 -0.181334,-0.736 -0.181333,-0.21334 -0.586666,-0.21334 H 68.45683 v 3.04 h -1.173333 v -7.46666 h 1.770667 q 0.917333,0 1.322667,0.42666 0.416,0.42667 0.416,1.29067 v 0.58667 q 0,1.152 -0.768,1.51466 0.448,0.18134 0.608,0.59734 0.170666,0.40533 0.170666,0.992 v 1.152 q 0,0.27733 0.02133,0.49066 0.02133,0.20267 0.106666,0.416 z m -1.28,-6.4 v 2.29334 h 0.458667 q 0.330667,0 0.512,-0.17067 0.192,-0.17067 0.192,-0.61867 v -0.736 q 0,-0.40533 -0.149333,-0.58666 -0.138667,-0.18134 -0.448,-0.18134 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1021"
inkscape:connector-curvature="0" />
<path
d="m 75.372502,202.91467 h -1.184001 l -0.202666,-1.35466 h -1.44 l -0.202667,1.35466 h -1.077333 l 1.194666,-7.46666 h 1.717334 z m -2.677334,-2.368 h 1.130667 l -0.565334,-3.776 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1023"
inkscape:connector-curvature="0" />
<path
d="m 75.588501,195.44801 h 3.626667 v 1.06666 h -1.226667 v 6.4 h -1.173333 v -6.4 h -1.226667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1025"
inkscape:connector-curvature="0" />
<path
d="m 79.741835,195.44801 h 1.173333 v 7.46666 h -1.173333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1027"
inkscape:connector-curvature="0" />
<path
d="m 82.840002,201.19734 q 0,0.40533 0.16,0.576 0.170667,0.16 0.448,0.16 0.277334,0 0.437334,-0.16 0.170666,-0.17067 0.170666,-0.576 v -4.032 q 0,-0.40533 -0.170666,-0.56533 -0.16,-0.17067 -0.437334,-0.17067 -0.277333,0 -0.448,0.17067 -0.16,0.16 -0.16,0.56533 z m -1.173333,-3.95733 q 0,-0.90667 0.458667,-1.38667 0.458666,-0.49067 1.322666,-0.49067 0.864,0 1.322667,0.49067 0.458667,0.48 0.458667,1.38667 v 3.88266 q 0,0.90667 -0.458667,1.39734 -0.458667,0.48 -1.322667,0.48 -0.864,0 -1.322666,-0.48 -0.458667,-0.49067 -0.458667,-1.39734 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1029"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(3.05e-4,-1.6e-4)"
aria-label="TRIG."
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text889">
<path
d="m 94.083695,197.44816 h 3.626666 v 1.06667 h -1.226666 v 6.4 h -1.173334 v -6.4 h -1.226666 z"
id="path891"
inkscape:connector-curvature="0" />
<path
d="m 100.69036,204.91483 q -0.0213,-0.0747 -0.0427,-0.13867 -0.0213,-0.064 -0.0427,-0.16 -0.0107,-0.096 -0.0213,-0.24533 0,-0.14934 0,-0.37334 v -1.17333 q 0,-0.52267 -0.18133,-0.736 -0.18133,-0.21333 -0.586665,-0.21333 h -0.405334 v 3.04 h -1.173333 v -7.46667 h 1.770662 q 0.91734,0 1.32267,0.42667 0.416,0.42666 0.416,1.29066 v 0.58667 q 0,1.152 -0.768,1.51467 0.448,0.18133 0.608,0.59733 0.17067,0.40533 0.17067,0.992 v 1.152 q 0,0.27733 0.0213,0.49067 0.0213,0.20266 0.10667,0.416 z m -1.279999,-6.4 v 2.29333 h 0.458667 q 0.330662,0 0.512002,-0.17067 0.192,-0.17066 0.192,-0.61866 v -0.736 q 0,-0.40534 -0.14934,-0.58667 -0.13866,-0.18133 -0.447995,-0.18133 z"
id="path893"
inkscape:connector-curvature="0" />
<path
d="m 102.52869,197.44816 h 1.17334 v 7.46667 h -1.17334 z"
id="path895"
inkscape:connector-curvature="0" />
<path
d="m 106.30953,200.75483 h 1.64267 v 2.368 q 0,0.90666 -0.448,1.39733 -0.43734,0.48 -1.30134,0.48 -0.864,0 -1.312,-0.48 -0.43733,-0.49067 -0.43733,-1.39733 v -3.88267 q 0,-0.90667 0.43733,-1.38667 0.448,-0.49066 1.312,-0.49066 0.864,0 1.30134,0.49066 0.448,0.48 0.448,1.38667 v 0.72533 h -1.10934 v -0.8 q 0,-0.40533 -0.17066,-0.56533 -0.16,-0.17067 -0.43734,-0.17067 -0.27733,0 -0.448,0.17067 -0.16,0.16 -0.16,0.56533 v 4.032 q 0,0.40534 0.16,0.56534 0.17067,0.16 0.448,0.16 0.27734,0 0.43734,-0.16 0.17066,-0.16 0.17066,-0.56534 v -1.376 h -0.53333 z"
id="path897"
inkscape:connector-curvature="0" />
<path
d="m 109.7427,203.78416 v 1.13067 h -1.13067 v -1.13067 z"
id="path899"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#d2d2cd;stroke-width:1.53684449;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 68.743669,207.55782 8.912911,8.91372"
id="path960"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#d2d2cd;stroke-width:1.53676915;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 99.94156,207.55795 -8.912881,8.91326"
id="path960-0"
inkscape:connector-curvature="0" />
<rect
style="fill:none;fill-opacity:1;stroke:#00a000;stroke-width:5.23562336;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
id="rect829"
width="108.76438"
height="80.764374"
x="5.6178117"
y="257.27582"
ry="12.882656" />
<g
aria-label="1"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text938"
transform="translate(-0.78499942,0.30042392)">
<path
d="m 44.180001,265.076 q 0.597334,0 0.970667,-0.13067 0.392,-0.13066 0.634667,-0.35466 0.242666,-0.224 0.392,-0.52267 0.149333,-0.29867 0.261333,-0.63467 h 1.381333 V 276.5 h -2.053333 v -9.968 h -1.586667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#00a000;fill-opacity:1"
id="path952"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="2"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text942"
transform="translate(0.78500218,0.30042392)">
<path
d="m 75.008001,266.644 q 0,-0.87733 -0.298666,-1.176 -0.28,-0.31733 -0.765334,-0.31733 -0.485333,0 -0.784,0.29866 -0.28,0.28 -0.28,0.98934 v 1.4 h -1.941333 v -1.26934 q 0,-1.58666 0.765333,-2.42666 0.784,-0.85867 2.296,-0.85867 1.512,0 2.277333,0.85867 0.784,0.84 0.784,2.42666 0,1.064 -0.336,1.92267 -0.317333,0.85867 -0.802666,1.568 -0.485334,0.70933 -1.045333,1.30667 -0.56,0.57866 -1.008,1.12 -0.448,0.52266 -0.709334,1.04533 -0.261333,0.52267 -0.168,1.10133 h 3.882667 V 276.5 h -5.936 v -1.60533 q 0,-0.952 0.298667,-1.68 0.298666,-0.728 0.746666,-1.32534 0.466667,-0.616 0.989334,-1.13866 0.522666,-0.54134 0.970666,-1.13867 0.466667,-0.59733 0.765334,-1.30667 0.298666,-0.70933 0.298666,-1.66133 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#00a000;fill-opacity:1"
id="path955"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="3"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text946"
transform="translate(-0.78499892,-0.94890608)">
<path
d="m 47.008001,322.644 q 0,-0.87733 -0.298667,-1.176 -0.28,-0.31733 -0.765333,-0.31733 -0.485334,0 -0.784,0.29866 -0.28,0.28 -0.28,0.98934 v 0.84 h -1.941334 v -0.70934 q 0,-1.58666 0.765334,-2.42666 0.784,-0.85867 2.296,-0.85867 1.512,0 2.277333,0.85867 0.784,0.84 0.784,2.42666 v 0.336 q 0,2.09067 -1.437333,2.688 0.784,0.336 1.101333,1.04534 0.336,0.69066 0.336,1.69866 v 1.02667 q 0,1.58667 -0.784,2.44533 -0.765333,0.84 -2.277333,0.84 -1.512,0 -2.296,-0.84 -0.765334,-0.85866 -0.765334,-2.44533 v -1.08267 h 1.941334 v 1.21334 q 0,0.70933 0.28,1.008 0.298666,0.28 0.784,0.28 0.485333,0 0.765333,-0.29867 0.298667,-0.29867 0.298667,-1.176 v -1.02667 q 0,-0.91466 -0.317334,-1.288 Q 46.373334,326.62 45.664001,326.62 h -0.690667 v -1.86667 h 0.802667 q 0.578666,0 0.896,-0.29866 0.336,-0.29867 0.336,-1.08267 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#00a000;fill-opacity:1"
id="path958"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="4"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text950"
transform="translate(0.78499968,-0.79957608)">
<path
d="m 70.528004,328.26267 3.733333,-8.82934 h 2.24 v 8.82934 h 0.970666 v 1.86666 H 76.501337 V 332.5 h -2.053334 v -2.37067 h -3.919999 z m 3.919999,0 V 323.428 l -2.034666,4.83467 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#00a000;fill-opacity:1"
id="path961"
inkscape:connector-curvature="0" />
</g>
<rect
style="opacity:1;fill:#72aec6;fill-opacity:1;stroke:#43435b;stroke-width:3;stroke-linecap:butt;stroke-miterlimit:2.29999995;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="rect867"
width="56.738419"
height="32.424419"
x="31.631001"
y="281.44559"
ry="4.9140596" />
</svg>

BIN
plugins/community/repos/Ohmer/res/Manuals/RKD User's Manual.pdf View File


+ 322
- 0
plugins/community/repos/Ohmer/res/Metriks_Absolute_Night.svg View File

@@ -0,0 +1,322 @@
<?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"
id="svg8"
viewBox="0 0 120 380"
version="1.1"
sodipodi:docname="Metriks_Absolute_Night.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
width="120"
height="380">
<title
id="title9">Metriks (8 HP) panel, for VCV Rack</title>
<metadata
id="metadata39">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Metriks (8 HP) panel, for VCV Rack</dc:title>
<cc:license
rdf:resource="" />
<dc:rights>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:rights>
</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="1920"
inkscape:window-height="1058"
id="namedview37"
showgrid="false"
inkscape:zoom="7.8451636"
inkscape:cx="73.16408"
inkscape:cy="81.207886"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg8"
units="px" />
<defs
id="defs4">
<style
id="style2">.cls-1{fill:#ab2d2d;}.cls-2{fill:#952d2d;}.cls-3{fill:#251e1e;}.cls-4{fill:#fff7d4;}.cls-5{fill:#202020;}</style>
</defs>
<rect
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.97368497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="ModuleLayer"
width="120"
height="380"
x="0"
y="0" />
<g
aria-label="Metriks"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text862"
transform="translate(-30.000001)">
<path
d="m 63.552734,18.815759 h 3.158204 l 2.95052,7.913412 2.871745,-7.913412 h 3.050782 v 0.608724 h -0.257813 q -0.465495,0 -0.630208,0.07878 -0.157552,0.07878 -0.250651,0.279297 -0.0931,0.19336 -0.0931,0.644532 v 6.588541 q 0,0.623047 0.07161,0.809245 0.07878,0.186198 0.250651,0.286459 0.179037,0.0931 0.651693,0.0931 h 0.257813 v 0.601562 h -3.817058 v -0.601562 h 0.272136 q 0.365234,0 0.529948,-0.05729 0.171875,-0.05729 0.279297,-0.186198 0.114583,-0.136068 0.128906,-0.279297 0.03581,-0.29362 0.03581,-0.458333 v -7.354818 l -3.258464,8.9375 H 69.045573 L 65.758464,19.9974 v 7.082683 q 0,0.537109 0.0931,0.730468 0.0931,0.186198 0.286458,0.29362 0.200521,0.100261 0.708984,0.100261 h 0.229167 v 0.601562 h -3.523438 v -0.601562 h 0.200521 q 0.508464,0 0.723308,-0.107422 0.222005,-0.107422 0.315104,-0.300782 0.0931,-0.20052 0.0931,-0.780599 v -6.524088 q 0,-0.544271 -0.07878,-0.716146 -0.07878,-0.179037 -0.264974,-0.264974 -0.179037,-0.08594 -0.644532,-0.08594 h -0.34375 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path864"
inkscape:connector-curvature="0" />
<path
d="m 83.017578,26.958338 0.458334,0.372396 q -0.522787,0.623046 -1.016927,0.988281 -0.48698,0.365234 -0.923829,0.508463 -0.436849,0.150391 -1.024088,0.150391 -1.052735,0 -1.790365,-0.429687 -0.845052,-0.494141 -1.296224,-1.289063 -0.451172,-0.794922 -0.451172,-1.876302 0,-1.131511 0.436849,-1.933594 0.436849,-0.802083 1.217448,-1.260417 0.787761,-0.465494 1.819011,-0.465494 0.766276,0 1.332031,0.243489 0.565755,0.236328 0.959635,0.723307 0.393881,0.479818 0.572917,1.102865 0.10026,0.365234 0.114583,0.945313 H 78.36263 q -0.02148,0.350911 -0.02148,0.522786 0,0.902344 0.315104,1.611328 0.315104,0.701823 0.830729,1.038412 0.522787,0.329427 1.181641,0.329427 0.558594,0 1.08138,-0.257813 0.522787,-0.264974 1.267578,-1.024088 z M 82.100912,24.065109 Q 81.99349,23.406254 81.792969,23.09115 81.599609,22.776046 81.234375,22.589848 80.876302,22.40365 80.42513,22.40365 q -0.451172,0 -0.845052,0.186198 -0.39388,0.186198 -0.658854,0.515625 -0.257812,0.329427 -0.451172,0.959636 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path866"
inkscape:connector-curvature="0" />
<path
d="m 86.390626,19.460291 h 0.508464 v 2.434896 h 2.126953 v 0.716145 H 86.89909 v 4.31836 q 0,0.551432 0.0931,0.78776 0.10026,0.236328 0.329427,0.386719 0.236328,0.150391 0.522786,0.150391 0.680339,0 1.503907,-0.608724 v 0.694661 q -0.938151,0.63737 -1.897787,0.63737 -0.544271,0 -0.988281,-0.24349 -0.436849,-0.243489 -0.601563,-0.572916 -0.157552,-0.329427 -0.157552,-1.145834 V 22.611332 H 84.449871 V 22.00977 q 0.601563,-0.136068 0.966797,-0.422526 0.372396,-0.286458 0.601562,-0.744792 0.229167,-0.458333 0.372396,-1.382161 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path868"
inkscape:connector-curvature="0" />
<path
d="m 90.078777,22.919275 v -0.587239 q 0.522787,-0.04297 0.93099,-0.171875 0.408203,-0.136068 0.93099,-0.436849 h 0.537109 v 1.353515 q 0.508463,-0.623047 1.181641,-0.988281 0.673177,-0.365234 1.210286,-0.365234 0.529948,0 0.837891,0.250651 0.307942,0.250651 0.307942,0.608724 0,0.257812 -0.207682,0.458333 -0.200521,0.193359 -0.486979,0.193359 -0.128906,0 -0.222005,-0.03581 -0.0931,-0.03581 -0.272136,-0.157552 -0.39388,-0.257813 -0.658854,-0.257813 -0.358073,0 -0.78776,0.300782 -0.544271,0.386718 -0.852214,0.759114 v 3.301433 q 0,0.429687 0.04297,0.587239 0.05013,0.150391 0.157552,0.264974 0.107422,0.107422 0.264974,0.157552 0.157552,0.05013 0.551432,0.05013 h 0.236328 v 0.601562 h -3.702474 v -0.601562 h 0.307943 q 0.436849,0 0.572917,-0.07878 0.186198,-0.107421 0.272135,-0.293619 0.0931,-0.19336 0.0931,-0.6875 v -4.225261 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path870"
inkscape:connector-curvature="0" />
<path
d="m 98.307293,18.493494 q 0.34375,0 0.58724,0.243489 0.243489,0.236329 0.243489,0.580079 0,0.34375 -0.243489,0.587239 -0.24349,0.24349 -0.58724,0.24349 -0.34375,0 -0.58724,-0.24349 -0.243489,-0.243489 -0.243489,-0.587239 0,-0.34375 0.243489,-0.580079 0.24349,-0.243489 0.58724,-0.243489 z m -1.826172,4.432943 v -0.594401 q 0.594401,-0.07161 0.995443,-0.200521 0.408203,-0.128907 0.923828,-0.408203 h 0.522786 v 5.743489 q 0,0.300782 0.08594,0.451172 0.08594,0.150391 0.236328,0.222005 0.157552,0.06445 0.565755,0.06445 h 0.336589 v 0.601562 h -3.666667 v -0.601562 h 0.29362 q 0.479818,0 0.644531,-0.08594 0.164714,-0.08594 0.229167,-0.24349 0.07161,-0.157552 0.07161,-0.73763 v -4.210937 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path872"
inkscape:connector-curvature="0" />
<path
d="m 100.84961,19.488937 v -0.58724 q 0.91667,-0.07161 1.89779,-0.601563 h 0.55143 v 7.147136 l 2.62825,-2.091146 q 0.63021,-0.501302 0.63021,-0.666016 0,-0.10026 -0.13607,-0.157552 -0.0859,-0.03581 -0.42252,-0.03581 h -0.37956 V 21.895187 H 109.25 v 0.601562 q -0.60872,0 -0.97396,0.128906 -0.36523,0.121745 -0.84505,0.48698 l -2.07682,1.582682 2.44922,2.678385 q 0.35091,0.386719 0.57291,0.544271 0.22201,0.157552 0.44401,0.222005 0.22201,0.05729 0.69466,0.06445 v 0.601562 h -3.80989 v -0.601562 h 0.29362 q 0.43685,0 0.55143,-0.06445 0.11458,-0.07161 0.11458,-0.186198 0,-0.114583 -0.21484,-0.329427 -0.0358,-0.03581 -0.0788,-0.08594 l -1.90494,-2.191406 -1.16732,0.895182 v 0.938151 q 0,0.522786 0.0788,0.6875 0.0788,0.164714 0.24349,0.250651 0.17188,0.08594 0.6517,0.08594 h 0.26497 v 0.601562 h -3.68815 v -0.601562 q 0.62305,-0.0072 0.76628,-0.05013 0.25065,-0.07878 0.35807,-0.279297 0.11458,-0.20052 0.11458,-0.773437 v -7.61263 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path874"
inkscape:connector-curvature="0" />
<path
d="m 114.90755,21.895187 h 0.5013 l 0.64454,2.191406 -0.64454,0.214844 q -0.38671,-0.88086 -1.08854,-1.382162 -0.69466,-0.508463 -1.4108,-0.508463 -0.55144,0 -0.89519,0.272135 -0.34375,0.264974 -0.34375,0.615885 0,0.329428 0.25065,0.565756 0.24349,0.243489 1.09571,0.551432 l 1.39648,0.494141 q 1.18164,0.422526 1.61133,0.902343 0.42253,0.48698 0.42253,1.102865 0,0.522786 -0.31511,1.009766 -0.3151,0.479817 -0.91667,0.766276 -0.5944,0.286458 -1.36783,0.286458 -1.20313,0 -2.0625,-0.6875 l -0.15039,0.515625 h -0.50847 l -0.89518,-2.341797 0.65169,-0.257812 q 0.6517,1.03125 1.23177,1.460937 0.80925,0.608724 1.7474,0.608724 0.62305,0 1.02409,-0.329427 0.40104,-0.336589 0.40104,-0.744792 0,-0.336588 -0.25065,-0.615885 -0.25781,-0.272136 -0.98828,-0.529948 l -1.6543,-0.601563 q -1.06706,-0.386718 -1.48242,-0.845052 -0.41537,-0.458333 -0.41537,-1.052734 0,-0.723307 0.67318,-1.27474 0.68034,-0.558593 1.72591,-0.558593 0.54427,0 0.97396,0.143229 0.42969,0.136067 0.84505,0.458333 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path876"
inkscape:connector-curvature="0" />
</g>
<g
id="g894">
<g
transform="translate(43.523679,-11.21199)"
id="text17-1"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#d20f00;fill-opacity:1;stroke:none"
aria-label="Ω">
<path
inkscape:connector-curvature="0"
d="m 7.2553434,372.35199 v -4.27083 h 3.0208336 q -3.1380211,-2.04427 -3.1380211,-5.58594 0,-3.52865 2.3828125,-5.9375 2.3958336,-2.42188 5.8984376,-2.42188 3.489583,0 5.872395,2.42188 2.395834,2.40885 2.395834,5.9375 0,3.54167 -3.151042,5.58594 h 3.033854 v 4.27083 h -7.330729 v -3.93229 q 2.513021,-1.22396 2.513021,-5.19531 0,-4.8698 -3.346354,-4.8698 -3.333333,0 -3.333333,4.84375 0,4.01042 2.5,5.22136 v 3.93229 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66666603px;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d20f00;fill-opacity:1"
id="path13-2" />
</g>
<path
inkscape:connector-curvature="0"
d="m 62.858477,358.84168 h -1.175782 l -0.683593,3.42709 -0.209636,1.23958 q 0,0.48307 0.929688,0.54688 l 0.164062,0.009 -0.173177,0.84766 h -5.395833 l 0.164063,-0.84766 0.173177,-0.009 q 0.957031,-0.0638 1.148437,-0.27344 0.200521,-0.21875 0.501302,-1.51302 l 1.63151,-8.21224 q 0.08203,-0.48307 0.191407,-1.17578 0,-0.52865 -1.121094,-0.61068 l -0.173177,-0.009 0.173177,-0.83855 h 4.046875 l 2.351562,-0.0638 q 1.822917,0 2.725261,0.66537 0.911458,0.65625 0.911458,1.98698 0,1.43099 -0.957031,2.63411 -0.947917,1.20313 -2.606771,1.8776 l 1.76823,3.73698 q 0.65625,1.3125 0.847656,1.54037 0.191407,0.21875 0.710938,0.25521 l 0.164062,0.009 -0.164062,0.84766 h -3.308594 z m -0.99349,-0.90234 h 0.610677 q 1.686199,0 2.725261,-0.99349 1.039063,-1.0026 1.039063,-2.63411 0,-1.00261 -0.574219,-1.49479 -0.574219,-0.50131 -1.731771,-0.50131 h -0.947916 z"
style="font-style:italic;font-variant:normal;font-weight:600;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Lucida Bright';-inkscape-font-specification:'Lucida Bright, Semi-Bold Italic';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:#6a0a0a;stroke-width:0.60000002;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3707-7" />
</g>
<rect
style="fill:#b6e910;fill-opacity:1;stroke:#43435b;stroke-width:4.45607805;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
id="rect840-4-4"
width="110.24391"
height="50.050503"
x="4.8780389"
y="41.279457"
ry="9.0787668" />
<path
id="path837"
style="fill:#00a000;fill-opacity:1;stroke:none;stroke-width:4.5999999;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 72.59983,315.73621 -12.4999,7.21682 V 308.51939 Z M 49,314.1862 h 19 v 3.1 H 49 Z" />
<g
id="g1003">
<g
transform="translate(0.499593,0.60001)"
id="text910"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
aria-label="IN">
<path
inkscape:connector-curvature="0"
id="path923"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
d="m 31.034407,330.73067 h 2.053334 v 13.06666 h -2.053334 z" />
<path
inkscape:connector-curvature="0"
id="path925"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
d="m 36.400199,334.33333 v 9.464 h -1.848 v -13.06666 h 2.576 l 2.109333,7.82133 v -7.82133 h 1.829333 v 13.06666 h -2.109333 z" />
</g>
<g
transform="translate(0,0.60001)"
id="text914"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
aria-label="OUT">
<path
inkscape:connector-curvature="0"
id="path916"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
d="m 76.643032,340.78266 q 0,0.70933 0.28,1.008 0.298667,0.28 0.784,0.28 0.485333,0 0.765333,-0.28 0.298667,-0.29867 0.298667,-1.008 v -7.056 q 0,-0.70933 -0.298667,-0.98933 -0.28,-0.29867 -0.765333,-0.29867 -0.485333,0 -0.784,0.29867 -0.28,0.28 -0.28,0.98933 z m -2.053333,-6.92533 q 0,-1.58667 0.802666,-2.42667 0.802667,-0.85867 2.314667,-0.85867 1.512,0 2.314667,0.85867 0.802666,0.84 0.802666,2.42667 v 6.79466 q 0,1.58667 -0.802666,2.44534 -0.802667,0.84 -2.314667,0.84 -1.512,0 -2.314667,-0.84 -0.802666,-0.85867 -0.802666,-2.44534 z" />
<path
inkscape:connector-curvature="0"
id="path918"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
d="m 84.11874,330.72133 v 10.08 q 0,0.70933 0.28,0.98933 0.298667,0.28 0.784,0.28 0.485333,0 0.765333,-0.28 0.298667,-0.28 0.298667,-0.98933 v -10.08 h 1.941333 v 9.94933 q 0,1.58667 -0.784,2.44533 -0.765333,0.84 -2.277333,0.84 -1.512,0 -2.296,-0.84 -0.765333,-0.85866 -0.765333,-2.44533 v -9.94933 z" />
<path
inkscape:connector-curvature="0"
id="path920"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
d="m 89.03624,330.72133 h 6.346666 v 1.86666 H 93.23624 v 11.2 h -2.053334 v -11.2 H 89.03624 Z" />
</g>
<g
transform="translate(0,-1.89973)"
id="text960"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
aria-label="RESET">
<path
inkscape:connector-curvature="0"
id="path962"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
d="m 74.108185,302.24673 q -0.032,-0.112 -0.064,-0.208 -0.032,-0.096 -0.064,-0.24 -0.016,-0.144 -0.032,-0.368 0,-0.224 0,-0.56 v -1.76 q 0,-0.784 -0.272,-1.104 -0.272,-0.32 -0.88,-0.32 h -0.608 v 4.56 h -1.76 v -11.2 h 2.656 q 1.376,0 1.984,0.64 0.624,0.64 0.624,1.936 v 0.88 q 0,1.728 -1.152,2.272 0.672,0.272 0.912,0.896 0.256,0.608 0.256,1.488 v 1.728 q 0,0.416 0.032,0.736 0.032,0.304 0.16,0.624 z m -1.92,-9.6 v 3.44 h 0.688 q 0.496,0 0.768,-0.256 0.288,-0.256 0.288,-0.928 v -1.104 q 0,-0.608 -0.224,-0.88 -0.208,-0.272 -0.672,-0.272 z" />
<path
inkscape:connector-curvature="0"
id="path964"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
d="m 78.625685,295.76673 h 2.416 v 1.6 h -2.416 v 3.28 h 3.04 v 1.6 h -4.8 v -11.2 h 4.8 v 1.6 h -3.04 z" />
<path
inkscape:connector-curvature="0"
id="path966"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
d="m 82.516685,293.73473 q 0,-1.36 0.64,-2.08 0.656,-0.736 1.952,-0.736 1.296,0 1.936,0.736 0.656,0.72 0.656,2.08 v 0.432 h -1.664 v -0.544 q 0,-0.608 -0.24,-0.848 -0.224,-0.256 -0.64,-0.256 -0.416,0 -0.656,0.256 -0.224,0.24 -0.224,0.848 0,0.576 0.256,1.024 0.256,0.432 0.64,0.832 0.384,0.384 0.816,0.784 0.448,0.384 0.832,0.848 0.384,0.464 0.64,1.056 0.256,0.592 0.256,1.392 0,1.36 -0.672,2.096 -0.656,0.72 -1.952,0.72 -1.296,0 -1.968,-0.72 -0.656,-0.736 -0.656,-2.096 v -0.768 h 1.664 v 0.88 q 0,0.608 0.24,0.848 0.256,0.24 0.672,0.24 0.416,0 0.656,-0.24 0.256,-0.24 0.256,-0.848 0,-0.576 -0.256,-1.008 -0.256,-0.448 -0.64,-0.832 -0.384,-0.4 -0.832,-0.784 -0.432,-0.4 -0.816,-0.864 -0.384,-0.464 -0.64,-1.056 -0.256,-0.592 -0.256,-1.392 z" />
<path
inkscape:connector-curvature="0"
id="path968"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
d="m 90.469435,295.76673 h 2.416 v 1.6 h -2.416 v 3.28 h 3.04 v 1.6 h -4.8 v -11.2 h 4.8 v 1.6 h -3.04 z" />
<path
inkscape:connector-curvature="0"
id="path970"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
d="m 94.104435,291.04673 h 5.44 v 1.6 h -1.84 v 9.6 h -1.76 v -9.6 h -1.84 z" />
</g>
<g
transform="translate(17.689026)"
id="g984">
<rect
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:1.9749372;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="rect975"
width="3.1866765"
height="10.962168"
x="20.819885"
y="289.26593" />
<rect
y="289.26593"
x="26.120001"
height="10.962168"
width="3.1866765"
id="rect977"
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:1.9749372;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<path
sodipodi:type="star"
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:4.5999999;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="path979"
sodipodi:sides="3"
sodipodi:cx="11.866768"
sodipodi:cy="294.81253"
sodipodi:r1="6.9020796"
sodipodi:r2="3.4510398"
sodipodi:arg1="0"
sodipodi:arg2="1.0471976"
inkscape:flatsided="true"
inkscape:rounded="2.42861e-017"
inkscape:randomized="0"
d="m 18.768847,294.81253 -10.3531189,5.97738 0,-11.95476 z"
inkscape:transform-center-x="-1.72552" />
</g>
</g>
<g
aria-label="MODE"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text848"
transform="translate(9.996275,0.04627)">
<path
d="m 84.435725,207.10906 1.1,-7.28933 h 2.244 v 10.26667 h -1.525334 v -7.36267 l -1.114666,7.36267 h -1.525334 l -1.202666,-7.26 v 7.26 h -1.408 v -10.26667 h 2.244 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path850"
inkscape:connector-curvature="0" />
<path
d="m 90.434621,207.72506 q 0,0.55734 0.22,0.792 0.234666,0.22 0.616,0.22 0.381333,0 0.601333,-0.22 0.234667,-0.23466 0.234667,-0.792 v -5.544 q 0,-0.55733 -0.234667,-0.77733 -0.22,-0.23467 -0.601333,-0.23467 -0.381334,0 -0.616,0.23467 -0.22,0.22 -0.22,0.77733 z m -1.613334,-5.44133 q 0,-1.24667 0.630667,-1.90667 0.630667,-0.67466 1.818667,-0.67466 1.188,0 1.818666,0.67466 0.630667,0.66 0.630667,1.90667 v 5.33867 q 0,1.24666 -0.630667,1.92133 -0.630666,0.66 -1.818666,0.66 -1.188,0 -1.818667,-0.66 -0.630667,-0.67467 -0.630667,-1.92133 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path852"
inkscape:connector-curvature="0" />
<path
d="m 94.768391,199.81973 h 2.552 q 1.217334,0 1.804,0.64533 0.601334,0.64534 0.601334,1.892 v 5.192 q 0,1.24667 -0.601334,1.892 -0.586666,0.64534 -1.804,0.64534 h -2.552 z m 1.613334,1.46667 v 7.33333 h 0.909333 q 0.381333,0 0.601333,-0.22 0.22,-0.22 0.22,-0.77733 v -5.33867 q 0,-0.55733 -0.22,-0.77733 -0.22,-0.22 -0.601333,-0.22 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path854"
inkscape:connector-curvature="0" />
<path
d="m 102.36871,204.1464 h 2.21466 v 1.46666 h -2.21466 v 3.00667 h 2.78666 v 1.46667 h -4.4 v -10.26667 h 4.4 v 1.46667 h -2.78666 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path856"
inkscape:connector-curvature="0" />
</g>
<path
sodipodi:type="star"
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:4.5999999;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="path857"
sodipodi:sides="3"
sodipodi:cx="34.425156"
sodipodi:cy="271.52554"
sodipodi:r1="21.032452"
sodipodi:r2="10.516226"
sodipodi:arg1="-1.5768569"
sodipodi:arg2="-0.52965931"
inkscape:flatsided="true"
inkscape:rounded="2.42861e-017"
inkscape:randomized="0"
d="m 34.297688,250.49348 18.405505,31.43771 -36.428606,0.22078 z"
inkscape:transform-center-x="-0.04496198"
inkscape:transform-center-y="-5.2028217"
transform="matrix(0.70548953,0,0,1,12.02495,-10.399966)" />
<circle
r="13.1565"
cy="274.29648"
cx="36.356499"
id="circle853"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:8.18601036;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<path
transform="matrix(0.70548953,0,0,1,60.02495,-10.399966)"
inkscape:transform-center-y="-5.2028217"
inkscape:transform-center-x="-0.04496198"
d="m 34.297688,250.49348 18.405505,31.43771 -36.428606,0.22078 z"
inkscape:randomized="0"
inkscape:rounded="2.42861e-017"
inkscape:flatsided="true"
sodipodi:arg2="-0.52965931"
sodipodi:arg1="-1.5768569"
sodipodi:r2="10.516226"
sodipodi:r1="21.032452"
sodipodi:cy="271.52554"
sodipodi:cx="34.425156"
sodipodi:sides="3"
id="path863"
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:4.5999999;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
sodipodi:type="star" />
<circle
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:8.18601036;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="circle865"
cx="84.356499"
cy="274.29648"
r="13.1565" />
</svg>

+ 320
- 0
plugins/community/repos/Ohmer/res/Metriks_Carbon_Signature.svg View File

@@ -0,0 +1,320 @@
<?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"
id="svg8"
viewBox="0 0 120 380"
version="1.1"
sodipodi:docname="Metriks_Carbon_Signature.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
width="120"
height="380">
<title
id="title9">Metriks (8 HP) panel, for VCV Rack</title>
<metadata
id="metadata39">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Metriks (8 HP) panel, for VCV Rack</dc:title>
<cc:license
rdf:resource="" />
<dc:rights>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:rights>
</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="1920"
inkscape:window-height="1058"
id="namedview37"
showgrid="false"
inkscape:zoom="1.9612909"
inkscape:cx="-268.33867"
inkscape:cy="161.1575"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg8"
units="px" />
<defs
id="defs4">
<style
id="style2">.cls-1{fill:#ab2d2d;}.cls-2{fill:#952d2d;}.cls-3{fill:#251e1e;}.cls-4{fill:#fff7d4;}.cls-5{fill:#202020;}</style>
</defs>
<rect
style="opacity:1;vector-effect:none;fill:#303030;fill-opacity:1;stroke:none;stroke-width:0.97368497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="ModuleLayer"
width="120"
height="380"
x="0"
y="0" />
<g
aria-label="Metriks"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text862"
transform="translate(-30.000001)">
<path
d="m 63.552734,18.815759 h 3.158204 l 2.95052,7.913412 2.871745,-7.913412 h 3.050782 v 0.608724 h -0.257813 q -0.465495,0 -0.630208,0.07878 -0.157552,0.07878 -0.250651,0.279297 -0.0931,0.19336 -0.0931,0.644532 v 6.588541 q 0,0.623047 0.07161,0.809245 0.07878,0.186198 0.250651,0.286459 0.179037,0.0931 0.651693,0.0931 h 0.257813 v 0.601562 h -3.817058 v -0.601562 h 0.272136 q 0.365234,0 0.529948,-0.05729 0.171875,-0.05729 0.279297,-0.186198 0.114583,-0.136068 0.128906,-0.279297 0.03581,-0.29362 0.03581,-0.458333 v -7.354818 l -3.258464,8.9375 H 69.045573 L 65.758464,19.9974 v 7.082683 q 0,0.537109 0.0931,0.730468 0.0931,0.186198 0.286458,0.29362 0.200521,0.100261 0.708984,0.100261 h 0.229167 v 0.601562 h -3.523438 v -0.601562 h 0.200521 q 0.508464,0 0.723308,-0.107422 0.222005,-0.107422 0.315104,-0.300782 0.0931,-0.20052 0.0931,-0.780599 v -6.524088 q 0,-0.544271 -0.07878,-0.716146 -0.07878,-0.179037 -0.264974,-0.264974 -0.179037,-0.08594 -0.644532,-0.08594 h -0.34375 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path864"
inkscape:connector-curvature="0" />
<path
d="m 83.017578,26.958338 0.458334,0.372396 q -0.522787,0.623046 -1.016927,0.988281 -0.48698,0.365234 -0.923829,0.508463 -0.436849,0.150391 -1.024088,0.150391 -1.052735,0 -1.790365,-0.429687 -0.845052,-0.494141 -1.296224,-1.289063 -0.451172,-0.794922 -0.451172,-1.876302 0,-1.131511 0.436849,-1.933594 0.436849,-0.802083 1.217448,-1.260417 0.787761,-0.465494 1.819011,-0.465494 0.766276,0 1.332031,0.243489 0.565755,0.236328 0.959635,0.723307 0.393881,0.479818 0.572917,1.102865 0.10026,0.365234 0.114583,0.945313 H 78.36263 q -0.02148,0.350911 -0.02148,0.522786 0,0.902344 0.315104,1.611328 0.315104,0.701823 0.830729,1.038412 0.522787,0.329427 1.181641,0.329427 0.558594,0 1.08138,-0.257813 0.522787,-0.264974 1.267578,-1.024088 z M 82.100912,24.065109 Q 81.99349,23.406254 81.792969,23.09115 81.599609,22.776046 81.234375,22.589848 80.876302,22.40365 80.42513,22.40365 q -0.451172,0 -0.845052,0.186198 -0.39388,0.186198 -0.658854,0.515625 -0.257812,0.329427 -0.451172,0.959636 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path866"
inkscape:connector-curvature="0" />
<path
d="m 86.390626,19.460291 h 0.508464 v 2.434896 h 2.126953 v 0.716145 H 86.89909 v 4.31836 q 0,0.551432 0.0931,0.78776 0.10026,0.236328 0.329427,0.386719 0.236328,0.150391 0.522786,0.150391 0.680339,0 1.503907,-0.608724 v 0.694661 q -0.938151,0.63737 -1.897787,0.63737 -0.544271,0 -0.988281,-0.24349 -0.436849,-0.243489 -0.601563,-0.572916 -0.157552,-0.329427 -0.157552,-1.145834 V 22.611332 H 84.449871 V 22.00977 q 0.601563,-0.136068 0.966797,-0.422526 0.372396,-0.286458 0.601562,-0.744792 0.229167,-0.458333 0.372396,-1.382161 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path868"
inkscape:connector-curvature="0" />
<path
d="m 90.078777,22.919275 v -0.587239 q 0.522787,-0.04297 0.93099,-0.171875 0.408203,-0.136068 0.93099,-0.436849 h 0.537109 v 1.353515 q 0.508463,-0.623047 1.181641,-0.988281 0.673177,-0.365234 1.210286,-0.365234 0.529948,0 0.837891,0.250651 0.307942,0.250651 0.307942,0.608724 0,0.257812 -0.207682,0.458333 -0.200521,0.193359 -0.486979,0.193359 -0.128906,0 -0.222005,-0.03581 -0.0931,-0.03581 -0.272136,-0.157552 -0.39388,-0.257813 -0.658854,-0.257813 -0.358073,0 -0.78776,0.300782 -0.544271,0.386718 -0.852214,0.759114 v 3.301433 q 0,0.429687 0.04297,0.587239 0.05013,0.150391 0.157552,0.264974 0.107422,0.107422 0.264974,0.157552 0.157552,0.05013 0.551432,0.05013 h 0.236328 v 0.601562 h -3.702474 v -0.601562 h 0.307943 q 0.436849,0 0.572917,-0.07878 0.186198,-0.107421 0.272135,-0.293619 0.0931,-0.19336 0.0931,-0.6875 v -4.225261 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path870"
inkscape:connector-curvature="0" />
<path
d="m 98.307293,18.493494 q 0.34375,0 0.58724,0.243489 0.243489,0.236329 0.243489,0.580079 0,0.34375 -0.243489,0.587239 -0.24349,0.24349 -0.58724,0.24349 -0.34375,0 -0.58724,-0.24349 -0.243489,-0.243489 -0.243489,-0.587239 0,-0.34375 0.243489,-0.580079 0.24349,-0.243489 0.58724,-0.243489 z m -1.826172,4.432943 v -0.594401 q 0.594401,-0.07161 0.995443,-0.200521 0.408203,-0.128907 0.923828,-0.408203 h 0.522786 v 5.743489 q 0,0.300782 0.08594,0.451172 0.08594,0.150391 0.236328,0.222005 0.157552,0.06445 0.565755,0.06445 h 0.336589 v 0.601562 h -3.666667 v -0.601562 h 0.29362 q 0.479818,0 0.644531,-0.08594 0.164714,-0.08594 0.229167,-0.24349 0.07161,-0.157552 0.07161,-0.73763 v -4.210937 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path872"
inkscape:connector-curvature="0" />
<path
d="m 100.84961,19.488937 v -0.58724 q 0.91667,-0.07161 1.89779,-0.601563 h 0.55143 v 7.147136 l 2.62825,-2.091146 q 0.63021,-0.501302 0.63021,-0.666016 0,-0.10026 -0.13607,-0.157552 -0.0859,-0.03581 -0.42252,-0.03581 h -0.37956 V 21.895187 H 109.25 v 0.601562 q -0.60872,0 -0.97396,0.128906 -0.36523,0.121745 -0.84505,0.48698 l -2.07682,1.582682 2.44922,2.678385 q 0.35091,0.386719 0.57291,0.544271 0.22201,0.157552 0.44401,0.222005 0.22201,0.05729 0.69466,0.06445 v 0.601562 h -3.80989 v -0.601562 h 0.29362 q 0.43685,0 0.55143,-0.06445 0.11458,-0.07161 0.11458,-0.186198 0,-0.114583 -0.21484,-0.329427 -0.0358,-0.03581 -0.0788,-0.08594 l -1.90494,-2.191406 -1.16732,0.895182 v 0.938151 q 0,0.522786 0.0788,0.6875 0.0788,0.164714 0.24349,0.250651 0.17188,0.08594 0.6517,0.08594 h 0.26497 v 0.601562 h -3.68815 v -0.601562 q 0.62305,-0.0072 0.76628,-0.05013 0.25065,-0.07878 0.35807,-0.279297 0.11458,-0.20052 0.11458,-0.773437 v -7.61263 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path874"
inkscape:connector-curvature="0" />
<path
d="m 114.90755,21.895187 h 0.5013 l 0.64454,2.191406 -0.64454,0.214844 q -0.38671,-0.88086 -1.08854,-1.382162 -0.69466,-0.508463 -1.4108,-0.508463 -0.55144,0 -0.89519,0.272135 -0.34375,0.264974 -0.34375,0.615885 0,0.329428 0.25065,0.565756 0.24349,0.243489 1.09571,0.551432 l 1.39648,0.494141 q 1.18164,0.422526 1.61133,0.902343 0.42253,0.48698 0.42253,1.102865 0,0.522786 -0.31511,1.009766 -0.3151,0.479817 -0.91667,0.766276 -0.5944,0.286458 -1.36783,0.286458 -1.20313,0 -2.0625,-0.6875 l -0.15039,0.515625 h -0.50847 l -0.89518,-2.341797 0.65169,-0.257812 q 0.6517,1.03125 1.23177,1.460937 0.80925,0.608724 1.7474,0.608724 0.62305,0 1.02409,-0.329427 0.40104,-0.336589 0.40104,-0.744792 0,-0.336588 -0.25065,-0.615885 -0.25781,-0.272136 -0.98828,-0.529948 l -1.6543,-0.601563 q -1.06706,-0.386718 -1.48242,-0.845052 -0.41537,-0.458333 -0.41537,-1.052734 0,-0.723307 0.67318,-1.27474 0.68034,-0.558593 1.72591,-0.558593 0.54427,0 0.97396,0.143229 0.42969,0.136067 0.84505,0.458333 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path876"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(-1.0634255)"
id="g882">
<g
transform="translate(44.587105,-11.21199)"
id="text17-1"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#d20f00;fill-opacity:1;stroke:none"
aria-label="Ω">
<path
inkscape:connector-curvature="0"
d="m 7.2553434,372.35199 v -4.27083 h 3.0208336 q -3.1380211,-2.04427 -3.1380211,-5.58594 0,-3.52865 2.3828125,-5.9375 2.3958336,-2.42188 5.8984376,-2.42188 3.489583,0 5.872395,2.42188 2.395834,2.40885 2.395834,5.9375 0,3.54167 -3.151042,5.58594 h 3.033854 v 4.27083 h -7.330729 v -3.93229 q 2.513021,-1.22396 2.513021,-5.19531 0,-4.8698 -3.346354,-4.8698 -3.333333,0 -3.333333,4.84375 0,4.01042 2.5,5.22136 v 3.93229 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66666603px;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d20f00;fill-opacity:1"
id="path13-2" />
</g>
<path
inkscape:connector-curvature="0"
d="m 63.921903,358.84168 h -1.175782 l -0.683593,3.42709 -0.209636,1.23958 q 0,0.48307 0.929688,0.54688 l 0.164062,0.009 -0.173177,0.84766 h -5.395833 l 0.164063,-0.84766 0.173177,-0.009 q 0.957031,-0.0638 1.148437,-0.27344 0.200521,-0.21875 0.501302,-1.51302 l 1.63151,-8.21224 q 0.08203,-0.48307 0.191407,-1.17578 0,-0.52865 -1.121094,-0.61068 l -0.173177,-0.009 0.173177,-0.83855 h 4.046875 l 2.351562,-0.0638 q 1.822917,0 2.725261,0.66537 0.911458,0.65625 0.911458,1.98698 0,1.43099 -0.957031,2.63411 -0.947917,1.20313 -2.606771,1.8776 l 1.768229,3.73698 q 0.65625,1.3125 0.847656,1.54037 0.191407,0.21875 0.710938,0.25521 l 0.164062,0.009 -0.164062,0.84766 h -3.308594 z m -0.99349,-0.90234 h 0.610677 q 1.686198,0 2.72526,-0.99349 1.039063,-1.0026 1.039063,-2.63411 0,-1.00261 -0.574219,-1.49479 -0.574219,-0.50131 -1.731771,-0.50131 h -0.947916 z"
style="font-style:italic;font-variant:normal;font-weight:600;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Lucida Bright';-inkscape-font-specification:'Lucida Bright, Semi-Bold Italic';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:#6a0a0a;stroke-width:0.60000002;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3707-7" />
</g>
<rect
style="fill:#060614;fill-opacity:1;stroke:#43435b;stroke-width:4.45607805;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
id="rect840-4-4"
width="110.24391"
height="50.050503"
x="4.8780389"
y="41.279457"
ry="9.0787668" />
<path
id="path837"
style="fill:#00a000;fill-opacity:1;stroke:none;stroke-width:4.5999999;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="M 72.59983,315.73618 60.09993,322.953 V 308.51936 Z M 49,314.18617 h 19 v 3.1 H 49 Z" />
<g
aria-label="IN"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text910"
transform="translate(0.49983891,0.60001)">
<path
d="m 31.034407,330.73067 h 2.053334 v 13.06666 h -2.053334 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path923"
inkscape:connector-curvature="0" />
<path
d="m 36.400199,334.33333 v 9.464 h -1.848 v -13.06666 h 2.576 l 2.109333,7.82133 v -7.82133 h 1.829333 v 13.06666 h -2.109333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path925"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="OUT"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text914"
transform="translate(2.4590781e-4,0.60001)">
<path
d="m 76.643032,340.78266 q 0,0.70933 0.28,1.008 0.298667,0.28 0.784,0.28 0.485333,0 0.765333,-0.28 0.298667,-0.29867 0.298667,-1.008 v -7.056 q 0,-0.70933 -0.298667,-0.98933 -0.28,-0.29867 -0.765333,-0.29867 -0.485333,0 -0.784,0.29867 -0.28,0.28 -0.28,0.98933 z m -2.053333,-6.92533 q 0,-1.58667 0.802666,-2.42667 0.802667,-0.85867 2.314667,-0.85867 1.512,0 2.314667,0.85867 0.802666,0.84 0.802666,2.42667 v 6.79466 q 0,1.58667 -0.802666,2.44534 -0.802667,0.84 -2.314667,0.84 -1.512,0 -2.314667,-0.84 -0.802666,-0.85867 -0.802666,-2.44534 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path916"
inkscape:connector-curvature="0" />
<path
d="m 84.11874,330.72133 v 10.08 q 0,0.70933 0.28,0.98933 0.298667,0.28 0.784,0.28 0.485333,0 0.765333,-0.28 0.298667,-0.28 0.298667,-0.98933 v -10.08 h 1.941333 v 9.94933 q 0,1.58667 -0.784,2.44533 -0.765333,0.84 -2.277333,0.84 -1.512,0 -2.296,-0.84 -0.765333,-0.85866 -0.765333,-2.44533 v -9.94933 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path918"
inkscape:connector-curvature="0" />
<path
d="m 89.03624,330.72133 h 6.346666 v 1.86666 H 93.23624 v 11.2 h -2.053334 v -11.2 H 89.03624 Z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path920"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="RESET"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text960"
transform="translate(2.4590781e-4,-1.89973)">
<path
d="m 74.108185,302.24673 q -0.032,-0.112 -0.064,-0.208 -0.032,-0.096 -0.064,-0.24 -0.016,-0.144 -0.032,-0.368 0,-0.224 0,-0.56 v -1.76 q 0,-0.784 -0.272,-1.104 -0.272,-0.32 -0.88,-0.32 h -0.608 v 4.56 h -1.76 v -11.2 h 2.656 q 1.376,0 1.984,0.64 0.624,0.64 0.624,1.936 v 0.88 q 0,1.728 -1.152,2.272 0.672,0.272 0.912,0.896 0.256,0.608 0.256,1.488 v 1.728 q 0,0.416 0.032,0.736 0.032,0.304 0.16,0.624 z m -1.92,-9.6 v 3.44 h 0.688 q 0.496,0 0.768,-0.256 0.288,-0.256 0.288,-0.928 v -1.104 q 0,-0.608 -0.224,-0.88 -0.208,-0.272 -0.672,-0.272 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path962"
inkscape:connector-curvature="0" />
<path
d="m 78.625685,295.76673 h 2.416 v 1.6 h -2.416 v 3.28 h 3.04 v 1.6 h -4.8 v -11.2 h 4.8 v 1.6 h -3.04 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path964"
inkscape:connector-curvature="0" />
<path
d="m 82.516685,293.73473 q 0,-1.36 0.64,-2.08 0.656,-0.736 1.952,-0.736 1.296,0 1.936,0.736 0.656,0.72 0.656,2.08 v 0.432 h -1.664 v -0.544 q 0,-0.608 -0.24,-0.848 -0.224,-0.256 -0.64,-0.256 -0.416,0 -0.656,0.256 -0.224,0.24 -0.224,0.848 0,0.576 0.256,1.024 0.256,0.432 0.64,0.832 0.384,0.384 0.816,0.784 0.448,0.384 0.832,0.848 0.384,0.464 0.64,1.056 0.256,0.592 0.256,1.392 0,1.36 -0.672,2.096 -0.656,0.72 -1.952,0.72 -1.296,0 -1.968,-0.72 -0.656,-0.736 -0.656,-2.096 v -0.768 h 1.664 v 0.88 q 0,0.608 0.24,0.848 0.256,0.24 0.672,0.24 0.416,0 0.656,-0.24 0.256,-0.24 0.256,-0.848 0,-0.576 -0.256,-1.008 -0.256,-0.448 -0.64,-0.832 -0.384,-0.4 -0.832,-0.784 -0.432,-0.4 -0.816,-0.864 -0.384,-0.464 -0.64,-1.056 -0.256,-0.592 -0.256,-1.392 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path966"
inkscape:connector-curvature="0" />
<path
d="m 90.469435,295.76673 h 2.416 v 1.6 h -2.416 v 3.28 h 3.04 v 1.6 h -4.8 v -11.2 h 4.8 v 1.6 h -3.04 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path968"
inkscape:connector-curvature="0" />
<path
d="m 94.104435,291.04673 h 5.44 v 1.6 h -1.84 v 9.6 h -1.76 v -9.6 h -1.84 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path970"
inkscape:connector-curvature="0" />
</g>
<g
id="g984"
transform="translate(17.689272)">
<rect
y="289.26593"
x="20.819885"
height="10.962168"
width="3.1866765"
id="rect975"
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:1.9749372;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<rect
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:1.9749372;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="rect977"
width="3.1866765"
height="10.962168"
x="26.120001"
y="289.26593" />
<path
inkscape:transform-center-x="-1.72552"
d="m 18.768847,294.81253 -10.3531189,5.97738 0,-11.95476 z"
inkscape:randomized="0"
inkscape:rounded="2.42861e-017"
inkscape:flatsided="true"
sodipodi:arg2="1.0471976"
sodipodi:arg1="0"
sodipodi:r2="3.4510398"
sodipodi:r1="6.9020796"
sodipodi:cy="294.81253"
sodipodi:cx="11.866768"
sodipodi:sides="3"
id="path979"
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:4.5999999;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
sodipodi:type="star" />
</g>
<g
aria-label="MODE"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text848"
transform="translate(9.996275,0.04627)">
<path
d="m 84.435725,207.10906 1.1,-7.28933 h 2.244 v 10.26667 h -1.525334 v -7.36267 l -1.114666,7.36267 h -1.525334 l -1.202666,-7.26 v 7.26 h -1.408 v -10.26667 h 2.244 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path850"
inkscape:connector-curvature="0" />
<path
d="m 90.434621,207.72506 q 0,0.55734 0.22,0.792 0.234666,0.22 0.616,0.22 0.381333,0 0.601333,-0.22 0.234667,-0.23466 0.234667,-0.792 v -5.544 q 0,-0.55733 -0.234667,-0.77733 -0.22,-0.23467 -0.601333,-0.23467 -0.381334,0 -0.616,0.23467 -0.22,0.22 -0.22,0.77733 z m -1.613334,-5.44133 q 0,-1.24667 0.630667,-1.90667 0.630667,-0.67466 1.818667,-0.67466 1.188,0 1.818666,0.67466 0.630667,0.66 0.630667,1.90667 v 5.33867 q 0,1.24666 -0.630667,1.92133 -0.630666,0.66 -1.818666,0.66 -1.188,0 -1.818667,-0.66 -0.630667,-0.67467 -0.630667,-1.92133 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path852"
inkscape:connector-curvature="0" />
<path
d="m 94.768391,199.81973 h 2.552 q 1.217334,0 1.804,0.64533 0.601334,0.64534 0.601334,1.892 v 5.192 q 0,1.24667 -0.601334,1.892 -0.586666,0.64534 -1.804,0.64534 h -2.552 z m 1.613334,1.46667 v 7.33333 h 0.909333 q 0.381333,0 0.601333,-0.22 0.22,-0.22 0.22,-0.77733 v -5.33867 q 0,-0.55733 -0.22,-0.77733 -0.22,-0.22 -0.601333,-0.22 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path854"
inkscape:connector-curvature="0" />
<path
d="m 102.36871,204.1464 h 2.21466 v 1.46666 h -2.21466 v 3.00667 h 2.78666 v 1.46667 h -4.4 v -10.26667 h 4.4 v 1.46667 h -2.78666 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path856"
inkscape:connector-curvature="0" />
</g>
<path
sodipodi:type="star"
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:4.5999999;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="path857"
sodipodi:sides="3"
sodipodi:cx="34.425156"
sodipodi:cy="271.52554"
sodipodi:r1="21.032452"
sodipodi:r2="10.516226"
sodipodi:arg1="-1.5768569"
sodipodi:arg2="-0.52965931"
inkscape:flatsided="true"
inkscape:rounded="2.42861e-017"
inkscape:randomized="0"
d="m 34.297688,250.49348 18.405505,31.43771 -36.428606,0.22078 z"
inkscape:transform-center-x="-0.04496198"
inkscape:transform-center-y="-5.2028217"
transform="matrix(0.70548953,0,0,1,12.02495,-10.399944)" />
<circle
r="13.1565"
cy="274.29651"
cx="36.356499"
id="circle853"
style="fill:#303030;fill-opacity:1;stroke:none;stroke-width:8.18601036;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<path
transform="matrix(0.70548953,0,0,1,60.02495,-10.399944)"
inkscape:transform-center-y="-5.2028217"
inkscape:transform-center-x="-0.04496198"
d="m 34.297688,250.49348 18.405505,31.43771 -36.428606,0.22078 z"
inkscape:randomized="0"
inkscape:rounded="2.42861e-017"
inkscape:flatsided="true"
sodipodi:arg2="-0.52965931"
sodipodi:arg1="-1.5768569"
sodipodi:r2="10.516226"
sodipodi:r1="21.032452"
sodipodi:cy="271.52554"
sodipodi:cx="34.425156"
sodipodi:sides="3"
id="path863"
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:4.5999999;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
sodipodi:type="star" />
<circle
style="fill:#303030;fill-opacity:1;stroke:none;stroke-width:8.18601036;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="circle865"
cx="84.356499"
cy="274.29651"
r="13.1565" />
</svg>

+ 319
- 0
plugins/community/repos/Ohmer/res/Metriks_Classic.svg View File

@@ -0,0 +1,319 @@
<?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"
id="svg8"
viewBox="0 0 120 380"
version="1.1"
sodipodi:docname="Metriks_Classic.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
width="120"
height="380">
<title
id="title9">Metriks (10 HP) panel, for VCV Rack</title>
<metadata
id="metadata39">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Metriks (10 HP) panel, for VCV Rack</dc:title>
<cc:license
rdf:resource="" />
<dc:rights>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:rights>
</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="1920"
inkscape:window-height="1058"
id="namedview37"
showgrid="false"
inkscape:zoom="5.5473684"
inkscape:cx="-6.3780297"
inkscape:cy="84.820396"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg8"
units="px" />
<defs
id="defs4">
<style
id="style2">.cls-1{fill:#ab2d2d;}.cls-2{fill:#952d2d;}.cls-3{fill:#251e1e;}.cls-4{fill:#fff7d4;}.cls-5{fill:#202020;}</style>
</defs>
<rect
style="opacity:1;vector-effect:none;fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:0.97368503;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="ModuleLayer"
width="120"
height="380"
x="0"
y="0" />
<g
transform="translate(-1.0634255)"
id="g892">
<g
transform="translate(44.587105,-11.21199)"
id="text17"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#d20f00;fill-opacity:1;stroke:none"
aria-label="Ω">
<g
id="g875">
<path
id="path13"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66666603px;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d20f00;fill-opacity:1"
d="m 7.2553434,372.35199 v -4.27083 h 3.0208336 q -3.1380211,-2.04427 -3.1380211,-5.58594 0,-3.52865 2.3828125,-5.9375 2.3958336,-2.42188 5.8984376,-2.42188 3.489583,0 5.872395,2.42188 2.395834,2.40885 2.395834,5.9375 0,3.54167 -3.151042,5.58594 h 3.033854 v 4.27083 h -7.330729 v -3.93229 q 2.513021,-1.22396 2.513021,-5.19531 0,-4.8698 -3.346354,-4.8698 -3.333333,0 -3.333333,4.84375 0,4.01042 2.5,5.22136 v 3.93229 z"
inkscape:connector-curvature="0" />
</g>
</g>
<path
inkscape:connector-curvature="0"
d="m 63.921903,358.84168 h -1.175782 l -0.683593,3.42709 -0.209636,1.23958 q 0,0.48307 0.929688,0.54688 l 0.164062,0.009 -0.173177,0.84766 h -5.395833 l 0.164063,-0.84766 0.173177,-0.009 q 0.957031,-0.0638 1.148437,-0.27344 0.200521,-0.21875 0.501302,-1.51302 l 1.63151,-8.21224 q 0.08203,-0.48307 0.191407,-1.17578 0,-0.52865 -1.121094,-0.61068 l -0.173177,-0.009 0.173177,-0.83855 h 4.046875 l 2.351562,-0.0638 q 1.822917,0 2.725261,0.66537 0.911458,0.65625 0.911458,1.98698 0,1.43099 -0.957031,2.63411 -0.947917,1.20313 -2.606771,1.8776 l 1.768229,3.73698 q 0.65625,1.3125 0.847656,1.54037 0.191407,0.21875 0.710938,0.25521 l 0.164062,0.009 -0.164062,0.84766 h -3.308594 z m -0.99349,-0.90234 h 0.610677 q 1.686198,0 2.72526,-0.99349 1.039063,-1.0026 1.039063,-2.63411 0,-1.00261 -0.574219,-1.49479 -0.574219,-0.50131 -1.731771,-0.50131 h -0.947916 z"
style="font-style:italic;font-variant:normal;font-weight:600;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Lucida Bright';-inkscape-font-specification:'Lucida Bright, Semi-Bold Italic';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#6a0a0a;stroke-width:0.60000002;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3707" />
</g>
<g
aria-label="Metriks"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text862"
transform="translate(-30.000001)">
<path
d="m 63.552734,18.815759 h 3.158204 l 2.95052,7.913412 2.871745,-7.913412 h 3.050782 v 0.608724 h -0.257813 q -0.465495,0 -0.630208,0.07878 -0.157552,0.07878 -0.250651,0.279297 -0.0931,0.19336 -0.0931,0.644532 v 6.588541 q 0,0.623047 0.07161,0.809245 0.07878,0.186198 0.250651,0.286459 0.179037,0.0931 0.651693,0.0931 h 0.257813 v 0.601562 h -3.817058 v -0.601562 h 0.272136 q 0.365234,0 0.529948,-0.05729 0.171875,-0.05729 0.279297,-0.186198 0.114583,-0.136068 0.128906,-0.279297 0.03581,-0.29362 0.03581,-0.458333 v -7.354818 l -3.258464,8.9375 H 69.045573 L 65.758464,19.9974 v 7.082683 q 0,0.537109 0.0931,0.730468 0.0931,0.186198 0.286458,0.29362 0.200521,0.100261 0.708984,0.100261 h 0.229167 v 0.601562 h -3.523438 v -0.601562 h 0.200521 q 0.508464,0 0.723308,-0.107422 0.222005,-0.107422 0.315104,-0.300782 0.0931,-0.20052 0.0931,-0.780599 v -6.524088 q 0,-0.544271 -0.07878,-0.716146 -0.07878,-0.179037 -0.264974,-0.264974 -0.179037,-0.08594 -0.644532,-0.08594 h -0.34375 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path864"
inkscape:connector-curvature="0" />
<path
d="m 83.017578,26.958338 0.458334,0.372396 q -0.522787,0.623046 -1.016927,0.988281 -0.48698,0.365234 -0.923829,0.508463 -0.436849,0.150391 -1.024088,0.150391 -1.052735,0 -1.790365,-0.429687 -0.845052,-0.494141 -1.296224,-1.289063 -0.451172,-0.794922 -0.451172,-1.876302 0,-1.131511 0.436849,-1.933594 0.436849,-0.802083 1.217448,-1.260417 0.787761,-0.465494 1.819011,-0.465494 0.766276,0 1.332031,0.243489 0.565755,0.236328 0.959635,0.723307 0.393881,0.479818 0.572917,1.102865 0.10026,0.365234 0.114583,0.945313 H 78.36263 q -0.02148,0.350911 -0.02148,0.522786 0,0.902344 0.315104,1.611328 0.315104,0.701823 0.830729,1.038412 0.522787,0.329427 1.181641,0.329427 0.558594,0 1.08138,-0.257813 0.522787,-0.264974 1.267578,-1.024088 z M 82.100912,24.065109 Q 81.99349,23.406254 81.792969,23.09115 81.599609,22.776046 81.234375,22.589848 80.876302,22.40365 80.42513,22.40365 q -0.451172,0 -0.845052,0.186198 -0.39388,0.186198 -0.658854,0.515625 -0.257812,0.329427 -0.451172,0.959636 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path866"
inkscape:connector-curvature="0" />
<path
d="m 86.390626,19.460291 h 0.508464 v 2.434896 h 2.126953 v 0.716145 H 86.89909 v 4.31836 q 0,0.551432 0.0931,0.78776 0.10026,0.236328 0.329427,0.386719 0.236328,0.150391 0.522786,0.150391 0.680339,0 1.503907,-0.608724 v 0.694661 q -0.938151,0.63737 -1.897787,0.63737 -0.544271,0 -0.988281,-0.24349 -0.436849,-0.243489 -0.601563,-0.572916 -0.157552,-0.329427 -0.157552,-1.145834 V 22.611332 H 84.449871 V 22.00977 q 0.601563,-0.136068 0.966797,-0.422526 0.372396,-0.286458 0.601562,-0.744792 0.229167,-0.458333 0.372396,-1.382161 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path868"
inkscape:connector-curvature="0" />
<path
d="m 90.078777,22.919275 v -0.587239 q 0.522787,-0.04297 0.93099,-0.171875 0.408203,-0.136068 0.93099,-0.436849 h 0.537109 v 1.353515 q 0.508463,-0.623047 1.181641,-0.988281 0.673177,-0.365234 1.210286,-0.365234 0.529948,0 0.837891,0.250651 0.307942,0.250651 0.307942,0.608724 0,0.257812 -0.207682,0.458333 -0.200521,0.193359 -0.486979,0.193359 -0.128906,0 -0.222005,-0.03581 -0.0931,-0.03581 -0.272136,-0.157552 -0.39388,-0.257813 -0.658854,-0.257813 -0.358073,0 -0.78776,0.300782 -0.544271,0.386718 -0.852214,0.759114 v 3.301433 q 0,0.429687 0.04297,0.587239 0.05013,0.150391 0.157552,0.264974 0.107422,0.107422 0.264974,0.157552 0.157552,0.05013 0.551432,0.05013 h 0.236328 v 0.601562 h -3.702474 v -0.601562 h 0.307943 q 0.436849,0 0.572917,-0.07878 0.186198,-0.107421 0.272135,-0.293619 0.0931,-0.19336 0.0931,-0.6875 v -4.225261 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path870"
inkscape:connector-curvature="0" />
<path
d="m 98.307293,18.493494 q 0.34375,0 0.58724,0.243489 0.243489,0.236329 0.243489,0.580079 0,0.34375 -0.243489,0.587239 -0.24349,0.24349 -0.58724,0.24349 -0.34375,0 -0.58724,-0.24349 -0.243489,-0.243489 -0.243489,-0.587239 0,-0.34375 0.243489,-0.580079 0.24349,-0.243489 0.58724,-0.243489 z m -1.826172,4.432943 v -0.594401 q 0.594401,-0.07161 0.995443,-0.200521 0.408203,-0.128907 0.923828,-0.408203 h 0.522786 v 5.743489 q 0,0.300782 0.08594,0.451172 0.08594,0.150391 0.236328,0.222005 0.157552,0.06445 0.565755,0.06445 h 0.336589 v 0.601562 h -3.666667 v -0.601562 h 0.29362 q 0.479818,0 0.644531,-0.08594 0.164714,-0.08594 0.229167,-0.24349 0.07161,-0.157552 0.07161,-0.73763 v -4.210937 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path872"
inkscape:connector-curvature="0" />
<path
d="m 100.84961,19.488937 v -0.58724 q 0.91667,-0.07161 1.89779,-0.601563 h 0.55143 v 7.147136 l 2.62825,-2.091146 q 0.63021,-0.501302 0.63021,-0.666016 0,-0.10026 -0.13607,-0.157552 -0.0859,-0.03581 -0.42252,-0.03581 h -0.37956 V 21.895187 H 109.25 v 0.601562 q -0.60872,0 -0.97396,0.128906 -0.36523,0.121745 -0.84505,0.48698 l -2.07682,1.582682 2.44922,2.678385 q 0.35091,0.386719 0.57291,0.544271 0.22201,0.157552 0.44401,0.222005 0.22201,0.05729 0.69466,0.06445 v 0.601562 h -3.80989 v -0.601562 h 0.29362 q 0.43685,0 0.55143,-0.06445 0.11458,-0.07161 0.11458,-0.186198 0,-0.114583 -0.21484,-0.329427 -0.0358,-0.03581 -0.0788,-0.08594 l -1.90494,-2.191406 -1.16732,0.895182 v 0.938151 q 0,0.522786 0.0788,0.6875 0.0788,0.164714 0.24349,0.250651 0.17188,0.08594 0.6517,0.08594 h 0.26497 v 0.601562 h -3.68815 v -0.601562 q 0.62305,-0.0072 0.76628,-0.05013 0.25065,-0.07878 0.35807,-0.279297 0.11458,-0.20052 0.11458,-0.773437 v -7.61263 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path874"
inkscape:connector-curvature="0" />
<path
d="m 114.90755,21.895187 h 0.5013 l 0.64454,2.191406 -0.64454,0.214844 q -0.38671,-0.88086 -1.08854,-1.382162 -0.69466,-0.508463 -1.4108,-0.508463 -0.55144,0 -0.89519,0.272135 -0.34375,0.264974 -0.34375,0.615885 0,0.329428 0.25065,0.565756 0.24349,0.243489 1.09571,0.551432 l 1.39648,0.494141 q 1.18164,0.422526 1.61133,0.902343 0.42253,0.48698 0.42253,1.102865 0,0.522786 -0.31511,1.009766 -0.3151,0.479817 -0.91667,0.766276 -0.5944,0.286458 -1.36783,0.286458 -1.20313,0 -2.0625,-0.6875 l -0.15039,0.515625 h -0.50847 l -0.89518,-2.341797 0.65169,-0.257812 q 0.6517,1.03125 1.23177,1.460937 0.80925,0.608724 1.7474,0.608724 0.62305,0 1.02409,-0.329427 0.40104,-0.336589 0.40104,-0.744792 0,-0.336588 -0.25065,-0.615885 -0.25781,-0.272136 -0.98828,-0.529948 l -1.6543,-0.601563 q -1.06706,-0.386718 -1.48242,-0.845052 -0.41537,-0.458333 -0.41537,-1.052734 0,-0.723307 0.67318,-1.27474 0.68034,-0.558593 1.72591,-0.558593 0.54427,0 0.97396,0.143229 0.42969,0.136067 0.84505,0.458333 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path876"
inkscape:connector-curvature="0" />
</g>
<rect
style="fill:#8ca073;fill-opacity:1;stroke:#43435b;stroke-width:4.45607805;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
id="rect840-4"
width="110.24391"
height="50.050503"
x="4.8780441"
y="41.279446"
ry="9.0787668" />
<path
id="path837"
style="fill:#00a000;fill-opacity:1;stroke:none;stroke-width:4.5999999;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="M 72.59983,315.73618 60.09993,322.953 V 308.51936 Z M 49,314.18617 h 19 v 3.1 H 49 Z" />
<g
aria-label="IN"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text910"
transform="translate(0.49982,0.60001)">
<path
d="m 31.034407,330.73067 h 2.053334 v 13.06666 h -2.053334 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1"
id="path923"
inkscape:connector-curvature="0" />
<path
d="m 36.400199,334.33333 v 9.464 h -1.848 v -13.06666 h 2.576 l 2.109333,7.82133 v -7.82133 h 1.829333 v 13.06666 h -2.109333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1"
id="path925"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="OUT"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text914"
transform="translate(2.3e-4,0.60001)">
<path
d="m 76.643032,340.78266 q 0,0.70933 0.28,1.008 0.298667,0.28 0.784,0.28 0.485333,0 0.765333,-0.28 0.298667,-0.29867 0.298667,-1.008 v -7.056 q 0,-0.70933 -0.298667,-0.98933 -0.28,-0.29867 -0.765333,-0.29867 -0.485333,0 -0.784,0.29867 -0.28,0.28 -0.28,0.98933 z m -2.053333,-6.92533 q 0,-1.58667 0.802666,-2.42667 0.802667,-0.85867 2.314667,-0.85867 1.512,0 2.314667,0.85867 0.802666,0.84 0.802666,2.42667 v 6.79466 q 0,1.58667 -0.802666,2.44534 -0.802667,0.84 -2.314667,0.84 -1.512,0 -2.314667,-0.84 -0.802666,-0.85867 -0.802666,-2.44534 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1"
id="path916"
inkscape:connector-curvature="0" />
<path
d="m 84.11874,330.72133 v 10.08 q 0,0.70933 0.28,0.98933 0.298667,0.28 0.784,0.28 0.485333,0 0.765333,-0.28 0.298667,-0.28 0.298667,-0.98933 v -10.08 h 1.941333 v 9.94933 q 0,1.58667 -0.784,2.44533 -0.765333,0.84 -2.277333,0.84 -1.512,0 -2.296,-0.84 -0.765333,-0.85866 -0.765333,-2.44533 v -9.94933 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1"
id="path918"
inkscape:connector-curvature="0" />
<path
d="m 89.03624,330.72133 h 6.346666 v 1.86666 H 93.23624 v 11.2 h -2.053334 v -11.2 H 89.03624 Z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1"
id="path920"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="RESET"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text960"
transform="translate(2.3e-4,-1.89973)">
<path
d="m 74.108185,302.24673 q -0.032,-0.112 -0.064,-0.208 -0.032,-0.096 -0.064,-0.24 -0.016,-0.144 -0.032,-0.368 0,-0.224 0,-0.56 v -1.76 q 0,-0.784 -0.272,-1.104 -0.272,-0.32 -0.88,-0.32 h -0.608 v 4.56 h -1.76 v -11.2 h 2.656 q 1.376,0 1.984,0.64 0.624,0.64 0.624,1.936 v 0.88 q 0,1.728 -1.152,2.272 0.672,0.272 0.912,0.896 0.256,0.608 0.256,1.488 v 1.728 q 0,0.416 0.032,0.736 0.032,0.304 0.16,0.624 z m -1.92,-9.6 v 3.44 h 0.688 q 0.496,0 0.768,-0.256 0.288,-0.256 0.288,-0.928 v -1.104 q 0,-0.608 -0.224,-0.88 -0.208,-0.272 -0.672,-0.272 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1"
id="path962"
inkscape:connector-curvature="0" />
<path
d="m 78.625685,295.76673 h 2.416 v 1.6 h -2.416 v 3.28 h 3.04 v 1.6 h -4.8 v -11.2 h 4.8 v 1.6 h -3.04 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1"
id="path964"
inkscape:connector-curvature="0" />
<path
d="m 82.516685,293.73473 q 0,-1.36 0.64,-2.08 0.656,-0.736 1.952,-0.736 1.296,0 1.936,0.736 0.656,0.72 0.656,2.08 v 0.432 h -1.664 v -0.544 q 0,-0.608 -0.24,-0.848 -0.224,-0.256 -0.64,-0.256 -0.416,0 -0.656,0.256 -0.224,0.24 -0.224,0.848 0,0.576 0.256,1.024 0.256,0.432 0.64,0.832 0.384,0.384 0.816,0.784 0.448,0.384 0.832,0.848 0.384,0.464 0.64,1.056 0.256,0.592 0.256,1.392 0,1.36 -0.672,2.096 -0.656,0.72 -1.952,0.72 -1.296,0 -1.968,-0.72 -0.656,-0.736 -0.656,-2.096 v -0.768 h 1.664 v 0.88 q 0,0.608 0.24,0.848 0.256,0.24 0.672,0.24 0.416,0 0.656,-0.24 0.256,-0.24 0.256,-0.848 0,-0.576 -0.256,-1.008 -0.256,-0.448 -0.64,-0.832 -0.384,-0.4 -0.832,-0.784 -0.432,-0.4 -0.816,-0.864 -0.384,-0.464 -0.64,-1.056 -0.256,-0.592 -0.256,-1.392 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1"
id="path966"
inkscape:connector-curvature="0" />
<path
d="m 90.469435,295.76673 h 2.416 v 1.6 h -2.416 v 3.28 h 3.04 v 1.6 h -4.8 v -11.2 h 4.8 v 1.6 h -3.04 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1"
id="path968"
inkscape:connector-curvature="0" />
<path
d="m 94.104435,291.04673 h 5.44 v 1.6 h -1.84 v 9.6 h -1.76 v -9.6 h -1.84 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1"
id="path970"
inkscape:connector-curvature="0" />
</g>
<rect
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.9749372;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="rect975"
width="3.1866765"
height="10.962168"
x="38.509144"
y="289.26593" />
<rect
y="289.26593"
x="43.809254"
height="10.962168"
width="3.1866765"
id="rect977"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.9749372;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<path
sodipodi:type="star"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.5999999;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="path979"
sodipodi:sides="3"
sodipodi:cx="29.556036"
sodipodi:cy="294.81252"
sodipodi:r1="6.9020796"
sodipodi:r2="3.4510398"
sodipodi:arg1="0"
sodipodi:arg2="1.0471976"
inkscape:flatsided="true"
inkscape:rounded="2.42861e-017"
inkscape:randomized="0"
d="m 36.458116,294.81253 -10.35312,5.97738 0,-11.95476 z"
inkscape:transform-center-x="-1.72552" />
<g
aria-label="MODE"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text848"
transform="translate(9.996275,0.04627)">
<path
d="m 84.435725,207.10906 1.1,-7.28933 h 2.244 v 10.26667 h -1.525334 v -7.36267 l -1.114666,7.36267 h -1.525334 l -1.202666,-7.26 v 7.26 h -1.408 v -10.26667 h 2.244 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1"
id="path850"
inkscape:connector-curvature="0" />
<path
d="m 90.434621,207.72506 q 0,0.55734 0.22,0.792 0.234666,0.22 0.616,0.22 0.381333,0 0.601333,-0.22 0.234667,-0.23466 0.234667,-0.792 v -5.544 q 0,-0.55733 -0.234667,-0.77733 -0.22,-0.23467 -0.601333,-0.23467 -0.381334,0 -0.616,0.23467 -0.22,0.22 -0.22,0.77733 z m -1.613334,-5.44133 q 0,-1.24667 0.630667,-1.90667 0.630667,-0.67466 1.818667,-0.67466 1.188,0 1.818666,0.67466 0.630667,0.66 0.630667,1.90667 v 5.33867 q 0,1.24666 -0.630667,1.92133 -0.630666,0.66 -1.818666,0.66 -1.188,0 -1.818667,-0.66 -0.630667,-0.67467 -0.630667,-1.92133 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1"
id="path852"
inkscape:connector-curvature="0" />
<path
d="m 94.768391,199.81973 h 2.552 q 1.217334,0 1.804,0.64533 0.601334,0.64534 0.601334,1.892 v 5.192 q 0,1.24667 -0.601334,1.892 -0.586666,0.64534 -1.804,0.64534 h -2.552 z m 1.613334,1.46667 v 7.33333 h 0.909333 q 0.381333,0 0.601333,-0.22 0.22,-0.22 0.22,-0.77733 v -5.33867 q 0,-0.55733 -0.22,-0.77733 -0.22,-0.22 -0.601333,-0.22 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1"
id="path854"
inkscape:connector-curvature="0" />
<path
d="m 102.36871,204.1464 h 2.21466 v 1.46666 h -2.21466 v 3.00667 h 2.78666 v 1.46667 h -4.4 v -10.26667 h 4.4 v 1.46667 h -2.78666 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1"
id="path856"
inkscape:connector-curvature="0" />
</g>
<path
sodipodi:type="star"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.5999999;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="path857"
sodipodi:sides="3"
sodipodi:cx="34.425156"
sodipodi:cy="271.52554"
sodipodi:r1="21.032452"
sodipodi:r2="10.516226"
sodipodi:arg1="-1.5768569"
sodipodi:arg2="-0.52965931"
inkscape:flatsided="true"
inkscape:rounded="2.42861e-017"
inkscape:randomized="0"
d="m 34.297688,250.49348 18.405505,31.43771 -36.428606,0.22078 z"
inkscape:transform-center-x="-0.04496198"
inkscape:transform-center-y="-5.2028217"
transform="matrix(0.70548953,0,0,1,12.02495,-10.399944)" />
<circle
r="13.1565"
cy="274.29651"
cx="36.356499"
id="circle853"
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:8.18601036;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<path
transform="matrix(0.70548953,0,0,1,60.02495,-10.399944)"
inkscape:transform-center-y="-5.2028217"
inkscape:transform-center-x="-0.04496198"
d="m 34.297688,250.49348 18.405505,31.43771 -36.428606,0.22078 z"
inkscape:randomized="0"
inkscape:rounded="2.42861e-017"
inkscape:flatsided="true"
sodipodi:arg2="-0.52965931"
sodipodi:arg1="-1.5768569"
sodipodi:r2="10.516226"
sodipodi:r1="21.032452"
sodipodi:cy="271.52554"
sodipodi:cx="34.425156"
sodipodi:sides="3"
id="path863"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.5999999;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
sodipodi:type="star" />
<circle
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:8.18601036;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="circle865"
cx="84.356499"
cy="274.29651"
r="13.1565" />
</svg>

+ 320
- 0
plugins/community/repos/Ohmer/res/Metriks_Dark_Signature.svg View File

@@ -0,0 +1,320 @@
<?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"
id="svg8"
viewBox="0 0 120 380"
version="1.1"
sodipodi:docname="Metriks_Dark_Signature.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
width="120"
height="380">
<title
id="title9">Metriks (8 HP) panel, for VCV Rack</title>
<metadata
id="metadata39">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Metriks (8 HP) panel, for VCV Rack</dc:title>
<cc:license
rdf:resource="" />
<dc:rights>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:rights>
</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="1920"
inkscape:window-height="1058"
id="namedview37"
showgrid="false"
inkscape:zoom="1.9612909"
inkscape:cx="-230.31168"
inkscape:cy="161.1575"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg8"
units="px" />
<defs
id="defs4">
<style
id="style2">.cls-1{fill:#ab2d2d;}.cls-2{fill:#952d2d;}.cls-3{fill:#251e1e;}.cls-4{fill:#fff7d4;}.cls-5{fill:#202020;}</style>
</defs>
<rect
style="opacity:1;vector-effect:none;fill:#0a0a1e;fill-opacity:1;stroke:none;stroke-width:0.97368497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="ModuleLayer"
width="120"
height="380"
x="0"
y="0" />
<g
aria-label="Metriks"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text862"
transform="translate(-30.000001)">
<path
d="m 63.552734,18.815759 h 3.158204 l 2.95052,7.913412 2.871745,-7.913412 h 3.050782 v 0.608724 h -0.257813 q -0.465495,0 -0.630208,0.07878 -0.157552,0.07878 -0.250651,0.279297 -0.0931,0.19336 -0.0931,0.644532 v 6.588541 q 0,0.623047 0.07161,0.809245 0.07878,0.186198 0.250651,0.286459 0.179037,0.0931 0.651693,0.0931 h 0.257813 v 0.601562 h -3.817058 v -0.601562 h 0.272136 q 0.365234,0 0.529948,-0.05729 0.171875,-0.05729 0.279297,-0.186198 0.114583,-0.136068 0.128906,-0.279297 0.03581,-0.29362 0.03581,-0.458333 v -7.354818 l -3.258464,8.9375 H 69.045573 L 65.758464,19.9974 v 7.082683 q 0,0.537109 0.0931,0.730468 0.0931,0.186198 0.286458,0.29362 0.200521,0.100261 0.708984,0.100261 h 0.229167 v 0.601562 h -3.523438 v -0.601562 h 0.200521 q 0.508464,0 0.723308,-0.107422 0.222005,-0.107422 0.315104,-0.300782 0.0931,-0.20052 0.0931,-0.780599 v -6.524088 q 0,-0.544271 -0.07878,-0.716146 -0.07878,-0.179037 -0.264974,-0.264974 -0.179037,-0.08594 -0.644532,-0.08594 h -0.34375 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path864"
inkscape:connector-curvature="0" />
<path
d="m 83.017578,26.958338 0.458334,0.372396 q -0.522787,0.623046 -1.016927,0.988281 -0.48698,0.365234 -0.923829,0.508463 -0.436849,0.150391 -1.024088,0.150391 -1.052735,0 -1.790365,-0.429687 -0.845052,-0.494141 -1.296224,-1.289063 -0.451172,-0.794922 -0.451172,-1.876302 0,-1.131511 0.436849,-1.933594 0.436849,-0.802083 1.217448,-1.260417 0.787761,-0.465494 1.819011,-0.465494 0.766276,0 1.332031,0.243489 0.565755,0.236328 0.959635,0.723307 0.393881,0.479818 0.572917,1.102865 0.10026,0.365234 0.114583,0.945313 H 78.36263 q -0.02148,0.350911 -0.02148,0.522786 0,0.902344 0.315104,1.611328 0.315104,0.701823 0.830729,1.038412 0.522787,0.329427 1.181641,0.329427 0.558594,0 1.08138,-0.257813 0.522787,-0.264974 1.267578,-1.024088 z M 82.100912,24.065109 Q 81.99349,23.406254 81.792969,23.09115 81.599609,22.776046 81.234375,22.589848 80.876302,22.40365 80.42513,22.40365 q -0.451172,0 -0.845052,0.186198 -0.39388,0.186198 -0.658854,0.515625 -0.257812,0.329427 -0.451172,0.959636 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path866"
inkscape:connector-curvature="0" />
<path
d="m 86.390626,19.460291 h 0.508464 v 2.434896 h 2.126953 v 0.716145 H 86.89909 v 4.31836 q 0,0.551432 0.0931,0.78776 0.10026,0.236328 0.329427,0.386719 0.236328,0.150391 0.522786,0.150391 0.680339,0 1.503907,-0.608724 v 0.694661 q -0.938151,0.63737 -1.897787,0.63737 -0.544271,0 -0.988281,-0.24349 -0.436849,-0.243489 -0.601563,-0.572916 -0.157552,-0.329427 -0.157552,-1.145834 V 22.611332 H 84.449871 V 22.00977 q 0.601563,-0.136068 0.966797,-0.422526 0.372396,-0.286458 0.601562,-0.744792 0.229167,-0.458333 0.372396,-1.382161 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path868"
inkscape:connector-curvature="0" />
<path
d="m 90.078777,22.919275 v -0.587239 q 0.522787,-0.04297 0.93099,-0.171875 0.408203,-0.136068 0.93099,-0.436849 h 0.537109 v 1.353515 q 0.508463,-0.623047 1.181641,-0.988281 0.673177,-0.365234 1.210286,-0.365234 0.529948,0 0.837891,0.250651 0.307942,0.250651 0.307942,0.608724 0,0.257812 -0.207682,0.458333 -0.200521,0.193359 -0.486979,0.193359 -0.128906,0 -0.222005,-0.03581 -0.0931,-0.03581 -0.272136,-0.157552 -0.39388,-0.257813 -0.658854,-0.257813 -0.358073,0 -0.78776,0.300782 -0.544271,0.386718 -0.852214,0.759114 v 3.301433 q 0,0.429687 0.04297,0.587239 0.05013,0.150391 0.157552,0.264974 0.107422,0.107422 0.264974,0.157552 0.157552,0.05013 0.551432,0.05013 h 0.236328 v 0.601562 h -3.702474 v -0.601562 h 0.307943 q 0.436849,0 0.572917,-0.07878 0.186198,-0.107421 0.272135,-0.293619 0.0931,-0.19336 0.0931,-0.6875 v -4.225261 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path870"
inkscape:connector-curvature="0" />
<path
d="m 98.307293,18.493494 q 0.34375,0 0.58724,0.243489 0.243489,0.236329 0.243489,0.580079 0,0.34375 -0.243489,0.587239 -0.24349,0.24349 -0.58724,0.24349 -0.34375,0 -0.58724,-0.24349 -0.243489,-0.243489 -0.243489,-0.587239 0,-0.34375 0.243489,-0.580079 0.24349,-0.243489 0.58724,-0.243489 z m -1.826172,4.432943 v -0.594401 q 0.594401,-0.07161 0.995443,-0.200521 0.408203,-0.128907 0.923828,-0.408203 h 0.522786 v 5.743489 q 0,0.300782 0.08594,0.451172 0.08594,0.150391 0.236328,0.222005 0.157552,0.06445 0.565755,0.06445 h 0.336589 v 0.601562 h -3.666667 v -0.601562 h 0.29362 q 0.479818,0 0.644531,-0.08594 0.164714,-0.08594 0.229167,-0.24349 0.07161,-0.157552 0.07161,-0.73763 v -4.210937 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path872"
inkscape:connector-curvature="0" />
<path
d="m 100.84961,19.488937 v -0.58724 q 0.91667,-0.07161 1.89779,-0.601563 h 0.55143 v 7.147136 l 2.62825,-2.091146 q 0.63021,-0.501302 0.63021,-0.666016 0,-0.10026 -0.13607,-0.157552 -0.0859,-0.03581 -0.42252,-0.03581 h -0.37956 V 21.895187 H 109.25 v 0.601562 q -0.60872,0 -0.97396,0.128906 -0.36523,0.121745 -0.84505,0.48698 l -2.07682,1.582682 2.44922,2.678385 q 0.35091,0.386719 0.57291,0.544271 0.22201,0.157552 0.44401,0.222005 0.22201,0.05729 0.69466,0.06445 v 0.601562 h -3.80989 v -0.601562 h 0.29362 q 0.43685,0 0.55143,-0.06445 0.11458,-0.07161 0.11458,-0.186198 0,-0.114583 -0.21484,-0.329427 -0.0358,-0.03581 -0.0788,-0.08594 l -1.90494,-2.191406 -1.16732,0.895182 v 0.938151 q 0,0.522786 0.0788,0.6875 0.0788,0.164714 0.24349,0.250651 0.17188,0.08594 0.6517,0.08594 h 0.26497 v 0.601562 h -3.68815 v -0.601562 q 0.62305,-0.0072 0.76628,-0.05013 0.25065,-0.07878 0.35807,-0.279297 0.11458,-0.20052 0.11458,-0.773437 v -7.61263 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path874"
inkscape:connector-curvature="0" />
<path
d="m 114.90755,21.895187 h 0.5013 l 0.64454,2.191406 -0.64454,0.214844 q -0.38671,-0.88086 -1.08854,-1.382162 -0.69466,-0.508463 -1.4108,-0.508463 -0.55144,0 -0.89519,0.272135 -0.34375,0.264974 -0.34375,0.615885 0,0.329428 0.25065,0.565756 0.24349,0.243489 1.09571,0.551432 l 1.39648,0.494141 q 1.18164,0.422526 1.61133,0.902343 0.42253,0.48698 0.42253,1.102865 0,0.522786 -0.31511,1.009766 -0.3151,0.479817 -0.91667,0.766276 -0.5944,0.286458 -1.36783,0.286458 -1.20313,0 -2.0625,-0.6875 l -0.15039,0.515625 h -0.50847 l -0.89518,-2.341797 0.65169,-0.257812 q 0.6517,1.03125 1.23177,1.460937 0.80925,0.608724 1.7474,0.608724 0.62305,0 1.02409,-0.329427 0.40104,-0.336589 0.40104,-0.744792 0,-0.336588 -0.25065,-0.615885 -0.25781,-0.272136 -0.98828,-0.529948 l -1.6543,-0.601563 q -1.06706,-0.386718 -1.48242,-0.845052 -0.41537,-0.458333 -0.41537,-1.052734 0,-0.723307 0.67318,-1.27474 0.68034,-0.558593 1.72591,-0.558593 0.54427,0 0.97396,0.143229 0.42969,0.136067 0.84505,0.458333 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path876"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(-1.0634255)"
id="g882">
<g
transform="translate(44.587105,-11.21199)"
id="text17-1"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#d20f00;fill-opacity:1;stroke:none"
aria-label="Ω">
<path
inkscape:connector-curvature="0"
d="m 7.2553434,372.35199 v -4.27083 h 3.0208336 q -3.1380211,-2.04427 -3.1380211,-5.58594 0,-3.52865 2.3828125,-5.9375 2.3958336,-2.42188 5.8984376,-2.42188 3.489583,0 5.872395,2.42188 2.395834,2.40885 2.395834,5.9375 0,3.54167 -3.151042,5.58594 h 3.033854 v 4.27083 h -7.330729 v -3.93229 q 2.513021,-1.22396 2.513021,-5.19531 0,-4.8698 -3.346354,-4.8698 -3.333333,0 -3.333333,4.84375 0,4.01042 2.5,5.22136 v 3.93229 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66666603px;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d20f00;fill-opacity:1"
id="path13-2" />
</g>
<path
inkscape:connector-curvature="0"
d="m 63.921903,358.84168 h -1.175782 l -0.683593,3.42709 -0.209636,1.23958 q 0,0.48307 0.929688,0.54688 l 0.164062,0.009 -0.173177,0.84766 h -5.395833 l 0.164063,-0.84766 0.173177,-0.009 q 0.957031,-0.0638 1.148437,-0.27344 0.200521,-0.21875 0.501302,-1.51302 l 1.63151,-8.21224 q 0.08203,-0.48307 0.191407,-1.17578 0,-0.52865 -1.121094,-0.61068 l -0.173177,-0.009 0.173177,-0.83855 h 4.046875 l 2.351562,-0.0638 q 1.822917,0 2.725261,0.66537 0.911458,0.65625 0.911458,1.98698 0,1.43099 -0.957031,2.63411 -0.947917,1.20313 -2.606771,1.8776 l 1.768229,3.73698 q 0.65625,1.3125 0.847656,1.54037 0.191407,0.21875 0.710938,0.25521 l 0.164062,0.009 -0.164062,0.84766 h -3.308594 z m -0.99349,-0.90234 h 0.610677 q 1.686198,0 2.72526,-0.99349 1.039063,-1.0026 1.039063,-2.63411 0,-1.00261 -0.574219,-1.49479 -0.574219,-0.50131 -1.731771,-0.50131 h -0.947916 z"
style="font-style:italic;font-variant:normal;font-weight:600;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Lucida Bright';-inkscape-font-specification:'Lucida Bright, Semi-Bold Italic';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:#6a0a0a;stroke-width:0.60000002;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3707-7" />
</g>
<rect
style="fill:#1e23e1;fill-opacity:1;stroke:#43435b;stroke-width:4.45607805;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
id="rect840-4-4"
width="110.24391"
height="50.050503"
x="4.8780389"
y="41.279457"
ry="9.0787668" />
<path
id="path837"
style="fill:#00a000;fill-opacity:1;stroke:none;stroke-width:4.5999999;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="M 72.59983,315.73618 60.09993,322.953 V 308.51936 Z M 49,314.18617 h 19 v 3.1 H 49 Z" />
<g
aria-label="IN"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text910"
transform="translate(0.49983891,0.60001)">
<path
d="m 31.034407,330.73067 h 2.053334 v 13.06666 h -2.053334 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path923"
inkscape:connector-curvature="0" />
<path
d="m 36.400199,334.33333 v 9.464 h -1.848 v -13.06666 h 2.576 l 2.109333,7.82133 v -7.82133 h 1.829333 v 13.06666 h -2.109333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path925"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="OUT"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text914"
transform="translate(2.4590781e-4,0.60001)">
<path
d="m 76.643032,340.78266 q 0,0.70933 0.28,1.008 0.298667,0.28 0.784,0.28 0.485333,0 0.765333,-0.28 0.298667,-0.29867 0.298667,-1.008 v -7.056 q 0,-0.70933 -0.298667,-0.98933 -0.28,-0.29867 -0.765333,-0.29867 -0.485333,0 -0.784,0.29867 -0.28,0.28 -0.28,0.98933 z m -2.053333,-6.92533 q 0,-1.58667 0.802666,-2.42667 0.802667,-0.85867 2.314667,-0.85867 1.512,0 2.314667,0.85867 0.802666,0.84 0.802666,2.42667 v 6.79466 q 0,1.58667 -0.802666,2.44534 -0.802667,0.84 -2.314667,0.84 -1.512,0 -2.314667,-0.84 -0.802666,-0.85867 -0.802666,-2.44534 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path916"
inkscape:connector-curvature="0" />
<path
d="m 84.11874,330.72133 v 10.08 q 0,0.70933 0.28,0.98933 0.298667,0.28 0.784,0.28 0.485333,0 0.765333,-0.28 0.298667,-0.28 0.298667,-0.98933 v -10.08 h 1.941333 v 9.94933 q 0,1.58667 -0.784,2.44533 -0.765333,0.84 -2.277333,0.84 -1.512,0 -2.296,-0.84 -0.765333,-0.85866 -0.765333,-2.44533 v -9.94933 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path918"
inkscape:connector-curvature="0" />
<path
d="m 89.03624,330.72133 h 6.346666 v 1.86666 H 93.23624 v 11.2 h -2.053334 v -11.2 H 89.03624 Z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path920"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="RESET"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text960"
transform="translate(2.4590781e-4,-1.89973)">
<path
d="m 74.108185,302.24673 q -0.032,-0.112 -0.064,-0.208 -0.032,-0.096 -0.064,-0.24 -0.016,-0.144 -0.032,-0.368 0,-0.224 0,-0.56 v -1.76 q 0,-0.784 -0.272,-1.104 -0.272,-0.32 -0.88,-0.32 h -0.608 v 4.56 h -1.76 v -11.2 h 2.656 q 1.376,0 1.984,0.64 0.624,0.64 0.624,1.936 v 0.88 q 0,1.728 -1.152,2.272 0.672,0.272 0.912,0.896 0.256,0.608 0.256,1.488 v 1.728 q 0,0.416 0.032,0.736 0.032,0.304 0.16,0.624 z m -1.92,-9.6 v 3.44 h 0.688 q 0.496,0 0.768,-0.256 0.288,-0.256 0.288,-0.928 v -1.104 q 0,-0.608 -0.224,-0.88 -0.208,-0.272 -0.672,-0.272 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path962"
inkscape:connector-curvature="0" />
<path
d="m 78.625685,295.76673 h 2.416 v 1.6 h -2.416 v 3.28 h 3.04 v 1.6 h -4.8 v -11.2 h 4.8 v 1.6 h -3.04 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path964"
inkscape:connector-curvature="0" />
<path
d="m 82.516685,293.73473 q 0,-1.36 0.64,-2.08 0.656,-0.736 1.952,-0.736 1.296,0 1.936,0.736 0.656,0.72 0.656,2.08 v 0.432 h -1.664 v -0.544 q 0,-0.608 -0.24,-0.848 -0.224,-0.256 -0.64,-0.256 -0.416,0 -0.656,0.256 -0.224,0.24 -0.224,0.848 0,0.576 0.256,1.024 0.256,0.432 0.64,0.832 0.384,0.384 0.816,0.784 0.448,0.384 0.832,0.848 0.384,0.464 0.64,1.056 0.256,0.592 0.256,1.392 0,1.36 -0.672,2.096 -0.656,0.72 -1.952,0.72 -1.296,0 -1.968,-0.72 -0.656,-0.736 -0.656,-2.096 v -0.768 h 1.664 v 0.88 q 0,0.608 0.24,0.848 0.256,0.24 0.672,0.24 0.416,0 0.656,-0.24 0.256,-0.24 0.256,-0.848 0,-0.576 -0.256,-1.008 -0.256,-0.448 -0.64,-0.832 -0.384,-0.4 -0.832,-0.784 -0.432,-0.4 -0.816,-0.864 -0.384,-0.464 -0.64,-1.056 -0.256,-0.592 -0.256,-1.392 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path966"
inkscape:connector-curvature="0" />
<path
d="m 90.469435,295.76673 h 2.416 v 1.6 h -2.416 v 3.28 h 3.04 v 1.6 h -4.8 v -11.2 h 4.8 v 1.6 h -3.04 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path968"
inkscape:connector-curvature="0" />
<path
d="m 94.104435,291.04673 h 5.44 v 1.6 h -1.84 v 9.6 h -1.76 v -9.6 h -1.84 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path970"
inkscape:connector-curvature="0" />
</g>
<g
id="g984"
transform="translate(17.689272)">
<rect
y="289.26593"
x="20.819885"
height="10.962168"
width="3.1866765"
id="rect975"
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:1.9749372;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<rect
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:1.9749372;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="rect977"
width="3.1866765"
height="10.962168"
x="26.120001"
y="289.26593" />
<path
inkscape:transform-center-x="-1.72552"
d="m 18.768847,294.81253 -10.3531189,5.97738 0,-11.95476 z"
inkscape:randomized="0"
inkscape:rounded="2.42861e-017"
inkscape:flatsided="true"
sodipodi:arg2="1.0471976"
sodipodi:arg1="0"
sodipodi:r2="3.4510398"
sodipodi:r1="6.9020796"
sodipodi:cy="294.81253"
sodipodi:cx="11.866768"
sodipodi:sides="3"
id="path979"
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:4.5999999;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
sodipodi:type="star" />
</g>
<g
aria-label="MODE"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text848"
transform="translate(9.996275,0.04627)">
<path
d="m 84.435725,207.10906 1.1,-7.28933 h 2.244 v 10.26667 h -1.525334 v -7.36267 l -1.114666,7.36267 h -1.525334 l -1.202666,-7.26 v 7.26 h -1.408 v -10.26667 h 2.244 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path850"
inkscape:connector-curvature="0" />
<path
d="m 90.434621,207.72506 q 0,0.55734 0.22,0.792 0.234666,0.22 0.616,0.22 0.381333,0 0.601333,-0.22 0.234667,-0.23466 0.234667,-0.792 v -5.544 q 0,-0.55733 -0.234667,-0.77733 -0.22,-0.23467 -0.601333,-0.23467 -0.381334,0 -0.616,0.23467 -0.22,0.22 -0.22,0.77733 z m -1.613334,-5.44133 q 0,-1.24667 0.630667,-1.90667 0.630667,-0.67466 1.818667,-0.67466 1.188,0 1.818666,0.67466 0.630667,0.66 0.630667,1.90667 v 5.33867 q 0,1.24666 -0.630667,1.92133 -0.630666,0.66 -1.818666,0.66 -1.188,0 -1.818667,-0.66 -0.630667,-0.67467 -0.630667,-1.92133 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path852"
inkscape:connector-curvature="0" />
<path
d="m 94.768391,199.81973 h 2.552 q 1.217334,0 1.804,0.64533 0.601334,0.64534 0.601334,1.892 v 5.192 q 0,1.24667 -0.601334,1.892 -0.586666,0.64534 -1.804,0.64534 h -2.552 z m 1.613334,1.46667 v 7.33333 h 0.909333 q 0.381333,0 0.601333,-0.22 0.22,-0.22 0.22,-0.77733 v -5.33867 q 0,-0.55733 -0.22,-0.77733 -0.22,-0.22 -0.601333,-0.22 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path854"
inkscape:connector-curvature="0" />
<path
d="m 102.36871,204.1464 h 2.21466 v 1.46666 h -2.21466 v 3.00667 h 2.78666 v 1.46667 h -4.4 v -10.26667 h 4.4 v 1.46667 h -2.78666 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path856"
inkscape:connector-curvature="0" />
</g>
<path
sodipodi:type="star"
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:4.5999999;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="path857"
sodipodi:sides="3"
sodipodi:cx="34.425156"
sodipodi:cy="271.52554"
sodipodi:r1="21.032452"
sodipodi:r2="10.516226"
sodipodi:arg1="-1.5768569"
sodipodi:arg2="-0.52965931"
inkscape:flatsided="true"
inkscape:rounded="2.42861e-017"
inkscape:randomized="0"
d="m 34.297688,250.49348 18.405505,31.43771 -36.428606,0.22078 z"
inkscape:transform-center-x="-0.04496198"
inkscape:transform-center-y="-5.2028217"
transform="matrix(0.70548953,0,0,1,12.02495,-10.399944)" />
<circle
r="13.1565"
cy="274.29651"
cx="36.356499"
id="circle853"
style="fill:#0a0a1e;fill-opacity:1;stroke:none;stroke-width:8.18601036;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<path
transform="matrix(0.70548953,0,0,1,60.02495,-10.399944)"
inkscape:transform-center-y="-5.2028217"
inkscape:transform-center-x="-0.04496198"
d="m 34.297688,250.49348 18.405505,31.43771 -36.428606,0.22078 z"
inkscape:randomized="0"
inkscape:rounded="2.42861e-017"
inkscape:flatsided="true"
sodipodi:arg2="-0.52965931"
sodipodi:arg1="-1.5768569"
sodipodi:r2="10.516226"
sodipodi:r1="21.032452"
sodipodi:cy="271.52554"
sodipodi:cx="34.425156"
sodipodi:sides="3"
id="path863"
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:4.5999999;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
sodipodi:type="star" />
<circle
style="fill:#0a0a1e;fill-opacity:1;stroke:none;stroke-width:8.18601036;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="circle865"
cx="84.356499"
cy="274.29651"
r="13.1565" />
</svg>

+ 320
- 0
plugins/community/repos/Ohmer/res/Metriks_Deepblue_Signature.svg View File

@@ -0,0 +1,320 @@
<?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"
id="svg8"
viewBox="0 0 120 380"
version="1.1"
sodipodi:docname="Metriks_Deepblue_Signature.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
width="120"
height="380">
<title
id="title9">Metriks (8 HP) panel, for VCV Rack</title>
<metadata
id="metadata39">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Metriks (8 HP) panel, for VCV Rack</dc:title>
<cc:license
rdf:resource="" />
<dc:rights>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:rights>
</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="1920"
inkscape:window-height="1058"
id="namedview37"
showgrid="false"
inkscape:zoom="1.9612909"
inkscape:cx="-268.33867"
inkscape:cy="161.1575"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg8"
units="px" />
<defs
id="defs4">
<style
id="style2">.cls-1{fill:#ab2d2d;}.cls-2{fill:#952d2d;}.cls-3{fill:#251e1e;}.cls-4{fill:#fff7d4;}.cls-5{fill:#202020;}</style>
</defs>
<rect
style="opacity:1;vector-effect:none;fill:#1a1a57;fill-opacity:1;stroke:none;stroke-width:0.97368497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="ModuleLayer"
width="120"
height="380"
x="0"
y="0" />
<g
aria-label="Metriks"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text862"
transform="translate(-30.000001)">
<path
d="m 63.552734,18.815759 h 3.158204 l 2.95052,7.913412 2.871745,-7.913412 h 3.050782 v 0.608724 h -0.257813 q -0.465495,0 -0.630208,0.07878 -0.157552,0.07878 -0.250651,0.279297 -0.0931,0.19336 -0.0931,0.644532 v 6.588541 q 0,0.623047 0.07161,0.809245 0.07878,0.186198 0.250651,0.286459 0.179037,0.0931 0.651693,0.0931 h 0.257813 v 0.601562 h -3.817058 v -0.601562 h 0.272136 q 0.365234,0 0.529948,-0.05729 0.171875,-0.05729 0.279297,-0.186198 0.114583,-0.136068 0.128906,-0.279297 0.03581,-0.29362 0.03581,-0.458333 v -7.354818 l -3.258464,8.9375 H 69.045573 L 65.758464,19.9974 v 7.082683 q 0,0.537109 0.0931,0.730468 0.0931,0.186198 0.286458,0.29362 0.200521,0.100261 0.708984,0.100261 h 0.229167 v 0.601562 h -3.523438 v -0.601562 h 0.200521 q 0.508464,0 0.723308,-0.107422 0.222005,-0.107422 0.315104,-0.300782 0.0931,-0.20052 0.0931,-0.780599 v -6.524088 q 0,-0.544271 -0.07878,-0.716146 -0.07878,-0.179037 -0.264974,-0.264974 -0.179037,-0.08594 -0.644532,-0.08594 h -0.34375 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path864"
inkscape:connector-curvature="0" />
<path
d="m 83.017578,26.958338 0.458334,0.372396 q -0.522787,0.623046 -1.016927,0.988281 -0.48698,0.365234 -0.923829,0.508463 -0.436849,0.150391 -1.024088,0.150391 -1.052735,0 -1.790365,-0.429687 -0.845052,-0.494141 -1.296224,-1.289063 -0.451172,-0.794922 -0.451172,-1.876302 0,-1.131511 0.436849,-1.933594 0.436849,-0.802083 1.217448,-1.260417 0.787761,-0.465494 1.819011,-0.465494 0.766276,0 1.332031,0.243489 0.565755,0.236328 0.959635,0.723307 0.393881,0.479818 0.572917,1.102865 0.10026,0.365234 0.114583,0.945313 H 78.36263 q -0.02148,0.350911 -0.02148,0.522786 0,0.902344 0.315104,1.611328 0.315104,0.701823 0.830729,1.038412 0.522787,0.329427 1.181641,0.329427 0.558594,0 1.08138,-0.257813 0.522787,-0.264974 1.267578,-1.024088 z M 82.100912,24.065109 Q 81.99349,23.406254 81.792969,23.09115 81.599609,22.776046 81.234375,22.589848 80.876302,22.40365 80.42513,22.40365 q -0.451172,0 -0.845052,0.186198 -0.39388,0.186198 -0.658854,0.515625 -0.257812,0.329427 -0.451172,0.959636 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path866"
inkscape:connector-curvature="0" />
<path
d="m 86.390626,19.460291 h 0.508464 v 2.434896 h 2.126953 v 0.716145 H 86.89909 v 4.31836 q 0,0.551432 0.0931,0.78776 0.10026,0.236328 0.329427,0.386719 0.236328,0.150391 0.522786,0.150391 0.680339,0 1.503907,-0.608724 v 0.694661 q -0.938151,0.63737 -1.897787,0.63737 -0.544271,0 -0.988281,-0.24349 -0.436849,-0.243489 -0.601563,-0.572916 -0.157552,-0.329427 -0.157552,-1.145834 V 22.611332 H 84.449871 V 22.00977 q 0.601563,-0.136068 0.966797,-0.422526 0.372396,-0.286458 0.601562,-0.744792 0.229167,-0.458333 0.372396,-1.382161 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path868"
inkscape:connector-curvature="0" />
<path
d="m 90.078777,22.919275 v -0.587239 q 0.522787,-0.04297 0.93099,-0.171875 0.408203,-0.136068 0.93099,-0.436849 h 0.537109 v 1.353515 q 0.508463,-0.623047 1.181641,-0.988281 0.673177,-0.365234 1.210286,-0.365234 0.529948,0 0.837891,0.250651 0.307942,0.250651 0.307942,0.608724 0,0.257812 -0.207682,0.458333 -0.200521,0.193359 -0.486979,0.193359 -0.128906,0 -0.222005,-0.03581 -0.0931,-0.03581 -0.272136,-0.157552 -0.39388,-0.257813 -0.658854,-0.257813 -0.358073,0 -0.78776,0.300782 -0.544271,0.386718 -0.852214,0.759114 v 3.301433 q 0,0.429687 0.04297,0.587239 0.05013,0.150391 0.157552,0.264974 0.107422,0.107422 0.264974,0.157552 0.157552,0.05013 0.551432,0.05013 h 0.236328 v 0.601562 h -3.702474 v -0.601562 h 0.307943 q 0.436849,0 0.572917,-0.07878 0.186198,-0.107421 0.272135,-0.293619 0.0931,-0.19336 0.0931,-0.6875 v -4.225261 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path870"
inkscape:connector-curvature="0" />
<path
d="m 98.307293,18.493494 q 0.34375,0 0.58724,0.243489 0.243489,0.236329 0.243489,0.580079 0,0.34375 -0.243489,0.587239 -0.24349,0.24349 -0.58724,0.24349 -0.34375,0 -0.58724,-0.24349 -0.243489,-0.243489 -0.243489,-0.587239 0,-0.34375 0.243489,-0.580079 0.24349,-0.243489 0.58724,-0.243489 z m -1.826172,4.432943 v -0.594401 q 0.594401,-0.07161 0.995443,-0.200521 0.408203,-0.128907 0.923828,-0.408203 h 0.522786 v 5.743489 q 0,0.300782 0.08594,0.451172 0.08594,0.150391 0.236328,0.222005 0.157552,0.06445 0.565755,0.06445 h 0.336589 v 0.601562 h -3.666667 v -0.601562 h 0.29362 q 0.479818,0 0.644531,-0.08594 0.164714,-0.08594 0.229167,-0.24349 0.07161,-0.157552 0.07161,-0.73763 v -4.210937 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path872"
inkscape:connector-curvature="0" />
<path
d="m 100.84961,19.488937 v -0.58724 q 0.91667,-0.07161 1.89779,-0.601563 h 0.55143 v 7.147136 l 2.62825,-2.091146 q 0.63021,-0.501302 0.63021,-0.666016 0,-0.10026 -0.13607,-0.157552 -0.0859,-0.03581 -0.42252,-0.03581 h -0.37956 V 21.895187 H 109.25 v 0.601562 q -0.60872,0 -0.97396,0.128906 -0.36523,0.121745 -0.84505,0.48698 l -2.07682,1.582682 2.44922,2.678385 q 0.35091,0.386719 0.57291,0.544271 0.22201,0.157552 0.44401,0.222005 0.22201,0.05729 0.69466,0.06445 v 0.601562 h -3.80989 v -0.601562 h 0.29362 q 0.43685,0 0.55143,-0.06445 0.11458,-0.07161 0.11458,-0.186198 0,-0.114583 -0.21484,-0.329427 -0.0358,-0.03581 -0.0788,-0.08594 l -1.90494,-2.191406 -1.16732,0.895182 v 0.938151 q 0,0.522786 0.0788,0.6875 0.0788,0.164714 0.24349,0.250651 0.17188,0.08594 0.6517,0.08594 h 0.26497 v 0.601562 h -3.68815 v -0.601562 q 0.62305,-0.0072 0.76628,-0.05013 0.25065,-0.07878 0.35807,-0.279297 0.11458,-0.20052 0.11458,-0.773437 v -7.61263 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path874"
inkscape:connector-curvature="0" />
<path
d="m 114.90755,21.895187 h 0.5013 l 0.64454,2.191406 -0.64454,0.214844 q -0.38671,-0.88086 -1.08854,-1.382162 -0.69466,-0.508463 -1.4108,-0.508463 -0.55144,0 -0.89519,0.272135 -0.34375,0.264974 -0.34375,0.615885 0,0.329428 0.25065,0.565756 0.24349,0.243489 1.09571,0.551432 l 1.39648,0.494141 q 1.18164,0.422526 1.61133,0.902343 0.42253,0.48698 0.42253,1.102865 0,0.522786 -0.31511,1.009766 -0.3151,0.479817 -0.91667,0.766276 -0.5944,0.286458 -1.36783,0.286458 -1.20313,0 -2.0625,-0.6875 l -0.15039,0.515625 h -0.50847 l -0.89518,-2.341797 0.65169,-0.257812 q 0.6517,1.03125 1.23177,1.460937 0.80925,0.608724 1.7474,0.608724 0.62305,0 1.02409,-0.329427 0.40104,-0.336589 0.40104,-0.744792 0,-0.336588 -0.25065,-0.615885 -0.25781,-0.272136 -0.98828,-0.529948 l -1.6543,-0.601563 q -1.06706,-0.386718 -1.48242,-0.845052 -0.41537,-0.458333 -0.41537,-1.052734 0,-0.723307 0.67318,-1.27474 0.68034,-0.558593 1.72591,-0.558593 0.54427,0 0.97396,0.143229 0.42969,0.136067 0.84505,0.458333 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path876"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(-1.0634255)"
id="g882">
<g
transform="translate(44.587105,-11.21199)"
id="text17-1"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#d20f00;fill-opacity:1;stroke:none"
aria-label="Ω">
<path
inkscape:connector-curvature="0"
d="m 7.2553434,372.35199 v -4.27083 h 3.0208336 q -3.1380211,-2.04427 -3.1380211,-5.58594 0,-3.52865 2.3828125,-5.9375 2.3958336,-2.42188 5.8984376,-2.42188 3.489583,0 5.872395,2.42188 2.395834,2.40885 2.395834,5.9375 0,3.54167 -3.151042,5.58594 h 3.033854 v 4.27083 h -7.330729 v -3.93229 q 2.513021,-1.22396 2.513021,-5.19531 0,-4.8698 -3.346354,-4.8698 -3.333333,0 -3.333333,4.84375 0,4.01042 2.5,5.22136 v 3.93229 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66666603px;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d20f00;fill-opacity:1"
id="path13-2" />
</g>
<path
inkscape:connector-curvature="0"
d="m 63.921903,358.84168 h -1.175782 l -0.683593,3.42709 -0.209636,1.23958 q 0,0.48307 0.929688,0.54688 l 0.164062,0.009 -0.173177,0.84766 h -5.395833 l 0.164063,-0.84766 0.173177,-0.009 q 0.957031,-0.0638 1.148437,-0.27344 0.200521,-0.21875 0.501302,-1.51302 l 1.63151,-8.21224 q 0.08203,-0.48307 0.191407,-1.17578 0,-0.52865 -1.121094,-0.61068 l -0.173177,-0.009 0.173177,-0.83855 h 4.046875 l 2.351562,-0.0638 q 1.822917,0 2.725261,0.66537 0.911458,0.65625 0.911458,1.98698 0,1.43099 -0.957031,2.63411 -0.947917,1.20313 -2.606771,1.8776 l 1.768229,3.73698 q 0.65625,1.3125 0.847656,1.54037 0.191407,0.21875 0.710938,0.25521 l 0.164062,0.009 -0.164062,0.84766 h -3.308594 z m -0.99349,-0.90234 h 0.610677 q 1.686198,0 2.72526,-0.99349 1.039063,-1.0026 1.039063,-2.63411 0,-1.00261 -0.574219,-1.49479 -0.574219,-0.50131 -1.731771,-0.50131 h -0.947916 z"
style="font-style:italic;font-variant:normal;font-weight:600;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Lucida Bright';-inkscape-font-specification:'Lucida Bright, Semi-Bold Italic';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:#6a0a0a;stroke-width:0.60000002;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3707-7" />
</g>
<rect
style="fill:#161404;fill-opacity:1;stroke:#43435b;stroke-width:4.45607805;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
id="rect840-4-4"
width="110.24391"
height="50.050503"
x="4.8780389"
y="41.279457"
ry="9.0787668" />
<path
id="path837"
style="fill:#00a000;fill-opacity:1;stroke:none;stroke-width:4.5999999;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="M 72.59983,315.73618 60.09993,322.953 V 308.51936 Z M 49,314.18617 h 19 v 3.1 H 49 Z" />
<g
aria-label="IN"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text910"
transform="translate(0.49983891,0.60001)">
<path
d="m 31.034407,330.73067 h 2.053334 v 13.06666 h -2.053334 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path923"
inkscape:connector-curvature="0" />
<path
d="m 36.400199,334.33333 v 9.464 h -1.848 v -13.06666 h 2.576 l 2.109333,7.82133 v -7.82133 h 1.829333 v 13.06666 h -2.109333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path925"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="OUT"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text914"
transform="translate(2.4590781e-4,0.60001)">
<path
d="m 76.643032,340.78266 q 0,0.70933 0.28,1.008 0.298667,0.28 0.784,0.28 0.485333,0 0.765333,-0.28 0.298667,-0.29867 0.298667,-1.008 v -7.056 q 0,-0.70933 -0.298667,-0.98933 -0.28,-0.29867 -0.765333,-0.29867 -0.485333,0 -0.784,0.29867 -0.28,0.28 -0.28,0.98933 z m -2.053333,-6.92533 q 0,-1.58667 0.802666,-2.42667 0.802667,-0.85867 2.314667,-0.85867 1.512,0 2.314667,0.85867 0.802666,0.84 0.802666,2.42667 v 6.79466 q 0,1.58667 -0.802666,2.44534 -0.802667,0.84 -2.314667,0.84 -1.512,0 -2.314667,-0.84 -0.802666,-0.85867 -0.802666,-2.44534 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path916"
inkscape:connector-curvature="0" />
<path
d="m 84.11874,330.72133 v 10.08 q 0,0.70933 0.28,0.98933 0.298667,0.28 0.784,0.28 0.485333,0 0.765333,-0.28 0.298667,-0.28 0.298667,-0.98933 v -10.08 h 1.941333 v 9.94933 q 0,1.58667 -0.784,2.44533 -0.765333,0.84 -2.277333,0.84 -1.512,0 -2.296,-0.84 -0.765333,-0.85866 -0.765333,-2.44533 v -9.94933 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path918"
inkscape:connector-curvature="0" />
<path
d="m 89.03624,330.72133 h 6.346666 v 1.86666 H 93.23624 v 11.2 h -2.053334 v -11.2 H 89.03624 Z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path920"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="RESET"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text960"
transform="translate(2.4590781e-4,-1.89973)">
<path
d="m 74.108185,302.24673 q -0.032,-0.112 -0.064,-0.208 -0.032,-0.096 -0.064,-0.24 -0.016,-0.144 -0.032,-0.368 0,-0.224 0,-0.56 v -1.76 q 0,-0.784 -0.272,-1.104 -0.272,-0.32 -0.88,-0.32 h -0.608 v 4.56 h -1.76 v -11.2 h 2.656 q 1.376,0 1.984,0.64 0.624,0.64 0.624,1.936 v 0.88 q 0,1.728 -1.152,2.272 0.672,0.272 0.912,0.896 0.256,0.608 0.256,1.488 v 1.728 q 0,0.416 0.032,0.736 0.032,0.304 0.16,0.624 z m -1.92,-9.6 v 3.44 h 0.688 q 0.496,0 0.768,-0.256 0.288,-0.256 0.288,-0.928 v -1.104 q 0,-0.608 -0.224,-0.88 -0.208,-0.272 -0.672,-0.272 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path962"
inkscape:connector-curvature="0" />
<path
d="m 78.625685,295.76673 h 2.416 v 1.6 h -2.416 v 3.28 h 3.04 v 1.6 h -4.8 v -11.2 h 4.8 v 1.6 h -3.04 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path964"
inkscape:connector-curvature="0" />
<path
d="m 82.516685,293.73473 q 0,-1.36 0.64,-2.08 0.656,-0.736 1.952,-0.736 1.296,0 1.936,0.736 0.656,0.72 0.656,2.08 v 0.432 h -1.664 v -0.544 q 0,-0.608 -0.24,-0.848 -0.224,-0.256 -0.64,-0.256 -0.416,0 -0.656,0.256 -0.224,0.24 -0.224,0.848 0,0.576 0.256,1.024 0.256,0.432 0.64,0.832 0.384,0.384 0.816,0.784 0.448,0.384 0.832,0.848 0.384,0.464 0.64,1.056 0.256,0.592 0.256,1.392 0,1.36 -0.672,2.096 -0.656,0.72 -1.952,0.72 -1.296,0 -1.968,-0.72 -0.656,-0.736 -0.656,-2.096 v -0.768 h 1.664 v 0.88 q 0,0.608 0.24,0.848 0.256,0.24 0.672,0.24 0.416,0 0.656,-0.24 0.256,-0.24 0.256,-0.848 0,-0.576 -0.256,-1.008 -0.256,-0.448 -0.64,-0.832 -0.384,-0.4 -0.832,-0.784 -0.432,-0.4 -0.816,-0.864 -0.384,-0.464 -0.64,-1.056 -0.256,-0.592 -0.256,-1.392 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path966"
inkscape:connector-curvature="0" />
<path
d="m 90.469435,295.76673 h 2.416 v 1.6 h -2.416 v 3.28 h 3.04 v 1.6 h -4.8 v -11.2 h 4.8 v 1.6 h -3.04 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path968"
inkscape:connector-curvature="0" />
<path
d="m 94.104435,291.04673 h 5.44 v 1.6 h -1.84 v 9.6 h -1.76 v -9.6 h -1.84 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path970"
inkscape:connector-curvature="0" />
</g>
<g
id="g984"
transform="translate(17.689272)">
<rect
y="289.26593"
x="20.819885"
height="10.962168"
width="3.1866765"
id="rect975"
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:1.9749372;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<rect
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:1.9749372;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="rect977"
width="3.1866765"
height="10.962168"
x="26.120001"
y="289.26593" />
<path
inkscape:transform-center-x="-1.72552"
d="m 18.768847,294.81253 -10.3531189,5.97738 0,-11.95476 z"
inkscape:randomized="0"
inkscape:rounded="2.42861e-017"
inkscape:flatsided="true"
sodipodi:arg2="1.0471976"
sodipodi:arg1="0"
sodipodi:r2="3.4510398"
sodipodi:r1="6.9020796"
sodipodi:cy="294.81253"
sodipodi:cx="11.866768"
sodipodi:sides="3"
id="path979"
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:4.5999999;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
sodipodi:type="star" />
</g>
<g
aria-label="MODE"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text848"
transform="translate(9.996275,0.04627)">
<path
d="m 84.435725,207.10906 1.1,-7.28933 h 2.244 v 10.26667 h -1.525334 v -7.36267 l -1.114666,7.36267 h -1.525334 l -1.202666,-7.26 v 7.26 h -1.408 v -10.26667 h 2.244 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path850"
inkscape:connector-curvature="0" />
<path
d="m 90.434621,207.72506 q 0,0.55734 0.22,0.792 0.234666,0.22 0.616,0.22 0.381333,0 0.601333,-0.22 0.234667,-0.23466 0.234667,-0.792 v -5.544 q 0,-0.55733 -0.234667,-0.77733 -0.22,-0.23467 -0.601333,-0.23467 -0.381334,0 -0.616,0.23467 -0.22,0.22 -0.22,0.77733 z m -1.613334,-5.44133 q 0,-1.24667 0.630667,-1.90667 0.630667,-0.67466 1.818667,-0.67466 1.188,0 1.818666,0.67466 0.630667,0.66 0.630667,1.90667 v 5.33867 q 0,1.24666 -0.630667,1.92133 -0.630666,0.66 -1.818666,0.66 -1.188,0 -1.818667,-0.66 -0.630667,-0.67467 -0.630667,-1.92133 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path852"
inkscape:connector-curvature="0" />
<path
d="m 94.768391,199.81973 h 2.552 q 1.217334,0 1.804,0.64533 0.601334,0.64534 0.601334,1.892 v 5.192 q 0,1.24667 -0.601334,1.892 -0.586666,0.64534 -1.804,0.64534 h -2.552 z m 1.613334,1.46667 v 7.33333 h 0.909333 q 0.381333,0 0.601333,-0.22 0.22,-0.22 0.22,-0.77733 v -5.33867 q 0,-0.55733 -0.22,-0.77733 -0.22,-0.22 -0.601333,-0.22 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path854"
inkscape:connector-curvature="0" />
<path
d="m 102.36871,204.1464 h 2.21466 v 1.46666 h -2.21466 v 3.00667 h 2.78666 v 1.46667 h -4.4 v -10.26667 h 4.4 v 1.46667 h -2.78666 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path856"
inkscape:connector-curvature="0" />
</g>
<path
sodipodi:type="star"
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:4.5999999;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="path857"
sodipodi:sides="3"
sodipodi:cx="34.425156"
sodipodi:cy="271.52554"
sodipodi:r1="21.032452"
sodipodi:r2="10.516226"
sodipodi:arg1="-1.5768569"
sodipodi:arg2="-0.52965931"
inkscape:flatsided="true"
inkscape:rounded="2.42861e-017"
inkscape:randomized="0"
d="m 34.297688,250.49348 18.405505,31.43771 -36.428606,0.22078 z"
inkscape:transform-center-x="-0.04496198"
inkscape:transform-center-y="-5.2028217"
transform="matrix(0.70548953,0,0,1,12.02495,-10.399944)" />
<circle
r="13.1565"
cy="274.29651"
cx="36.356499"
id="circle853"
style="fill:#1a1a57;fill-opacity:1;stroke:none;stroke-width:8.18601036;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<path
transform="matrix(0.70548953,0,0,1,60.02495,-10.399944)"
inkscape:transform-center-y="-5.2028217"
inkscape:transform-center-x="-0.04496198"
d="m 34.297688,250.49348 18.405505,31.43771 -36.428606,0.22078 z"
inkscape:randomized="0"
inkscape:rounded="2.42861e-017"
inkscape:flatsided="true"
sodipodi:arg2="-0.52965931"
sodipodi:arg1="-1.5768569"
sodipodi:r2="10.516226"
sodipodi:r1="21.032452"
sodipodi:cy="271.52554"
sodipodi:cx="34.425156"
sodipodi:sides="3"
id="path863"
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:4.5999999;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
sodipodi:type="star" />
<circle
style="fill:#1a1a57;fill-opacity:1;stroke:none;stroke-width:8.18601036;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="circle865"
cx="84.356499"
cy="274.29651"
r="13.1565" />
</svg>

+ 320
- 0
plugins/community/repos/Ohmer/res/Metriks_Stage_Repro.svg View File

@@ -0,0 +1,320 @@
<?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"
id="svg8"
viewBox="0 0 120 380"
version="1.1"
sodipodi:docname="Metriks_Stage_Repro.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
width="120"
height="380">
<title
id="title9">Metriks (8 HP) panel, for VCV Rack</title>
<metadata
id="metadata39">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Metriks (8 HP) panel, for VCV Rack</dc:title>
<cc:license
rdf:resource="" />
<dc:rights>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:rights>
</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="1920"
inkscape:window-height="1058"
id="namedview37"
showgrid="false"
inkscape:zoom="1.9612909"
inkscape:cx="-268.33867"
inkscape:cy="161.1575"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg8"
units="px" />
<defs
id="defs4">
<style
id="style2">.cls-1{fill:#ab2d2d;}.cls-2{fill:#952d2d;}.cls-3{fill:#251e1e;}.cls-4{fill:#fff7d4;}.cls-5{fill:#202020;}</style>
</defs>
<rect
style="opacity:1;vector-effect:none;fill:#700000;fill-opacity:1;stroke:none;stroke-width:0.97368497;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="ModuleLayer"
width="120"
height="380"
x="0"
y="0" />
<g
aria-label="Metriks"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text862"
transform="translate(-30.000001)">
<path
d="m 63.552734,18.815759 h 3.158204 l 2.95052,7.913412 2.871745,-7.913412 h 3.050782 v 0.608724 h -0.257813 q -0.465495,0 -0.630208,0.07878 -0.157552,0.07878 -0.250651,0.279297 -0.0931,0.19336 -0.0931,0.644532 v 6.588541 q 0,0.623047 0.07161,0.809245 0.07878,0.186198 0.250651,0.286459 0.179037,0.0931 0.651693,0.0931 h 0.257813 v 0.601562 h -3.817058 v -0.601562 h 0.272136 q 0.365234,0 0.529948,-0.05729 0.171875,-0.05729 0.279297,-0.186198 0.114583,-0.136068 0.128906,-0.279297 0.03581,-0.29362 0.03581,-0.458333 v -7.354818 l -3.258464,8.9375 H 69.045573 L 65.758464,19.9974 v 7.082683 q 0,0.537109 0.0931,0.730468 0.0931,0.186198 0.286458,0.29362 0.200521,0.100261 0.708984,0.100261 h 0.229167 v 0.601562 h -3.523438 v -0.601562 h 0.200521 q 0.508464,0 0.723308,-0.107422 0.222005,-0.107422 0.315104,-0.300782 0.0931,-0.20052 0.0931,-0.780599 v -6.524088 q 0,-0.544271 -0.07878,-0.716146 -0.07878,-0.179037 -0.264974,-0.264974 -0.179037,-0.08594 -0.644532,-0.08594 h -0.34375 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path864"
inkscape:connector-curvature="0" />
<path
d="m 83.017578,26.958338 0.458334,0.372396 q -0.522787,0.623046 -1.016927,0.988281 -0.48698,0.365234 -0.923829,0.508463 -0.436849,0.150391 -1.024088,0.150391 -1.052735,0 -1.790365,-0.429687 -0.845052,-0.494141 -1.296224,-1.289063 -0.451172,-0.794922 -0.451172,-1.876302 0,-1.131511 0.436849,-1.933594 0.436849,-0.802083 1.217448,-1.260417 0.787761,-0.465494 1.819011,-0.465494 0.766276,0 1.332031,0.243489 0.565755,0.236328 0.959635,0.723307 0.393881,0.479818 0.572917,1.102865 0.10026,0.365234 0.114583,0.945313 H 78.36263 q -0.02148,0.350911 -0.02148,0.522786 0,0.902344 0.315104,1.611328 0.315104,0.701823 0.830729,1.038412 0.522787,0.329427 1.181641,0.329427 0.558594,0 1.08138,-0.257813 0.522787,-0.264974 1.267578,-1.024088 z M 82.100912,24.065109 Q 81.99349,23.406254 81.792969,23.09115 81.599609,22.776046 81.234375,22.589848 80.876302,22.40365 80.42513,22.40365 q -0.451172,0 -0.845052,0.186198 -0.39388,0.186198 -0.658854,0.515625 -0.257812,0.329427 -0.451172,0.959636 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path866"
inkscape:connector-curvature="0" />
<path
d="m 86.390626,19.460291 h 0.508464 v 2.434896 h 2.126953 v 0.716145 H 86.89909 v 4.31836 q 0,0.551432 0.0931,0.78776 0.10026,0.236328 0.329427,0.386719 0.236328,0.150391 0.522786,0.150391 0.680339,0 1.503907,-0.608724 v 0.694661 q -0.938151,0.63737 -1.897787,0.63737 -0.544271,0 -0.988281,-0.24349 -0.436849,-0.243489 -0.601563,-0.572916 -0.157552,-0.329427 -0.157552,-1.145834 V 22.611332 H 84.449871 V 22.00977 q 0.601563,-0.136068 0.966797,-0.422526 0.372396,-0.286458 0.601562,-0.744792 0.229167,-0.458333 0.372396,-1.382161 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path868"
inkscape:connector-curvature="0" />
<path
d="m 90.078777,22.919275 v -0.587239 q 0.522787,-0.04297 0.93099,-0.171875 0.408203,-0.136068 0.93099,-0.436849 h 0.537109 v 1.353515 q 0.508463,-0.623047 1.181641,-0.988281 0.673177,-0.365234 1.210286,-0.365234 0.529948,0 0.837891,0.250651 0.307942,0.250651 0.307942,0.608724 0,0.257812 -0.207682,0.458333 -0.200521,0.193359 -0.486979,0.193359 -0.128906,0 -0.222005,-0.03581 -0.0931,-0.03581 -0.272136,-0.157552 -0.39388,-0.257813 -0.658854,-0.257813 -0.358073,0 -0.78776,0.300782 -0.544271,0.386718 -0.852214,0.759114 v 3.301433 q 0,0.429687 0.04297,0.587239 0.05013,0.150391 0.157552,0.264974 0.107422,0.107422 0.264974,0.157552 0.157552,0.05013 0.551432,0.05013 h 0.236328 v 0.601562 h -3.702474 v -0.601562 h 0.307943 q 0.436849,0 0.572917,-0.07878 0.186198,-0.107421 0.272135,-0.293619 0.0931,-0.19336 0.0931,-0.6875 v -4.225261 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path870"
inkscape:connector-curvature="0" />
<path
d="m 98.307293,18.493494 q 0.34375,0 0.58724,0.243489 0.243489,0.236329 0.243489,0.580079 0,0.34375 -0.243489,0.587239 -0.24349,0.24349 -0.58724,0.24349 -0.34375,0 -0.58724,-0.24349 -0.243489,-0.243489 -0.243489,-0.587239 0,-0.34375 0.243489,-0.580079 0.24349,-0.243489 0.58724,-0.243489 z m -1.826172,4.432943 v -0.594401 q 0.594401,-0.07161 0.995443,-0.200521 0.408203,-0.128907 0.923828,-0.408203 h 0.522786 v 5.743489 q 0,0.300782 0.08594,0.451172 0.08594,0.150391 0.236328,0.222005 0.157552,0.06445 0.565755,0.06445 h 0.336589 v 0.601562 h -3.666667 v -0.601562 h 0.29362 q 0.479818,0 0.644531,-0.08594 0.164714,-0.08594 0.229167,-0.24349 0.07161,-0.157552 0.07161,-0.73763 v -4.210937 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path872"
inkscape:connector-curvature="0" />
<path
d="m 100.84961,19.488937 v -0.58724 q 0.91667,-0.07161 1.89779,-0.601563 h 0.55143 v 7.147136 l 2.62825,-2.091146 q 0.63021,-0.501302 0.63021,-0.666016 0,-0.10026 -0.13607,-0.157552 -0.0859,-0.03581 -0.42252,-0.03581 h -0.37956 V 21.895187 H 109.25 v 0.601562 q -0.60872,0 -0.97396,0.128906 -0.36523,0.121745 -0.84505,0.48698 l -2.07682,1.582682 2.44922,2.678385 q 0.35091,0.386719 0.57291,0.544271 0.22201,0.157552 0.44401,0.222005 0.22201,0.05729 0.69466,0.06445 v 0.601562 h -3.80989 v -0.601562 h 0.29362 q 0.43685,0 0.55143,-0.06445 0.11458,-0.07161 0.11458,-0.186198 0,-0.114583 -0.21484,-0.329427 -0.0358,-0.03581 -0.0788,-0.08594 l -1.90494,-2.191406 -1.16732,0.895182 v 0.938151 q 0,0.522786 0.0788,0.6875 0.0788,0.164714 0.24349,0.250651 0.17188,0.08594 0.6517,0.08594 h 0.26497 v 0.601562 h -3.68815 v -0.601562 q 0.62305,-0.0072 0.76628,-0.05013 0.25065,-0.07878 0.35807,-0.279297 0.11458,-0.20052 0.11458,-0.773437 v -7.61263 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path874"
inkscape:connector-curvature="0" />
<path
d="m 114.90755,21.895187 h 0.5013 l 0.64454,2.191406 -0.64454,0.214844 q -0.38671,-0.88086 -1.08854,-1.382162 -0.69466,-0.508463 -1.4108,-0.508463 -0.55144,0 -0.89519,0.272135 -0.34375,0.264974 -0.34375,0.615885 0,0.329428 0.25065,0.565756 0.24349,0.243489 1.09571,0.551432 l 1.39648,0.494141 q 1.18164,0.422526 1.61133,0.902343 0.42253,0.48698 0.42253,1.102865 0,0.522786 -0.31511,1.009766 -0.3151,0.479817 -0.91667,0.766276 -0.5944,0.286458 -1.36783,0.286458 -1.20313,0 -2.0625,-0.6875 l -0.15039,0.515625 h -0.50847 l -0.89518,-2.341797 0.65169,-0.257812 q 0.6517,1.03125 1.23177,1.460937 0.80925,0.608724 1.7474,0.608724 0.62305,0 1.02409,-0.329427 0.40104,-0.336589 0.40104,-0.744792 0,-0.336588 -0.25065,-0.615885 -0.25781,-0.272136 -0.98828,-0.529948 l -1.6543,-0.601563 q -1.06706,-0.386718 -1.48242,-0.845052 -0.41537,-0.458333 -0.41537,-1.052734 0,-0.723307 0.67318,-1.27474 0.68034,-0.558593 1.72591,-0.558593 0.54427,0 0.97396,0.143229 0.42969,0.136067 0.84505,0.458333 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:14.66666698px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path876"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(-1.0634255)"
id="g882">
<g
transform="translate(44.587105,-11.21199)"
id="text17-1"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#d20f00;fill-opacity:1;stroke:none"
aria-label="Ω">
<path
inkscape:connector-curvature="0"
d="m 7.2553434,372.35199 v -4.27083 h 3.0208336 q -3.1380211,-2.04427 -3.1380211,-5.58594 0,-3.52865 2.3828125,-5.9375 2.3958336,-2.42188 5.8984376,-2.42188 3.489583,0 5.872395,2.42188 2.395834,2.40885 2.395834,5.9375 0,3.54167 -3.151042,5.58594 h 3.033854 v 4.27083 h -7.330729 v -3.93229 q 2.513021,-1.22396 2.513021,-5.19531 0,-4.8698 -3.346354,-4.8698 -3.333333,0 -3.333333,4.84375 0,4.01042 2.5,5.22136 v 3.93229 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66666603px;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d20f00;fill-opacity:1"
id="path13-2" />
</g>
<path
inkscape:connector-curvature="0"
d="m 63.921903,358.84168 h -1.175782 l -0.683593,3.42709 -0.209636,1.23958 q 0,0.48307 0.929688,0.54688 l 0.164062,0.009 -0.173177,0.84766 h -5.395833 l 0.164063,-0.84766 0.173177,-0.009 q 0.957031,-0.0638 1.148437,-0.27344 0.200521,-0.21875 0.501302,-1.51302 l 1.63151,-8.21224 q 0.08203,-0.48307 0.191407,-1.17578 0,-0.52865 -1.121094,-0.61068 l -0.173177,-0.009 0.173177,-0.83855 h 4.046875 l 2.351562,-0.0638 q 1.822917,0 2.725261,0.66537 0.911458,0.65625 0.911458,1.98698 0,1.43099 -0.957031,2.63411 -0.947917,1.20313 -2.606771,1.8776 l 1.768229,3.73698 q 0.65625,1.3125 0.847656,1.54037 0.191407,0.21875 0.710938,0.25521 l 0.164062,0.009 -0.164062,0.84766 h -3.308594 z m -0.99349,-0.90234 h 0.610677 q 1.686198,0 2.72526,-0.99349 1.039063,-1.0026 1.039063,-2.63411 0,-1.00261 -0.574219,-1.49479 -0.574219,-0.50131 -1.731771,-0.50131 h -0.947916 z"
style="font-style:italic;font-variant:normal;font-weight:600;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Lucida Bright';-inkscape-font-specification:'Lucida Bright, Semi-Bold Italic';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:#6a0a0a;stroke-width:0.60000002;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3707-7" />
</g>
<rect
style="fill:#72aec6;fill-opacity:1;stroke:#43435b;stroke-width:4.45607805;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
id="rect840-4-4"
width="110.24391"
height="50.050503"
x="4.8780389"
y="41.279457"
ry="9.0787668" />
<path
id="path837"
style="fill:#00a000;fill-opacity:1;stroke:none;stroke-width:4.5999999;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="M 72.59983,315.73618 60.09993,322.953 V 308.51936 Z M 49,314.18617 h 19 v 3.1 H 49 Z" />
<g
aria-label="IN"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text910"
transform="translate(0.49983891,0.60001)">
<path
d="m 31.034407,330.73067 h 2.053334 v 13.06666 h -2.053334 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path923"
inkscape:connector-curvature="0" />
<path
d="m 36.400199,334.33333 v 9.464 h -1.848 v -13.06666 h 2.576 l 2.109333,7.82133 v -7.82133 h 1.829333 v 13.06666 h -2.109333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path925"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="OUT"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text914"
transform="translate(2.4590781e-4,0.60001)">
<path
d="m 76.643032,340.78266 q 0,0.70933 0.28,1.008 0.298667,0.28 0.784,0.28 0.485333,0 0.765333,-0.28 0.298667,-0.29867 0.298667,-1.008 v -7.056 q 0,-0.70933 -0.298667,-0.98933 -0.28,-0.29867 -0.765333,-0.29867 -0.485333,0 -0.784,0.29867 -0.28,0.28 -0.28,0.98933 z m -2.053333,-6.92533 q 0,-1.58667 0.802666,-2.42667 0.802667,-0.85867 2.314667,-0.85867 1.512,0 2.314667,0.85867 0.802666,0.84 0.802666,2.42667 v 6.79466 q 0,1.58667 -0.802666,2.44534 -0.802667,0.84 -2.314667,0.84 -1.512,0 -2.314667,-0.84 -0.802666,-0.85867 -0.802666,-2.44534 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path916"
inkscape:connector-curvature="0" />
<path
d="m 84.11874,330.72133 v 10.08 q 0,0.70933 0.28,0.98933 0.298667,0.28 0.784,0.28 0.485333,0 0.765333,-0.28 0.298667,-0.28 0.298667,-0.98933 v -10.08 h 1.941333 v 9.94933 q 0,1.58667 -0.784,2.44533 -0.765333,0.84 -2.277333,0.84 -1.512,0 -2.296,-0.84 -0.765333,-0.85866 -0.765333,-2.44533 v -9.94933 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path918"
inkscape:connector-curvature="0" />
<path
d="m 89.03624,330.72133 h 6.346666 v 1.86666 H 93.23624 v 11.2 h -2.053334 v -11.2 H 89.03624 Z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path920"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="RESET"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text960"
transform="translate(2.4590781e-4,-1.89973)">
<path
d="m 74.108185,302.24673 q -0.032,-0.112 -0.064,-0.208 -0.032,-0.096 -0.064,-0.24 -0.016,-0.144 -0.032,-0.368 0,-0.224 0,-0.56 v -1.76 q 0,-0.784 -0.272,-1.104 -0.272,-0.32 -0.88,-0.32 h -0.608 v 4.56 h -1.76 v -11.2 h 2.656 q 1.376,0 1.984,0.64 0.624,0.64 0.624,1.936 v 0.88 q 0,1.728 -1.152,2.272 0.672,0.272 0.912,0.896 0.256,0.608 0.256,1.488 v 1.728 q 0,0.416 0.032,0.736 0.032,0.304 0.16,0.624 z m -1.92,-9.6 v 3.44 h 0.688 q 0.496,0 0.768,-0.256 0.288,-0.256 0.288,-0.928 v -1.104 q 0,-0.608 -0.224,-0.88 -0.208,-0.272 -0.672,-0.272 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path962"
inkscape:connector-curvature="0" />
<path
d="m 78.625685,295.76673 h 2.416 v 1.6 h -2.416 v 3.28 h 3.04 v 1.6 h -4.8 v -11.2 h 4.8 v 1.6 h -3.04 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path964"
inkscape:connector-curvature="0" />
<path
d="m 82.516685,293.73473 q 0,-1.36 0.64,-2.08 0.656,-0.736 1.952,-0.736 1.296,0 1.936,0.736 0.656,0.72 0.656,2.08 v 0.432 h -1.664 v -0.544 q 0,-0.608 -0.24,-0.848 -0.224,-0.256 -0.64,-0.256 -0.416,0 -0.656,0.256 -0.224,0.24 -0.224,0.848 0,0.576 0.256,1.024 0.256,0.432 0.64,0.832 0.384,0.384 0.816,0.784 0.448,0.384 0.832,0.848 0.384,0.464 0.64,1.056 0.256,0.592 0.256,1.392 0,1.36 -0.672,2.096 -0.656,0.72 -1.952,0.72 -1.296,0 -1.968,-0.72 -0.656,-0.736 -0.656,-2.096 v -0.768 h 1.664 v 0.88 q 0,0.608 0.24,0.848 0.256,0.24 0.672,0.24 0.416,0 0.656,-0.24 0.256,-0.24 0.256,-0.848 0,-0.576 -0.256,-1.008 -0.256,-0.448 -0.64,-0.832 -0.384,-0.4 -0.832,-0.784 -0.432,-0.4 -0.816,-0.864 -0.384,-0.464 -0.64,-1.056 -0.256,-0.592 -0.256,-1.392 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path966"
inkscape:connector-curvature="0" />
<path
d="m 90.469435,295.76673 h 2.416 v 1.6 h -2.416 v 3.28 h 3.04 v 1.6 h -4.8 v -11.2 h 4.8 v 1.6 h -3.04 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path968"
inkscape:connector-curvature="0" />
<path
d="m 94.104435,291.04673 h 5.44 v 1.6 h -1.84 v 9.6 h -1.76 v -9.6 h -1.84 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path970"
inkscape:connector-curvature="0" />
</g>
<g
id="g984"
transform="translate(17.689272)">
<rect
y="289.26593"
x="20.819885"
height="10.962168"
width="3.1866765"
id="rect975"
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:1.9749372;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<rect
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:1.9749372;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="rect977"
width="3.1866765"
height="10.962168"
x="26.120001"
y="289.26593" />
<path
inkscape:transform-center-x="-1.72552"
d="m 18.768847,294.81253 -10.3531189,5.97738 0,-11.95476 z"
inkscape:randomized="0"
inkscape:rounded="2.42861e-017"
inkscape:flatsided="true"
sodipodi:arg2="1.0471976"
sodipodi:arg1="0"
sodipodi:r2="3.4510398"
sodipodi:r1="6.9020796"
sodipodi:cy="294.81253"
sodipodi:cx="11.866768"
sodipodi:sides="3"
id="path979"
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:4.5999999;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
sodipodi:type="star" />
</g>
<g
aria-label="MODE"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text848"
transform="translate(9.996275,0.04627)">
<path
d="m 84.435725,207.10906 1.1,-7.28933 h 2.244 v 10.26667 h -1.525334 v -7.36267 l -1.114666,7.36267 h -1.525334 l -1.202666,-7.26 v 7.26 h -1.408 v -10.26667 h 2.244 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path850"
inkscape:connector-curvature="0" />
<path
d="m 90.434621,207.72506 q 0,0.55734 0.22,0.792 0.234666,0.22 0.616,0.22 0.381333,0 0.601333,-0.22 0.234667,-0.23466 0.234667,-0.792 v -5.544 q 0,-0.55733 -0.234667,-0.77733 -0.22,-0.23467 -0.601333,-0.23467 -0.381334,0 -0.616,0.23467 -0.22,0.22 -0.22,0.77733 z m -1.613334,-5.44133 q 0,-1.24667 0.630667,-1.90667 0.630667,-0.67466 1.818667,-0.67466 1.188,0 1.818666,0.67466 0.630667,0.66 0.630667,1.90667 v 5.33867 q 0,1.24666 -0.630667,1.92133 -0.630666,0.66 -1.818666,0.66 -1.188,0 -1.818667,-0.66 -0.630667,-0.67467 -0.630667,-1.92133 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path852"
inkscape:connector-curvature="0" />
<path
d="m 94.768391,199.81973 h 2.552 q 1.217334,0 1.804,0.64533 0.601334,0.64534 0.601334,1.892 v 5.192 q 0,1.24667 -0.601334,1.892 -0.586666,0.64534 -1.804,0.64534 h -2.552 z m 1.613334,1.46667 v 7.33333 h 0.909333 q 0.381333,0 0.601333,-0.22 0.22,-0.22 0.22,-0.77733 v -5.33867 q 0,-0.55733 -0.22,-0.77733 -0.22,-0.22 -0.601333,-0.22 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path854"
inkscape:connector-curvature="0" />
<path
d="m 102.36871,204.1464 h 2.21466 v 1.46666 h -2.21466 v 3.00667 h 2.78666 v 1.46667 h -4.4 v -10.26667 h 4.4 v 1.46667 h -2.78666 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.66666698px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path856"
inkscape:connector-curvature="0" />
</g>
<path
sodipodi:type="star"
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:4.5999999;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="path857"
sodipodi:sides="3"
sodipodi:cx="34.425156"
sodipodi:cy="271.52554"
sodipodi:r1="21.032452"
sodipodi:r2="10.516226"
sodipodi:arg1="-1.5768569"
sodipodi:arg2="-0.52965931"
inkscape:flatsided="true"
inkscape:rounded="2.42861e-017"
inkscape:randomized="0"
d="m 34.297688,250.49348 18.405505,31.43771 -36.428606,0.22078 z"
inkscape:transform-center-x="-0.04496198"
inkscape:transform-center-y="-5.2028217"
transform="matrix(0.70548953,0,0,1,12.02495,-10.399944)" />
<circle
r="13.1565"
cy="274.29651"
cx="36.356499"
id="circle853"
style="fill:#700000;fill-opacity:1;stroke:none;stroke-width:8.18601036;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<path
transform="matrix(0.70548953,0,0,1,60.02495,-10.399944)"
inkscape:transform-center-y="-5.2028217"
inkscape:transform-center-x="-0.04496198"
d="m 34.297688,250.49348 18.405505,31.43771 -36.428606,0.22078 z"
inkscape:randomized="0"
inkscape:rounded="2.42861e-017"
inkscape:flatsided="true"
sodipodi:arg2="-0.52965931"
sodipodi:arg1="-1.5768569"
sodipodi:r2="10.516226"
sodipodi:r1="21.032452"
sodipodi:cy="271.52554"
sodipodi:cx="34.425156"
sodipodi:sides="3"
id="path863"
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:4.5999999;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
sodipodi:type="star" />
<circle
style="fill:#700000;fill-opacity:1;stroke:none;stroke-width:8.18601036;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="circle865"
cx="84.356499"
cy="274.29651"
r="13.1565" />
</svg>

+ 411
- 0
plugins/community/repos/Ohmer/res/RKD.svg View File

@@ -0,0 +1,411 @@
<?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"
id="svg8"
viewBox="0 0 60 380"
version="1.1"
sodipodi:docname="RKD.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
width="60"
height="380">
<title
id="title836">Rotating Clock Divider (RCD) - (c) 4mspedal (c) Dominique Camus</title>
<metadata
id="metadata39">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Rotating Clock Divider (RCD) - (c) 4mspedal (c) Dominique Camus</dc:title>
<cc:license
rdf:resource="" />
<dc:description>Having authorization (by email) from 4mspedal.com team.</dc:description>
</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="1920"
inkscape:window-height="1058"
id="namedview37"
showgrid="false"
inkscape:zoom="22.189474"
inkscape:cx="47.489933"
inkscape:cy="363.23836"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg8"
showguides="true"
inkscape:guide-bbox="true" />
<defs
id="defs4">
<style
id="style2">.cls-1{fill:#ab2d2d;}.cls-2{fill:#952d2d;}.cls-3{fill:#251e1e;}.cls-4{fill:#fff7d4;}.cls-5{fill:#202020;}</style>
</defs>
<rect
style="opacity:1;vector-effect:none;fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:0.68849927;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="ModuleLayer"
width="60"
height="380"
x="0"
y="0" />
<g
id="g836"
transform="translate(0,-10)">
<g
transform="translate(13.523767,-1.032314)"
id="text17"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#d20f00;fill-opacity:1;stroke:none"
aria-label="Ω">
<path
inkscape:connector-curvature="0"
d="m 7.2553434,372.35199 v -4.27083 h 3.0208336 q -3.1380211,-2.04427 -3.1380211,-5.58594 0,-3.52865 2.3828125,-5.9375 2.3958336,-2.42188 5.8984376,-2.42188 3.489583,0 5.872395,2.42188 2.395834,2.40885 2.395834,5.9375 0,3.54167 -3.151042,5.58594 h 3.033854 v 4.27083 h -7.330729 v -3.93229 q 2.513021,-1.22396 2.513021,-5.19531 0,-4.8698 -3.346354,-4.8698 -3.333333,0 -3.333333,4.84375 0,4.01042 2.5,5.22136 v 3.93229 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66666603px;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d20f00;fill-opacity:1"
id="path13" />
</g>
<path
inkscape:connector-curvature="0"
d="m 32.85839,368.84168 h -1.175782 l -0.683593,3.42709 -0.209636,1.23958 q 0,0.48307 0.929688,0.54688 l 0.164062,0.009 -0.173177,0.84766 h -5.395833 l 0.164063,-0.84766 0.173177,-0.009 q 0.957031,-0.0638 1.148437,-0.27344 0.200521,-0.21875 0.501302,-1.51302 l 1.63151,-8.21224 q 0.08203,-0.48307 0.191407,-1.17578 0,-0.52865 -1.121094,-0.61068 l -0.173177,-0.009 0.173177,-0.83855 h 4.046875 l 2.351562,-0.0638 q 1.822917,0 2.725261,0.66537 0.911458,0.65625 0.911458,1.98698 0,1.43099 -0.957031,2.63411 -0.947917,1.20313 -2.606771,1.8776 l 1.768229,3.73698 q 0.65625,1.3125 0.847656,1.54037 0.191407,0.21875 0.710938,0.25521 l 0.164062,0.009 -0.164062,0.84766 h -3.308594 z m -0.99349,-0.90234 h 0.610677 q 1.686198,0 2.72526,-0.99349 1.039063,-1.0026 1.039063,-2.63411 0,-1.00261 -0.574219,-1.49479 -0.574219,-0.50131 -1.731771,-0.50131 h -0.947916 z"
style="font-style:italic;font-variant:normal;font-weight:600;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Lucida Bright';-inkscape-font-specification:'Lucida Bright, Semi-Bold Italic';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#6a0a0a;stroke-width:0.60000002;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3707" />
</g>
<rect
ry="13.141245"
rx="9.8609915"
y="64.957512"
x="1.2469749"
height="26.28249"
width="57.50605"
id="rect854"
style="display:inline;fill:#d2d2cd;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<rect
style="fill:#ea482e;fill-opacity:1;stroke:#000000;stroke-width:1.99424803;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="rect856"
width="57.511753"
height="26.287752"
x="1.2441242"
y="94.955124"
rx="9.861969"
ry="13.143876" />
<rect
ry="13.141244"
rx="9.8610001"
y="124.95757"
x="1.2469501"
height="26.282488"
width="57.5061"
id="rect858"
style="fill:#f18b31;fill-opacity:1;stroke:#000000;stroke-width:1.99990201;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<rect
style="fill:#faf027;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="rect860"
width="57.5061"
height="26.282488"
x="1.2469501"
y="154.95757"
rx="9.8610001"
ry="13.141244" />
<rect
style="fill:#81c341;fill-opacity:1;stroke:#000000;stroke-width:1.99990201;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="rect862"
width="57.5061"
height="26.282488"
x="1.2469501"
y="184.95757"
rx="9.8610001"
ry="13.141244" />
<rect
ry="13.143876"
rx="9.861969"
y="214.95512"
x="1.2441242"
height="26.287752"
width="57.511753"
id="rect864"
style="fill:#00a651;fill-opacity:1;stroke:#000000;stroke-width:1.99424803;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<rect
ry="13.141244"
rx="9.8610001"
y="244.95752"
x="1.2469501"
height="26.282488"
width="57.5061"
id="rect875"
style="fill:#216bb4;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<rect
ry="13.143876"
rx="9.861969"
y="274.95511"
x="1.2441242"
height="26.287752"
width="57.511753"
id="rect881"
style="fill:#8c55a3;fill-opacity:1;stroke:#000000;stroke-width:1.99424803;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<rect
style="fill:#e9eaeb;fill-opacity:1;stroke:#000000;stroke-width:1.99990201;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="rect883"
width="57.5061"
height="26.282488"
x="1.2469501"
y="304.95755"
rx="9.8610001"
ry="13.141244" />
<g
aria-label="ROTATE"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text839"
transform="translate(0.1996515)">
<path
d="m 5.7013485,32.141998 q -0.024,-0.084 -0.048,-0.156 -0.024,-0.072 -0.048,-0.18 -0.012,-0.108 -0.024,-0.276 0,-0.168 0,-0.42 v -1.32 q 0,-0.588 -0.204,-0.828 -0.204,-0.24 -0.66,-0.24 h -0.456 v 3.42 h -1.32 v -8.4 h 1.992 q 1.032,0 1.488,0.48 0.468,0.48 0.468,1.452 v 0.66 q 0,1.296 -0.864,1.704 0.504,0.204 0.684,0.672 0.192,0.456 0.192,1.116 v 1.296 q 0,0.312 0.024,0.552 0.024,0.228 0.12,0.468 z m -1.44,-7.2 v 2.58 h 0.516 q 0.372,0 0.576,-0.192 0.216,-0.192 0.216,-0.696 v -0.828 q 0,-0.456 -0.168,-0.66 -0.156,-0.204 -0.504,-0.204 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path845"
inkscape:connector-curvature="0" />
<path
d="m 8.9814735,30.209998 q 0,0.456 0.18,0.648 0.192,0.18 0.504,0.18 0.312,0 0.4920005,-0.18 0.192,-0.192 0.192,-0.648 v -4.536 q 0,-0.456 -0.192,-0.636 -0.1800005,-0.192 -0.4920005,-0.192 -0.312,0 -0.504,0.192 -0.18,0.18 -0.18,0.636 z m -1.32,-4.452 q 0,-1.02 0.516,-1.56 0.516,-0.552 1.488,-0.552 0.9720005,0 1.4880005,0.552 0.516,0.54 0.516,1.56 v 4.368 q 0,1.02 -0.516,1.572 -0.516,0.54 -1.4880005,0.54 -0.972,0 -1.488,-0.54 -0.516,-0.552 -0.516,-1.572 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path847"
inkscape:connector-curvature="0" />
<path
d="m 12.167286,23.741998 h 4.08 v 1.2 h -1.38 v 7.2 h -1.32 v -7.2 h -1.38 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path849"
inkscape:connector-curvature="0" />
<path
d="m 20.666474,32.141998 h -1.332 l -0.228,-1.524 h -1.62 l -0.228,1.524 h -1.212 l 1.344,-8.4 h 1.932 z m -3.012,-2.664 h 1.272 l -0.636,-4.248 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path851"
inkscape:connector-curvature="0" />
<path
d="m 20.909474,23.741998 h 4.08 v 1.2 h -1.38 v 7.2 h -1.32 v -7.2 h -1.38 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path853"
inkscape:connector-curvature="0" />
<path
d="m 26.901974,27.281998 h 1.812 v 1.2 h -1.812 v 2.46 h 2.28 v 1.2 h -3.6 v -8.4 h 3.6 v 1.2 h -2.28 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path855"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="RESET"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text843"
transform="translate(-0.199908)">
<path
d="m 38.420908,32.142372 q -0.024,-0.084 -0.048,-0.156 -0.024,-0.072 -0.048,-0.18 -0.012,-0.108 -0.024,-0.276 0,-0.168 0,-0.42 v -1.32 q 0,-0.588 -0.204,-0.828 -0.204,-0.24 -0.66,-0.24 h -0.456 v 3.42 h -1.32 v -8.4 h 1.992 q 1.032,0 1.488,0.48 0.468,0.48 0.468,1.452 v 0.66 q 0,1.296 -0.864,1.704 0.504,0.204 0.684,0.672 0.192,0.456 0.192,1.116 v 1.296 q 0,0.312 0.024,0.552 0.024,0.228 0.12,0.468 z m -1.44,-7.2 v 2.58 h 0.516 q 0.372,0 0.576,-0.192 0.216,-0.192 0.216,-0.696 v -0.828 q 0,-0.456 -0.168,-0.66 -0.156,-0.204 -0.504,-0.204 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path858"
inkscape:connector-curvature="0" />
<path
d="m 41.809033,27.282372 h 1.812 v 1.2 h -1.812 v 2.46 h 2.28 v 1.2 h -3.6 v -8.4 h 3.6 v 1.2 h -2.28 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path860"
inkscape:connector-curvature="0" />
<path
d="m 44.727283,25.758372 q 0,-1.02 0.48,-1.56 0.492,-0.552 1.464,-0.552 0.972,0 1.452,0.552 0.492,0.54 0.492,1.56 v 0.324 h -1.248 v -0.408 q 0,-0.456 -0.18,-0.636 -0.168,-0.192 -0.48,-0.192 -0.312,0 -0.492,0.192 -0.168,0.18 -0.168,0.636 0,0.432 0.192,0.768 0.192,0.324 0.48,0.624 0.288,0.288 0.612,0.588 0.336,0.288 0.624,0.636 0.288,0.348 0.48,0.792 0.192,0.444 0.192,1.044 0,1.02 -0.504,1.572 -0.492,0.54 -1.464,0.54 -0.972,0 -1.476,-0.54 -0.492,-0.552 -0.492,-1.572 v -0.576 h 1.248 v 0.66 q 0,0.456 0.18,0.636 0.192,0.18 0.504,0.18 0.312,0 0.492,-0.18 0.192,-0.18 0.192,-0.636 0,-0.432 -0.192,-0.756 -0.192,-0.336 -0.48,-0.624 -0.288,-0.3 -0.624,-0.588 -0.324,-0.3 -0.612,-0.648 -0.288,-0.348 -0.48,-0.792 -0.192,-0.444 -0.192,-1.044 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path862"
inkscape:connector-curvature="0" />
<path
d="m 50.691846,27.282372 h 1.812 v 1.2 h -1.812 v 2.46 h 2.28 v 1.2 h -3.6 v -8.4 h 3.6 v 1.2 h -2.28 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path864"
inkscape:connector-curvature="0" />
<path
d="m 53.418096,23.742372 h 4.08 v 1.2 h -1.38 v 7.2 h -1.32 v -7.2 h -1.38 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path866"
inkscape:connector-curvature="0" />
</g>
<circle
style="fill:#010101;fill-opacity:1;stroke:none;stroke-width:0.62614173;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="path848"
cx="8.1997519"
cy="78.098755"
r="5.7997518" />
<circle
r="5.7997518"
cy="108.09925"
cx="8.1997519"
id="circle850"
style="fill:#010101;fill-opacity:1;stroke:none;stroke-width:0.62614173;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<circle
style="fill:#010101;fill-opacity:1;stroke:none;stroke-width:0.62614173;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="circle852"
cx="8.1997519"
cy="138.09924"
r="5.7997518" />
<circle
r="5.7997518"
cy="168.09924"
cx="8.1997519"
id="circle854"
style="fill:#010101;fill-opacity:1;stroke:none;stroke-width:0.62614173;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<circle
style="fill:#010101;fill-opacity:1;stroke:none;stroke-width:0.62614173;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="circle856"
cx="8.1997519"
cy="198.09882"
r="5.7997518" />
<circle
r="5.7997518"
cy="228.099"
cx="8.1997519"
id="circle858"
style="fill:#010101;fill-opacity:1;stroke:none;stroke-width:0.62614173;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<circle
style="fill:#010101;fill-opacity:1;stroke:none;stroke-width:0.62614173;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="circle860"
cx="8.1997519"
cy="258.09875"
r="5.7997518" />
<circle
r="5.7997518"
cy="288.099"
cx="8.1997519"
id="circle862"
style="fill:#010101;fill-opacity:1;stroke:none;stroke-width:0.62614173;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<circle
style="fill:#010101;fill-opacity:1;stroke:none;stroke-width:0.62614173;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="circle864"
cx="8.1997519"
cy="318.09879"
r="5.7997518" />
<g
aria-label="CLK"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text860"
transform="translate(-1.09952)">
<path
d="m 21.484853,79.285427 v 1.24 q 0,1.133333 -0.56,1.746666 -0.546666,0.6 -1.626666,0.6 -1.08,0 -1.64,-0.6 Q 17.11152,81.65876 17.11152,80.525427 v -4.853334 q 0,-1.133333 0.546667,-1.733333 0.56,-0.613333 1.64,-0.613333 1.08,0 1.626666,0.613333 0.56,0.6 0.56,1.733333 v 0.906667 h -1.386666 v -1 q 0,-0.506667 -0.213334,-0.706667 -0.2,-0.213333 -0.546666,-0.213333 -0.346667,0 -0.56,0.213333 -0.2,0.2 -0.2,0.706667 v 5.04 q 0,0.506667 0.2,0.706667 0.213333,0.2 0.56,0.2 0.346666,0 0.546666,-0.2 0.213334,-0.2 0.213334,-0.706667 v -1.333333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path863"
inkscape:connector-curvature="0" />
<path
d="m 22.38777,73.432094 h 1.466667 v 7.999999 h 2.413333 v 1.333334 h -3.88 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path865"
inkscape:connector-curvature="0" />
<path
d="m 28.865061,79.045427 -0.453333,0.853333 v 2.866667 h -1.466667 v -9.333333 h 1.466667 v 4.066666 l 1.946666,-4.066666 h 1.44 l -2.04,4.159999 2.04,5.173334 h -1.506666 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path867"
inkscape:connector-curvature="0" />
</g>
<path
id="path927"
d="m 17.742112,99.74235 h 10.756083 c 1.962331,0 3.542113,1.48002 3.542113,3.31842 v 10.07681 c 0,1.83841 -1.579782,3.31842 -3.542113,3.31842 H 17.742112 C 15.779782,116.456 14.2,114.97599 14.2,113.13758 v -10.07681 c 0,-1.8384 1.579782,-3.31842 3.542112,-3.31842 z"
style="fill:#8b9055;fill-opacity:1;stroke:none;stroke-width:0.43798238;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
inkscape:connector-curvature="0" />
<path
id="path929"
d="m 18.321309,100.64235 h 9.59769 c 1.750995,0 3.16064,1.32063 3.16064,2.96104 v 8.99157 c 0,1.64042 -1.409645,2.96104 -3.16064,2.96104 h -9.59769 c -1.750995,0 -3.160639,-1.32062 -3.160639,-2.96104 v -8.99157 c 0,-1.64041 1.409644,-2.96104 3.160639,-2.96104 z"
style="fill:#0f1414;fill-opacity:1;stroke:none;stroke-width:0.39081317;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
style="fill:#8b9055;fill-opacity:1;stroke:none;stroke-width:0.43798238;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 17.742112,129.74235 h 10.756083 c 1.962331,0 3.542113,1.48002 3.542113,3.31842 v 10.07681 c 0,1.83841 -1.579782,3.31842 -3.542113,3.31842 H 17.742112 C 15.779782,146.456 14.2,144.97599 14.2,143.13758 v -10.07681 c 0,-1.8384 1.579782,-3.31842 3.542112,-3.31842 z"
id="path893" />
<path
inkscape:connector-curvature="0"
style="fill:#0f1414;fill-opacity:1;stroke:none;stroke-width:0.39081317;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 18.321309,130.64235 h 9.59769 c 1.750995,0 3.16064,1.32063 3.16064,2.96104 v 8.99157 c 0,1.64042 -1.409645,2.96104 -3.16064,2.96104 h -9.59769 c -1.750995,0 -3.160639,-1.32062 -3.160639,-2.96104 v -8.99157 c 0,-1.64041 1.409644,-2.96104 3.160639,-2.96104 z"
id="path895" />
<path
id="path899"
d="m 17.742112,159.74235 h 10.756083 c 1.962331,0 3.542113,1.48002 3.542113,3.31842 v 10.07681 c 0,1.83841 -1.579782,3.31842 -3.542113,3.31842 H 17.742112 C 15.779782,176.456 14.2,174.97599 14.2,173.13758 v -10.07681 c 0,-1.8384 1.579782,-3.31842 3.542112,-3.31842 z"
style="fill:#8b9055;fill-opacity:1;stroke:none;stroke-width:0.43798238;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
inkscape:connector-curvature="0" />
<path
id="path901"
d="m 18.321309,160.64235 h 9.59769 c 1.750995,0 3.16064,1.32063 3.16064,2.96104 v 8.99157 c 0,1.64042 -1.409645,2.96104 -3.16064,2.96104 h -9.59769 c -1.750995,0 -3.160639,-1.32062 -3.160639,-2.96104 v -8.99157 c 0,-1.64041 1.409644,-2.96104 3.160639,-2.96104 z"
style="fill:#0f1414;fill-opacity:1;stroke:none;stroke-width:0.39081317;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
style="fill:#8b9055;fill-opacity:1;stroke:none;stroke-width:0.43798238;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 17.742112,189.74235 h 10.756083 c 1.962331,0 3.542113,1.48002 3.542113,3.31842 v 10.07681 c 0,1.83841 -1.579782,3.31842 -3.542113,3.31842 H 17.742112 C 15.779782,206.456 14.2,204.97599 14.2,203.13758 v -10.07681 c 0,-1.8384 1.579782,-3.31842 3.542112,-3.31842 z"
id="path905" />
<path
inkscape:connector-curvature="0"
style="fill:#0f1414;fill-opacity:1;stroke:none;stroke-width:0.39081317;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 18.321309,190.64235 h 9.59769 c 1.750995,0 3.16064,1.32063 3.16064,2.96104 v 8.99157 c 0,1.64042 -1.409645,2.96104 -3.16064,2.96104 h -9.59769 c -1.750995,0 -3.160639,-1.32062 -3.160639,-2.96104 v -8.99157 c 0,-1.64041 1.409644,-2.96104 3.160639,-2.96104 z"
id="path907" />
<path
id="path911"
d="m 17.742112,219.74235 h 10.756083 c 1.962331,0 3.542113,1.48002 3.542113,3.31842 v 10.07681 c 0,1.83841 -1.579782,3.31842 -3.542113,3.31842 H 17.742112 C 15.779782,236.456 14.2,234.97599 14.2,233.13758 v -10.07681 c 0,-1.8384 1.579782,-3.31842 3.542112,-3.31842 z"
style="fill:#8b9055;fill-opacity:1;stroke:none;stroke-width:0.43798238;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
inkscape:connector-curvature="0" />
<path
id="path913"
d="m 18.321309,220.64235 h 9.59769 c 1.750995,0 3.16064,1.32063 3.16064,2.96104 v 8.99157 c 0,1.64042 -1.409645,2.96104 -3.16064,2.96104 h -9.59769 c -1.750995,0 -3.160639,-1.32062 -3.160639,-2.96104 v -8.99157 c 0,-1.64041 1.409644,-2.96104 3.160639,-2.96104 z"
style="fill:#0f1414;fill-opacity:1;stroke:none;stroke-width:0.39081317;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
style="fill:#8b9055;fill-opacity:1;stroke:none;stroke-width:0.43798238;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 17.742112,249.74235 h 10.756083 c 1.962331,0 3.542113,1.48002 3.542113,3.31842 v 10.07681 c 0,1.83841 -1.579782,3.31842 -3.542113,3.31842 H 17.742112 C 15.779782,266.456 14.2,264.97599 14.2,263.13758 v -10.07681 c 0,-1.8384 1.579782,-3.31842 3.542112,-3.31842 z"
id="path917" />
<path
inkscape:connector-curvature="0"
style="fill:#0f1414;fill-opacity:1;stroke:none;stroke-width:0.39081317;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 18.321309,250.64235 h 9.59769 c 1.750995,0 3.16064,1.32063 3.16064,2.96104 v 8.99157 c 0,1.64042 -1.409645,2.96104 -3.16064,2.96104 h -9.59769 c -1.750995,0 -3.160639,-1.32062 -3.160639,-2.96104 v -8.99157 c 0,-1.64041 1.409644,-2.96104 3.160639,-2.96104 z"
id="path919" />
<path
id="path923"
d="m 17.742112,279.74235 h 10.756083 c 1.962331,0 3.542113,1.48002 3.542113,3.31842 v 10.07681 c 0,1.83841 -1.579782,3.31842 -3.542113,3.31842 H 17.742112 C 15.779782,296.456 14.2,294.97599 14.2,293.13758 v -10.07681 c 0,-1.8384 1.579782,-3.31842 3.542112,-3.31842 z"
style="fill:#8b9055;fill-opacity:1;stroke:none;stroke-width:0.43798238;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
inkscape:connector-curvature="0" />
<path
id="path925"
d="m 18.321309,280.64235 h 9.59769 c 1.750995,0 3.16064,1.32063 3.16064,2.96104 v 8.99157 c 0,1.64042 -1.409645,2.96104 -3.16064,2.96104 h -9.59769 c -1.750995,0 -3.160639,-1.32062 -3.160639,-2.96104 v -8.99157 c 0,-1.64041 1.409644,-2.96104 3.160639,-2.96104 z"
style="fill:#0f1414;fill-opacity:1;stroke:none;stroke-width:0.39081317;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
style="fill:#8b9055;fill-opacity:1;stroke:none;stroke-width:0.43798238;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 17.742112,309.74235 h 10.756083 c 1.962331,0 3.542113,1.48002 3.542113,3.31842 v 10.07681 c 0,1.83841 -1.579782,3.31842 -3.542113,3.31842 H 17.742112 C 15.779782,326.456 14.2,324.97599 14.2,323.13758 v -10.07681 c 0,-1.8384 1.579782,-3.31842 3.542112,-3.31842 z"
id="path930" />
<path
inkscape:connector-curvature="0"
style="fill:#0f1414;fill-opacity:1;stroke:none;stroke-width:0.39081317;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 18.321309,310.64235 h 9.59769 c 1.750995,0 3.16064,1.32063 3.16064,2.96104 v 8.99157 c 0,1.64042 -1.409645,2.96104 -3.16064,2.96104 h -9.59769 c -1.750995,0 -3.160639,-1.32062 -3.160639,-2.96104 v -8.99157 c 0,-1.64041 1.409644,-2.96104 3.160639,-2.96104 z"
id="path932" />
<g
aria-label="RKD"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text875">
<path
d="m 29.204847,9.7227194 h 4.6875 q 1.334636,0 2.018229,0.2799476 0.683594,0.273438 1.048177,0.800782 0.371094,0.520833 0.371094,1.210937 0,0.709635 -0.358073,1.263021 -0.358073,0.546875 -1.035156,0.865885 -0.670573,0.3125 -1.783854,0.325521 l 2.395833,2.929687 q 0.292969,0.364584 0.384115,0.449219 0.227864,0.201823 0.47526,0.30599 0.253906,0.104166 0.566406,0.104166 h 0.162761 v 0.546875 h -2.070313 l -3.333333,-4.335937 h -1.165364 v 2.799479 q 0,0.46875 0.03255,0.585938 0.07161,0.221354 0.227864,0.3125 0.162761,0.09114 0.625,0.09114 h 0.234375 v 0.546875 H 29.204845 V 18.25787 h 0.3125 q 0.351563,0 0.46875,-0.04557 0.123698,-0.04557 0.214844,-0.15625 0.09766,-0.117188 0.136719,-0.292969 0.01302,-0.07161 0.01953,-0.657552 v -5.950521 q 0,-0.390625 -0.07813,-0.559896 -0.07813,-0.169271 -0.221354,-0.240885 -0.136719,-0.07813 -0.481771,-0.07813 h -0.371094 z m 2.363282,0.7096356 v 3.417968 h 1.868489 q 0.950521,0 1.334635,-0.117187 0.546875,-0.15625 0.859375,-0.572917 0.319011,-0.416666 0.319011,-1.061198 0,-0.546875 -0.227865,-0.917968 -0.227864,-0.377604 -0.625,-0.559896 -0.390625,-0.188802 -1.171875,-0.188802 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:13.33333302px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path887"
inkscape:connector-curvature="0" />
<path
d="m 38.840264,9.7227194 h 3.502604 v 0.5533856 h -0.247396 q -0.429687,0 -0.605468,0.104166 -0.175782,0.104167 -0.247396,0.325521 -0.05859,0.162761 -0.05859,0.533854 v 3.43099 l 3.411458,-3.613281 q 0.266927,-0.286459 0.3125,-0.371094 0.05208,-0.08464 0.05208,-0.175781 0,-0.117188 -0.117188,-0.175781 -0.110677,-0.05859 -0.488281,-0.05859 H 44.146253 V 9.7227194 h 3.255209 v 0.5533856 q -0.384115,-0.0065 -0.696615,0.08464 -0.3125,0.09115 -0.494792,0.227865 -0.397135,0.292969 -0.566406,0.46875 l -2.434896,2.493489 2.779948,3.684896 q 0.377604,0.501302 0.598959,0.690104 0.221354,0.182292 0.455729,0.260417 0.234375,0.07161 0.729166,0.07161 v 0.546875 h -3.854166 v -0.546875 h 0.227864 q 0.384115,0 0.45573,-0.01953 0.110677,-0.02604 0.175781,-0.104166 0.0651,-0.07813 0.0651,-0.162761 0,-0.169271 -0.449219,-0.774739 l -2.050781,-2.786459 -1.158854,1.197917 v 1.738281 q 0,0.449219 0.09115,0.611979 0.09115,0.162761 0.279948,0.240886 0.149739,0.05859 0.78776,0.05859 v 0.546875 h -3.502604 v -0.546875 h 0.273437 q 0.410157,0 0.559896,-0.07813 0.14974,-0.08463 0.227865,-0.273437 0.08463,-0.188802 0.08463,-0.670573 V 11.23964 q 0,-0.47526 -0.07813,-0.644531 -0.07813,-0.175781 -0.227864,-0.247396 -0.14974,-0.07161 -0.638021,-0.07161 h -0.201823 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:13.33333302px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path889"
inkscape:connector-curvature="0" />
<path
d="M 48.410576,10.276105 V 9.7227194 h 3.242188 q 2.226562,0 3.105469,0.2799476 1.295572,0.410157 2.102864,1.529948 0.891927,1.236979 0.891927,2.845052 0,1.09375 -0.442708,2.037761 -0.436198,0.9375 -1.152344,1.510416 -0.592448,0.481771 -1.425781,0.683594 -0.833333,0.195312 -1.679688,0.195312 h -4.641927 v -0.546875 h 0.377605 l 0.123698,0.0065 q 0.240885,0 0.390625,-0.09766 0.15625,-0.09766 0.221354,-0.260417 0.04557,-0.123698 0.04557,-0.572917 v -6.074218 q 0,-0.514323 -0.06511,-0.664063 -0.09114,-0.201823 -0.292968,-0.279948 -0.117188,-0.03906 -0.800782,-0.03906 z m 2.369792,7.82552 h 1.966146 q 0.292969,0 0.970052,-0.104166 0.683594,-0.104167 0.976562,-0.253906 0.429688,-0.221355 0.833334,-0.709636 0.403646,-0.494792 0.618489,-1.178385 0.221354,-0.690104 0.221354,-1.575521 0,-0.878906 -0.221354,-1.523437 -0.214843,-0.644532 -0.657552,-1.158855 -0.436198,-0.514323 -0.976562,-0.78125 -0.533854,-0.273437 -1.197917,-0.345052 -0.358073,-0.03255 -1.197917,-0.03255 h -1.334635 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:13.33333302px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path891"
inkscape:connector-curvature="0" />
</g>
</svg>

+ 945
- 0
plugins/community/repos/Ohmer/res/RKDBRK.svg View File

@@ -0,0 +1,945 @@
<?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"
id="svg8"
viewBox="0 0 120 380"
version="1.1"
sodipodi:docname="RKDBRK.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
width="120"
height="380">
<title
id="title836">Rotating Clock Divider with BO (RCDBO)</title>
<metadata
id="metadata39">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Rotating Clock Divider with BO (RCDBO)</dc:title>
<cc:license
rdf:resource="" />
<dc:description />
</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="1920"
inkscape:window-height="1058"
id="namedview37"
showgrid="false"
inkscape:zoom="5.5473684"
inkscape:cx="47.614386"
inkscape:cy="190.18967"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg8"
showguides="true"
inkscape:guide-bbox="true" />
<defs
id="defs4">
<marker
inkscape:stockid="Arrow2Lend"
orient="auto"
refY="0.0"
refX="0.0"
id="Arrow2Lend"
style="overflow:visible;"
inkscape:isstock="true">
<path
id="path1436"
style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="scale(1.1) rotate(180) translate(1,0)" />
</marker>
<style
id="style2">.cls-1{fill:#ab2d2d;}.cls-2{fill:#952d2d;}.cls-3{fill:#251e1e;}.cls-4{fill:#fff7d4;}.cls-5{fill:#202020;}</style>
</defs>
<rect
style="opacity:1;vector-effect:none;fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:0.68849927;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="ModuleLayer"
width="60"
height="380"
x="0"
y="0" />
<g
id="g836"
transform="translate(0,-10)">
<g
transform="translate(13.523767,-1.032314)"
id="text17"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#d20f00;fill-opacity:1;stroke:none"
aria-label="Ω">
<path
inkscape:connector-curvature="0"
d="m 7.2553434,372.35199 v -4.27083 h 3.0208336 q -3.1380211,-2.04427 -3.1380211,-5.58594 0,-3.52865 2.3828125,-5.9375 2.3958336,-2.42188 5.8984376,-2.42188 3.489583,0 5.872395,2.42188 2.395834,2.40885 2.395834,5.9375 0,3.54167 -3.151042,5.58594 h 3.033854 v 4.27083 h -7.330729 v -3.93229 q 2.513021,-1.22396 2.513021,-5.19531 0,-4.8698 -3.346354,-4.8698 -3.333333,0 -3.333333,4.84375 0,4.01042 2.5,5.22136 v 3.93229 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66666603px;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d20f00;fill-opacity:1"
id="path13" />
</g>
<path
inkscape:connector-curvature="0"
d="m 32.85839,368.84168 h -1.175782 l -0.683593,3.42709 -0.209636,1.23958 q 0,0.48307 0.929688,0.54688 l 0.164062,0.009 -0.173177,0.84766 h -5.395833 l 0.164063,-0.84766 0.173177,-0.009 q 0.957031,-0.0638 1.148437,-0.27344 0.200521,-0.21875 0.501302,-1.51302 l 1.63151,-8.21224 q 0.08203,-0.48307 0.191407,-1.17578 0,-0.52865 -1.121094,-0.61068 l -0.173177,-0.009 0.173177,-0.83855 h 4.046875 l 2.351562,-0.0638 q 1.822917,0 2.725261,0.66537 0.911458,0.65625 0.911458,1.98698 0,1.43099 -0.957031,2.63411 -0.947917,1.20313 -2.606771,1.8776 l 1.768229,3.73698 q 0.65625,1.3125 0.847656,1.54037 0.191407,0.21875 0.710938,0.25521 l 0.164062,0.009 -0.164062,0.84766 h -3.308594 z m -0.99349,-0.90234 h 0.610677 q 1.686198,0 2.72526,-0.99349 1.039063,-1.0026 1.039063,-2.63411 0,-1.00261 -0.574219,-1.49479 -0.574219,-0.50131 -1.731771,-0.50131 h -0.947916 z"
style="font-style:italic;font-variant:normal;font-weight:600;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Lucida Bright';-inkscape-font-specification:'Lucida Bright, Semi-Bold Italic';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#6a0a0a;stroke-width:0.60000002;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3707" />
</g>
<rect
ry="13.141245"
rx="9.8609915"
y="64.957512"
x="1.2469749"
height="26.28249"
width="57.50605"
id="rect854"
style="display:inline;fill:#d2d2cd;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<rect
style="fill:#ea482e;fill-opacity:1;stroke:#000000;stroke-width:1.99424803;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="rect856"
width="57.511753"
height="26.287752"
x="1.2441254"
y="94.955124"
rx="9.861969"
ry="13.143876" />
<rect
ry="13.141244"
rx="9.8610001"
y="124.95757"
x="1.2469482"
height="26.282488"
width="57.5061"
id="rect858"
style="fill:#f18b31;fill-opacity:1;stroke:#000000;stroke-width:1.99990201;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<rect
style="fill:#faf027;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="rect860"
width="57.5061"
height="26.282488"
x="1.2469482"
y="154.95757"
rx="9.8610001"
ry="13.141244" />
<rect
style="fill:#81c341;fill-opacity:1;stroke:#000000;stroke-width:1.99990201;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="rect862"
width="57.5061"
height="26.282488"
x="1.2469482"
y="184.95757"
rx="9.8610001"
ry="13.141244" />
<rect
ry="13.143876"
rx="9.861969"
y="214.95512"
x="1.2441254"
height="26.287752"
width="57.511753"
id="rect864"
style="fill:#00a651;fill-opacity:1;stroke:#000000;stroke-width:1.99424803;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<rect
ry="13.141244"
rx="9.8610001"
y="244.95752"
x="1.2469482"
height="26.282488"
width="57.5061"
id="rect875"
style="fill:#216bb4;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<rect
ry="13.143876"
rx="9.861969"
y="274.95511"
x="1.2441254"
height="26.287752"
width="57.511753"
id="rect881"
style="fill:#8c55a3;fill-opacity:1;stroke:#000000;stroke-width:1.99424803;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<rect
style="fill:#e9eaeb;fill-opacity:1;stroke:#000000;stroke-width:1.99990201;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="rect883"
width="57.5061"
height="26.282488"
x="1.2469482"
y="304.95755"
rx="9.8610001"
ry="13.141244" />
<g
aria-label="ROTATE"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text839"
transform="translate(0.199652)">
<path
d="m 5.7013485,32.141998 q -0.024,-0.084 -0.048,-0.156 -0.024,-0.072 -0.048,-0.18 -0.012,-0.108 -0.024,-0.276 0,-0.168 0,-0.42 v -1.32 q 0,-0.588 -0.204,-0.828 -0.204,-0.24 -0.66,-0.24 h -0.456 v 3.42 h -1.32 v -8.4 h 1.992 q 1.032,0 1.488,0.48 0.468,0.48 0.468,1.452 v 0.66 q 0,1.296 -0.864,1.704 0.504,0.204 0.684,0.672 0.192,0.456 0.192,1.116 v 1.296 q 0,0.312 0.024,0.552 0.024,0.228 0.12,0.468 z m -1.44,-7.2 v 2.58 h 0.516 q 0.372,0 0.576,-0.192 0.216,-0.192 0.216,-0.696 v -0.828 q 0,-0.456 -0.168,-0.66 -0.156,-0.204 -0.504,-0.204 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path845"
inkscape:connector-curvature="0" />
<path
d="m 8.9814735,30.209998 q 0,0.456 0.18,0.648 0.192,0.18 0.504,0.18 0.312,0 0.4920005,-0.18 0.192,-0.192 0.192,-0.648 v -4.536 q 0,-0.456 -0.192,-0.636 -0.1800005,-0.192 -0.4920005,-0.192 -0.312,0 -0.504,0.192 -0.18,0.18 -0.18,0.636 z m -1.32,-4.452 q 0,-1.02 0.516,-1.56 0.516,-0.552 1.488,-0.552 0.9720005,0 1.4880005,0.552 0.516,0.54 0.516,1.56 v 4.368 q 0,1.02 -0.516,1.572 -0.516,0.54 -1.4880005,0.54 -0.972,0 -1.488,-0.54 -0.516,-0.552 -0.516,-1.572 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path847"
inkscape:connector-curvature="0" />
<path
d="m 12.167286,23.741998 h 4.08 v 1.2 h -1.38 v 7.2 h -1.32 v -7.2 h -1.38 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path849"
inkscape:connector-curvature="0" />
<path
d="m 20.666474,32.141998 h -1.332 l -0.228,-1.524 h -1.62 l -0.228,1.524 h -1.212 l 1.344,-8.4 h 1.932 z m -3.012,-2.664 h 1.272 l -0.636,-4.248 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path851"
inkscape:connector-curvature="0" />
<path
d="m 20.909474,23.741998 h 4.08 v 1.2 h -1.38 v 7.2 h -1.32 v -7.2 h -1.38 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path853"
inkscape:connector-curvature="0" />
<path
d="m 26.901974,27.281998 h 1.812 v 1.2 h -1.812 v 2.46 h 2.28 v 1.2 h -3.6 v -8.4 h 3.6 v 1.2 h -2.28 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path855"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="RESET"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text843"
transform="translate(-0.199908)">
<path
d="m 38.420908,32.142372 q -0.024,-0.084 -0.048,-0.156 -0.024,-0.072 -0.048,-0.18 -0.012,-0.108 -0.024,-0.276 0,-0.168 0,-0.42 v -1.32 q 0,-0.588 -0.204,-0.828 -0.204,-0.24 -0.66,-0.24 h -0.456 v 3.42 h -1.32 v -8.4 h 1.992 q 1.032,0 1.488,0.48 0.468,0.48 0.468,1.452 v 0.66 q 0,1.296 -0.864,1.704 0.504,0.204 0.684,0.672 0.192,0.456 0.192,1.116 v 1.296 q 0,0.312 0.024,0.552 0.024,0.228 0.12,0.468 z m -1.44,-7.2 v 2.58 h 0.516 q 0.372,0 0.576,-0.192 0.216,-0.192 0.216,-0.696 v -0.828 q 0,-0.456 -0.168,-0.66 -0.156,-0.204 -0.504,-0.204 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path858"
inkscape:connector-curvature="0" />
<path
d="m 41.809033,27.282372 h 1.812 v 1.2 h -1.812 v 2.46 h 2.28 v 1.2 h -3.6 v -8.4 h 3.6 v 1.2 h -2.28 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path860"
inkscape:connector-curvature="0" />
<path
d="m 44.727283,25.758372 q 0,-1.02 0.48,-1.56 0.492,-0.552 1.464,-0.552 0.972,0 1.452,0.552 0.492,0.54 0.492,1.56 v 0.324 h -1.248 v -0.408 q 0,-0.456 -0.18,-0.636 -0.168,-0.192 -0.48,-0.192 -0.312,0 -0.492,0.192 -0.168,0.18 -0.168,0.636 0,0.432 0.192,0.768 0.192,0.324 0.48,0.624 0.288,0.288 0.612,0.588 0.336,0.288 0.624,0.636 0.288,0.348 0.48,0.792 0.192,0.444 0.192,1.044 0,1.02 -0.504,1.572 -0.492,0.54 -1.464,0.54 -0.972,0 -1.476,-0.54 -0.492,-0.552 -0.492,-1.572 v -0.576 h 1.248 v 0.66 q 0,0.456 0.18,0.636 0.192,0.18 0.504,0.18 0.312,0 0.492,-0.18 0.192,-0.18 0.192,-0.636 0,-0.432 -0.192,-0.756 -0.192,-0.336 -0.48,-0.624 -0.288,-0.3 -0.624,-0.588 -0.324,-0.3 -0.612,-0.648 -0.288,-0.348 -0.48,-0.792 -0.192,-0.444 -0.192,-1.044 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path862"
inkscape:connector-curvature="0" />
<path
d="m 50.691846,27.282372 h 1.812 v 1.2 h -1.812 v 2.46 h 2.28 v 1.2 h -3.6 v -8.4 h 3.6 v 1.2 h -2.28 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path864"
inkscape:connector-curvature="0" />
<path
d="m 53.418096,23.742372 h 4.08 v 1.2 h -1.38 v 7.2 h -1.32 v -7.2 h -1.38 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path866"
inkscape:connector-curvature="0" />
</g>
<circle
style="fill:#010101;fill-opacity:1;stroke:none;stroke-width:0.62614173;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="path848"
cx="8.1997528"
cy="78.098755"
r="5.7997518" />
<circle
r="5.7997518"
cy="108.09925"
cx="8.1997528"
id="circle850"
style="fill:#010101;fill-opacity:1;stroke:none;stroke-width:0.62614173;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<circle
style="fill:#010101;fill-opacity:1;stroke:none;stroke-width:0.62614173;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="circle852"
cx="8.1997528"
cy="138.09924"
r="5.7997518" />
<circle
r="5.7997518"
cy="168.09924"
cx="8.1997528"
id="circle854"
style="fill:#010101;fill-opacity:1;stroke:none;stroke-width:0.62614173;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<circle
style="fill:#010101;fill-opacity:1;stroke:none;stroke-width:0.62614173;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="circle856"
cx="8.1997528"
cy="198.09882"
r="5.7997518" />
<circle
r="5.7997518"
cy="228.099"
cx="8.1997528"
id="circle858"
style="fill:#010101;fill-opacity:1;stroke:none;stroke-width:0.62614173;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<circle
style="fill:#010101;fill-opacity:1;stroke:none;stroke-width:0.62614173;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="circle860"
cx="8.1997528"
cy="258.09875"
r="5.7997518" />
<circle
r="5.7997518"
cy="288.099"
cx="8.1997528"
id="circle862"
style="fill:#010101;fill-opacity:1;stroke:none;stroke-width:0.62614173;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<circle
style="fill:#010101;fill-opacity:1;stroke:none;stroke-width:0.62614173;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="circle864"
cx="8.1997528"
cy="318.09879"
r="5.7997518" />
<g
aria-label="CLK"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text860"
transform="translate(-1.09952)">
<path
d="m 21.484853,79.285427 v 1.24 q 0,1.133333 -0.56,1.746666 -0.546666,0.6 -1.626666,0.6 -1.08,0 -1.64,-0.6 Q 17.11152,81.65876 17.11152,80.525427 v -4.853334 q 0,-1.133333 0.546667,-1.733333 0.56,-0.613333 1.64,-0.613333 1.08,0 1.626666,0.613333 0.56,0.6 0.56,1.733333 v 0.906667 h -1.386666 v -1 q 0,-0.506667 -0.213334,-0.706667 -0.2,-0.213333 -0.546666,-0.213333 -0.346667,0 -0.56,0.213333 -0.2,0.2 -0.2,0.706667 v 5.04 q 0,0.506667 0.2,0.706667 0.213333,0.2 0.56,0.2 0.346666,0 0.546666,-0.2 0.213334,-0.2 0.213334,-0.706667 v -1.333333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path863"
inkscape:connector-curvature="0" />
<path
d="m 22.38777,73.432094 h 1.466667 v 7.999999 h 2.413333 v 1.333334 h -3.88 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path865"
inkscape:connector-curvature="0" />
<path
d="m 28.865061,79.045427 -0.453333,0.853333 v 2.866667 h -1.466667 v -9.333333 h 1.466667 v 4.066666 l 1.946666,-4.066666 h 1.44 l -2.04,4.159999 2.04,5.173334 h -1.506666 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path867"
inkscape:connector-curvature="0" />
</g>
<path
id="path927"
d="m 17.742112,99.74235 h 10.756083 c 1.962331,0 3.542113,1.48002 3.542113,3.31842 v 10.07681 c 0,1.83841 -1.579782,3.31842 -3.542113,3.31842 H 17.742112 C 15.779782,116.456 14.2,114.97599 14.2,113.13758 v -10.07681 c 0,-1.8384 1.579782,-3.31842 3.542112,-3.31842 z"
style="fill:#8b9055;fill-opacity:1;stroke:none;stroke-width:0.43798238;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
inkscape:connector-curvature="0" />
<path
id="path929"
d="m 18.321309,100.64235 h 9.59769 c 1.750995,0 3.16064,1.32063 3.16064,2.96104 v 8.99157 c 0,1.64042 -1.409645,2.96104 -3.16064,2.96104 h -9.59769 c -1.750995,0 -3.160639,-1.32062 -3.160639,-2.96104 v -8.99157 c 0,-1.64041 1.409644,-2.96104 3.160639,-2.96104 z"
style="fill:#0f1414;fill-opacity:1;stroke:none;stroke-width:0.39081317;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
style="fill:#8b9055;fill-opacity:1;stroke:none;stroke-width:0.43798238;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 17.742112,129.74235 h 10.756083 c 1.962331,0 3.542113,1.48002 3.542113,3.31842 v 10.07681 c 0,1.83841 -1.579782,3.31842 -3.542113,3.31842 H 17.742112 C 15.779782,146.456 14.2,144.97599 14.2,143.13758 v -10.07681 c 0,-1.8384 1.579782,-3.31842 3.542112,-3.31842 z"
id="path893" />
<path
inkscape:connector-curvature="0"
style="fill:#0f1414;fill-opacity:1;stroke:none;stroke-width:0.39081317;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 18.321309,130.64235 h 9.59769 c 1.750995,0 3.16064,1.32063 3.16064,2.96104 v 8.99157 c 0,1.64042 -1.409645,2.96104 -3.16064,2.96104 h -9.59769 c -1.750995,0 -3.160639,-1.32062 -3.160639,-2.96104 v -8.99157 c 0,-1.64041 1.409644,-2.96104 3.160639,-2.96104 z"
id="path895" />
<path
id="path899"
d="m 17.742112,159.74235 h 10.756083 c 1.962331,0 3.542113,1.48002 3.542113,3.31842 v 10.07681 c 0,1.83841 -1.579782,3.31842 -3.542113,3.31842 H 17.742112 C 15.779782,176.456 14.2,174.97599 14.2,173.13758 v -10.07681 c 0,-1.8384 1.579782,-3.31842 3.542112,-3.31842 z"
style="fill:#8b9055;fill-opacity:1;stroke:none;stroke-width:0.43798238;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
inkscape:connector-curvature="0" />
<path
id="path901"
d="m 18.321309,160.64235 h 9.59769 c 1.750995,0 3.16064,1.32063 3.16064,2.96104 v 8.99157 c 0,1.64042 -1.409645,2.96104 -3.16064,2.96104 h -9.59769 c -1.750995,0 -3.160639,-1.32062 -3.160639,-2.96104 v -8.99157 c 0,-1.64041 1.409644,-2.96104 3.160639,-2.96104 z"
style="fill:#0f1414;fill-opacity:1;stroke:none;stroke-width:0.39081317;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
style="fill:#8b9055;fill-opacity:1;stroke:none;stroke-width:0.43798238;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 17.742112,189.74235 h 10.756083 c 1.962331,0 3.542113,1.48002 3.542113,3.31842 v 10.07681 c 0,1.83841 -1.579782,3.31842 -3.542113,3.31842 H 17.742112 C 15.779782,206.456 14.2,204.97599 14.2,203.13758 v -10.07681 c 0,-1.8384 1.579782,-3.31842 3.542112,-3.31842 z"
id="path905" />
<path
inkscape:connector-curvature="0"
style="fill:#0f1414;fill-opacity:1;stroke:none;stroke-width:0.39081317;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 18.321309,190.64235 h 9.59769 c 1.750995,0 3.16064,1.32063 3.16064,2.96104 v 8.99157 c 0,1.64042 -1.409645,2.96104 -3.16064,2.96104 h -9.59769 c -1.750995,0 -3.160639,-1.32062 -3.160639,-2.96104 v -8.99157 c 0,-1.64041 1.409644,-2.96104 3.160639,-2.96104 z"
id="path907" />
<path
id="path911"
d="m 17.742112,219.74235 h 10.756083 c 1.962331,0 3.542113,1.48002 3.542113,3.31842 v 10.07681 c 0,1.83841 -1.579782,3.31842 -3.542113,3.31842 H 17.742112 C 15.779782,236.456 14.2,234.97599 14.2,233.13758 v -10.07681 c 0,-1.8384 1.579782,-3.31842 3.542112,-3.31842 z"
style="fill:#8b9055;fill-opacity:1;stroke:none;stroke-width:0.43798238;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
inkscape:connector-curvature="0" />
<path
id="path913"
d="m 18.321309,220.64235 h 9.59769 c 1.750995,0 3.16064,1.32063 3.16064,2.96104 v 8.99157 c 0,1.64042 -1.409645,2.96104 -3.16064,2.96104 h -9.59769 c -1.750995,0 -3.160639,-1.32062 -3.160639,-2.96104 v -8.99157 c 0,-1.64041 1.409644,-2.96104 3.160639,-2.96104 z"
style="fill:#0f1414;fill-opacity:1;stroke:none;stroke-width:0.39081317;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
style="fill:#8b9055;fill-opacity:1;stroke:none;stroke-width:0.43798238;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 17.742112,249.74235 h 10.756083 c 1.962331,0 3.542113,1.48002 3.542113,3.31842 v 10.07681 c 0,1.83841 -1.579782,3.31842 -3.542113,3.31842 H 17.742112 C 15.779782,266.456 14.2,264.97599 14.2,263.13758 v -10.07681 c 0,-1.8384 1.579782,-3.31842 3.542112,-3.31842 z"
id="path917" />
<path
inkscape:connector-curvature="0"
style="fill:#0f1414;fill-opacity:1;stroke:none;stroke-width:0.39081317;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 18.321309,250.64235 h 9.59769 c 1.750995,0 3.16064,1.32063 3.16064,2.96104 v 8.99157 c 0,1.64042 -1.409645,2.96104 -3.16064,2.96104 h -9.59769 c -1.750995,0 -3.160639,-1.32062 -3.160639,-2.96104 v -8.99157 c 0,-1.64041 1.409644,-2.96104 3.160639,-2.96104 z"
id="path919" />
<path
id="path923"
d="m 17.742112,279.74235 h 10.756083 c 1.962331,0 3.542113,1.48002 3.542113,3.31842 v 10.07681 c 0,1.83841 -1.579782,3.31842 -3.542113,3.31842 H 17.742112 C 15.779782,296.456 14.2,294.97599 14.2,293.13758 v -10.07681 c 0,-1.8384 1.579782,-3.31842 3.542112,-3.31842 z"
style="fill:#8b9055;fill-opacity:1;stroke:none;stroke-width:0.43798238;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
inkscape:connector-curvature="0" />
<path
id="path925"
d="m 18.321309,280.64235 h 9.59769 c 1.750995,0 3.16064,1.32063 3.16064,2.96104 v 8.99157 c 0,1.64042 -1.409645,2.96104 -3.16064,2.96104 h -9.59769 c -1.750995,0 -3.160639,-1.32062 -3.160639,-2.96104 v -8.99157 c 0,-1.64041 1.409644,-2.96104 3.160639,-2.96104 z"
style="fill:#0f1414;fill-opacity:1;stroke:none;stroke-width:0.39081317;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
style="fill:#8b9055;fill-opacity:1;stroke:none;stroke-width:0.43798238;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 17.742112,309.74235 h 10.756083 c 1.962331,0 3.542113,1.48002 3.542113,3.31842 v 10.07681 c 0,1.83841 -1.579782,3.31842 -3.542113,3.31842 H 17.742112 C 15.779782,326.456 14.2,324.97599 14.2,323.13758 v -10.07681 c 0,-1.8384 1.579782,-3.31842 3.542112,-3.31842 z"
id="path930" />
<path
inkscape:connector-curvature="0"
style="fill:#0f1414;fill-opacity:1;stroke:none;stroke-width:0.39081317;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 18.321309,310.64235 h 9.59769 c 1.750995,0 3.16064,1.32063 3.16064,2.96104 v 8.99157 c 0,1.64042 -1.409645,2.96104 -3.16064,2.96104 h -9.59769 c -1.750995,0 -3.160639,-1.32062 -3.160639,-2.96104 v -8.99157 c 0,-1.64041 1.409644,-2.96104 3.160639,-2.96104 z"
id="path932" />
<path
style="fill:none;stroke:#a9a9a7;stroke-width:0.95445096px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 60,-1e-6 V 380"
id="path888"
inkscape:connector-curvature="0" />
<rect
y="1.4477538e-007"
x="60"
height="380"
width="60"
id="rect935"
style="opacity:1;vector-effect:none;fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:0.68849927;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<g
aria-label="BRK"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text1005">
<path
d="m 89.211362,9.7227213 h 4.316406 q 1.582032,0 2.167969,0.1432292 0.865885,0.2083335 1.367188,0.7552085 0.507812,0.546875 0.507812,1.315104 0,0.553385 -0.266927,0.996094 -0.266927,0.436198 -0.77474,0.748698 -0.32552,0.201822 -0.885416,0.345052 0.709635,0.130208 1.080729,0.3125 0.559896,0.273437 0.885416,0.78125 0.325521,0.507812 0.325521,1.145833 0,0.618489 -0.31901,1.145833 -0.319011,0.527344 -0.904948,0.865886 -0.579427,0.338541 -1.354167,0.436198 -0.774739,0.09115 -1.595052,0.09115 h -4.550781 v -0.546875 h 0.30599 q 0.442708,0 0.605469,-0.136718 0.234374,-0.188802 0.234374,-0.625 V 11.18757 q 0,-0.442708 -0.07161,-0.605469 -0.07161,-0.16276 -0.214844,-0.234375 -0.143229,-0.07161 -0.553385,-0.07161 h -0.30599 z m 2.363281,0.7226567 V 13.7722 H 93.2348 q 1.165364,0 1.595052,-0.110677 0.670573,-0.175781 1.022135,-0.598958 0.358073,-0.423177 0.358073,-1.08724 0,-0.559895 -0.325521,-0.930989 -0.31901,-0.377604 -0.859375,-0.514323 -0.351562,-0.08464 -1.458333,-0.08464 z m 0,3.951822 v 2.981771 q 0,0.449219 0.03906,0.533854 0.05208,0.117188 0.208333,0.162761 0.110677,0.03255 0.625,0.03255 h 0.885417 q 1.315104,0 1.875,-0.143229 0.566406,-0.14974 0.963541,-0.61849 0.397136,-0.47526 0.397136,-1.139323 0,-0.559896 -0.325521,-0.989583 -0.31901,-0.436198 -0.891927,-0.625 Q 94.784279,14.3972 93.332456,14.3972 Z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:13.33333302px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1007"
inkscape:connector-curvature="0" />
<path
d="m 99.18532,9.7227213 h 4.6875 q 1.33464,0 2.01823,0.2799477 0.68359,0.273438 1.04818,0.800781 0.37109,0.520834 0.37109,1.210938 0,0.709635 -0.35807,1.263021 -0.35808,0.546875 -1.03516,0.865885 -0.67057,0.3125 -1.78385,0.325521 l 2.39583,2.929687 q 0.29297,0.364584 0.38411,0.449219 0.22787,0.201823 0.47526,0.30599 0.25391,0.104166 0.56641,0.104166 h 0.16276 v 0.546875 h -2.07031 l -3.33333,-4.335937 h -1.16537 v 2.799479 q 0,0.46875 0.0326,0.585938 0.0716,0.221354 0.22787,0.3125 0.16276,0.09115 0.625,0.09115 h 0.23437 v 0.546875 h -3.48307 v -0.546875 h 0.3125 q 0.351562,0 0.46875,-0.04557 0.1237,-0.04557 0.21484,-0.15625 0.0977,-0.117187 0.13672,-0.292968 0.013,-0.07162 0.0195,-0.657552 v -5.950521 q 0,-0.390625 -0.0781,-0.559896 -0.0781,-0.169271 -0.22136,-0.240885 -0.136714,-0.07813 -0.481766,-0.07813 H 99.18532 Z m 2.36328,0.7096357 v 3.417968 h 1.86849 q 0.95052,0 1.33464,-0.117187 0.54687,-0.15625 0.85937,-0.572917 0.31901,-0.416666 0.31901,-1.061198 0,-0.546875 -0.22786,-0.917968 -0.22787,-0.377605 -0.625,-0.559896 -0.39063,-0.188802 -1.17188,-0.188802 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:13.33333302px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1009"
inkscape:connector-curvature="0" />
<path
d="m 108.82074,9.7227213 h 3.5026 v 0.5533857 h -0.2474 q -0.42968,0 -0.60546,0.104166 -0.17579,0.104167 -0.2474,0.325521 -0.0586,0.162761 -0.0586,0.533854 v 3.43099 l 3.41145,-3.613281 q 0.26693,-0.286459 0.3125,-0.371094 0.0521,-0.08464 0.0521,-0.175781 0,-0.117188 -0.11719,-0.175782 -0.11068,-0.05859 -0.48828,-0.05859 h -0.20833 V 9.7227213 h 3.2552 v 0.5533857 q -0.38411,-0.0065 -0.69661,0.08464 -0.3125,0.09115 -0.49479,0.227865 -0.39714,0.292968 -0.56641,0.46875 l -2.43489,2.493489 2.77994,3.684896 q 0.37761,0.501302 0.59896,0.690104 0.22136,0.182292 0.45573,0.260417 0.23438,0.07161 0.72917,0.07161 v 0.546875 h -3.85417 v -0.546875 h 0.22787 q 0.38411,0 0.45573,-0.01953 0.11067,-0.02604 0.17578,-0.104167 0.0651,-0.07813 0.0651,-0.16276 0,-0.169271 -0.44922,-0.77474 l -2.05078,-2.786458 -1.15885,1.197917 v 1.738281 q 0,0.449219 0.0911,0.611979 0.0911,0.162761 0.27995,0.240886 0.14974,0.05859 0.78776,0.05859 v 0.546875 h -3.5026 v -0.546875 h 0.27343 q 0.41016,0 0.5599,-0.07813 0.14974,-0.08464 0.22786,-0.273437 0.0846,-0.188802 0.0846,-0.670573 v -5.996094 q 0,-0.47526 -0.0781,-0.644531 -0.0781,-0.175781 -0.22786,-0.247396 -0.14974,-0.07161 -0.63802,-0.07161 h -0.20182 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:13.33333302px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1011"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="AUTO-RESET"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text1055"
transform="translate(60,1.162012)">
<path
d="M 10.607708,343.15799 H 9.1277077 L 8.8743743,341.46466 H 7.0743744 l -0.2533333,1.69333 H 5.4743744 l 1.4933333,-9.33333 h 2.1466666 z m -3.3466669,-2.96 h 1.4133333 l -0.7066667,-4.72 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1057"
inkscape:connector-curvature="0" />
<path
d="m 12.677708,333.82466 v 7.2 q 0,0.50666 0.2,0.70666 0.213333,0.2 0.56,0.2 0.346666,0 0.546666,-0.2 0.213334,-0.2 0.213334,-0.70666 v -7.2 h 1.386666 v 7.10666 q 0,1.13334 -0.56,1.74667 -0.546666,0.6 -1.626666,0.6 -1.08,0 -1.64,-0.6 -0.546667,-0.61333 -0.546667,-1.74667 v -7.10666 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1059"
inkscape:connector-curvature="0" />
<path
d="m 16.190207,333.82466 h 4.533333 v 1.33333 h -1.533333 v 8 H 17.72354 v -8 h -1.533333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1061"
inkscape:connector-curvature="0" />
<path
d="m 22.728541,341.01132 q 0,0.50667 0.2,0.72 0.213333,0.2 0.56,0.2 0.346666,0 0.546666,-0.2 0.213334,-0.21333 0.213334,-0.72 v -5.04 q 0,-0.50666 -0.213334,-0.70666 -0.2,-0.21334 -0.546666,-0.21334 -0.346667,0 -0.56,0.21334 -0.2,0.2 -0.2,0.70666 z m -1.466667,-4.94666 q 0,-1.13334 0.573333,-1.73334 0.573334,-0.61333 1.653334,-0.61333 1.08,0 1.653333,0.61333 0.573333,0.6 0.573333,1.73334 v 4.85333 q 0,1.13333 -0.573333,1.74667 -0.573333,0.6 -1.653333,0.6 -1.08,0 -1.653334,-0.6 -0.573333,-0.61334 -0.573333,-1.74667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1063"
inkscape:connector-curvature="0" />
<path
d="m 26.601665,337.82466 h 2.666667 v 1.33333 h -2.666667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1065"
inkscape:connector-curvature="0" />
<path
d="m 33.328749,343.15799 q -0.02667,-0.0933 -0.05333,-0.17333 -0.02667,-0.08 -0.05333,-0.2 -0.01333,-0.12 -0.02667,-0.30667 0,-0.18667 0,-0.46667 v -1.46666 q 0,-0.65334 -0.226666,-0.92 -0.226667,-0.26667 -0.733334,-0.26667 h -0.506666 v 3.8 h -1.466667 v -9.33333 h 2.213333 q 1.146667,0 1.653334,0.53333 0.52,0.53333 0.52,1.61333 v 0.73334 q 0,1.44 -0.96,1.89333 0.56,0.22667 0.76,0.74667 0.213333,0.50666 0.213333,1.24 v 1.44 q 0,0.34666 0.02667,0.61333 0.02667,0.25333 0.133333,0.52 z m -1.6,-8 v 2.86667 h 0.573333 q 0.413333,0 0.64,-0.21334 0.24,-0.21333 0.24,-0.77333 v -0.92 q 0,-0.50667 -0.186667,-0.73333 -0.173333,-0.22667 -0.56,-0.22667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1067"
inkscape:connector-curvature="0" />
<path
d="m 37.093333,337.75799 h 2.013333 v 1.33333 h -2.013333 v 2.73334 h 2.533333 v 1.33333 h -4 v -9.33333 h 4 v 1.33333 h -2.533333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1069"
inkscape:connector-curvature="0" />
<path
d="m 40.335831,336.06466 q 0,-1.13334 0.533334,-1.73334 0.546666,-0.61333 1.626666,-0.61333 1.08,0 1.613334,0.61333 0.546666,0.6 0.546666,1.73334 v 0.36 h -1.386666 v -0.45334 q 0,-0.50666 -0.2,-0.70666 -0.186667,-0.21334 -0.533334,-0.21334 -0.346666,0 -0.546666,0.21334 -0.186667,0.2 -0.186667,0.70666 0,0.48 0.213333,0.85334 0.213334,0.36 0.533334,0.69333 0.32,0.32 0.68,0.65333 0.373333,0.32 0.693333,0.70667 0.32,0.38667 0.533333,0.88 0.213334,0.49333 0.213334,1.16 0,1.13333 -0.56,1.74667 -0.546667,0.6 -1.626667,0.6 -1.08,0 -1.64,-0.6 -0.546667,-0.61334 -0.546667,-1.74667 v -0.64 h 1.386667 v 0.73333 q 0,0.50667 0.2,0.70667 0.213333,0.2 0.56,0.2 0.346667,0 0.546667,-0.2 0.213333,-0.2 0.213333,-0.70667 0,-0.48 -0.213333,-0.84 -0.213334,-0.37333 -0.533334,-0.69333 -0.32,-0.33333 -0.693333,-0.65333 -0.36,-0.33334 -0.68,-0.72 -0.32,-0.38667 -0.533333,-0.88 -0.213334,-0.49334 -0.213334,-1.16 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1071"
inkscape:connector-curvature="0" />
<path
d="m 46.963122,337.75799 h 2.013333 v 1.33333 h -2.013333 v 2.73334 h 2.533333 v 1.33333 h -4 v -9.33333 h 4 v 1.33333 h -2.533333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1073"
inkscape:connector-curvature="0" />
<path
d="m 49.992291,333.82466 h 4.533333 v 1.33333 h -1.533333 v 8 h -1.466667 v -8 h -1.533333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1075"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="SPREAD"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text1080"
transform="translate(60,1.162682)">
<path
d="m 14.834792,288.07732 q 0,-1.13333 0.533333,-1.73333 0.546666,-0.61334 1.626666,-0.61334 1.08,0 1.613334,0.61334 0.546666,0.6 0.546666,1.73333 v 0.36 h -1.386666 v -0.45333 q 0,-0.50667 -0.2,-0.70667 -0.186667,-0.21333 -0.533334,-0.21333 -0.346666,0 -0.546666,0.21333 -0.186667,0.2 -0.186667,0.70667 0,0.48 0.213333,0.85333 0.213334,0.36 0.533334,0.69333 0.32,0.32 0.68,0.65334 0.373333,0.32 0.693333,0.70666 0.32,0.38667 0.533333,0.88 0.213334,0.49334 0.213334,1.16 0,1.13334 -0.56,1.74667 -0.546667,0.6 -1.626667,0.6 -1.08,0 -1.64,-0.6 -0.546666,-0.61333 -0.546666,-1.74667 v -0.64 h 1.386666 v 0.73334 q 0,0.50666 0.2,0.70666 0.213333,0.2 0.56,0.2 0.346667,0 0.546667,-0.2 0.213333,-0.2 0.213333,-0.70666 0,-0.48 -0.213333,-0.84 -0.213334,-0.37334 -0.533334,-0.69334 -0.32,-0.33333 -0.693333,-0.65333 -0.36,-0.33333 -0.68,-0.72 -0.32,-0.38667 -0.533333,-0.88 -0.213333,-0.49333 -0.213333,-1.16 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1082"
inkscape:connector-curvature="0" />
<path
d="m 22.155416,285.83732 q 1.106667,0 1.64,0.58667 0.546667,0.58666 0.546667,1.72 v 1.21333 q 0,1.13333 -0.546667,1.72 -0.533333,0.58667 -1.64,0.58667 h -0.693333 v 3.50666 h -1.466667 v -9.33333 z m -0.693333,1.33333 v 3.16 h 0.693333 q 0.346667,0 0.533333,-0.18666 0.186667,-0.18667 0.186667,-0.69334 v -1.4 q 0,-0.50666 -0.186667,-0.69333 -0.186666,-0.18667 -0.533333,-0.18667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1084"
inkscape:connector-curvature="0" />
<path
d="m 28.088125,295.17065 q -0.02667,-0.0933 -0.05333,-0.17333 -0.02667,-0.08 -0.05333,-0.2 -0.01333,-0.12 -0.02667,-0.30667 0,-0.18666 0,-0.46666 v -1.46667 q 0,-0.65333 -0.226666,-0.92 -0.226667,-0.26667 -0.733334,-0.26667 h -0.506666 v 3.8 h -1.466667 v -9.33333 h 2.213333 q 1.146667,0 1.653334,0.53333 0.52,0.53334 0.52,1.61334 v 0.73333 q 0,1.44 -0.96,1.89333 0.56,0.22667 0.76,0.74667 0.213333,0.50667 0.213333,1.24 v 1.44 q 0,0.34667 0.02667,0.61333 0.02667,0.25334 0.133333,0.52 z m -1.6,-8 v 2.86667 h 0.573333 q 0.413333,0 0.64,-0.21333 0.24,-0.21334 0.24,-0.77334 v -0.92 q 0,-0.50666 -0.186667,-0.73333 -0.173333,-0.22667 -0.56,-0.22667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1086"
inkscape:connector-curvature="0" />
<path
d="m 31.852707,289.77065 h 2.013333 v 1.33334 h -2.013333 v 2.73333 h 2.533333 v 1.33333 h -4 v -9.33333 h 4 v 1.33333 h -2.533333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1088"
inkscape:connector-curvature="0" />
<path
d="m 40.028541,295.17065 h -1.48 l -0.253334,-1.69333 h -1.799999 l -0.253334,1.69333 h -1.346666 l 1.493333,-9.33333 h 2.146666 z m -3.346667,-2.96 h 1.413333 l -0.706666,-4.72 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1090"
inkscape:connector-curvature="0" />
<path
d="m 40.69854,285.83732 h 2.32 q 1.106667,0 1.64,0.58667 0.546667,0.58666 0.546667,1.72 v 4.72 q 0,1.13333 -0.546667,1.72 -0.533333,0.58666 -1.64,0.58666 h -2.32 z m 1.466667,1.33333 v 6.66667 h 0.826667 q 0.346666,0 0.546666,-0.2 0.2,-0.2 0.2,-0.70667 v -4.85333 q 0,-0.50667 -0.2,-0.70667 -0.2,-0.2 -0.546666,-0.2 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1092"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="COUNTING"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text1097"
transform="translate(60,1.200002)">
<path
d="M 14.947084,99.640003 V 100.88 q 0,1.13334 -0.56,1.74667 -0.546667,0.6 -1.626667,0.6 -1.079999,0 -1.639999,-0.6 -0.546667,-0.61333 -0.546667,-1.74667 v -4.85333 q 0,-1.133334 0.546667,-1.733334 0.56,-0.613333 1.639999,-0.613333 1.08,0 1.626667,0.613333 0.56,0.6 0.56,1.733334 v 0.906666 h -1.386667 v -1 q 0,-0.506666 -0.213333,-0.706666 -0.2,-0.213334 -0.546667,-0.213334 -0.346666,0 -0.559999,0.213334 -0.2,0.2 -0.2,0.706666 v 5.040004 q 0,0.50666 0.2,0.70666 0.213333,0.2 0.559999,0.2 0.346667,0 0.546667,-0.2 0.213333,-0.2 0.213333,-0.70666 v -1.333337 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1099"
inkscape:connector-curvature="0" />
<path
d="m 17.196668,100.97334 q 0,0.50666 0.2,0.72 0.213333,0.2 0.559999,0.2 0.346667,0 0.546667,-0.2 0.213333,-0.21334 0.213333,-0.72 v -5.040004 q 0,-0.506666 -0.213333,-0.706666 -0.2,-0.213334 -0.546667,-0.213334 -0.346666,0 -0.559999,0.213334 -0.2,0.2 -0.2,0.706666 z m -1.466667,-4.94667 q 0,-1.133334 0.573333,-1.733334 0.573334,-0.613333 1.653333,-0.613333 1.08,0 1.653334,0.613333 0.573333,0.6 0.573333,1.733334 V 100.88 q 0,1.13334 -0.573333,1.74667 -0.573334,0.6 -1.653334,0.6 -1.079999,0 -1.653333,-0.6 -0.573333,-0.61333 -0.573333,-1.74667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1101"
inkscape:connector-curvature="0" />
<path
d="m 22.536459,93.78667 v 7.2 q 0,0.50667 0.2,0.70667 0.213333,0.2 0.56,0.2 0.346666,0 0.546666,-0.2 0.213334,-0.2 0.213334,-0.70667 v -7.2 h 1.386666 v 7.10667 q 0,1.13333 -0.56,1.74666 -0.546666,0.6 -1.626666,0.6 -1.08,0 -1.64,-0.6 -0.546667,-0.61333 -0.546667,-1.74666 v -7.10667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1103"
inkscape:connector-curvature="0" />
<path
d="M 27.755626,96.360003 V 103.12 h -1.32 v -9.33333 h 1.84 l 1.506666,5.586666 V 93.78667 h 1.306667 V 103.12 h -1.506667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1105"
inkscape:connector-curvature="0" />
<path
d="m 31.752083,93.78667 h 4.533333 v 1.333333 H 34.752083 V 103.12 h -1.466667 v -7.999997 h -1.533333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1107"
inkscape:connector-curvature="0" />
<path
d="m 36.943751,93.78667 h 1.466667 V 103.12 h -1.466667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1109"
inkscape:connector-curvature="0" />
<path
d="M 40.776459,96.360003 V 103.12 h -1.32 v -9.33333 h 1.84 l 1.506666,5.586666 V 93.78667 h 1.306667 V 103.12 h -1.506667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1111"
inkscape:connector-curvature="0" />
<path
d="m 47.372915,97.920003 h 2.053333 V 100.88 q 0,1.13334 -0.56,1.74667 -0.546666,0.6 -1.626666,0.6 -1.08,0 -1.64,-0.6 -0.546667,-0.61333 -0.546667,-1.74667 v -4.85333 q 0,-1.133334 0.546667,-1.733334 0.56,-0.613333 1.64,-0.613333 1.08,0 1.626666,0.613333 0.56,0.6 0.56,1.733334 v 0.906666 h -1.386666 v -1 q 0,-0.506666 -0.213334,-0.706666 -0.2,-0.213334 -0.546666,-0.213334 -0.346667,0 -0.56,0.213334 -0.2,0.2 -0.2,0.706666 v 5.040004 q 0,0.50666 0.2,0.70666 0.213333,0.2 0.56,0.2 0.346666,0 0.546666,-0.2 0.213334,-0.2 0.213334,-0.70666 v -1.720004 h -0.666667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1113"
inkscape:connector-curvature="0" />
</g>
<rect
style="fill:#ea482e;fill-opacity:1;stroke:#000000;stroke-width:2.06933308;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="rect911"
width="56.596321"
height="31.254667"
x="61.701843"
y="61.390659" />
<rect
y="109.39067"
x="61.701843"
height="31.254667"
width="56.596321"
id="rect913"
style="fill:#ea482e;fill-opacity:1;stroke:#000000;stroke-width:2.06933308;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<rect
y="157.96298"
x="61.701843"
height="78.682381"
width="56.596321"
id="rect917"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:3.28330827;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<rect
style="fill:#216bcd;fill-opacity:1;stroke:#000000;stroke-width:2.07055593;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="rect919"
width="56.66544"
height="31.253445"
x="61.667282"
y="253.3913" />
<rect
y="301.3913"
x="61.667175"
height="31.25342"
width="56.665653"
id="rect921"
style="fill:#216bcd;fill-opacity:1;stroke:#000000;stroke-width:2.07055879;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<g
aria-label="OFF"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text967"
transform="translate(18.223968,-21.099998)">
<path
d="m 46.929702,331.42667 q 0,0.50666 0.2,0.72 0.213333,0.2 0.56,0.2 0.346666,0 0.546666,-0.2 0.213334,-0.21334 0.213334,-0.72 v -5.04 q 0,-0.50667 -0.213334,-0.70667 -0.2,-0.21333 -0.546666,-0.21333 -0.346667,0 -0.56,0.21333 -0.2,0.2 -0.2,0.70667 z M 45.463035,326.48 q 0,-1.13333 0.573333,-1.73333 0.573334,-0.61334 1.653334,-0.61334 1.08,0 1.653333,0.61334 0.573333,0.6 0.573333,1.73333 v 4.85333 q 0,1.13334 -0.573333,1.74667 -0.573333,0.6 -1.653333,0.6 -1.08,0 -1.653334,-0.6 -0.573333,-0.61333 -0.573333,-1.74667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1016"
inkscape:connector-curvature="0" />
<path
d="m 52.33616,328.38667 h 1.893333 V 329.72 H 52.33616 v 3.85333 H 50.869493 V 324.24 h 3.88 v 1.33333 H 52.33616 Z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1018"
inkscape:connector-curvature="0" />
<path
d="m 56.919493,328.38667 h 1.893333 V 329.72 h -1.893333 v 3.85333 H 55.452826 V 324.24 h 3.88 v 1.33333 h -2.413333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1020"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="ON"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text971"
transform="translate(105.51915,-21.099998)">
<path
d="m 2.13384,283.42667 q 0,0.50666 0.2,0.72 0.2133333,0.2 0.56,0.2 0.3466667,0 0.5466666,-0.2 0.2133334,-0.21334 0.2133334,-0.72 v -5.04 q 0,-0.50667 -0.2133334,-0.70667 -0.1999999,-0.21333 -0.5466666,-0.21333 -0.3466667,0 -0.56,0.21333 -0.2,0.2 -0.2,0.70667 z M 0.66717338,278.48 q 0,-1.13333 0.57333332,-1.73333 0.5733333,-0.61334 1.6533333,-0.61334 1.08,0 1.6533333,0.61334 0.5733333,0.6 0.5733333,1.73333 v 4.85333 q 0,1.13334 -0.5733333,1.74667 -0.5733333,0.6 -1.6533333,0.6 -1.08,0 -1.6533333,-0.6 -0.57333332,-0.61333 -0.57333332,-1.74667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path999"
inkscape:connector-curvature="0" />
<path
d="m 7.380298,278.81333 v 6.76 H 6.0602981 V 276.24 H 7.900298 l 1.5066666,5.58667 V 276.24 h 1.3066664 v 9.33333 H 9.2069647 Z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1001"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="é"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text1052"
transform="translate(17.178793,1.200002)">
<path
d="m 51.325915,62.560323 4.817708,4.817709 v 3.632812 L 52.608467,67.475688 V 74.546 h -2.565104 v -7.070312 l -3.535156,3.535156 v -3.632812 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:Wingdings;-inkscape-font-specification:'Wingdings, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1072"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="OFF"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text987"
transform="translate(18.223968,-21.099998)">
<path
d="m 46.929702,283.42667 q 0,0.50666 0.2,0.72 0.213333,0.2 0.56,0.2 0.346666,0 0.546666,-0.2 0.213334,-0.21334 0.213334,-0.72 v -5.04 q 0,-0.50667 -0.213334,-0.70667 -0.2,-0.21333 -0.546666,-0.21333 -0.346667,0 -0.56,0.21333 -0.2,0.2 -0.2,0.70667 z M 45.463035,278.48 q 0,-1.13333 0.573333,-1.73333 0.573334,-0.61334 1.653334,-0.61334 1.08,0 1.653333,0.61334 0.573333,0.6 0.573333,1.73333 v 4.85333 q 0,1.13334 -0.573333,1.74667 -0.573333,0.6 -1.653333,0.6 -1.08,0 -1.653334,-0.6 -0.573333,-0.61333 -0.573333,-1.74667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1004"
inkscape:connector-curvature="0" />
<path
d="m 52.33616,280.38667 h 1.893333 V 281.72 H 52.33616 v 3.85333 H 50.869493 V 276.24 h 3.88 v 1.33333 H 52.33616 Z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1006"
inkscape:connector-curvature="0" />
<path
d="m 56.919493,280.38667 h 1.893333 V 281.72 h -1.893333 v 3.85333 H 55.452826 V 276.24 h 3.88 v 1.33333 h -2.413333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1008"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="ê"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text1064"
transform="translate(102.821,1.200004)">
<path
d="M 8.5047083,74.545998 3.6870001,69.728289 v -3.632812 l 3.5351562,3.535156 v -7.070312 h 2.5651041 v 7.070312 l 3.5351566,-3.535156 v 3.632812 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:Wingdings;-inkscape-font-specification:'Wingdings, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1068"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="MAX DIV"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="text1157"
transform="translate(60.800063,-8e-6)">
<path
d="m 20.122937,198.57972 0.9,-5.964 h 1.836 v 8.4 h -1.248 v -6.024 l -0.912,6.024 h -1.248 l -0.984,-5.94 v 5.94 h -1.152 v -8.4 h 1.836 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1159"
inkscape:connector-curvature="0" />
<path
d="m 28.091125,201.01572 h -1.332 l -0.228,-1.524 h -1.62 l -0.228,1.524 h -1.212 l 1.344,-8.4 h 1.932 z m -3.012,-2.664 h 1.272 l -0.636,-4.248 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1161"
inkscape:connector-curvature="0" />
<path
d="m 33.098125,192.61572 -1.38,4.08 1.476,4.32 h -1.392 l -1.08,-3.324 -1.092,3.324 h -1.236 l 1.476,-4.32 -1.38,-4.08 h 1.368 l 0.996,3.096 1.02,-3.096 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1163"
inkscape:connector-curvature="0" />
<path
d="m 35.701937,192.61572 h 2.088 q 0.996,0 1.476,0.528 0.492,0.528 0.492,1.548 v 4.248 q 0,1.02 -0.492,1.548 -0.48,0.528 -1.476,0.528 h -2.088 z m 1.32,1.2 v 6 h 0.744 q 0.312,0 0.492,-0.18 0.18,-0.18 0.18,-0.636 v -4.368 q 0,-0.456 -0.18,-0.636 -0.18,-0.18 -0.492,-0.18 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1165"
inkscape:connector-curvature="0" />
<path
d="m 40.600375,192.61572 h 1.32 v 8.4 h -1.32 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1167"
inkscape:connector-curvature="0" />
<path
d="m 44.865812,199.46772 1.008,-6.852 h 1.212 l -1.296,8.4 h -1.968 l -1.296,-8.4 h 1.332 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
id="path1169"
inkscape:connector-curvature="0" />
</g>
<g
id="g993"
transform="translate(-44.072997)">
<g
transform="translate(104.94983,-7.088998)"
id="g1089">
<path
d="m 3.687,234.31333 q 0.4266667,0 0.6933333,-0.0933 0.28,-0.0933 0.4533334,-0.25333 Q 5.007,233.8067 5.1136666,233.59336 5.2203333,233.38 5.3003333,233.14 H 6.287 v 9.33333 H 4.8203333 v -7.12 H 3.687 Z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="path1079"
inkscape:connector-curvature="0" />
<path
d="m 7.273,235.46 q 0,-1.18667 0.5466666,-1.8 0.5466667,-0.62667 1.6933333,-0.62667 1.0800001,0 1.6266661,0.61334 0.56,0.6 0.56,1.73333 v 0.24 H 10.313 v -0.33333 q 0,-0.50667 -0.213333,-0.70667 -0.2000004,-0.21333 -0.5466671,-0.21333 -0.3866667,0 -0.6,0.24 -0.2133333,0.24 -0.2133333,0.90666 V 237.22 q 0.3866666,-0.82667 1.3600004,-0.82667 0.813333,0 1.213333,0.54667 0.413333,0.54667 0.413333,1.58667 v 1.70666 q 0,1.13334 -0.573333,1.74667 -0.573334,0.6 -1.6533334,0.6 -1.08,0 -1.6533333,-0.6 Q 7.273,241.36667 7.273,240.23333 Z m 2.2266666,2.26667 q -0.3466667,0 -0.56,0.21333 -0.2,0.2 -0.2,0.70667 v 1.68 q 0,0.50666 0.2,0.70666 0.2133333,0.2 0.56,0.2 0.3466666,0 0.5466664,-0.2 0.213334,-0.2 0.213334,-0.70666 v -1.68 q 0,-0.50667 -0.213334,-0.70667 -0.1999998,-0.21333 -0.5466664,-0.21333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
id="path1081"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(104.0996,-9.700328)"
id="text1093"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
aria-label="32">
<path
inkscape:connector-curvature="0"
id="path1095"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
d="m 6.5936666,170.64466 q 0,-0.62666 -0.2133333,-0.84 -0.2,-0.22666 -0.5466667,-0.22666 -0.3466667,0 -0.56,0.21333 -0.2,0.2 -0.2,0.70667 v 0.6 H 3.687 v -0.50667 q 0,-1.13333 0.5466666,-1.73333 0.56,-0.61334 1.64,-0.61334 1.08,0 1.6266666,0.61334 0.56,0.6 0.56,1.73333 v 0.24 q 0,1.49333 -1.0266666,1.92 0.56,0.24 0.7866666,0.74667 0.24,0.49333 0.24,1.21333 v 0.73333 q 0,1.13334 -0.56,1.74667 -0.5466666,0.6 -1.6266666,0.6 -1.08,0 -1.64,-0.6 Q 3.687,176.578 3.687,175.44466 v -0.77333 h 1.3866666 v 0.86667 q 0,0.50666 0.2,0.72 0.2133333,0.2 0.56,0.2 0.3466667,0 0.5466667,-0.21334 0.2133333,-0.21333 0.2133333,-0.84 v -0.73333 q 0,-0.65333 -0.2266667,-0.92 -0.2266666,-0.26667 -0.7333333,-0.26667 H 5.1403333 v -1.33333 h 0.5733333 q 0.4133333,0 0.64,-0.21333 0.24,-0.21334 0.24,-0.77334 z" />
<path
inkscape:connector-curvature="0"
id="path1097"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
d="m 11.960125,170.64466 q 0,-0.62666 -0.213334,-0.84 -0.2,-0.22666 -0.546666,-0.22666 -0.346667,0 -0.56,0.21333 -0.2,0.2 -0.2,0.70667 v 1 H 9.053458 v -0.90667 q 0,-1.13333 0.5466666,-1.73333 0.5600004,-0.61334 1.6400004,-0.61334 1.08,0 1.626666,0.61334 0.56,0.6 0.56,1.73333 0,0.76 -0.24,1.37333 -0.226666,0.61334 -0.573333,1.12 -0.346667,0.50667 -0.746667,0.93334 -0.4,0.41333 -0.72,0.8 -0.32,0.37333 -0.506666,0.74666 -0.186667,0.37334 -0.12,0.78667 h 2.773333 v 1.33333 h -4.24 V 176.538 q 0,-0.68 0.2133333,-1.2 0.2133334,-0.52 0.5333333,-0.94667 0.3333334,-0.44 0.7066664,-0.81333 0.373334,-0.38667 0.693334,-0.81334 0.333333,-0.42666 0.546666,-0.93333 0.213334,-0.50667 0.213334,-1.18667 z" />
</g>
<g
transform="translate(106.737,2e-6)"
id="text1106"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
aria-label="64">
<path
inkscape:connector-curvature="0"
id="path1112"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
d="m 1.023,194.46904 q 0,-1.18666 0.5466666,-1.8 0.5466667,-0.62666 1.6933333,-0.62666 1.08,0 1.6266667,0.61333 0.56,0.6 0.56,1.73333 v 0.24 H 4.0629999 v -0.33333 q 0,-0.50667 -0.2133333,-0.70667 -0.2,-0.21333 -0.5466667,-0.21333 -0.3866666,0 -0.5999999,0.24 -0.2133334,0.24 -0.2133334,0.90667 v 1.70666 q 0.3866667,-0.82666 1.36,-0.82666 0.8133333,0 1.2133333,0.54666 0.4133333,0.54667 0.4133333,1.58667 v 1.70667 q 0,1.13333 -0.5733333,1.74666 -0.5733333,0.6 -1.6533333,0.6 -1.08,0 -1.6533333,-0.6 Q 1.023,200.37571 1.023,199.24238 Z m 2.2266666,2.26667 q -0.3466667,0 -0.56,0.21333 -0.2,0.2 -0.2,0.70667 v 1.68 q 0,0.50667 0.2,0.70667 0.2133333,0.2 0.56,0.2 0.3466667,0 0.5466667,-0.2 0.2133333,-0.2 0.2133333,-0.70667 v -1.68 q 0,-0.50667 -0.2133333,-0.70667 -0.2,-0.21333 -0.5466667,-0.21333 z" />
<path
inkscape:connector-curvature="0"
id="path1114"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
d="m 5.856,198.45571 2.6666666,-6.30667 h 1.5999994 v 6.30667 H 10.816 v 1.33333 h -0.693334 v 1.69334 H 8.6559999 v -1.69334 H 5.856 Z m 2.7999999,0 v -3.45333 l -1.4533333,3.45333 z" />
</g>
<path
inkscape:connector-curvature="0"
id="path1172"
d="M 112.6565,171.92022 V 187.28"
style="fill:none;stroke:#d2d2cd;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:0.1;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
inkscape:transform-center-y="0.73570145"
d="m 112.6565,189.67999 -2.54854,-4.41421 h 5.09709 z"
id="path1133"
inkscape:connector-curvature="0" />
<circle
r="1.6000285"
cy="173.55327"
cx="112.6565"
id="path1697"
style="fill:#d2d2cd;fill-opacity:1;stroke:#d2d2cd;stroke-width:1.95941246;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<path
style="fill:none;stroke:#d2d2cd;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:0.1;stroke-dasharray:none;stroke-opacity:1"
d="M 112.6565,206.75622 V 222.116"
id="path1631"
inkscape:connector-curvature="0" />
<path
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
inkscape:transform-center-y="-0.73569924"
d="m 112.6565,204.356 -2.54854,4.41421 h 5.09709 z"
id="path1135"
inkscape:connector-curvature="0" />
<circle
style="fill:#d2d2cd;fill-opacity:1;stroke:#d2d2cd;stroke-width:1.95941246;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="circle1713"
cx="112.6565"
cy="220.00928"
r="1.6000285" />
</g>
<g
id="g1115"
transform="translate(49.193153)">
<g
transform="translate(9.084798,2e-6)"
id="text1110"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1;stroke:none"
aria-label="8">
<path
inkscape:connector-curvature="0"
id="path1130"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d2d2cd;fill-opacity:1"
d="m 58.648665,199.24238 q 0,1.13333 -0.586666,1.74666 -0.586667,0.6 -1.706667,0.6 -1.12,0 -1.706667,-0.6 -0.586666,-0.61333 -0.586666,-1.74666 v -0.73334 q 0,-0.68 0.213333,-1.17333 0.213333,-0.50667 0.693333,-0.77333 -0.906666,-0.49334 -0.906666,-1.88 v -0.29334 q 0,-1.13333 0.586666,-1.73333 0.586667,-0.61333 1.706667,-0.61333 1.12,0 1.706667,0.61333 0.586666,0.6 0.586666,1.73333 v 0.29334 q 0,1.37333 -0.906666,1.88 0.48,0.26666 0.693333,0.77333 0.213333,0.49333 0.213333,1.17333 z m -3.12,-0.04 q 0,0.62666 0.24,0.84 0.24,0.21333 0.586667,0.21333 0.346667,0 0.573333,-0.21333 0.24,-0.21334 0.253334,-0.84 v -0.86667 q 0,-0.56 -0.226667,-0.8 -0.213333,-0.25333 -0.6,-0.25333 -0.386667,0 -0.613333,0.25333 -0.213334,0.24 -0.213334,0.8 z m 0,-4.24 q 0,0.56 0.226667,0.77333 0.24,0.21333 0.6,0.21333 0.346667,0 0.586667,-0.21333 0.24,-0.21333 0.24,-0.77333 v -0.52 q 0,-0.62667 -0.24,-0.84 -0.24,-0.22667 -0.586667,-0.22667 -0.346667,0 -0.586667,0.22667 -0.24,0.21333 -0.24,0.84 z" />
</g>
<path
style="fill:none;stroke:#d2d2cd;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:0.1;stroke-dasharray:none;stroke-opacity:1"
d="M 65.440119,171.92022 V 187.28"
id="path1663"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path1665"
d="m 65.440119,189.67999 -2.54854,-4.41421 h 5.09709 z"
inkscape:transform-center-y="0.73570145"
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<circle
style="fill:#d2d2cd;fill-opacity:1;stroke:#d2d2cd;stroke-width:1.95941246;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="circle1711"
cx="65.440132"
cy="173.55327"
r="1.6000285" />
<path
inkscape:connector-curvature="0"
id="path1669"
d="M 65.440119,206.75622 V 222.116"
style="fill:none;stroke:#d2d2cd;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:0.1;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path1671"
d="m 65.440119,204.356 -2.54854,4.41421 h 5.09709 z"
inkscape:transform-center-y="-0.73569924"
style="fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<circle
r="1.6000285"
cy="220.00928"
cx="65.440132"
id="circle1715"
style="fill:#d2d2cd;fill-opacity:1;stroke:#d2d2cd;stroke-width:1.95941246;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
</g>
<g
transform="translate(105.51915,26.900002)"
id="g985"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
aria-label="ON">
<path
inkscape:connector-curvature="0"
id="path981"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
d="m 2.13384,283.42667 q 0,0.50666 0.2,0.72 0.2133333,0.2 0.56,0.2 0.3466667,0 0.5466666,-0.2 0.2133334,-0.21334 0.2133334,-0.72 v -5.04 q 0,-0.50667 -0.2133334,-0.70667 -0.1999999,-0.21333 -0.5466666,-0.21333 -0.3466667,0 -0.56,0.21333 -0.2,0.2 -0.2,0.70667 z M 0.66717338,278.48 q 0,-1.13333 0.57333332,-1.73333 0.5733333,-0.61334 1.6533333,-0.61334 1.08,0 1.6533333,0.61334 0.5733333,0.6 0.5733333,1.73333 v 4.85333 q 0,1.13334 -0.5733333,1.74667 -0.5733333,0.6 -1.6533333,0.6 -1.08,0 -1.6533333,-0.6 -0.57333332,-0.61333 -0.57333332,-1.74667 z" />
<path
inkscape:connector-curvature="0"
id="path983"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
d="m 7.380298,278.81333 v 6.76 H 6.0602981 V 276.24 H 7.900298 l 1.5066666,5.58667 V 276.24 h 1.3066664 v 9.33333 H 9.2069647 Z" />
</g>
<g
aria-label="RKD"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text875">
<path
d="m 29.204847,9.7227194 h 4.6875 q 1.334636,0 2.018229,0.2799476 0.683594,0.273438 1.048177,0.800782 0.371094,0.520833 0.371094,1.210937 0,0.709635 -0.358073,1.263021 -0.358073,0.546875 -1.035156,0.865885 -0.670573,0.3125 -1.783854,0.325521 l 2.395833,2.929687 q 0.292969,0.364584 0.384115,0.449219 0.227864,0.201823 0.47526,0.30599 0.253906,0.104166 0.566406,0.104166 h 0.162761 v 0.546875 h -2.070313 l -3.333333,-4.335937 h -1.165364 v 2.799479 q 0,0.46875 0.03255,0.585938 0.07161,0.221354 0.227864,0.3125 0.162761,0.09114 0.625,0.09114 h 0.234375 v 0.546875 H 29.204845 V 18.25787 h 0.3125 q 0.351563,0 0.46875,-0.04557 0.123698,-0.04557 0.214844,-0.15625 0.09766,-0.117188 0.136719,-0.292969 0.01302,-0.07161 0.01953,-0.657552 v -5.950521 q 0,-0.390625 -0.07813,-0.559896 -0.07813,-0.169271 -0.221354,-0.240885 -0.136719,-0.07813 -0.481771,-0.07813 h -0.371094 z m 2.363282,0.7096356 v 3.417968 h 1.868489 q 0.950521,0 1.334635,-0.117187 0.546875,-0.15625 0.859375,-0.572917 0.319011,-0.416666 0.319011,-1.061198 0,-0.546875 -0.227865,-0.917968 -0.227864,-0.377604 -0.625,-0.559896 -0.390625,-0.188802 -1.171875,-0.188802 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:13.33333302px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path995"
inkscape:connector-curvature="0" />
<path
d="m 38.840264,9.7227194 h 3.502604 v 0.5533856 h -0.247396 q -0.429687,0 -0.605468,0.104166 -0.175782,0.104167 -0.247396,0.325521 -0.05859,0.162761 -0.05859,0.533854 v 3.43099 l 3.411458,-3.613281 q 0.266927,-0.286459 0.3125,-0.371094 0.05208,-0.08464 0.05208,-0.175781 0,-0.117188 -0.117188,-0.175781 -0.110677,-0.05859 -0.488281,-0.05859 H 44.146253 V 9.7227194 h 3.255209 v 0.5533856 q -0.384115,-0.0065 -0.696615,0.08464 -0.3125,0.09115 -0.494792,0.227865 -0.397135,0.292969 -0.566406,0.46875 l -2.434896,2.493489 2.779948,3.684896 q 0.377604,0.501302 0.598959,0.690104 0.221354,0.182292 0.455729,0.260417 0.234375,0.07161 0.729166,0.07161 v 0.546875 h -3.854166 v -0.546875 h 0.227864 q 0.384115,0 0.45573,-0.01953 0.110677,-0.02604 0.175781,-0.104166 0.0651,-0.07813 0.0651,-0.162761 0,-0.169271 -0.449219,-0.774739 l -2.050781,-2.786459 -1.158854,1.197917 v 1.738281 q 0,0.449219 0.09115,0.611979 0.09115,0.162761 0.279948,0.240886 0.149739,0.05859 0.78776,0.05859 v 0.546875 h -3.502604 v -0.546875 h 0.273437 q 0.410157,0 0.559896,-0.07813 0.14974,-0.08463 0.227865,-0.273437 0.08463,-0.188802 0.08463,-0.670573 V 11.23964 q 0,-0.47526 -0.07813,-0.644531 -0.07813,-0.175781 -0.227864,-0.247396 -0.14974,-0.07161 -0.638021,-0.07161 h -0.201823 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:13.33333302px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path997"
inkscape:connector-curvature="0" />
<path
d="M 48.410576,10.276105 V 9.7227194 h 3.242188 q 2.226562,0 3.105469,0.2799476 1.295572,0.410157 2.102864,1.529948 0.891927,1.236979 0.891927,2.845052 0,1.09375 -0.442708,2.037761 -0.436198,0.9375 -1.152344,1.510416 -0.592448,0.481771 -1.425781,0.683594 -0.833333,0.195312 -1.679688,0.195312 h -4.641927 v -0.546875 h 0.377605 l 0.123698,0.0065 q 0.240885,0 0.390625,-0.09766 0.15625,-0.09766 0.221354,-0.260417 0.04557,-0.123698 0.04557,-0.572917 v -6.074218 q 0,-0.514323 -0.06511,-0.664063 -0.09114,-0.201823 -0.292968,-0.279948 -0.117188,-0.03906 -0.800782,-0.03906 z m 2.369792,7.82552 h 1.966146 q 0.292969,0 0.970052,-0.104166 0.683594,-0.104167 0.976562,-0.253906 0.429688,-0.221355 0.833334,-0.709636 0.403646,-0.494792 0.618489,-1.178385 0.221354,-0.690104 0.221354,-1.575521 0,-0.878906 -0.221354,-1.523437 -0.214843,-0.644532 -0.657552,-1.158855 -0.436198,-0.514323 -0.976562,-0.78125 -0.533854,-0.273437 -1.197917,-0.345052 -0.358073,-0.03255 -1.197917,-0.03255 h -1.334635 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:13.33333302px;font-family:'Bookman Old Style';-inkscape-font-specification:'Bookman Old Style, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1000"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="TRIG. GATE"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="text982">
<path
d="m 62.786982,143 h 4.533333 v 1.33333 h -1.533333 v 8 h -1.466667 v -8 h -1.533333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path990"
inkscape:connector-curvature="0" />
<path
d="m 71.045315,152.33333 q -0.02667,-0.0933 -0.05333,-0.17334 -0.02667,-0.08 -0.05333,-0.2 -0.01333,-0.12 -0.02667,-0.30666 0,-0.18667 0,-0.46667 v -1.46667 q 0,-0.65333 -0.226666,-0.92 -0.226667,-0.26666 -0.733334,-0.26666 h -0.506666 v 3.8 H 67.978648 V 143 h 2.213333 q 1.146667,0 1.653334,0.53333 0.52,0.53333 0.52,1.61333 V 145.88 q 0,1.44 -0.96,1.89333 0.56,0.22667 0.76,0.74667 0.213333,0.50666 0.213333,1.23999 v 1.44 q 0,0.34667 0.02667,0.61334 0.02667,0.25333 0.133333,0.52 z m -1.6,-8 V 147.2 h 0.573333 q 0.413333,0 0.64,-0.21334 0.24,-0.21333 0.24,-0.77333 v -0.92 q 0,-0.50667 -0.186667,-0.73333 -0.173333,-0.22667 -0.56,-0.22667 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path992"
inkscape:connector-curvature="0" />
<path
d="m 73.343232,143 h 1.466666 v 9.33333 h -1.466666 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path994"
inkscape:connector-curvature="0" />
<path
d="m 78.069273,147.13333 h 2.053333 v 2.96 q 0,1.13333 -0.56,1.74666 -0.546667,0.6 -1.626667,0.6 -1.08,0 -1.64,-0.6 -0.546666,-0.61333 -0.546666,-1.74666 V 145.24 q 0,-1.13334 0.546666,-1.73334 0.56,-0.61333 1.64,-0.61333 1.08,0 1.626667,0.61333 0.56,0.6 0.56,1.73334 v 0.90666 h -1.386667 v -1 q 0,-0.50666 -0.213333,-0.70666 -0.2,-0.21334 -0.546667,-0.21334 -0.346666,0 -0.56,0.21334 -0.2,0.2 -0.2,0.70666 v 5.04 q 0,0.50667 0.2,0.70667 0.213334,0.2 0.56,0.2 0.346667,0 0.546667,-0.2 0.213333,-0.2 0.213333,-0.70667 v -1.72 h -0.666666 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path996"
inkscape:connector-curvature="0" />
<path
d="m 82.360731,150.91999 v 1.41334 h -1.413333 v -1.41334 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path998"
inkscape:connector-curvature="0" />
<path
d="m 100.0224,147.13333 h 2.05333 v 2.96 q 0,1.13333 -0.56,1.74666 -0.54667,0.6 -1.626668,0.6 -1.08,0 -1.64,-0.6 -0.546666,-0.61333 -0.546666,-1.74666 V 145.24 q 0,-1.13334 0.546666,-1.73334 0.56,-0.61333 1.64,-0.61333 1.079998,0 1.626668,0.61333 0.56,0.6 0.56,1.73334 v 0.90666 h -1.38667 v -1 q 0,-0.50666 -0.21333,-0.70666 -0.2,-0.21334 -0.546668,-0.21334 -0.346666,0 -0.56,0.21334 -0.2,0.2 -0.2,0.70666 v 5.04 q 0,0.50667 0.2,0.70667 0.213334,0.2 0.56,0.2 0.346668,0 0.546668,-0.2 0.21333,-0.2 0.21333,-0.70667 v -1.72 h -0.66666 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1002"
inkscape:connector-curvature="0" />
<path
d="m 107.75136,152.33333 h -1.48 l -0.25334,-1.69334 h -1.8 l -0.25333,1.69334 h -1.34667 L 104.11136,143 h 2.14666 z m -3.34667,-2.96 h 1.41333 l -0.70666,-4.72 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1005"
inkscape:connector-curvature="0" />
<path
d="m 108.02135,143 h 4.53334 v 1.33333 h -1.53334 v 8 h -1.46666 v -8 h -1.53334 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1010"
inkscape:connector-curvature="0" />
<path
d="m 114.67969,146.93333 h 2.01333 v 1.33333 h -2.01333 v 2.73333 h 2.53333 v 1.33334 h -4 V 143 h 4 v 1.33333 h -2.53333 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:'Bebas Neue';-inkscape-font-specification:'Bebas Neue, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="path1012"
inkscape:connector-curvature="0" />
</g>
</svg>

+ 352
- 0
plugins/community/repos/Ohmer/res/RKD_PCB.svg
File diff suppressed because it is too large
View File


+ 103
- 0
plugins/community/repos/Ohmer/res/Splitter1x9.svg View File

@@ -0,0 +1,103 @@
<?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"
id="svg8"
viewBox="0 0 30 380"
version="1.1"
sodipodi:docname="Splitter1x9.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
width="30"
height="380"
inkscape:label="SplitterModulePlate">
<metadata
id="metadata39">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Blank Panel for VCV Rack</dc:title>
</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="1920"
inkscape:window-height="1058"
id="namedview37"
showgrid="false"
inkscape:zoom="5.5473684"
inkscape:cx="-15.612618"
inkscape:cy="331.32289"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="lettreR" />
<defs
id="defs4">
<marker
inkscape:stockid="Arrow2Lend"
orient="auto"
refY="0.0"
refX="0.0"
id="Arrow2Lend"
style="overflow:visible;"
inkscape:isstock="true">
<path
id="path856"
style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="scale(1.1) rotate(180) translate(1,0)" />
</marker>
<style
id="style2">.cls-1{fill:#ab2d2d;}.cls-2{fill:#952d2d;}.cls-3{fill:#251e1e;}.cls-4{fill:#fff7d4;}.cls-5{fill:#202020;}</style>
</defs>
<title
id="title6">Blank Panel for VCV Rack</title>
<g
aria-label="R"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="lettreR"
inkscape:label="InputRedCircle">
<path
id="ModuleLayer"
style="opacity:1;vector-effect:none;fill:#d2d2cd;fill-opacity:1;stroke:none;stroke-width:0.48684251;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 0,0 H 30 V 380 H 0 Z"
inkscape:connector-curvature="0" />
<g
aria-label="Ω"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:1.25;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#d20f00;fill-opacity:1;stroke:none"
id="text17"
transform="translate(-0.15219932,-11.032284)">
<path
id="path13"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.66666603px;font-family:'Britannic Bold';-inkscape-font-specification:'Britannic Bold, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#d20f00;fill-opacity:1"
d="m 7.2553434,372.35199 v -4.27083 h 3.0208336 q -3.1380211,-2.04427 -3.1380211,-5.58594 0,-3.52865 2.3828125,-5.9375 2.3958336,-2.42188 5.8984376,-2.42188 3.489583,0 5.872395,2.42188 2.395834,2.40885 2.395834,5.9375 0,3.54167 -3.151042,5.58594 h 3.033854 v 4.27083 h -7.330729 v -3.93229 q 2.513021,-1.22396 2.513021,-5.19531 0,-4.8698 -3.346354,-4.8698 -3.333333,0 -3.333333,4.84375 0,4.01042 2.5,5.22136 v 3.93229 z"
inkscape:connector-curvature="0" />
</g>
<path
id="path3707"
style="font-style:italic;font-variant:normal;font-weight:600;font-stretch:normal;font-size:18.66666603px;font-family:'Lucida Bright';-inkscape-font-specification:'Lucida Bright, Semi-Bold Italic';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:#6a0a0a;stroke-width:0.60000002;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 19.182424,358.84171 h -1.175782 l -0.683593,3.42709 -0.209636,1.23958 q 0,0.48307 0.929688,0.54688 l 0.164062,0.009 -0.173177,0.84766 h -5.395833 l 0.164063,-0.84766 0.173177,-0.009 q 0.957031,-0.0638 1.148437,-0.27344 0.200521,-0.21875 0.501302,-1.51302 l 1.63151,-8.21224 q 0.08203,-0.48307 0.191407,-1.17578 0,-0.52865 -1.121094,-0.61068 l -0.173177,-0.009 0.173177,-0.83855 h 4.046875 l 2.351562,-0.0638 q 1.822917,0 2.725261,0.66537 0.911458,0.65625 0.911458,1.98698 0,1.43099 -0.957031,2.63411 -0.947917,1.20313 -2.606771,1.8776 l 1.768229,3.73698 q 0.65625,1.3125 0.847656,1.54037 0.191407,0.21875 0.710938,0.25521 l 0.164062,0.009 -0.164062,0.84766 h -3.308594 z m -0.99349,-0.90234 h 0.610677 q 1.686198,0 2.72526,-0.99349 1.039063,-1.0026 1.039063,-2.63411 0,-1.00261 -0.574219,-1.49479 -0.574219,-0.50131 -1.731771,-0.50131 h -0.947916 z"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 15,26.48804 V 319.6"
id="path818"
inkscape:connector-curvature="0" />
</g>
</svg>

+ 449
- 0
plugins/community/repos/Ohmer/res/components/CL1362_In.svg View File

@@ -0,0 +1,449 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<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"
width="26.694"
height="24"
viewBox="0 0 7.0627874 6.35"
version="1.1"
id="svg15246"
sodipodi:docname="CL1362_In.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
<title
id="title898">CL1362 jack used by RKD modules, derivative from stock</title>
<defs
id="defs15240">
<clipPath
id="clip89">
<rect
y="0"
x="0"
width="18"
height="19"
id="rect4864" />
</clipPath>
<clipPath
id="clip90">
<path
inkscape:connector-curvature="0"
d="m 0.898438,0.128906 h 16.25 v 17.882813 h -16.25 z m 0,0"
id="path4861" />
</clipPath>
<mask
id="mask44">
<g
style="filter:url(#alpha)"
id="g4858"
transform="matrix(0.26458333,0,0,0.26458333,89.358789,128.57765)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.14999402;stroke:none"
id="rect4856" />
</g>
</mask>
<filter
id="alpha"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix4149" />
</filter>
<clipPath
id="clipPath17821">
<rect
y="0"
x="0"
width="18"
height="19"
id="rect17819" />
</clipPath>
<clipPath
id="clipPath17825">
<path
inkscape:connector-curvature="0"
d="m 0.898438,0.128906 h 16.25 v 17.882813 h -16.25 z m 0,0"
id="path17823" />
</clipPath>
<clipPath
id="clip87">
<rect
y="0"
x="0"
width="24"
height="26"
id="rect4848" />
</clipPath>
<clipPath
id="clip88">
<path
inkscape:connector-curvature="0"
d="m 0.683594,0.921875 h 22.679687 v 24.9375 H 0.683594 Z m 0,0"
id="path4845" />
</clipPath>
<mask
id="mask43">
<g
style="filter:url(#alpha)"
id="g4842"
transform="matrix(0.26458333,0,0,0.26458333,89.358789,128.57765)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.14999402;stroke:none"
id="rect4840" />
</g>
</mask>
<filter
id="filter17836"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix17834" />
</filter>
<clipPath
id="clipPath17840">
<rect
y="0"
x="0"
width="24"
height="26"
id="rect17838" />
</clipPath>
<clipPath
id="clipPath17844">
<path
inkscape:connector-curvature="0"
d="m 0.683594,0.921875 h 22.679687 v 24.9375 H 0.683594 Z m 0,0"
id="path17842" />
</clipPath>
<clipPath
id="clip95">
<rect
y="0"
x="0"
width="18"
height="18"
id="rect4912" />
</clipPath>
<clipPath
id="clip96">
<path
inkscape:connector-curvature="0"
d="M 0.140625,0.140625 H 17.199219 V 17.199219 H 0.140625 Z m 0,0"
id="path4909" />
</clipPath>
<mask
id="mask47">
<g
style="filter:url(#alpha-3)"
id="g4906"
transform="matrix(0.26458333,0,0,0.26458333,88.611154,119.19859)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.33000201;stroke:none"
id="rect4904" />
</g>
</mask>
<filter
id="alpha-3"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix4149-6" />
</filter>
<clipPath
id="clipPath18541">
<rect
y="0"
x="0"
width="18"
height="18"
id="rect18539" />
</clipPath>
<clipPath
id="clipPath18545">
<path
inkscape:connector-curvature="0"
d="M 0.140625,0.140625 H 17.199219 V 17.199219 H 0.140625 Z m 0,0"
id="path18543" />
</clipPath>
<clipPath
id="clip93">
<rect
y="0"
x="0"
width="22"
height="24"
id="rect4896" />
</clipPath>
<clipPath
id="clip94">
<path
inkscape:connector-curvature="0"
d="M 0.0390625,0.0390625 H 21.300781 V 23.421875 H 0.0390625 Z m 0,0"
id="path4893" />
</clipPath>
<mask
id="mask46">
<g
style="filter:url(#alpha-3)"
id="g4890"
transform="matrix(0.26458333,0,0,0.26458333,88.611154,119.19859)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.14999402;stroke:none"
id="rect4888" />
</g>
</mask>
<filter
id="filter18556"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix18554" />
</filter>
<clipPath
id="clipPath18560">
<rect
y="0"
x="0"
width="22"
height="24"
id="rect18558" />
</clipPath>
<clipPath
id="clipPath18564">
<path
inkscape:connector-curvature="0"
d="M 0.0390625,0.0390625 H 21.300781 V 23.421875 H 0.0390625 Z m 0,0"
id="path18562" />
</clipPath>
<clipPath
id="clip91">
<rect
y="0"
x="0"
width="29"
height="32"
id="rect4880" />
</clipPath>
<clipPath
id="clip92">
<path
inkscape:connector-curvature="0"
d="M 0.507812,0.5 H 28.855469 V 31.679688 H 0.507812 Z m 0,0"
id="path4877" />
</clipPath>
<mask
id="mask45">
<g
style="filter:url(#alpha-3)"
id="g4874"
transform="matrix(0.26458333,0,0,0.26458333,88.611154,119.19859)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.14999402;stroke:none"
id="rect4872" />
</g>
</mask>
<filter
id="filter18575"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix18573" />
</filter>
<clipPath
id="clipPath18579">
<rect
y="0"
x="0"
width="29"
height="32"
id="rect18577" />
</clipPath>
<clipPath
id="clipPath18583">
<path
inkscape:connector-curvature="0"
d="M 0.507812,0.5 H 28.855469 V 31.679688 H 0.507812 Z m 0,0"
id="path18581" />
</clipPath>
<clipPath
id="clip202">
<rect
y="0"
x="0"
width="18"
height="18"
id="rect5795" />
</clipPath>
<clipPath
id="clip203">
<path
inkscape:connector-curvature="0"
d="M 0.855469,0.140625 H 17.914062 V 17.199219 H 0.855469 Z m 0,0"
id="path5792" />
</clipPath>
<mask
id="mask104">
<g
style="filter:url(#alpha-7)"
id="g5789"
transform="matrix(0.26458333,0,0,0.26458333,74.416306,97.613551)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.33000201;stroke:none"
id="rect5787" />
</g>
</mask>
<filter
id="alpha-7"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix4149-5" />
</filter>
<clipPath
id="clipPath18765">
<rect
y="0"
x="0"
width="18"
height="18"
id="rect18763" />
</clipPath>
<clipPath
id="clipPath18769">
<path
inkscape:connector-curvature="0"
d="M 0.855469,0.140625 H 17.914062 V 17.199219 H 0.855469 Z m 0,0"
id="path18767" />
</clipPath>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="15.839192"
inkscape:cx="-6.7471282"
inkscape:cy="14.436445"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1058"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
units="px"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<metadata
id="metadata15243">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>CL1362 jack used by RKD modules, derivative from stock</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-60.318055,-92.904867)">
<g
id="g898"
transform="matrix(0.95001451,0,0,0.95001451,1.4838192,6.3375163)">
<path
style="fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:#e0e0e0;stroke-width:0.16464776;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 63.988909,97.723705 c -0.103462,0 -0.225076,-0.0717 -0.275899,-0.161546 l -1.659934,-2.937777 c -0.05082,-0.08984 -0.05082,-0.23052 0,-0.321273 l 1.659934,-2.937797 c 0.05082,-0.08984 0.172437,-0.160638 0.275899,-0.160638 h 3.316238 c 0.103462,0 0.225076,0.07079 0.275899,0.160638 l 1.659934,2.937797 c 0.05082,0.09075 0.05082,0.231435 0,0.321273 l -1.659934,2.937777 c -0.05082,0.08985 -0.172437,0.161546 -0.275899,0.161546 z m 0,0"
id="path9179"
inkscape:connector-curvature="0" />
<path
style="fill:#545454;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.23233625"
d="m 63.095866,94.463746 c 0,-1.408536 1.142624,-2.551166 2.551162,-2.551166 1.408539,0 2.551162,1.14263 2.551162,2.551166 0,1.409444 -1.142623,2.551144 -2.551162,2.551144 -1.408538,0 -2.551162,-1.1417 -2.551162,-2.551144"
id="path9183"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.23233625"
d="m 64.330153,94.463746 c 0,-0.726953 0.589009,-1.31688 1.316875,-1.31688 0.726957,0 1.316875,0.589927 1.316875,1.31688 0,0.727868 -0.589918,1.317768 -1.316875,1.317768 -0.727866,0 -1.316875,-0.5899 -1.316875,-1.317768"
id="path9185"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path18865"
d="m 63.692293,94.46353 c 0,-1.07907 0.874311,-1.954741 1.954735,-1.954741 1.079076,0 1.954735,0.875671 1.954735,1.954741 0,1.080429 -0.875659,1.956061 -1.954735,1.956061 -1.080424,0 -1.954735,-0.875632 -1.954735,-1.956061"
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</g>
</svg>

+ 449
- 0
plugins/community/repos/Ohmer/res/components/CL1362_In_RR.svg View File

@@ -0,0 +1,449 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<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"
width="24"
height="26.694"
viewBox="0 0 6.3499999 7.0627876"
version="1.1"
id="svg15246"
sodipodi:docname="CL1362_In_RR.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
<title
id="title898">CL1362 jack used by RKD modules, derivative from stock</title>
<defs
id="defs15240">
<clipPath
id="clip89">
<rect
y="0"
x="0"
width="18"
height="19"
id="rect4864" />
</clipPath>
<clipPath
id="clip90">
<path
inkscape:connector-curvature="0"
d="m 0.898438,0.128906 h 16.25 v 17.882813 h -16.25 z m 0,0"
id="path4861" />
</clipPath>
<mask
id="mask44">
<g
style="filter:url(#alpha)"
id="g4858"
transform="matrix(0.26458333,0,0,0.26458333,89.358789,128.57765)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.14999402;stroke:none"
id="rect4856" />
</g>
</mask>
<filter
id="alpha"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix4149" />
</filter>
<clipPath
id="clipPath17821">
<rect
y="0"
x="0"
width="18"
height="19"
id="rect17819" />
</clipPath>
<clipPath
id="clipPath17825">
<path
inkscape:connector-curvature="0"
d="m 0.898438,0.128906 h 16.25 v 17.882813 h -16.25 z m 0,0"
id="path17823" />
</clipPath>
<clipPath
id="clip87">
<rect
y="0"
x="0"
width="24"
height="26"
id="rect4848" />
</clipPath>
<clipPath
id="clip88">
<path
inkscape:connector-curvature="0"
d="m 0.683594,0.921875 h 22.679687 v 24.9375 H 0.683594 Z m 0,0"
id="path4845" />
</clipPath>
<mask
id="mask43">
<g
style="filter:url(#alpha)"
id="g4842"
transform="matrix(0.26458333,0,0,0.26458333,89.358789,128.57765)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.14999402;stroke:none"
id="rect4840" />
</g>
</mask>
<filter
id="filter17836"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix17834" />
</filter>
<clipPath
id="clipPath17840">
<rect
y="0"
x="0"
width="24"
height="26"
id="rect17838" />
</clipPath>
<clipPath
id="clipPath17844">
<path
inkscape:connector-curvature="0"
d="m 0.683594,0.921875 h 22.679687 v 24.9375 H 0.683594 Z m 0,0"
id="path17842" />
</clipPath>
<clipPath
id="clip95">
<rect
y="0"
x="0"
width="18"
height="18"
id="rect4912" />
</clipPath>
<clipPath
id="clip96">
<path
inkscape:connector-curvature="0"
d="M 0.140625,0.140625 H 17.199219 V 17.199219 H 0.140625 Z m 0,0"
id="path4909" />
</clipPath>
<mask
id="mask47">
<g
style="filter:url(#alpha-3)"
id="g4906"
transform="matrix(0.26458333,0,0,0.26458333,88.611154,119.19859)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.33000201;stroke:none"
id="rect4904" />
</g>
</mask>
<filter
id="alpha-3"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix4149-6" />
</filter>
<clipPath
id="clipPath18541">
<rect
y="0"
x="0"
width="18"
height="18"
id="rect18539" />
</clipPath>
<clipPath
id="clipPath18545">
<path
inkscape:connector-curvature="0"
d="M 0.140625,0.140625 H 17.199219 V 17.199219 H 0.140625 Z m 0,0"
id="path18543" />
</clipPath>
<clipPath
id="clip93">
<rect
y="0"
x="0"
width="22"
height="24"
id="rect4896" />
</clipPath>
<clipPath
id="clip94">
<path
inkscape:connector-curvature="0"
d="M 0.0390625,0.0390625 H 21.300781 V 23.421875 H 0.0390625 Z m 0,0"
id="path4893" />
</clipPath>
<mask
id="mask46">
<g
style="filter:url(#alpha-3)"
id="g4890"
transform="matrix(0.26458333,0,0,0.26458333,88.611154,119.19859)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.14999402;stroke:none"
id="rect4888" />
</g>
</mask>
<filter
id="filter18556"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix18554" />
</filter>
<clipPath
id="clipPath18560">
<rect
y="0"
x="0"
width="22"
height="24"
id="rect18558" />
</clipPath>
<clipPath
id="clipPath18564">
<path
inkscape:connector-curvature="0"
d="M 0.0390625,0.0390625 H 21.300781 V 23.421875 H 0.0390625 Z m 0,0"
id="path18562" />
</clipPath>
<clipPath
id="clip91">
<rect
y="0"
x="0"
width="29"
height="32"
id="rect4880" />
</clipPath>
<clipPath
id="clip92">
<path
inkscape:connector-curvature="0"
d="M 0.507812,0.5 H 28.855469 V 31.679688 H 0.507812 Z m 0,0"
id="path4877" />
</clipPath>
<mask
id="mask45">
<g
style="filter:url(#alpha-3)"
id="g4874"
transform="matrix(0.26458333,0,0,0.26458333,88.611154,119.19859)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.14999402;stroke:none"
id="rect4872" />
</g>
</mask>
<filter
id="filter18575"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix18573" />
</filter>
<clipPath
id="clipPath18579">
<rect
y="0"
x="0"
width="29"
height="32"
id="rect18577" />
</clipPath>
<clipPath
id="clipPath18583">
<path
inkscape:connector-curvature="0"
d="M 0.507812,0.5 H 28.855469 V 31.679688 H 0.507812 Z m 0,0"
id="path18581" />
</clipPath>
<clipPath
id="clip202">
<rect
y="0"
x="0"
width="18"
height="18"
id="rect5795" />
</clipPath>
<clipPath
id="clip203">
<path
inkscape:connector-curvature="0"
d="M 0.855469,0.140625 H 17.914062 V 17.199219 H 0.855469 Z m 0,0"
id="path5792" />
</clipPath>
<mask
id="mask104">
<g
style="filter:url(#alpha-7)"
id="g5789"
transform="matrix(0.26458333,0,0,0.26458333,74.416306,97.613551)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.33000201;stroke:none"
id="rect5787" />
</g>
</mask>
<filter
id="alpha-7"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix4149-5" />
</filter>
<clipPath
id="clipPath18765">
<rect
y="0"
x="0"
width="18"
height="18"
id="rect18763" />
</clipPath>
<clipPath
id="clipPath18769">
<path
inkscape:connector-curvature="0"
d="M 0.855469,0.140625 H 17.914062 V 17.199219 H 0.855469 Z m 0,0"
id="path18767" />
</clipPath>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="15.839192"
inkscape:cx="-17.385297"
inkscape:cy="14.436445"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1058"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
units="px"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<metadata
id="metadata15243">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>CL1362 jack used by RKD modules, derivative from stock</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-60.318055,-92.19208)">
<g
id="g898"
transform="matrix(0,0.95001451,-0.95001451,0,153.23541,33.357844)">
<path
style="fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:#e0e0e0;stroke-width:0.16464776;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 63.988909,97.723705 c -0.103462,0 -0.225076,-0.0717 -0.275899,-0.161546 l -1.659934,-2.937777 c -0.05082,-0.08984 -0.05082,-0.23052 0,-0.321273 l 1.659934,-2.937797 c 0.05082,-0.08984 0.172437,-0.160638 0.275899,-0.160638 h 3.316238 c 0.103462,0 0.225076,0.07079 0.275899,0.160638 l 1.659934,2.937797 c 0.05082,0.09075 0.05082,0.231435 0,0.321273 l -1.659934,2.937777 c -0.05082,0.08985 -0.172437,0.161546 -0.275899,0.161546 z m 0,0"
id="path9179"
inkscape:connector-curvature="0" />
<path
style="fill:#545454;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.23233625"
d="m 63.095866,94.463746 c 0,-1.408536 1.142624,-2.551166 2.551162,-2.551166 1.408539,0 2.551162,1.14263 2.551162,2.551166 0,1.409444 -1.142623,2.551144 -2.551162,2.551144 -1.408538,0 -2.551162,-1.1417 -2.551162,-2.551144"
id="path9183"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.23233625"
d="m 64.330153,94.463746 c 0,-0.726953 0.589009,-1.31688 1.316875,-1.31688 0.726957,0 1.316875,0.589927 1.316875,1.31688 0,0.727868 -0.589918,1.317768 -1.316875,1.317768 -0.727866,0 -1.316875,-0.5899 -1.316875,-1.317768"
id="path9185"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path18865"
d="m 63.692293,94.46353 c 0,-1.07907 0.874311,-1.954741 1.954735,-1.954741 1.079076,0 1.954735,0.875671 1.954735,1.954741 0,1.080429 -0.875659,1.956061 -1.954735,1.956061 -1.080424,0 -1.954735,-0.875632 -1.954735,-1.956061"
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</g>
</svg>

+ 445
- 0
plugins/community/repos/Ohmer/res/components/CL1362_Out.svg View File

@@ -0,0 +1,445 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<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"
width="26.694"
height="24"
viewBox="0 0 7.0627874 6.35"
version="1.1"
id="svg15246"
sodipodi:docname="CL1362_Out.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
<title
id="title898">CL1362 jack used by RKD modules, derivative from stock</title>
<defs
id="defs15240">
<clipPath
id="clip89">
<rect
y="0"
x="0"
width="18"
height="19"
id="rect4864" />
</clipPath>
<clipPath
id="clip90">
<path
inkscape:connector-curvature="0"
d="m 0.898438,0.128906 h 16.25 v 17.882813 h -16.25 z m 0,0"
id="path4861" />
</clipPath>
<mask
id="mask44">
<g
style="filter:url(#alpha)"
id="g4858"
transform="matrix(0.26458333,0,0,0.26458333,89.358789,128.57765)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.14999402;stroke:none"
id="rect4856" />
</g>
</mask>
<filter
id="alpha"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix4149" />
</filter>
<clipPath
id="clipPath17821">
<rect
y="0"
x="0"
width="18"
height="19"
id="rect17819" />
</clipPath>
<clipPath
id="clipPath17825">
<path
inkscape:connector-curvature="0"
d="m 0.898438,0.128906 h 16.25 v 17.882813 h -16.25 z m 0,0"
id="path17823" />
</clipPath>
<clipPath
id="clip87">
<rect
y="0"
x="0"
width="24"
height="26"
id="rect4848" />
</clipPath>
<clipPath
id="clip88">
<path
inkscape:connector-curvature="0"
d="m 0.683594,0.921875 h 22.679687 v 24.9375 H 0.683594 Z m 0,0"
id="path4845" />
</clipPath>
<mask
id="mask43">
<g
style="filter:url(#alpha)"
id="g4842"
transform="matrix(0.26458333,0,0,0.26458333,89.358789,128.57765)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.14999402;stroke:none"
id="rect4840" />
</g>
</mask>
<filter
id="filter17836"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix17834" />
</filter>
<clipPath
id="clipPath17840">
<rect
y="0"
x="0"
width="24"
height="26"
id="rect17838" />
</clipPath>
<clipPath
id="clipPath17844">
<path
inkscape:connector-curvature="0"
d="m 0.683594,0.921875 h 22.679687 v 24.9375 H 0.683594 Z m 0,0"
id="path17842" />
</clipPath>
<clipPath
id="clip95">
<rect
y="0"
x="0"
width="18"
height="18"
id="rect4912" />
</clipPath>
<clipPath
id="clip96">
<path
inkscape:connector-curvature="0"
d="M 0.140625,0.140625 H 17.199219 V 17.199219 H 0.140625 Z m 0,0"
id="path4909" />
</clipPath>
<mask
id="mask47">
<g
style="filter:url(#alpha-3)"
id="g4906"
transform="matrix(0.26458333,0,0,0.26458333,88.611154,119.19859)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.33000201;stroke:none"
id="rect4904" />
</g>
</mask>
<filter
id="alpha-3"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix4149-6" />
</filter>
<clipPath
id="clipPath18541">
<rect
y="0"
x="0"
width="18"
height="18"
id="rect18539" />
</clipPath>
<clipPath
id="clipPath18545">
<path
inkscape:connector-curvature="0"
d="M 0.140625,0.140625 H 17.199219 V 17.199219 H 0.140625 Z m 0,0"
id="path18543" />
</clipPath>
<clipPath
id="clip93">
<rect
y="0"
x="0"
width="22"
height="24"
id="rect4896" />
</clipPath>
<clipPath
id="clip94">
<path
inkscape:connector-curvature="0"
d="M 0.0390625,0.0390625 H 21.300781 V 23.421875 H 0.0390625 Z m 0,0"
id="path4893" />
</clipPath>
<mask
id="mask46">
<g
style="filter:url(#alpha-3)"
id="g4890"
transform="matrix(0.26458333,0,0,0.26458333,88.611154,119.19859)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.14999402;stroke:none"
id="rect4888" />
</g>
</mask>
<filter
id="filter18556"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix18554" />
</filter>
<clipPath
id="clipPath18560">
<rect
y="0"
x="0"
width="22"
height="24"
id="rect18558" />
</clipPath>
<clipPath
id="clipPath18564">
<path
inkscape:connector-curvature="0"
d="M 0.0390625,0.0390625 H 21.300781 V 23.421875 H 0.0390625 Z m 0,0"
id="path18562" />
</clipPath>
<clipPath
id="clip91">
<rect
y="0"
x="0"
width="29"
height="32"
id="rect4880" />
</clipPath>
<clipPath
id="clip92">
<path
inkscape:connector-curvature="0"
d="M 0.507812,0.5 H 28.855469 V 31.679688 H 0.507812 Z m 0,0"
id="path4877" />
</clipPath>
<mask
id="mask45">
<g
style="filter:url(#alpha-3)"
id="g4874"
transform="matrix(0.26458333,0,0,0.26458333,88.611154,119.19859)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.14999402;stroke:none"
id="rect4872" />
</g>
</mask>
<filter
id="filter18575"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix18573" />
</filter>
<clipPath
id="clipPath18579">
<rect
y="0"
x="0"
width="29"
height="32"
id="rect18577" />
</clipPath>
<clipPath
id="clipPath18583">
<path
inkscape:connector-curvature="0"
d="M 0.507812,0.5 H 28.855469 V 31.679688 H 0.507812 Z m 0,0"
id="path18581" />
</clipPath>
<clipPath
id="clip202">
<rect
y="0"
x="0"
width="18"
height="18"
id="rect5795" />
</clipPath>
<clipPath
id="clip203">
<path
inkscape:connector-curvature="0"
d="M 0.855469,0.140625 H 17.914062 V 17.199219 H 0.855469 Z m 0,0"
id="path5792" />
</clipPath>
<mask
id="mask104">
<g
style="filter:url(#alpha-7)"
id="g5789"
transform="matrix(0.26458333,0,0,0.26458333,74.416306,97.613551)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.33000201;stroke:none"
id="rect5787" />
</g>
</mask>
<filter
id="alpha-7"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix4149-5" />
</filter>
<clipPath
id="clipPath18765">
<rect
y="0"
x="0"
width="18"
height="18"
id="rect18763" />
</clipPath>
<clipPath
id="clipPath18769">
<path
inkscape:connector-curvature="0"
d="M 0.855469,0.140625 H 17.914062 V 17.199219 H 0.855469 Z m 0,0"
id="path18767" />
</clipPath>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="15.839192"
inkscape:cx="-17.385297"
inkscape:cy="14.436445"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1058"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
units="px"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<metadata
id="metadata15243">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>CL1362 jack used by RKD modules, derivative from stock</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-60.318055,-92.904867)">
<path
inkscape:connector-curvature="0"
id="path9179"
d="m 62.274211,99.176454 c -0.09829,0 -0.213825,-0.06812 -0.262108,-0.153471 l -1.576961,-2.790931 c -0.04828,-0.08535 -0.04828,-0.218997 0,-0.305214 l 1.576961,-2.79095 c 0.04828,-0.08535 0.163818,-0.152608 0.262108,-0.152608 h 3.150474 c 0.09829,0 0.213826,0.06725 0.262109,0.152608 l 1.576961,2.79095 c 0.04828,0.08621 0.04828,0.219867 0,0.305214 l -1.576961,2.790931 c -0.04828,0.08536 -0.163818,0.153471 -0.262109,0.153471 z m 0,0"
style="fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:#e0e0e0;stroke-width:0.15641776;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path9183"
d="m 61.425807,96.079446 c 0,-1.33813 1.08551,-2.423645 2.423641,-2.423645 1.338133,0 2.423641,1.085515 2.423641,2.423645 0,1.338992 -1.085508,2.423623 -2.423641,2.423623 -1.338131,0 -2.423641,-1.084631 -2.423641,-2.423623"
style="fill:#545454;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.22072281" />
<path
inkscape:connector-curvature="0"
id="path9185"
d="m 62.598398,96.079446 c 0,-0.690616 0.559567,-1.251055 1.25105,-1.251055 0.69062,0 1.251051,0.560439 1.251051,1.251055 0,0.691485 -0.560431,1.251898 -1.251051,1.251898 -0.691483,0 -1.25105,-0.560413 -1.25105,-1.251898"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.22072281" />
<path
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00a000;stroke-width:0.47500727;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 61.992422,96.07924 c 0,-1.025132 0.830608,-1.857032 1.857026,-1.857032 1.025138,0 1.857027,0.8319 1.857027,1.857032 0,1.026424 -0.831889,1.858287 -1.857027,1.858287 -1.026418,0 -1.857026,-0.831863 -1.857026,-1.858287"
id="path18865"
inkscape:connector-curvature="0" />
</g>
</svg>

+ 188
- 0
plugins/community/repos/Ohmer/res/components/KS_Button_Down_Gold.svg View File

@@ -0,0 +1,188 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<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"
width="18"
height="18"
viewBox="0 0 4.7624999 4.7624998"
version="1.1"
id="svg7595"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="ButtonDown_Dark.svg">
<title
id="title839">Push Button</title>
<defs
id="defs7589">
<clipPath
id="clip444">
<path
d="m 1201.582,338.19922 h 18 v 18 h -18 z m 0,0"
id="path24586"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip444-4">
<path
d="m 1201.582,338.19922 h 18 v 18 h -18 z m 0,0"
id="path24586-6"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip444-4-6">
<path
d="m 1201.582,338.19922 h 18 v 18 h -18 z m 0,0"
id="path24586-6-8"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip444-4-6-5">
<path
d="m 1201.582,338.19922 h 18 v 18 h -18 z m 0,0"
id="path24586-6-8-8"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip444-4-6-5-6">
<path
d="m 1201.582,338.19922 h 18 v 18 h -18 z m 0,0"
id="path24586-6-8-8-5"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip444-4-6-5-6-0">
<path
d="m 1201.582,338.19922 h 18 v 18 h -18 z m 0,0"
id="path24586-6-8-8-5-2"
inkscape:connector-curvature="0" />
</clipPath>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="15.839192"
inkscape:cx="-12.443847"
inkscape:cy="13.296419"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1058"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
units="px" />
<metadata
id="metadata7592">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Push Button</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-46.755712,-67.833036)">
<g
transform="matrix(0.26458333,0,0,0.26458333,-271.16291,-21.64884)"
clip-path="url(#clip444)"
id="g31387"
style="clip-rule:nonzero;fill:#777b33;fill-opacity:1;stroke:none;stroke-opacity:1">
<path
style="fill:#777b33;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-opacity:1"
d="m 1202.125,344.12109 c -1.6953,4.66797 0.7148,9.83594 5.3789,11.53516 4.6719,1.69531 9.8359,-0.71094 11.5352,-5.37891 1.6992,-4.67187 -0.7071,-9.83203 -5.3789,-11.53515 -4.668,-1.69532 -9.8282,0.70703 -11.5352,5.3789"
id="path31385"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(0.24045483,0,0,0.24045483,-241.95333,-13.271443)"
clip-path="url(#clip444-4)"
id="g31387-9"
style="clip-rule:nonzero;fill:#959a40;fill-opacity:1;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
<path
style="fill:#959a40;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1202.125,344.12109 c -1.6953,4.66797 0.7148,9.83594 5.3789,11.53516 4.6719,1.69531 9.8359,-0.71094 11.5352,-5.37891 1.6992,-4.67187 -0.7071,-9.83203 -5.3789,-11.53515 -4.668,-1.69532 -9.8282,0.70703 -11.5352,5.3789"
id="path31385-1"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(0.22746227,0,0,0.22746227,-226.22482,-8.7604367)"
clip-path="url(#clip444-4-6)"
id="g31387-9-9"
style="clip-rule:nonzero;fill:#9ba23e;fill-opacity:1;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
<path
style="fill:#9ba23e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1202.125,344.12109 c -1.6953,4.66797 0.7148,9.83594 5.3789,11.53516 4.6719,1.69531 9.8359,-0.71094 11.5352,-5.37891 1.6992,-4.67187 -0.7071,-9.83203 -5.3789,-11.53515 -4.668,-1.69532 -9.8282,0.70703 -11.5352,5.3789"
id="path31385-1-3"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(0.22746227,0,0,0.22746227,-226.22482,-8.7604367)"
clip-path="url(#clip444-4-6-5)"
id="g31387-9-9-9"
style="clip-rule:nonzero;fill:#8a903d;fill-opacity:1;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
<path
style="fill:#8a903d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1202.125,344.12109 c -1.6953,4.66797 0.7148,9.83594 5.3789,11.53516 4.6719,1.69531 9.8359,-0.71094 11.5352,-5.37891 1.6992,-4.67187 -0.7071,-9.83203 -5.3789,-11.53515 -4.668,-1.69532 -9.8282,0.70703 -11.5352,5.3789"
id="path31385-1-3-5"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(0.1920948,0,0,0.19034151,-183.40959,4.1278622)"
clip-path="url(#clip444-4-6-5-6-0)"
id="g31387-9-9-9-2-2"
style="clip-rule:nonzero;fill:#5c6025;fill-opacity:1;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
<path
style="fill:#5c6025;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1202.125,344.12109 c -1.6953,4.66797 0.7148,9.83594 5.3789,11.53516 4.6719,1.69531 9.8359,-0.71094 11.5352,-5.37891 1.6992,-4.67187 -0.7071,-9.83203 -5.3789,-11.53515 -4.668,-1.69532 -9.8282,0.70703 -11.5352,5.3789"
id="path31385-1-3-5-3-0"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;fill-opacity:1;stroke:#343817;stroke-width:0.2;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="path945"
sodipodi:type="arc"
sodipodi:cx="3.3818154"
sodipodi:cy="-85.547028"
sodipodi:rx="1.6704346"
sodipodi:ry="1.5367998"
sodipodi:start="4.6076692"
sodipodi:end="0"
sodipodi:open="true"
d="m 3.2072074,-87.075409 a 1.6704346,1.5367998 0 0 1 1.2923469,0.386317 1.6704346,1.5367998 0 0 1 0.5526957,1.142064"
transform="rotate(142.6)" />
<path
style="fill:none;fill-opacity:1;stroke:#343817;stroke-width:0.2;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="path945-2"
sodipodi:type="arc"
sodipodi:cx="-3.8534219"
sodipodi:cy="85.717079"
sodipodi:rx="1.6704346"
sodipodi:ry="1.5367998"
sodipodi:start="4.6076692"
sodipodi:end="0"
sodipodi:open="true"
d="m -4.0280299,84.188698 a 1.6704346,1.5367998 0 0 1 1.2923469,0.386316 1.6704346,1.5367998 0 0 1 0.5526957,1.142065"
transform="rotate(-37.4)" />
</g>
</svg>

+ 188
- 0
plugins/community/repos/Ohmer/res/components/KS_Button_Down_Silver.svg View File

@@ -0,0 +1,188 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<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"
width="18"
height="18"
viewBox="0 0 4.7624999 4.7624998"
version="1.1"
id="svg7595"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="ButtonDown_Classic_MASTER.svg">
<title
id="title839">Push Button</title>
<defs
id="defs7589">
<clipPath
id="clip444">
<path
d="m 1201.582,338.19922 h 18 v 18 h -18 z m 0,0"
id="path24586"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip444-4">
<path
d="m 1201.582,338.19922 h 18 v 18 h -18 z m 0,0"
id="path24586-6"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip444-4-6">
<path
d="m 1201.582,338.19922 h 18 v 18 h -18 z m 0,0"
id="path24586-6-8"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip444-4-6-5">
<path
d="m 1201.582,338.19922 h 18 v 18 h -18 z m 0,0"
id="path24586-6-8-8"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip444-4-6-5-6">
<path
d="m 1201.582,338.19922 h 18 v 18 h -18 z m 0,0"
id="path24586-6-8-8-5"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip444-4-6-5-6-0">
<path
d="m 1201.582,338.19922 h 18 v 18 h -18 z m 0,0"
id="path24586-6-8-8-5-2"
inkscape:connector-curvature="0" />
</clipPath>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="31.678384"
inkscape:cx="2.6509554"
inkscape:cy="11.263893"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1058"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
units="px" />
<metadata
id="metadata7592">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Push Button</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-46.755712,-67.833036)">
<g
transform="matrix(0.26458333,0,0,0.26458333,-271.16291,-21.64884)"
clip-path="url(#clip444)"
id="g31387"
style="clip-rule:nonzero;fill:#a2a2a2;fill-opacity:1;stroke:none;stroke-opacity:1">
<path
style="fill:#a2a2a2;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-opacity:1"
d="m 1202.125,344.12109 c -1.6953,4.66797 0.7148,9.83594 5.3789,11.53516 4.6719,1.69531 9.8359,-0.71094 11.5352,-5.37891 1.6992,-4.67187 -0.7071,-9.83203 -5.3789,-11.53515 -4.668,-1.69532 -9.8282,0.70703 -11.5352,5.3789"
id="path31385"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(0.24045483,0,0,0.24045483,-241.95333,-13.271443)"
clip-path="url(#clip444-4)"
id="g31387-9"
style="clip-rule:nonzero;fill:#595959;fill-opacity:1;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
<path
style="fill:#595959;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1202.125,344.12109 c -1.6953,4.66797 0.7148,9.83594 5.3789,11.53516 4.6719,1.69531 9.8359,-0.71094 11.5352,-5.37891 1.6992,-4.67187 -0.7071,-9.83203 -5.3789,-11.53515 -4.668,-1.69532 -9.8282,0.70703 -11.5352,5.3789"
id="path31385-1"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(0.22746227,0,0,0.22746227,-226.22482,-8.7604367)"
clip-path="url(#clip444-4-6)"
id="g31387-9-9"
style="clip-rule:nonzero;fill:#9ba23e;fill-opacity:1;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
<path
style="fill:#9ba23e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1202.125,344.12109 c -1.6953,4.66797 0.7148,9.83594 5.3789,11.53516 4.6719,1.69531 9.8359,-0.71094 11.5352,-5.37891 1.6992,-4.67187 -0.7071,-9.83203 -5.3789,-11.53515 -4.668,-1.69532 -9.8282,0.70703 -11.5352,5.3789"
id="path31385-1-3"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(0.22746227,0,0,0.22746227,-226.22482,-8.7604367)"
clip-path="url(#clip444-4-6-5)"
id="g31387-9-9-9"
style="clip-rule:nonzero;fill:#787878;fill-opacity:1;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
<path
style="fill:#787878;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1202.125,344.12109 c -1.6953,4.66797 0.7148,9.83594 5.3789,11.53516 4.6719,1.69531 9.8359,-0.71094 11.5352,-5.37891 1.6992,-4.67187 -0.7071,-9.83203 -5.3789,-11.53515 -4.668,-1.69532 -9.8282,0.70703 -11.5352,5.3789"
id="path31385-1-3-5"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(0.1920948,0,0,0.19034151,-183.40959,4.1278622)"
clip-path="url(#clip444-4-6-5-6-0)"
id="g31387-9-9-9-2-2"
style="clip-rule:nonzero;fill:#515151;fill-opacity:1;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
<path
style="fill:#515151;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1202.125,344.12109 c -1.6953,4.66797 0.7148,9.83594 5.3789,11.53516 4.6719,1.69531 9.8359,-0.71094 11.5352,-5.37891 1.6992,-4.67187 -0.7071,-9.83203 -5.3789,-11.53515 -4.668,-1.69532 -9.8282,0.70703 -11.5352,5.3789"
id="path31385-1-3-5-3-0"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;fill-opacity:1;stroke:#282828;stroke-width:0.2;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="path945"
sodipodi:type="arc"
sodipodi:cx="3.3818154"
sodipodi:cy="-85.547028"
sodipodi:rx="1.6704346"
sodipodi:ry="1.5367998"
sodipodi:start="4.6076692"
sodipodi:end="0"
sodipodi:open="true"
d="m 3.2072074,-87.075409 a 1.6704346,1.5367998 0 0 1 1.2923469,0.386317 1.6704346,1.5367998 0 0 1 0.5526957,1.142064"
transform="rotate(142.6)" />
<path
style="fill:none;fill-opacity:1;stroke:#282828;stroke-width:0.2;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="path945-2"
sodipodi:type="arc"
sodipodi:cx="-3.8534219"
sodipodi:cy="85.717079"
sodipodi:rx="1.6704346"
sodipodi:ry="1.5367998"
sodipodi:start="4.6076692"
sodipodi:end="0"
sodipodi:open="true"
d="m -4.0280299,84.188698 a 1.6704346,1.5367998 0 0 1 1.2923469,0.386316 1.6704346,1.5367998 0 0 1 0.5526957,1.142065"
transform="rotate(-37.4)" />
</g>
</svg>

+ 188
- 0
plugins/community/repos/Ohmer/res/components/KS_Button_Up_Gold.svg View File

@@ -0,0 +1,188 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<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"
width="18"
height="18"
viewBox="0 0 4.7624999 4.7624998"
version="1.1"
id="svg7595"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="ButtonUp_Dark.svg">
<title
id="title839">Push Button</title>
<defs
id="defs7589">
<clipPath
id="clip444">
<path
d="m 1201.582,338.19922 h 18 v 18 h -18 z m 0,0"
id="path24586"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip444-4">
<path
d="m 1201.582,338.19922 h 18 v 18 h -18 z m 0,0"
id="path24586-6"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip444-4-6">
<path
d="m 1201.582,338.19922 h 18 v 18 h -18 z m 0,0"
id="path24586-6-8"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip444-4-6-5">
<path
d="m 1201.582,338.19922 h 18 v 18 h -18 z m 0,0"
id="path24586-6-8-8"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip444-4-6-5-6">
<path
d="m 1201.582,338.19922 h 18 v 18 h -18 z m 0,0"
id="path24586-6-8-8-5"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip444-4-6-5-6-0">
<path
d="m 1201.582,338.19922 h 18 v 18 h -18 z m 0,0"
id="path24586-6-8-8-5-2"
inkscape:connector-curvature="0" />
</clipPath>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="11.2"
inkscape:cx="-53.017857"
inkscape:cy="21.133928"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1058"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
units="px" />
<metadata
id="metadata7592">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Push Button</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-46.755712,-67.833036)">
<g
transform="matrix(0.26458333,0,0,0.26458333,-271.16291,-21.64884)"
clip-path="url(#clip444)"
id="g31387"
style="clip-rule:nonzero;fill:#777b33;fill-opacity:1;stroke:none;stroke-opacity:1">
<path
style="fill:#777b33;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-opacity:1"
d="m 1202.125,344.12109 c -1.6953,4.66797 0.7148,9.83594 5.3789,11.53516 4.6719,1.69531 9.8359,-0.71094 11.5352,-5.37891 1.6992,-4.67187 -0.7071,-9.83203 -5.3789,-11.53515 -4.668,-1.69532 -9.8282,0.70703 -11.5352,5.3789"
id="path31385"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(0.24045483,0,0,0.24045483,-241.95333,-13.271443)"
clip-path="url(#clip444-4)"
id="g31387-9"
style="clip-rule:nonzero;fill:#959a40;fill-opacity:1;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
<path
style="fill:#959a40;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1202.125,344.12109 c -1.6953,4.66797 0.7148,9.83594 5.3789,11.53516 4.6719,1.69531 9.8359,-0.71094 11.5352,-5.37891 1.6992,-4.67187 -0.7071,-9.83203 -5.3789,-11.53515 -4.668,-1.69532 -9.8282,0.70703 -11.5352,5.3789"
id="path31385-1"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(0.22746227,0,0,0.22746227,-226.22482,-8.7604367)"
clip-path="url(#clip444-4-6)"
id="g31387-9-9"
style="clip-rule:nonzero;fill:#9ba23e;fill-opacity:1;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
<path
style="fill:#9ba23e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1202.125,344.12109 c -1.6953,4.66797 0.7148,9.83594 5.3789,11.53516 4.6719,1.69531 9.8359,-0.71094 11.5352,-5.37891 1.6992,-4.67187 -0.7071,-9.83203 -5.3789,-11.53515 -4.668,-1.69532 -9.8282,0.70703 -11.5352,5.3789"
id="path31385-1-3"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(0.22746227,0,0,0.22746227,-226.22482,-8.7604367)"
clip-path="url(#clip444-4-6-5)"
id="g31387-9-9-9"
style="clip-rule:nonzero;fill:#a5ad49;fill-opacity:1;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
<path
style="fill:#a5ad49;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1202.125,344.12109 c -1.6953,4.66797 0.7148,9.83594 5.3789,11.53516 4.6719,1.69531 9.8359,-0.71094 11.5352,-5.37891 1.6992,-4.67187 -0.7071,-9.83203 -5.3789,-11.53515 -4.668,-1.69532 -9.8282,0.70703 -11.5352,5.3789"
id="path31385-1-3-5"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(0.1920948,0,0,0.19034151,-183.40959,4.1278622)"
clip-path="url(#clip444-4-6-5-6-0)"
id="g31387-9-9-9-2-2"
style="clip-rule:nonzero;fill:#70752d;fill-opacity:1;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
<path
style="fill:#70752d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1202.125,344.12109 c -1.6953,4.66797 0.7148,9.83594 5.3789,11.53516 4.6719,1.69531 9.8359,-0.71094 11.5352,-5.37891 1.6992,-4.67187 -0.7071,-9.83203 -5.3789,-11.53515 -4.668,-1.69532 -9.8282,0.70703 -11.5352,5.3789"
id="path31385-1-3-5-3-0"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;fill-opacity:1;stroke:#4c5221;stroke-width:0.2;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="path945"
sodipodi:type="arc"
sodipodi:cx="3.3818154"
sodipodi:cy="-85.547028"
sodipodi:rx="1.6704346"
sodipodi:ry="1.5367998"
sodipodi:start="4.6076692"
sodipodi:end="0"
sodipodi:open="true"
d="m 3.2072074,-87.075409 a 1.6704346,1.5367998 0 0 1 1.2923469,0.386317 1.6704346,1.5367998 0 0 1 0.5526957,1.142064"
transform="rotate(142.6)" />
<path
style="fill:none;fill-opacity:1;stroke:#4c5221;stroke-width:0.2;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="path945-2"
sodipodi:type="arc"
sodipodi:cx="-3.8534219"
sodipodi:cy="85.717079"
sodipodi:rx="1.6704346"
sodipodi:ry="1.5367998"
sodipodi:start="4.6076692"
sodipodi:end="0"
sodipodi:open="true"
d="m -4.0280299,84.188698 a 1.6704346,1.5367998 0 0 1 1.2923469,0.386316 1.6704346,1.5367998 0 0 1 0.5526957,1.142065"
transform="rotate(-37.4)" />
</g>
</svg>

+ 188
- 0
plugins/community/repos/Ohmer/res/components/KS_Button_Up_Silver.svg View File

@@ -0,0 +1,188 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<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"
width="18"
height="18"
viewBox="0 0 4.7624999 4.7624998"
version="1.1"
id="svg7595"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="ButtonUp_Classic_MASTER.svg">
<title
id="title839">Push Button</title>
<defs
id="defs7589">
<clipPath
id="clip444">
<path
d="m 1201.582,338.19922 h 18 v 18 h -18 z m 0,0"
id="path24586"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip444-4">
<path
d="m 1201.582,338.19922 h 18 v 18 h -18 z m 0,0"
id="path24586-6"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip444-4-6">
<path
d="m 1201.582,338.19922 h 18 v 18 h -18 z m 0,0"
id="path24586-6-8"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip444-4-6-5">
<path
d="m 1201.582,338.19922 h 18 v 18 h -18 z m 0,0"
id="path24586-6-8-8"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip444-4-6-5-6">
<path
d="m 1201.582,338.19922 h 18 v 18 h -18 z m 0,0"
id="path24586-6-8-8-5"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
id="clip444-4-6-5-6-0">
<path
d="m 1201.582,338.19922 h 18 v 18 h -18 z m 0,0"
id="path24586-6-8-8-5-2"
inkscape:connector-curvature="0" />
</clipPath>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="31.678384"
inkscape:cx="2.6509554"
inkscape:cy="11.263893"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1058"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
units="px" />
<metadata
id="metadata7592">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Push Button</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-46.755712,-67.833036)">
<g
transform="matrix(0.26458333,0,0,0.26458333,-271.16291,-21.64884)"
clip-path="url(#clip444)"
id="g31387"
style="clip-rule:nonzero;fill:#a2a2a2;fill-opacity:1;stroke:none;stroke-opacity:1">
<path
style="fill:#a2a2a2;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-opacity:1"
d="m 1202.125,344.12109 c -1.6953,4.66797 0.7148,9.83594 5.3789,11.53516 4.6719,1.69531 9.8359,-0.71094 11.5352,-5.37891 1.6992,-4.67187 -0.7071,-9.83203 -5.3789,-11.53515 -4.668,-1.69532 -9.8282,0.70703 -11.5352,5.3789"
id="path31385"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(0.24045483,0,0,0.24045483,-241.95333,-13.271443)"
clip-path="url(#clip444-4)"
id="g31387-9"
style="clip-rule:nonzero;fill:#6d6d6d;fill-opacity:1;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
<path
style="fill:#6d6d6d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1202.125,344.12109 c -1.6953,4.66797 0.7148,9.83594 5.3789,11.53516 4.6719,1.69531 9.8359,-0.71094 11.5352,-5.37891 1.6992,-4.67187 -0.7071,-9.83203 -5.3789,-11.53515 -4.668,-1.69532 -9.8282,0.70703 -11.5352,5.3789"
id="path31385-1"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(0.22746227,0,0,0.22746227,-226.22482,-8.7604367)"
clip-path="url(#clip444-4-6)"
id="g31387-9-9"
style="clip-rule:nonzero;fill:#9ba23e;fill-opacity:1;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
<path
style="fill:#9ba23e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1202.125,344.12109 c -1.6953,4.66797 0.7148,9.83594 5.3789,11.53516 4.6719,1.69531 9.8359,-0.71094 11.5352,-5.37891 1.6992,-4.67187 -0.7071,-9.83203 -5.3789,-11.53515 -4.668,-1.69532 -9.8282,0.70703 -11.5352,5.3789"
id="path31385-1-3"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(0.22746227,0,0,0.22746227,-226.22482,-8.7604367)"
clip-path="url(#clip444-4-6-5)"
id="g31387-9-9-9"
style="clip-rule:nonzero;fill:#848484;fill-opacity:1;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
<path
style="fill:#848484;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1202.125,344.12109 c -1.6953,4.66797 0.7148,9.83594 5.3789,11.53516 4.6719,1.69531 9.8359,-0.71094 11.5352,-5.37891 1.6992,-4.67187 -0.7071,-9.83203 -5.3789,-11.53515 -4.668,-1.69532 -9.8282,0.70703 -11.5352,5.3789"
id="path31385-1-3-5"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(0.1920948,0,0,0.19034151,-183.40959,4.1278622)"
clip-path="url(#clip444-4-6-5-6-0)"
id="g31387-9-9-9-2-2"
style="clip-rule:nonzero;fill:#666666;fill-opacity:1;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
<path
style="fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.40042442;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1202.125,344.12109 c -1.6953,4.66797 0.7148,9.83594 5.3789,11.53516 4.6719,1.69531 9.8359,-0.71094 11.5352,-5.37891 1.6992,-4.67187 -0.7071,-9.83203 -5.3789,-11.53515 -4.668,-1.69532 -9.8282,0.70703 -11.5352,5.3789"
id="path31385-1-3-5-3-0"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;fill-opacity:1;stroke:#373737;stroke-width:0.2;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="path945"
sodipodi:type="arc"
sodipodi:cx="3.3818154"
sodipodi:cy="-85.547028"
sodipodi:rx="1.6704346"
sodipodi:ry="1.5367998"
sodipodi:start="4.6076692"
sodipodi:end="0"
sodipodi:open="true"
d="m 3.2072074,-87.075409 a 1.6704346,1.5367998 0 0 1 1.2923469,0.386317 1.6704346,1.5367998 0 0 1 0.5526957,1.142064"
transform="rotate(142.6)" />
<path
style="fill:none;fill-opacity:1;stroke:#373737;stroke-width:0.2;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="path945-2"
sodipodi:type="arc"
sodipodi:cx="-3.8534219"
sodipodi:cy="85.717079"
sodipodi:rx="1.6704346"
sodipodi:ry="1.5367998"
sodipodi:start="4.6076692"
sodipodi:end="0"
sodipodi:open="true"
d="m -4.0280299,84.188698 a 1.6704346,1.5367998 0 0 1 1.2923469,0.386316 1.6704346,1.5367998 0 0 1 0.5526957,1.142065"
transform="rotate(-37.4)" />
</g>
</svg>

+ 234
- 0
plugins/community/repos/Ohmer/res/components/KS_Encoder.svg View File

@@ -0,0 +1,234 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In -->

<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"
x="0px"
y="0px"
width="82"
height="82"
viewBox="0 0 82.000001 82.000001"
xml:space="preserve"
id="svg64"
sodipodi:docname="KS_Gold_Encoder.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"><title
id="title4560">Golden Knob</title><metadata
id="metadata68"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Golden Knob</dc:title></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="1920"
inkscape:window-height="1058"
id="namedview66"
showgrid="false"
inkscape:zoom="31.149855"
inkscape:cx="36.40849"
inkscape:cy="71.80425"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="g62"
showguides="true"
inkscape:guide-bbox="true" /><style
type="text/css"
id="style2">
.st0{fill:none;}
.st1{fill:#5D5D5D;}
.st2{fill:#807474;}
.st3{fill:#FFF7C2;}
.st4{fill:#B1A496;}
.st5{fill:#D12825;}
.st6{fill:none;stroke:#000000;stroke-width:0.2782;stroke-miterlimit:10;}
.st7{fill:none;stroke:#000000;stroke-width:0.2618;stroke-miterlimit:10;}
.st8{fill:none;stroke:#000000;stroke-width:0.241;stroke-miterlimit:10;}
.st9{fill:none;stroke:#000000;stroke-width:0.2189;stroke-miterlimit:10;}
.st10{fill:none;stroke:#000000;stroke-width:0.1951;stroke-miterlimit:10;}
.st11{fill:none;stroke:#000000;stroke-width:0.1718;stroke-miterlimit:10;}
.st12{fill:none;stroke:#000000;stroke-width:0.1483;stroke-miterlimit:10;}
.st13{fill:none;stroke:#000000;stroke-width:0.1205;stroke-miterlimit:10;}
.st14{fill:none;stroke:#000000;stroke-width:0.0959;stroke-miterlimit:10;}
.st15{fill:none;stroke:#000000;stroke-width:0.0722;stroke-miterlimit:10;}
.st16{fill:none;stroke:#000000;stroke-width:0.0531;stroke-miterlimit:10;}
.st17{fill:none;stroke:#000000;stroke-width:0.0359;stroke-miterlimit:10;}
</style><defs
id="defs4" /><g
id="g62"
transform="translate(0,-136.517)"><line
class="st0"
x1="10.017334"
y1="177.96744"
x2="10.009912"
y2="177.96725"
id="line6"
style="fill:none;stroke-width:0.5" /><path
class="st1"
d="m 72.355384,152.12185 c 0.460523,1.87078 0.213556,3.96723 -1.058231,5.96984 -2.062199,3.25676 -1.384982,7.27087 1.079231,9.7419 0.99558,0.99833 2.284943,1.74605 3.801353,2.09098 1.608331,0.36641 2.894034,1.11111 3.865149,2.08394 0.427066,0.42824 0.794545,0.90263 1.094084,1.40872 -0.763921,-7.60558 -3.695625,-15.0339 -8.781586,-21.29538 z m 3.801977,33.08376 c -1.517033,0.34073 -2.80862,1.08503 -3.806953,2.08061 -2.471207,2.46468 -3.158898,6.47626 -1.105873,9.73888 1.266732,2.00628 1.507726,4.10324 1.042191,5.97291 5.103114,-6.24724 8.054894,-13.66819 8.839356,-21.27179 -0.995916,1.64972 -2.655959,2.95934 -4.968721,3.47939 z m -15.732079,22.60947 c -3.256766,-2.0622 -7.270876,-1.38499 -9.741903,1.07923 -0.998333,0.99558 -1.746051,2.28494 -2.090974,3.80135 -0.366418,1.60833 -1.110186,2.89439 -2.083947,3.86515 -0.428237,0.42706 -0.902453,0.79408 -1.408715,1.09408 7.606045,-0.76374 15.034361,-3.69544 21.296025,-8.78187 -1.871428,0.46081 -3.967407,0.21402 -5.970486,-1.05794 z m -29.194535,1.05325 c -2.46468,-2.47121 -6.47626,-3.1589 -9.738873,-1.10587 -2.006284,1.26673 -4.103251,1.50772 -5.972921,1.04219 6.247243,5.10311 13.668193,8.05489 21.271794,8.83935 -1.649713,-0.99591 -2.959332,-2.65595 -3.479389,-4.96872 -0.340261,-1.51685 -1.084565,-2.80844 -2.080611,-3.80695 z"
id="path8"
inkscape:connector-curvature="0"
style="fill:#5d5d5d;stroke-width:0.5" /><path
class="st1"
d="m 66.480379,146.23089 c -1.869669,-0.46553 -3.966635,-0.22454 -5.972919,1.04219 -3.262612,2.05303 -7.274372,1.3658 -9.738872,-1.10587 -0.995579,-0.99833 -1.739884,-2.28992 -2.080611,-3.80695 -0.520057,-2.31277 -1.829677,-3.97281 -3.479391,-4.96873 3.443049,0.35122 6.850494,1.15491 10.129764,2.39682 0.484384,0.18776 0.967756,0.38371 1.445166,0.58539 3.433951,1.45371 6.698293,3.41005 9.696863,5.85715 z"
id="path10"
inkscape:connector-curvature="0"
style="fill:#5d5d5d;stroke-width:0.5" /><path
class="st1"
d="m 36.899769,137.38018 c -0.06005,0.039 -0.120378,0.0704 -0.176947,0.11292 -0.438793,0.2751 -0.85314,0.60357 -1.231767,0.98116 -0.973761,0.97076 -1.717529,2.25682 -2.083947,3.86515 -1.201947,5.27357 -7.258377,7.77539 -11.832877,4.88059 -2.003079,-1.27197 -4.099059,-1.51876 -5.96984,-1.05823 1.479615,-1.20019 3.022685,-2.28 4.618301,-3.24311 0.442267,-0.26465 0.888014,-0.52582 1.341002,-0.77241 4.716321,-2.59928 9.841634,-4.17981 15.053683,-4.73827 0.09496,-0.01 0.186609,-0.017 0.282392,-0.0278 z"
id="path12"
inkscape:connector-curvature="0"
style="fill:#5d5d5d;stroke-width:0.5" /><path
class="st1"
d="m 9.7127868,152.03706 c -0.4655347,1.86967 -0.2245414,3.96663 1.0421902,5.97292 2.053026,3.26261 1.365801,7.27437 -1.1054063,9.73905 -0.9983327,0.99558 -2.28992,1.73988 -3.8069521,2.08061 -2.2315493,0.50259 -3.8526984,1.73772 -4.85516144,3.30292 -0.0426501,0.0564 -0.0743899,0.11655 -0.11356039,0.17647 0.0105847,-0.0956 0.0181514,-0.18752 0.0285563,-0.28264 0.59416223,-5.38029 2.27363063,-10.6638 5.03805053,-15.49646 0.2551184,-0.45199 0.5208556,-0.894 0.7938437,-1.33535 0.895896,-1.43052 1.8878279,-2.82241 2.9784395,-4.15752 z"
id="path14"
inkscape:connector-curvature="0"
style="fill:#5d5d5d;stroke-width:0.5" /><path
d="m 66.480379,146.23089 c -1.869669,-0.46553 -3.966635,-0.22454 -5.972919,1.04219 -3.262612,2.05303 -7.274372,1.3658 -9.738872,-1.10587 -0.995579,-0.99833 -1.739884,-2.28992 -2.080611,-3.80695 -0.520057,-2.31277 -1.829677,-3.97281 -3.479391,-4.96873 -2.343998,-0.24699 -4.705516,-0.28586 -7.049625,-0.11547 -0.420884,0.0243 -0.841777,0.0625 -1.258725,0.1043 -0.06005,0.039 -0.120379,0.0704 -0.176948,0.11292 -0.438792,0.2751 -0.853139,0.60357 -1.231767,0.98116 -0.973761,0.97076 -1.717529,2.25682 -2.083947,3.86515 -1.201947,5.27357 -7.258376,7.77539 -11.832877,4.88059 -2.003078,-1.27197 -4.099058,-1.51876 -5.96984,-1.05823 -1.068743,0.86127 -2.102606,1.79332 -3.097454,2.78542 -0.994848,0.9921 -1.929774,2.02337 -2.7936831,3.09005 -0.4655347,1.86967 -0.2245414,3.96663 1.0421901,5.97292 2.053026,3.26261 1.365801,7.27437 -1.1054062,9.73905 -0.9983327,0.99558 -2.28992,1.73988 -3.8069521,2.08061 -2.2315493,0.50259 -3.8526984,1.73772 -4.85516144,3.30292 -0.0426502,0.0564 -0.0743899,0.11655 -0.11356039,0.17647 -0.0428296,0.41699 -0.0823594,0.83794 -0.10778092,1.25843 -0.17624082,2.34394 -0.14435772,4.7054 0.0966066,7.04992 0.30000515,0.50626 0.66701805,0.98048 1.09408435,1.40871 0.970755,0.97376 2.256818,1.71753 3.8651483,2.08395 1.5164107,0.34492 2.8057736,1.09264 3.8013528,2.09097 2.46468,2.47121 3.141431,6.48514 1.079231,9.74191 -1.2719665,2.00308 -1.5187534,4.09905 -1.0582304,5.96984 0.8612724,1.06874 1.7933234,2.1026 2.7854224,3.09745 0.9921,0.99485 2.02337,1.92977 3.090049,2.79368 1.869669,0.46554 3.966637,0.22455 5.972921,-1.04219 3.262612,-2.05302 7.274372,-1.3658 9.738872,1.10588 0.995579,0.99833 1.739884,2.28992 2.080611,3.80695 0.520057,2.31276 1.829677,3.9728 3.479389,4.96872 2.760815,0.29029 5.546885,0.29399 8.30835,0.0112 0.506262,-0.30001 0.980478,-0.66702 1.408715,-1.09409 0.973761,-0.97075 1.717529,-2.25682 2.083947,-3.86515 0.344922,-1.51641 1.092641,-2.80577 2.090974,-3.80135 2.471207,-2.46468 6.485137,-3.14143 9.741903,-1.07923 2.003079,1.27197 4.099058,1.51875 5.96984,1.05823 1.068743,-0.86127 2.102606,-1.79332 3.097454,-2.78542 0.994848,-0.9921 1.929774,-2.02337 2.793683,-3.09005 0.465535,-1.86967 0.224542,-3.96664 -1.04219,-5.97292 -2.053026,-3.26261 -1.365334,-7.27419 1.105873,-9.73887 0.998333,-0.99558 2.28992,-1.73989 3.806952,-2.08061 2.312762,-0.52006 3.972805,-1.82968 4.968722,-3.47939 0.290292,-2.76082 0.293992,-5.54689 0.01117,-8.30835 -0.300005,-0.50627 -0.667018,-0.98048 -1.094084,-1.40872 -0.970755,-0.97376 -2.256818,-1.71753 -3.865149,-2.08395 -1.51641,-0.34492 -2.805773,-1.09264 -3.801352,-2.09097 -2.464681,-2.47121 -3.141431,-6.48514 -1.079232,-9.7419 1.271967,-2.00308 1.518754,-4.09906 1.058231,-5.96984 -0.861272,-1.06875 -1.793323,-2.10261 -2.785422,-3.09746 -0.9921,-0.99484 -2.024483,-1.92966 -3.090516,-2.79386 z m -1.398644,11.78176 c 2.710878,3.33397 4.62186,7.10555 5.733811,11.05252 0.496156,1.73662 0.8297,3.51559 1.010995,5.30447 0.09055,0.89816 0.142804,1.79977 0.15564,2.69798 l -30.982477,0.44936 -21.59319,22.22705 c -0.116341,-0.10968 -0.233143,-0.2265 -0.349478,-0.34314 -0.762442,-0.76487 -1.475648,-1.55738 -2.139259,-2.37847 -2.710877,-3.33397 -4.621859,-7.10555 -5.733631,-11.05298 -0.496155,-1.73662 -0.8297,-3.5156 -1.010994,-5.30448 -0.09056,-0.89816 -0.142338,-1.79959 -0.15564,-2.69798 l 30.982479,-0.44935 21.593187,-22.22705 c 0.116341,0.10967 0.233143,0.22649 0.349479,0.34314 0.762441,0.76487 1.475467,1.55784 2.139078,2.37893 z"
id="path16"
inkscape:connector-curvature="0"
style="stroke-width:0.5" /><path
class="st2"
d="m 62.942477,155.63418 c 0.762441,0.76487 1.475647,1.55738 2.139258,2.37847 2.710878,3.33397 4.62186,7.10555 5.733811,11.05252 l -29.816022,8.45228 21.593188,-22.22705 c 0.116807,0.10985 0.233429,0.22714 0.349765,0.34378 z"
id="path18"
inkscape:connector-curvature="0"
style="fill:#807474;stroke-width:0.5" /><path
class="st3"
d="m 70.815833,169.06581 c 0.496156,1.73662 0.8297,3.5156 1.010994,5.30448 0.09056,0.89816 0.142804,1.79977 0.15564,2.69798 l -30.982476,0.44936 z"
id="path20"
inkscape:connector-curvature="0"
style="fill:#fff7c2;stroke-width:0.5" /><path
class="st3"
d="M 40.999524,177.51745 11.1835,185.96973 c -0.496156,-1.73662 -0.8297,-3.5156 -1.010994,-5.30448 -0.09056,-0.89816 -0.142338,-1.79959 -0.15564,-2.69798 z"
id="path22"
inkscape:connector-curvature="0"
style="fill:#fff7c2;stroke-width:0.5" /><path
class="st2"
d="m 40.999524,177.51745 -21.59319,22.22705 c -0.11634,-0.10968 -0.233143,-0.2265 -0.349478,-0.34314 -0.762442,-0.76487 -1.475648,-1.55739 -2.139259,-2.37848 -2.710877,-3.33397 -4.621859,-7.10555 -5.733631,-11.05297 z"
id="path24"
inkscape:connector-curvature="0"
style="fill:#807474;stroke-width:0.5" /><path
class="st4"
d="m 71.982001,177.06809 c 0.01935,1.23027 -0.03506,2.4573 -0.163998,3.68025 -0.601913,5.83974 -2.868997,11.53979 -6.789235,16.33905 -0.665724,0.81941 -1.38111,1.61057 -2.14598,2.37301 -0.76487,0.76244 -1.557382,1.47565 -2.378938,2.13908 -4.8101,3.90758 -10.515919,6.15871 -16.357637,6.74509 -2.121789,0.21642 -4.257031,0.21332 -6.378048,-0.009 -4.118307,-0.42607 -8.168193,-1.67617 -11.874424,-3.75674 -1.554459,-0.86489 -3.048904,-1.87438 -4.46463,-3.0325 -0.695633,-0.56283 -1.366504,-1.16487 -2.023243,-1.80219 l 21.593189,-22.22705 z"
id="path26"
inkscape:connector-curvature="0"
style="fill:#b1a496;stroke-width:0.5" /><path
class="st4"
d="m 62.593178,155.29058 -21.593187,22.22705 -30.982479,0.44935 c -0.019353,-1.23027 0.03506,-2.4573 0.163997,-3.68025 0.601914,-5.83974 2.868998,-11.53979 6.789236,-16.33905 0.665723,-0.81941 1.38111,-1.61057 2.14598,-2.37301 0.764869,-0.76244 1.557382,-1.47565 2.378937,-2.13908 4.809921,-3.90711 10.51592,-6.15871 16.357638,-6.74509 2.121789,-0.21642 4.257031,-0.21332 6.37805,0.009 4.118307,0.42607 8.168193,1.67616 11.874423,3.75673 1.554459,0.8649 3.048904,1.87438 4.464629,3.0325 0.694986,0.56311 1.365858,1.16516 2.022776,1.80202 z"
id="path28"
inkscape:connector-curvature="0"
style="fill:#b1a496;stroke-width:0.5" /><line
class="st0"
x1="71.989426"
y1="177.06828"
x2="71.981987"
y2="177.0681"
id="line32"
style="fill:none;stroke-width:0.5" /><circle
transform="rotate(-44.923422)"
class="st6"
cx="-96.328751"
cy="154.63988"
id="ellipse34"
r="0"
style="fill:none;stroke:#000000;stroke-width:0.13909215;stroke-miterlimit:10" /><circle
transform="rotate(-44.923422)"
class="st7"
cx="-96.328751"
cy="154.63988"
id="ellipse36"
r="0"
style="fill:none;stroke:#000000;stroke-width:0.1308926;stroke-miterlimit:10" /><circle
transform="rotate(-44.923422)"
class="st8"
cx="-96.328751"
cy="154.63988"
id="ellipse38"
r="0"
style="fill:none;stroke:#000000;stroke-width:0.1204932;stroke-miterlimit:10" /><circle
transform="rotate(-44.923422)"
class="st9"
cx="-96.328751"
cy="154.63988"
id="ellipse40"
r="0"
style="fill:none;stroke:#000000;stroke-width:0.10944382;stroke-miterlimit:10" /><circle
transform="rotate(-44.923422)"
class="st10"
cx="-96.328751"
cy="154.63988"
id="ellipse42"
r="0"
style="fill:none;stroke:#000000;stroke-width:0.09754449;stroke-miterlimit:10" /><circle
transform="rotate(-44.923422)"
class="st11"
cx="-96.328751"
cy="154.63988"
id="ellipse44"
r="0"
style="fill:none;stroke:#000000;stroke-width:0.08589515;stroke-miterlimit:10" /><circle
transform="rotate(-44.923422)"
class="st12"
cx="-96.328751"
cy="154.63988"
id="ellipse46"
r="0"
style="fill:none;stroke:#000000;stroke-width:0.07414582;stroke-miterlimit:10" /><circle
transform="rotate(-44.923422)"
class="st13"
cx="-96.328751"
cy="154.63988"
id="ellipse48"
r="0"
style="fill:none;stroke:#000000;stroke-width:0.0602466;stroke-miterlimit:10" /><circle
transform="rotate(-44.923422)"
class="st14"
cx="-96.328751"
cy="154.63988"
id="ellipse50"
r="0"
style="fill:none;stroke:#000000;stroke-width:0.0479473;stroke-miterlimit:10" /><circle
transform="rotate(-44.923422)"
class="st15"
cx="-96.328751"
cy="154.63988"
id="ellipse52"
r="0"
style="fill:none;stroke:#000000;stroke-width:0.03609796;stroke-miterlimit:10" /><circle
transform="rotate(-44.923422)"
class="st16"
cx="-96.328751"
cy="154.63988"
id="ellipse54"
r="0"
style="fill:none;stroke:#000000;stroke-width:0.0265485;stroke-miterlimit:10" /><circle
transform="rotate(-44.923422)"
class="st17"
cx="-96.328751"
cy="154.63988"
id="ellipse56"
r="0"
style="fill:none;stroke:#000000;stroke-width:0.01794899;stroke-miterlimit:10" /><circle
transform="rotate(-44.923422)"
class="st0"
cx="-96.328751"
cy="154.63988"
id="ellipse58"
r="0"
style="fill:none;stroke-width:0.49997178" /><path
class="st1"
d="m 9.6226616,187.2013 c 2.4646804,2.47121 3.1414304,6.48514 1.0792314,9.7419 -1.271967,2.00308 -1.5187539,4.09906 -1.0582308,5.96984 -2.452847,-3.01911 -4.4072418,-6.30961 -5.8557195,-9.76576 -0.2006596,-0.47762 -0.3948168,-0.96238 -0.5780586,-1.45043 -1.2225617,-3.26512 -2.0063987,-6.6564 -2.34827451,-10.07937 0.30000511,0.50627 0.66701801,0.98048 1.09408431,1.40872 0.970755,0.97376 2.256818,1.71753 3.8651483,2.08395 1.5168773,0.3451 2.8062402,1.09282 3.8018194,2.09115 z"
id="path60"
inkscape:connector-curvature="0"
style="fill:#5d5d5d;stroke-width:0.5" /></g></svg>

+ 97
- 0
plugins/community/repos/Ohmer/res/components/NKKH_0.svg View File

@@ -0,0 +1,97 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<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"
width="40"
height="28"
viewBox="0 0 10.583333 7.4083333"
version="1.1"
id="svg20198"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="NKKH_0.svg">
<defs
id="defs20192" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="22.4"
inkscape:cx="9.0051186"
inkscape:cy="12.623917"
inkscape:document-units="mm"
inkscape:current-layer="g20169-3"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1058"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
units="px"
showguides="true"
inkscape:guide-bbox="true" />
<metadata
id="metadata20195">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-80.57476,-117.14846)">
<g
transform="matrix(0.33514843,0,0,-0.33529537,-224.0132,506.00388)"
id="g20169"
style="stroke-width:1.05237091">
<g
transform="matrix(0.99501487,0,0,0.99507779,32.585756,3.8599038)"
id="g20169-3"
style="stroke-width:1.11299801">
<g
id="g828">
<path
inkscape:connector-curvature="0"
id="path6481-7"
style="opacity:1;vector-effect:none;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:#e0e0e0;stroke-width:0.69404709;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:8.5;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 887.20998,1155.8472 9.2769,5.3496 9.2769,-5.3496 v -10.7027 l -9.2769,-5.3505 -9.2769,5.3505 z" />
<path
inkscape:connector-curvature="0"
id="path6489-5"
style="opacity:1;vector-effect:none;fill:#cdcdcd;fill-opacity:1;fill-rule:nonzero;stroke:#939593;stroke-width:0.69404709;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:8.5;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 889.77734,1150.4837 c 0,3.6968 3.00972,6.7035 6.70928,6.7035 3.70043,0 6.71102,-3.0067 6.71102,-6.7035 0,-3.6966 -3.01059,-6.7042 -6.71102,-6.7042 -3.69956,0 -6.70928,3.0076 -6.70928,6.7042" />
<path
inkscape:connector-curvature="0"
id="path6497-9"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.69404703;stroke-miterlimit:4;stroke-dasharray:none"
d="m 896.48749,1145.6464 c -2.68143,0 -4.85425,2.1697 -4.85425,4.8484 0,2.6797 2.17282,4.8495 4.85425,4.8495 2.68056,0 4.85337,-2.1698 4.85337,-4.8495 0,-2.6787 -2.17281,-4.8484 -4.85337,-4.8484" />
<path
d="m 896.44818,1153.0159 -14.88488,2.0019 v -9.0743 l 14.88488,1.5654 z"
style="opacity:1;vector-effect:none;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#939593;stroke-width:0.69404709;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:8.5;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path20173"
inkscape:connector-curvature="0" />
</g>
</g>
</g>
</g>
</svg>

+ 98
- 0
plugins/community/repos/Ohmer/res/components/NKKH_1.svg View File

@@ -0,0 +1,98 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<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"
width="40"
height="28"
viewBox="0 0 10.583333 7.4083333"
version="1.1"
id="svg20198"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="NKKH_1.svg">
<defs
id="defs20192" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="22.4"
inkscape:cx="9.0051186"
inkscape:cy="12.623917"
inkscape:document-units="mm"
inkscape:current-layer="g20169-3"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1058"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
units="px"
showguides="true"
inkscape:guide-bbox="true" />
<metadata
id="metadata20195">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-80.57476,-117.14846)">
<g
transform="matrix(0.33514843,0,0,-0.33529537,-224.0132,506.00388)"
id="g20169"
style="stroke-width:1.05237091">
<g
transform="matrix(0.99501487,0,0,0.99507779,32.585756,3.8599038)"
id="g20169-3"
style="stroke-width:1.11299801">
<g
id="g828"
transform="translate(0.03174684)">
<path
inkscape:connector-curvature="0"
id="path6481-7"
style="opacity:1;vector-effect:none;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:#e0e0e0;stroke-width:0.69404709;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:8.5;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 905.72574,1155.8472 -9.2769,5.3496 -9.2769,-5.3496 v -10.7027 l 9.2769,-5.3505 9.2769,5.3505 z" />
<path
inkscape:connector-curvature="0"
id="path6489-5"
style="opacity:1;vector-effect:none;fill:#cdcdcd;fill-opacity:1;fill-rule:nonzero;stroke:#939593;stroke-width:0.69404709;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:8.5;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 903.15838,1150.4837 c 0,3.6968 -3.00972,6.7035 -6.70928,6.7035 -3.70043,0 -6.71102,-3.0067 -6.71102,-6.7035 0,-3.6966 3.01059,-6.7042 6.71102,-6.7042 3.69956,0 6.70928,3.0076 6.70928,6.7042" />
<path
inkscape:connector-curvature="0"
id="path6497-9"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.69404703;stroke-miterlimit:4;stroke-dasharray:none"
d="m 896.44823,1145.6464 c 2.68143,0 4.85425,2.1697 4.85425,4.8484 0,2.6797 -2.17282,4.8495 -4.85425,4.8495 -2.68056,0 -4.85337,-2.1698 -4.85337,-4.8495 0,-2.6787 2.17281,-4.8484 4.85337,-4.8484" />
<path
d="m 896.48754,1153.0159 14.88488,2.0019 v -9.0743 l -14.88488,1.5654 z"
style="opacity:1;vector-effect:none;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#939593;stroke-width:0.69404709;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:8.5;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path20173"
inkscape:connector-curvature="0" />
</g>
</g>
</g>
</g>
</svg>

+ 85
- 0
plugins/community/repos/Ohmer/res/components/PCB_BJ_Off.svg View File

@@ -0,0 +1,85 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<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"
width="6"
height="20.648001"
viewBox="0 0 1.5875 5.4631167"
version="1.1"
id="svg1203"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="PCB_BJ_Off.svg">
<title
id="title1760">Blue jumper for RCD's PCB</title>
<defs
id="defs1197" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="5.6"
inkscape:cx="-24.956001"
inkscape:cy="23.239294"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1058"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
units="px" />
<metadata
id="metadata1200">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Blue jumper for RCD's PCB</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-291.53688)">
<g
id="g1033"
transform="matrix(0.26458333,0,0,0.26458333,5.7675223,200.59712)">
<rect
ry="0"
rx="0"
y="351.86722"
x="-21.79851"
height="12.490131"
width="6"
id="rect1027"
style="fill:#2089d8;fill-opacity:1;stroke:none;stroke-width:0.51189756;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<circle
r="1.3384042"
cy="354.03333"
cx="-18.79851"
id="circle1029"
style="fill:#8dc0eb;fill-opacity:1;stroke:none;stroke-width:0.75137007;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<circle
style="fill:#8dc0eb;fill-opacity:1;stroke:none;stroke-width:0.75137007;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="circle1031"
cx="-18.79851"
cy="362.03305"
r="1.3384042" />
</g>
</g>
</svg>

+ 85
- 0
plugins/community/repos/Ohmer/res/components/PCB_BJ_On.svg View File

@@ -0,0 +1,85 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<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"
width="6"
height="20.648001"
viewBox="0 0 1.5875 5.4631167"
version="1.1"
id="svg1203"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="PCB_BJ_On.svg">
<title
id="title1760">Blue jumper for RCD's PCB</title>
<defs
id="defs1197" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="5.6"
inkscape:cx="-24.956001"
inkscape:cy="23.239294"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1058"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
units="px" />
<metadata
id="metadata1200">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Blue jumper for RCD's PCB</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-291.53688)">
<g
id="g1033"
transform="matrix(0.26458333,0,0,0.26458333,5.7675223,198.43868)">
<rect
ry="0"
rx="0"
y="351.86722"
x="-21.79851"
height="12.490131"
width="6"
id="rect1027"
style="fill:#2089d8;fill-opacity:1;stroke:none;stroke-width:0.51189756;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<circle
r="1.3384042"
cy="354.03333"
cx="-18.79851"
id="circle1029"
style="fill:#8dc0eb;fill-opacity:1;stroke:none;stroke-width:0.75137007;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<circle
style="fill:#8dc0eb;fill-opacity:1;stroke:none;stroke-width:0.75137007;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="circle1031"
cx="-18.79851"
cy="362.03305"
r="1.3384042" />
</g>
</g>
</svg>

+ 200
- 0
plugins/community/repos/Ohmer/res/components/PJ301M_In.svg View File

@@ -0,0 +1,200 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<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"
width="8.3556204mm"
height="8.3556299mm"
viewBox="0 0 8.3556203 8.3556298"
version="1.1"
id="svg15246"
sodipodi:docname="PJ301MRPort_Dark.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
<title
id="title841">Based on PJ301M (default component provided by VCV Rack)</title>
<defs
id="defs15240">
<clipPath
id="clip89">
<rect
y="0"
x="0"
width="18"
height="19"
id="rect4864" />
</clipPath>
<clipPath
id="clip90">
<path
inkscape:connector-curvature="0"
d="m 0.898438,0.128906 h 16.25 v 17.882813 h -16.25 z m 0,0"
id="path4861" />
</clipPath>
<mask
id="mask44">
<g
style="filter:url(#alpha)"
id="g4858"
transform="matrix(0.26458333,0,0,0.26458333,89.358789,128.57765)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.14999402;stroke:none"
id="rect4856" />
</g>
</mask>
<filter
id="alpha"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix4149" />
</filter>
<clipPath
id="clipPath17821">
<rect
y="0"
x="0"
width="18"
height="19"
id="rect17819" />
</clipPath>
<clipPath
id="clipPath17825">
<path
inkscape:connector-curvature="0"
d="m 0.898438,0.128906 h 16.25 v 17.882813 h -16.25 z m 0,0"
id="path17823" />
</clipPath>
<clipPath
id="clip87">
<rect
y="0"
x="0"
width="24"
height="26"
id="rect4848" />
</clipPath>
<clipPath
id="clip88">
<path
inkscape:connector-curvature="0"
d="m 0.683594,0.921875 h 22.679687 v 24.9375 H 0.683594 Z m 0,0"
id="path4845" />
</clipPath>
<mask
id="mask43">
<g
style="filter:url(#alpha)"
id="g4842"
transform="matrix(0.26458333,0,0,0.26458333,89.358789,128.57765)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.14999402;stroke:none"
id="rect4840" />
</g>
</mask>
<filter
id="filter17836"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix17834" />
</filter>
<clipPath
id="clipPath17840">
<rect
y="0"
x="0"
width="24"
height="26"
id="rect17838" />
</clipPath>
<clipPath
id="clipPath17844">
<path
inkscape:connector-curvature="0"
d="m 0.683594,0.921875 h 22.679687 v 24.9375 H 0.683594 Z m 0,0"
id="path17842" />
</clipPath>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="11.2"
inkscape:cx="-25.857262"
inkscape:cy="5.9688197"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1058"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
units="px"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<metadata
id="metadata15243">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Based on PJ301M (default component provided by VCV Rack)</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-88.611154,-119.19859)">
<path
inkscape:connector-curvature="0"
id="path7255"
d="m 92.788964,127.42922 c -2.235179,0 -4.05281,-1.81762 -4.05281,-4.05282 0,-2.23516 1.817631,-4.05281 4.05281,-4.05281 2.235176,0 4.05281,1.81765 4.05281,4.05281 0,2.2352 -1.817634,4.05282 -4.05281,4.05282"
style="fill:#d20f05;fill-opacity:1;fill-rule:nonzero;stroke:#d3af25;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7261"
d="m 92.788964,126.29511 c -1.609548,0 -2.918685,-1.30916 -2.918685,-2.91871 0,-1.60954 1.309137,-2.91867 2.918685,-2.91867 1.609549,0 2.918682,1.30913 2.918682,2.91867 0,1.60955 -1.309133,2.91871 -2.918682,2.91871"
style="fill:#8f8432;fill-opacity:1;fill-rule:nonzero;stroke:#d3af25;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7265"
d="m 94.588681,123.3764 c 0,0.99357 -0.806153,1.79974 -1.799717,1.79974 -0.993567,0 -1.79972,-0.80617 -1.79972,-1.79974 0,-0.99356 0.806153,-1.79969 1.79972,-1.79969 0.993564,0 1.799717,0.80613 1.799717,1.79969"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775" />
</g>
</svg>

+ 200
- 0
plugins/community/repos/Ohmer/res/components/PJ301M_Out.svg View File

@@ -0,0 +1,200 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<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"
width="8.3556204mm"
height="8.3556299mm"
viewBox="0 0 8.3556203 8.3556298"
version="1.1"
id="svg15246"
sodipodi:docname="PJ301MGPort_Dark.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
<title
id="title841">Based on PJ301M (default component provided by VCV Rack)</title>
<defs
id="defs15240">
<clipPath
id="clip89">
<rect
y="0"
x="0"
width="18"
height="19"
id="rect4864" />
</clipPath>
<clipPath
id="clip90">
<path
inkscape:connector-curvature="0"
d="m 0.898438,0.128906 h 16.25 v 17.882813 h -16.25 z m 0,0"
id="path4861" />
</clipPath>
<mask
id="mask44">
<g
style="filter:url(#alpha)"
id="g4858"
transform="matrix(0.26458333,0,0,0.26458333,89.358789,128.57765)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.14999402;stroke:none"
id="rect4856" />
</g>
</mask>
<filter
id="alpha"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix4149" />
</filter>
<clipPath
id="clipPath17821">
<rect
y="0"
x="0"
width="18"
height="19"
id="rect17819" />
</clipPath>
<clipPath
id="clipPath17825">
<path
inkscape:connector-curvature="0"
d="m 0.898438,0.128906 h 16.25 v 17.882813 h -16.25 z m 0,0"
id="path17823" />
</clipPath>
<clipPath
id="clip87">
<rect
y="0"
x="0"
width="24"
height="26"
id="rect4848" />
</clipPath>
<clipPath
id="clip88">
<path
inkscape:connector-curvature="0"
d="m 0.683594,0.921875 h 22.679687 v 24.9375 H 0.683594 Z m 0,0"
id="path4845" />
</clipPath>
<mask
id="mask43">
<g
style="filter:url(#alpha)"
id="g4842"
transform="matrix(0.26458333,0,0,0.26458333,89.358789,128.57765)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.14999402;stroke:none"
id="rect4840" />
</g>
</mask>
<filter
id="filter17836"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix17834" />
</filter>
<clipPath
id="clipPath17840">
<rect
y="0"
x="0"
width="24"
height="26"
id="rect17838" />
</clipPath>
<clipPath
id="clipPath17844">
<path
inkscape:connector-curvature="0"
d="m 0.683594,0.921875 h 22.679687 v 24.9375 H 0.683594 Z m 0,0"
id="path17842" />
</clipPath>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="11.2"
inkscape:cx="-25.857262"
inkscape:cy="5.9688197"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1058"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
units="px"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<metadata
id="metadata15243">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Based on PJ301M (default component provided by VCV Rack)</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-88.611154,-119.19859)">
<path
inkscape:connector-curvature="0"
id="path7255"
d="m 92.788964,127.42922 c -2.235179,0 -4.05281,-1.81762 -4.05281,-4.05282 0,-2.23516 1.817631,-4.05281 4.05281,-4.05281 2.235176,0 4.05281,1.81765 4.05281,4.05281 0,2.2352 -1.817634,4.05282 -4.05281,4.05282"
style="fill:#00a000;fill-opacity:1;fill-rule:nonzero;stroke:#d3af25;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7261"
d="m 92.788964,126.29511 c -1.609548,0 -2.918685,-1.30916 -2.918685,-2.91871 0,-1.60954 1.309137,-2.91867 2.918685,-2.91867 1.609549,0 2.918682,1.30913 2.918682,2.91867 0,1.60955 -1.309133,2.91871 -2.918682,2.91871"
style="fill:#8f8432;fill-opacity:1;fill-rule:nonzero;stroke:#d3af25;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7265"
d="m 94.588681,123.3764 c 0,0.99357 -0.806153,1.79974 -1.799717,1.79974 -0.993567,0 -1.79972,-0.80617 -1.79972,-1.79974 0,-0.99356 0.806153,-1.79969 1.79972,-1.79969 0.993564,0 1.799717,0.80613 1.799717,1.79969"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775" />
</g>
</svg>

+ 121
- 0
plugins/community/repos/Ohmer/res/components/Torx_Gold.svg View File

@@ -0,0 +1,121 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<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"
width="15"
height="15"
id="svg3295"
sodipodi:version="0.32"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
version="1.0"
sodipodi:docname="TorxScrewDarkEd.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<title
id="title3711">Custom Torx screw VCV Rack</title>
<defs
id="defs3297">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
id="perspective3303" />
<inkscape:perspective
id="perspective3647"
inkscape:persp3d-origin="25 : 16.666667 : 1"
inkscape:vp_z="50 : 25 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 25 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective3303-9"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 526.18109 : 1"
sodipodi:type="inkscape:persp3d" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
gridtolerance="10000"
guidetolerance="10"
objecttolerance="10"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="15.999999"
inkscape:cx="-32.312504"
inkscape:cy="18.968498"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:window-width="1920"
inkscape:window-height="1058"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid3305"
visible="true"
enabled="true" />
</sodipodi:namedview>
<metadata
id="metadata3300">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Custom Torx screw VCV Rack</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="TorxScrew"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-25)">
<circle
style="opacity:1;fill:#4e4a1e;fill-opacity:1;stroke:#8e8637;stroke-width:0.34999999;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="roundedscrew"
cx="7.5"
cy="32.5"
r="7.125"
inkscape:label="#roundedscrew" />
<g
id="star"
transform="matrix(0.70635633,0,0,0.62092463,6.2638775,-0.09854047)"
style="opacity:1;fill:#676228;fill-opacity:1;stroke:none"
inkscape:label="#star">
<g
transform="matrix(0.068827,0,0,0.06882715,-22.051007,-11.923865)"
id="g2325"
style="fill:#676228;fill-opacity:1;stroke:none">
<path
d="m 456.62321,1000.2128 c -10.61732,18.3294 -55.46391,-10.47338 -73.82349,0.092 -18.35957,10.5651 -15.99057,63.8116 -37.17296,63.7815 -21.18238,-0.03 -18.66175,-53.2698 -36.99115,-63.8871 -18.32939,-10.61735 -63.25785,18.0576 -73.82292,-0.30199 -10.56506,-18.35957 36.80217,-42.79648 36.83234,-63.97886 0.0302,-21.18239 -47.26728,-45.7541 -36.64996,-64.0835 10.61731,-18.32939 55.46391,10.47337 73.82348,-0.0917 18.35957,-10.56507 15.99057,-63.81171 37.17296,-63.78155 21.18238,0.0302 18.66175,53.26984 36.99115,63.88716 18.3294,10.61732 63.25785,-18.0576 73.82292,0.30196 10.56507,18.35957 -36.80217,42.79648 -36.83234,63.97886 -0.0301,21.18239 47.26728,45.7541 36.64997,64.08352 z"
style="fill:#676228;fill-opacity:1;stroke:none;stroke-width:1.21246648;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path7856"
inkscape:connector-curvature="0" />
</g>
</g>
<circle
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="center"
cx="7.5"
cy="32.5"
r="2.5"
inkscape:label="#center" />
</g>
</svg>

+ 121
- 0
plugins/community/repos/Ohmer/res/components/Torx_Silver.svg View File

@@ -0,0 +1,121 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<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"
width="15"
height="15"
id="svg3295"
sodipodi:version="0.32"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
version="1.0"
sodipodi:docname="TorxScrew.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<title
id="title3711">Custom Torx screw VCV Rack</title>
<defs
id="defs3297">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
id="perspective3303" />
<inkscape:perspective
id="perspective3647"
inkscape:persp3d-origin="25 : 16.666667 : 1"
inkscape:vp_z="50 : 25 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 25 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective3303-9"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 526.18109 : 1"
sodipodi:type="inkscape:persp3d" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
gridtolerance="10000"
guidetolerance="10"
objecttolerance="10"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="15.999999"
inkscape:cx="-16.136365"
inkscape:cy="18.968498"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:window-width="1920"
inkscape:window-height="1058"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid3305"
visible="true"
enabled="true" />
</sodipodi:namedview>
<metadata
id="metadata3300">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Custom Torx screw VCV Rack</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="TorxScrew"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-25)">
<circle
style="opacity:1;fill:#919191;fill-opacity:1;stroke:#afafaf;stroke-width:0.34999999;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="roundedscrew"
cx="7.5"
cy="32.5"
r="7.125"
inkscape:label="#roundedscrew" />
<g
id="star"
transform="matrix(0.70635633,0,0,0.62092463,6.2638775,-0.09854047)"
style="opacity:1;fill:#5a5a4b;fill-opacity:1;stroke:none"
inkscape:label="#star">
<g
transform="matrix(0.068827,0,0,0.06882715,-22.051007,-11.923865)"
id="g2325"
style="fill:#5a5a4b;fill-opacity:1;stroke:none">
<path
d="m 456.62321,1000.2128 c -10.61732,18.3294 -55.46391,-10.47338 -73.82349,0.092 -18.35957,10.5651 -15.99057,63.8116 -37.17296,63.7815 -21.18238,-0.03 -18.66175,-53.2698 -36.99115,-63.8871 -18.32939,-10.61735 -63.25785,18.0576 -73.82292,-0.30199 -10.56506,-18.35957 36.80217,-42.79648 36.83234,-63.97886 0.0302,-21.18239 -47.26728,-45.7541 -36.64996,-64.0835 10.61731,-18.32939 55.46391,10.47337 73.82348,-0.0917 18.35957,-10.56507 15.99057,-63.81171 37.17296,-63.78155 21.18238,0.0302 18.66175,53.26984 36.99115,63.88716 18.3294,10.61732 63.25785,-18.0576 73.82292,0.30196 10.56507,18.35957 -36.80217,42.79648 -36.83234,63.97886 -0.0301,21.18239 47.26728,45.7541 36.64997,64.08352 z"
style="fill:#5a5a4b;fill-opacity:1;stroke:none;stroke-width:1.21246648;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path7856"
inkscape:connector-curvature="0" />
</g>
</g>
<circle
style="opacity:1;fill:#414141;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="center"
cx="7.5"
cy="32.5"
r="2.5"
inkscape:label="#center" />
</g>
</svg>

BIN
plugins/community/repos/Ohmer/res/fonts/LEDCounter7.ttf View File


BIN
plugins/community/repos/Ohmer/res/fonts/digital-readout.medium.ttf View File


+ 53
- 0
plugins/community/repos/Ohmer/res/fonts/readme-LEDCounter7.txt View File

@@ -0,0 +1,53 @@

True Type Font: LED Counter-7 version 1.0


EULA
-==-
The font LED Counter-7 is freeware for home using only.


DESCRIPTION
-=========-
This is original italic font created in style a LED (Light Emitting Diode) matrix 5*7 units.

Files in led_counter-7.zip:
readme.txt this file;
led_counter-7.ttf regular true type font;
led_counter-7_italic.ttf italic true type font;
led_counter-7_screen.gif preview image.

Please visit http://www.styleseven.com/ for download our other products as freeware as shareware.
We will welcome any useful suggestions and comments: please send them to ms-7@styleseven.com


FREEWARE USE (NOTES)
-==================-
Also you may:
* Use the font in freeware software (credit needed);
* Use the font for your education process.


COMMERCIAL OR BUSINESS USE
-========================-
Please contact us ($24.95) or use this link:
http://store.esellerate.net/s.aspx?s=STR0331655240

You may:
* Include the font to your installation;
* Use one license up to 100 computers in your office.


WHAT'S NEW?
-=========-
Version 1.1 (August 16 2013)
* Regular style is added;
* Fixed bugs: void nodes are deleted.


AUTHOR
-====-
Sizenko Alexander
Style-7
http://www.styleseven.com
Created: June 26 2013

+ 49
- 0
plugins/community/repos/Ohmer/src/BlankPanel16HP.cpp View File

@@ -0,0 +1,49 @@
////////////////////////////////////////////////////////////////////////////////////////////////////
////// Blank Panel 16 HP module ////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////

#include "Ohmer.hpp"

namespace rack_plugin_Ohmer {

struct OhmerBlank16 : Module {
enum ParamIds {
NUM_PARAMS
};
enum InputIds {
NUM_INPUTS
};
enum OutputIds {
NUM_OUTPUTS
};
enum LightIds {
NUM_LIGHTS
};
OhmerBlank16() : Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) {}
void step() override;
};

void OhmerBlank16::step() {
}

struct OhmerBlank16Widget : ModuleWidget {
OhmerBlank16Widget(OhmerBlank16 *module);
};

OhmerBlank16Widget::OhmerBlank16Widget(OhmerBlank16 *module) : ModuleWidget(module) {
setPanel(SVG::load(assetPlugin(plugin, "res/Blank_16HP.svg")));
// Four screws for 16 HP module.
addChild(Widget::create<Torx_Silver>(Vec(RACK_GRID_WIDTH, 0)));
addChild(Widget::create<Torx_Silver>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, 0)));
addChild(Widget::create<Torx_Silver>(Vec(RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
addChild(Widget::create<Torx_Silver>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
}

} // namespace rack_plugin_Ohmer

using namespace rack_plugin_Ohmer;

RACK_PLUGIN_MODEL_INIT(Ohmer, BlankPanel16) {
Model *modelBlankPanel16 = Model::create<OhmerBlank16, OhmerBlank16Widget>("Ohmer Modules", "OhmerBlank16", "16 HP Blank Panel", BLANK_TAG);
return modelBlankPanel16;
}

+ 47
- 0
plugins/community/repos/Ohmer/src/BlankPanel1HP.cpp View File

@@ -0,0 +1,47 @@
////////////////////////////////////////////////////////////////////////////////////////////////////
////// Blank Panel 1 HP module /////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////

#include "Ohmer.hpp"

namespace rack_plugin_Ohmer {

struct OhmerBlank1 : Module {
enum ParamIds {
NUM_PARAMS
};
enum InputIds {
NUM_INPUTS
};
enum OutputIds {
NUM_OUTPUTS
};
enum LightIds {
NUM_LIGHTS
};
OhmerBlank1() : Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) {}
void step() override;
};

void OhmerBlank1::step() {
}

struct OhmerBlank1Widget : ModuleWidget {
OhmerBlank1Widget(OhmerBlank1 *module);
};

OhmerBlank1Widget::OhmerBlank1Widget(OhmerBlank1 *module) : ModuleWidget(module) {
setPanel(SVG::load(assetPlugin(plugin, "res/Blank_1HP.svg")));
// Two screws for 1 HP module.
addChild(Widget::create<Torx_Silver>(Vec(0, 0)));
addChild(Widget::create<Torx_Silver>(Vec(0, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
}

} // namespace rack_plugin_Ohmer

using namespace rack_plugin_Ohmer;

RACK_PLUGIN_MODEL_INIT(Ohmer, BlankPanel1) {
Model *modelBlankPanel1 = Model::create<OhmerBlank1, OhmerBlank1Widget>("Ohmer Modules", "OhmerBlank1", "1 HP Blank Panel", BLANK_TAG);
return modelBlankPanel1;
}

+ 145
- 0
plugins/community/repos/Ohmer/src/BlankPanel2HP.cpp View File

@@ -0,0 +1,145 @@
////////////////////////////////////////////////////////////////////////////////////////////////////
////// Blank Panel 2 HP module /////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////

#include "Ohmer.hpp"

namespace rack_plugin_Ohmer {

struct OhmerBlank2 : Module {
enum ParamIds {
NUM_PARAMS
};
enum InputIds {
NUM_INPUTS
};
enum OutputIds {
NUM_OUTPUTS
};
enum LightIds {
NUM_LIGHTS
};
unsigned int screwsPos = 0; // Screws setting (default is two screws: top/left and bottom/right).
OhmerBlank2() : Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) {}
void step() override;

// Persistence for extra data (screws setting). This extra data belongs .vcv file (including "autosave.vcv") and while cloning module.

json_t *toJson() override {
json_t *rootJ = json_object();
json_object_set_new(rootJ, "screwsPos", json_integer(screwsPos));
return rootJ;
}

void fromJson(json_t *rootJ) override {
// Retrieving screws setting (when loading .vcv and cloning module).
json_t *screwsPosJ = json_object_get(rootJ, "screwsPos");
if (screwsPosJ)
screwsPos = json_integer_value(screwsPosJ);
}

};

void OhmerBlank2::step() {
}

struct OhmerBlank2Widget : ModuleWidget {
// Silver Torx screws.
SVGScrew *topLeftScrewSilver;
SVGScrew *topRightScrewSilver;
SVGScrew *bottomLeftScrewSilver;
SVGScrew *bottomRightScrewSilver;
//
OhmerBlank2Widget(OhmerBlank2 *module);
void step() override;
Menu* createContextMenu() override;
};

OhmerBlank2Widget::OhmerBlank2Widget(OhmerBlank2 *module) : ModuleWidget(module) {
box.size = Vec(2 * RACK_GRID_WIDTH, RACK_GRID_HEIGHT);
setPanel(SVG::load(assetPlugin(plugin, "res/Blank_2HP.svg")));
// Top-left silver screw, may be visible or hidden, depending KlokSpid model.
topLeftScrewSilver = Widget::create<Torx_Silver>(Vec(0, 0));
addChild(topLeftScrewSilver);
// Top-right silver screw, may be visible or hidden, depending KlokSpid model.
topRightScrewSilver = Widget::create<Torx_Silver>(Vec(box.size.x - RACK_GRID_WIDTH, 0));
addChild(topRightScrewSilver);
// Bottom-left silver screw, may be visible or hidden, depending KlokSpid model.
bottomLeftScrewSilver = Widget::create<Torx_Silver>(Vec(0, RACK_GRID_HEIGHT - RACK_GRID_WIDTH));
addChild(bottomLeftScrewSilver);
// Bottom-right silver screw, may be visible or hidden, depending KlokSpid model.
bottomRightScrewSilver = Widget::create<Torx_Silver>(Vec(box.size.x - RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH));
addChild(bottomRightScrewSilver);
}

//// Screw setting, depending context-menu choice.

void OhmerBlank2Widget::step() {
OhmerBlank2 *ohmerblank2 = dynamic_cast<OhmerBlank2*>(module);
assert(ohmerblank2);
// Silver Torx screws visible or hidden, depending screws setting from context-menu.
topLeftScrewSilver->visible = (ohmerblank2->screwsPos == 0) || (ohmerblank2->screwsPos == 2);
topRightScrewSilver->visible = (ohmerblank2->screwsPos == 1) || (ohmerblank2->screwsPos == 2);
bottomLeftScrewSilver->visible = (ohmerblank2->screwsPos == 1) || (ohmerblank2->screwsPos == 2);
bottomRightScrewSilver->visible = (ohmerblank2->screwsPos == 0) || (ohmerblank2->screwsPos == 2);
ModuleWidget::step();
}

// First screw setting (2: top/left and bottom/right).
struct screwsTLBRMenuItem : MenuItem {
OhmerBlank2 *ohmerblank2;
void onAction(EventAction &e) override {
ohmerblank2->screwsPos = 0;
}
void step() override {
rightText = (ohmerblank2->screwsPos == 0) ? "✔" : "";
MenuItem::step();
}
};

// Second screw setting (2: top/right and bottom/left).
struct screwsTRBLMenuItem : MenuItem {
OhmerBlank2 *ohmerblank2;
void onAction(EventAction &e) override {
ohmerblank2->screwsPos = 1;
}
void step() override {
rightText = (ohmerblank2->screwsPos == 1) ? "✔" : "";
MenuItem::step();
}
};

// Third screw setting (4: all corners).
struct screwsCornersMenuItem : MenuItem {
OhmerBlank2 *ohmerblank2;
void onAction(EventAction &e) override {
ohmerblank2->screwsPos = 2;
}
void step() override {
rightText = (ohmerblank2->screwsPos == 2) ? "✔" : "";
MenuItem::step();
}
};

// Context-menu construction.

Menu* OhmerBlank2Widget::createContextMenu() {
Menu* menu = ModuleWidget::createContextMenu();
OhmerBlank2 *ohmerblank2 = dynamic_cast<OhmerBlank2*>(module);
assert(ohmerblank2);
menu->addChild(construct<MenuEntry>());
menu->addChild(construct<MenuLabel>(&MenuLabel::text, "Screws number & arrangement:"));
menu->addChild(construct<screwsTLBRMenuItem>(&screwsTLBRMenuItem::text, "2: top/left, bottom/right", &screwsTLBRMenuItem::ohmerblank2, ohmerblank2));
menu->addChild(construct<screwsTRBLMenuItem>(&screwsTRBLMenuItem::text, "2: top/right, bottom/left", &screwsTRBLMenuItem::ohmerblank2, ohmerblank2));
menu->addChild(construct<screwsCornersMenuItem>(&screwsCornersMenuItem::text, "Four screws", &screwsCornersMenuItem::ohmerblank2, ohmerblank2));
return menu;
}

} // namespace rack_plugin_Ohmer

using namespace rack_plugin_Ohmer;

RACK_PLUGIN_MODEL_INIT(Ohmer, BlankPanel2) {
Model *modelBlankPanel2 = Model::create<OhmerBlank2, OhmerBlank2Widget>("Ohmer Modules", "OhmerBlank2", "2 HP Blank Panel", BLANK_TAG);
return modelBlankPanel2;
}

+ 49
- 0
plugins/community/repos/Ohmer/src/BlankPanel32HP.cpp View File

@@ -0,0 +1,49 @@
////////////////////////////////////////////////////////////////////////////////////////////////////
////// Blank Panel 32 HP module ////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////

#include "Ohmer.hpp"

namespace rack_plugin_Ohmer {

struct OhmerBlank32 : Module {
enum ParamIds {
NUM_PARAMS
};
enum InputIds {
NUM_INPUTS
};
enum OutputIds {
NUM_OUTPUTS
};
enum LightIds {
NUM_LIGHTS
};
OhmerBlank32() : Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) {}
void step() override;
};

void OhmerBlank32::step() {
}

struct OhmerBlank32Widget : ModuleWidget {
OhmerBlank32Widget(OhmerBlank32 *module);
};

OhmerBlank32Widget::OhmerBlank32Widget(OhmerBlank32 *module) : ModuleWidget(module) {
setPanel(SVG::load(assetPlugin(plugin, "res/Blank_32HP.svg")));
// Four screws for 32 HP module.
addChild(Widget::create<Torx_Silver>(Vec(RACK_GRID_WIDTH, 0)));
addChild(Widget::create<Torx_Silver>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, 0)));
addChild(Widget::create<Torx_Silver>(Vec(RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
addChild(Widget::create<Torx_Silver>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
}

} // namespace rack_plugin_Ohmer

using namespace rack_plugin_Ohmer;

RACK_PLUGIN_MODEL_INIT(Ohmer, BlankPanel32) {
Model *modelBlankPanel32 = Model::create<OhmerBlank32, OhmerBlank32Widget>("Ohmer Modules", "OhmerBlank32", "32 HP Blank Panel", BLANK_TAG);
return modelBlankPanel32;
}

+ 49
- 0
plugins/community/repos/Ohmer/src/BlankPanel4HP.cpp View File

@@ -0,0 +1,49 @@
////////////////////////////////////////////////////////////////////////////////////////////////////
////// Blank Panel 4 HP module /////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////

#include "Ohmer.hpp"

namespace rack_plugin_Ohmer {

struct OhmerBlank4 : Module {
enum ParamIds {
NUM_PARAMS
};
enum InputIds {
NUM_INPUTS
};
enum OutputIds {
NUM_OUTPUTS
};
enum LightIds {
NUM_LIGHTS
};
OhmerBlank4() : Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) {}
void step() override;
};

void OhmerBlank4::step() {
}

struct OhmerBlank4Widget : ModuleWidget {
OhmerBlank4Widget(OhmerBlank4 *module);
};

OhmerBlank4Widget::OhmerBlank4Widget(OhmerBlank4 *module) : ModuleWidget(module) {
setPanel(SVG::load(assetPlugin(plugin, "res/Blank_4HP.svg")));
// Four screws for 4 HP module.
addChild(Widget::create<Torx_Silver>(Vec(0, 0)));
addChild(Widget::create<Torx_Silver>(Vec(box.size.x - RACK_GRID_WIDTH, 0)));
addChild(Widget::create<Torx_Silver>(Vec(0, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
addChild(Widget::create<Torx_Silver>(Vec(box.size.x - RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
}

} // namespace rack_plugin_Ohmer

using namespace rack_plugin_Ohmer;

RACK_PLUGIN_MODEL_INIT(Ohmer, BlankPanel4) {
Model *modelBlankPanel4 = Model::create<OhmerBlank4, OhmerBlank4Widget>("Ohmer Modules", "OhmerBlank4", "4 HP Blank Panel", BLANK_TAG);
return modelBlankPanel4;
}

+ 49
- 0
plugins/community/repos/Ohmer/src/BlankPanel8HP.cpp View File

@@ -0,0 +1,49 @@
////////////////////////////////////////////////////////////////////////////////////////////////////
////// Blank Panel 8 HP module /////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////

#include "Ohmer.hpp"

namespace rack_plugin_Ohmer {

struct OhmerBlank8 : Module {
enum ParamIds {
NUM_PARAMS
};
enum InputIds {
NUM_INPUTS
};
enum OutputIds {
NUM_OUTPUTS
};
enum LightIds {
NUM_LIGHTS
};
OhmerBlank8() : Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) {}
void step() override;
};

void OhmerBlank8::step() {
}

struct OhmerBlank8Widget : ModuleWidget {
OhmerBlank8Widget(OhmerBlank8 *module);
};

OhmerBlank8Widget::OhmerBlank8Widget(OhmerBlank8 *module) : ModuleWidget(module) {
setPanel(SVG::load(assetPlugin(plugin, "res/Blank_8HP.svg")));
// Four screws for 8 HP module.
addChild(Widget::create<Torx_Silver>(Vec(RACK_GRID_WIDTH, 0)));
addChild(Widget::create<Torx_Silver>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, 0)));
addChild(Widget::create<Torx_Silver>(Vec(RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
addChild(Widget::create<Torx_Silver>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
}

} // namespace rack_plugin_Ohmer

using namespace rack_plugin_Ohmer;

RACK_PLUGIN_MODEL_INIT(Ohmer, BlankPanel8) {
Model *modelBlankPanel8 = Model::create<OhmerBlank8, OhmerBlank8Widget>("Ohmer Modules", "OhmerBlank8", "8 HP Blank Panel", BLANK_TAG);
return modelBlankPanel8;
}

+ 1932
- 0
plugins/community/repos/Ohmer/src/KlokSpid.cpp
File diff suppressed because it is too large
View File


+ 1162
- 0
plugins/community/repos/Ohmer/src/Metriks.cpp
File diff suppressed because it is too large
View File


+ 36
- 0
plugins/community/repos/Ohmer/src/Ohmer.cpp View File

@@ -0,0 +1,36 @@
////////////////////////////////////////////////////////////////////////////////////////////////////
////// Ohmer Modules ///////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////

#include "Ohmer.hpp"

RACK_PLUGIN_MODEL_DECLARE(Ohmer, KlokSpid);
RACK_PLUGIN_MODEL_DECLARE(Ohmer, RKD);
RACK_PLUGIN_MODEL_DECLARE(Ohmer, RKDBRK);
RACK_PLUGIN_MODEL_DECLARE(Ohmer, Metriks);
RACK_PLUGIN_MODEL_DECLARE(Ohmer, Splitter1x9);
RACK_PLUGIN_MODEL_DECLARE(Ohmer, BlankPanel1);
RACK_PLUGIN_MODEL_DECLARE(Ohmer, BlankPanel2);
RACK_PLUGIN_MODEL_DECLARE(Ohmer, BlankPanel4);
RACK_PLUGIN_MODEL_DECLARE(Ohmer, BlankPanel8);
RACK_PLUGIN_MODEL_DECLARE(Ohmer, BlankPanel16);
RACK_PLUGIN_MODEL_DECLARE(Ohmer, BlankPanel32);

RACK_PLUGIN_INIT(Ohmer) {
RACK_PLUGIN_INIT_ID();

RACK_PLUGIN_INIT_WEBSITE("https://github.com/DomiKamu/Ohmer-Modules/");
RACK_PLUGIN_INIT_MANUAL("https://github.com/DomiKamu/Ohmer-Modules/blob/master/README.md");

RACK_PLUGIN_MODEL_ADD(Ohmer, KlokSpid);
RACK_PLUGIN_MODEL_ADD(Ohmer, RKD);
RACK_PLUGIN_MODEL_ADD(Ohmer, RKDBRK);
RACK_PLUGIN_MODEL_ADD(Ohmer, Metriks);
RACK_PLUGIN_MODEL_ADD(Ohmer, Splitter1x9);
RACK_PLUGIN_MODEL_ADD(Ohmer, BlankPanel1);
RACK_PLUGIN_MODEL_ADD(Ohmer, BlankPanel2);
RACK_PLUGIN_MODEL_ADD(Ohmer, BlankPanel4);
RACK_PLUGIN_MODEL_ADD(Ohmer, BlankPanel8);
RACK_PLUGIN_MODEL_ADD(Ohmer, BlankPanel16);
RACK_PLUGIN_MODEL_ADD(Ohmer, BlankPanel32);
}

+ 175
- 0
plugins/community/repos/Ohmer/src/Ohmer.hpp View File

@@ -0,0 +1,175 @@
#include "rack.hpp"

using namespace rack;

RACK_PLUGIN_DECLARE(Ohmer);

#ifdef USE_VST2
#define plugin "Ohmer"
#endif // USE_VST2

namespace rack_plugin_Ohmer {

//// COLOR TABLE USED FOR DOT-MATRIX DISPLAY (REGARDLING SELECTED MODEL).

static const NVGcolor tblDMDtextColor[6] = {
nvgRGB(0x08, 0x08, 0x08), // LCD-like for Classic.
nvgRGB(0x08, 0x08, 0x08), // LCD-like for Stage Repro.
nvgRGB(0x08, 0x08, 0x08), // LCD-like for Absolute Night.
nvgRGB(0xe0, 0xe0, 0xff), // Blue plasma-like for Dark "Signature".
nvgRGB(0xff, 0x8a, 0x00), // Orange plasma-like for Deepblue "Signature".
nvgRGB(0xb0, 0xff, 0xff) // Light cyan plasma-like for Carbon "Signature".
};

//// CUSTOM COMPONENTS (SCREWS, JACKS, KNOBS, ENCODERS, BUTTONS, LEDS).

// Custom silver Torx screw.
struct Torx_Silver : SVGScrew {
Torx_Silver() {
sw->svg = SVG::load(assetPlugin(plugin, "res/components/Torx_Silver.svg"));
sw->wrap();
box.size = sw->box.size;
}
};

// Custom gols Torx screw.
struct Torx_Gold : SVGScrew {
Torx_Gold() {
sw->svg = SVG::load(assetPlugin(plugin, "res/components/Torx_Gold.svg"));
sw->wrap();
box.size = sw->box.size;
}
};

// Silver momentary button (used by standard-line KlokSpid modules).
// This button is used for:
// - BPM start/stop toggle (KlokSpid module acting as standalone BPM clock generator).
// - entering Setup (by holding this button).
// - advance to next Setup parameter (and exit Setup).
struct KS_ButtonSilver : SVGSwitch, MomentarySwitch {
KS_ButtonSilver() {
addFrame(SVG::load(assetPlugin(plugin,"res/components/KS_Button_Up_Silver.svg")));
addFrame(SVG::load(assetPlugin(plugin,"res/components/KS_Button_Down_Silver.svg")));
}
};

// Gold momentary button (used by Signature-line KlokSpid modules).
struct KS_ButtonGold : SVGSwitch, MomentarySwitch {
KS_ButtonGold() {
addFrame(SVG::load(assetPlugin(plugin,"res/components/KS_Button_Up_Gold.svg")));
addFrame(SVG::load(assetPlugin(plugin,"res/components/KS_Button_Down_Gold.svg")));
}
};

// RKD jumper shunts (working as ON/OFF toggle switch).
struct RKD_Jumper : SVGSwitch, ToggleSwitch {
RKD_Jumper() {
addFrame(SVG::load(assetPlugin(plugin,"res/components/PCB_BJ_Off.svg")));
addFrame(SVG::load(assetPlugin(plugin,"res/components/PCB_BJ_On.svg")));
}
};

// RKDBRK toggle switch (working as ON/OFF).
struct RKDBRK_Switch : SVGSwitch, ToggleSwitch {
RKDBRK_Switch() {
addFrame(SVG::load(assetPlugin(plugin,"res/components/NKKH_0.svg")));
addFrame(SVG::load(assetPlugin(plugin,"res/components/NKKH_1.svg")));
}
};

// Custom port, with red in-ring (input port), gold.
struct PJ301M_In : SVGPort {
PJ301M_In() {
background->svg = SVG::load(assetPlugin(plugin,"res/components/PJ301M_In.svg"));
background->wrap();
box.size = background->box.size;
}
};

// Custom port, with green in-ring (output port), gold.
struct PJ301M_Out : SVGPort {
PJ301M_Out() {
background->svg = SVG::load(assetPlugin(plugin,"res/components/PJ301M_Out.svg"));
background->wrap();
box.size = background->box.size;
}
};

// Custom nickel metal port, with red in-ring (input port), used only by RKD & RKD-BRK modules (CLK jack). Derived from default CL1362.svg
struct CL1362_In : SVGPort {
CL1362_In() {
background->svg = SVG::load(assetPlugin(plugin,"res/components/CL1362_In.svg"));
background->wrap();
box.size = background->box.size;
}
};

// Custom nickel metal port, with red in-ring (input port), used only by RKD & RKD-BRK modules (90° rotated for... ROTATE and RESET input ports). Derived from default CL1362.svg
struct CL1362_In_RR : SVGPort {
CL1362_In_RR() {
background->svg = SVG::load(assetPlugin(plugin,"res/components/CL1362_In_RR.svg"));
background->wrap();
box.size = background->box.size;
}
};

// Custom nickel metal port, with green in-ring (output port), used only by RKD & RKD-BRK modules. Derived from default CL1362.svg
struct CL1362_Out : SVGPort {
CL1362_Out() {
background->svg = SVG::load(assetPlugin(plugin,"res/components/CL1362_Out.svg"));
background->wrap();
box.size = background->box.size;
}
};

// Freeware "Moog-style" continuous encoder, used by KlokSpid and Metriks modules.
struct KS_Encoder : SVGKnob {
KS_Encoder() {
minAngle = -1.0 * M_PI;
maxAngle = M_PI;
setSVG(SVG::load(assetPlugin(plugin, "res/components/KS_Encoder.svg")));
//smooth = false;
}
};

// Custom orange color used by two small LEDs (CV-RATIO, start/stop), KlokSpid module.
// Also, this color is used for medium LED located below CV/TRIG port (KlokSpid module).
struct KlokSpidOrangeLight : GrayModuleLightWidget {
KlokSpidOrangeLight() {
addBaseColor(nvgRGB(0xe8, 0xad, 0x10));
}
};

// White LED color for RKD & RKD-BRK modules (used for CLK and output 8).
struct RKDWhiteLight : GrayModuleLightWidget {
RKDWhiteLight() {
addBaseColor(nvgRGB(0xff, 0xff, 0xff));
}
};

// White LED color for RKD & RKD-BRK modules(used for output 2).
struct RKDOrangeLight : GrayModuleLightWidget {
RKDOrangeLight() {
addBaseColor(nvgRGB(0xf2, 0xb1, 0x20));
}
};

// White LED color for RKD & RKD-BRK modules (used for output 7).
struct RKDPurpleLight : GrayModuleLightWidget {
RKDPurpleLight() {
addBaseColor(nvgRGB(0xd5, 0x2b, 0xed));
}
};

// Tri-colored red/orange/blue LED for RKD & RKD-BRK modules (used by "RESET").
struct RedOrangeBlueLight : GrayModuleLightWidget {
RedOrangeBlueLight() {
addBaseColor(COLOR_RED);
addBaseColor(nvgRGB(0xe8, 0xad, 0x10)); // Orange (same used by KlokSpid module).
addBaseColor(COLOR_BLUE);
}
};

} // namespace rack_plugin_Ohmer

using namespace rack_plugin_Ohmer;

+ 1115
- 0
plugins/community/repos/Ohmer/src/RKD.cpp
File diff suppressed because it is too large
View File


+ 1042
- 0
plugins/community/repos/Ohmer/src/RKDBRK.cpp
File diff suppressed because it is too large
View File


+ 104
- 0
plugins/community/repos/Ohmer/src/Splitter1x9.cpp View File

@@ -0,0 +1,104 @@
////////////////////////////////////////////////////////////////////////////////////////////////////
////// Splitter 1x9 ///
////// 2 HP module, having 1 input sent "splitted" to 9 outputs, but limited voltages must stay ///
////// in -11.7V/+11.7V bounds to every output ("hard clipping"). ///
////////////////////////////////////////////////////////////////////////////////////////////////////

#include "Ohmer.hpp"

namespace rack_plugin_Ohmer {

struct Splitter1x9Module : Module {
enum ParamIds {
NUM_PARAMS
};
enum InputIds {
MAIN_INPUT,
NUM_INPUTS
};
enum OutputIds {
OUTPUT_1,
OUTPUT_2,
OUTPUT_3,
OUTPUT_4,
OUTPUT_5,
OUTPUT_6,
OUTPUT_7,
OUTPUT_8,
OUTPUT_9,
NUM_OUTPUTS
};
enum LightIds {
LED_CLIP,
NUM_LIGHTS
};

// Counter used for red LED afterglow (used together with "ledClipAfterglow" boolean flag).
unsigned long ledClipDelay = 0; // long type is required for highest engine samplerates!
// This flag controls red LED afterglow (active or not).
bool ledClipAfterglow = false;

Splitter1x9Module() : Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) {}
void step() override;
};

void Splitter1x9Module::step() {
// Consider an incoming voltage on input port...
//
float raw_input_voltage = inputs[MAIN_INPUT].value;
float splitted_out_voltage = clamp(raw_input_voltage, -11.7f, 11.7f); // These -11.7V/+11.7V limits are max. possible voltage on Eurorack.
if (!ledClipAfterglow && (raw_input_voltage != splitted_out_voltage)) {
// Different is meaning... the voltage was clipped: turn on the LED (reset its afterglow counter).
ledClipDelay = 0;
ledClipAfterglow = true;
}
for (int i=OUTPUT_1; i<NUM_OUTPUTS; i++) {
// ...then transmit the same voltage to all output ports, but "clip" the voltage first if it's out of bounds if necessary!
outputs[i].value = splitted_out_voltage;
}
// Afterglow for red LED.
if (ledClipAfterglow && (ledClipDelay < round(engineGetSampleRate() / 3)))
ledClipDelay++;
else {
ledClipAfterglow = false;
ledClipDelay = 0;
}
// Lit or unlit LED (depending "ledClipAfterglow" flag).
lights[LED_CLIP].value = ledClipAfterglow ? 1.0 : 0.0f;
}

struct Splitter1x9Widget : ModuleWidget {
Splitter1x9Widget(Splitter1x9Module *module);
};

Splitter1x9Widget::Splitter1x9Widget(Splitter1x9Module *module) : ModuleWidget(module) {
setPanel(SVG::load(assetPlugin(plugin, "res/Splitter1x9.svg")));
// Using four screws configuration (even for 2 HP module), due to mechanical constraints on connectors, and by the way, on this small plate :-)
addChild(Widget::create<Torx_Silver>(Vec(0, 0)));
addChild(Widget::create<Torx_Silver>(Vec(box.size.x - RACK_GRID_WIDTH, 0)));
addChild(Widget::create<Torx_Silver>(Vec(0, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
addChild(Widget::create<Torx_Silver>(Vec(box.size.x - RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
// Input port.
addInput(Port::create<PJ301M_In>(Vec(2.5, 22), Port::INPUT, module, Splitter1x9Module::MAIN_INPUT));
// Output ports.
addOutput(Port::create<PJ301M_Out>(Vec(2.5, 70), Port::OUTPUT, module, Splitter1x9Module::OUTPUT_1));
addOutput(Port::create<PJ301M_Out>(Vec(2.5, 100), Port::OUTPUT, module, Splitter1x9Module::OUTPUT_2));
addOutput(Port::create<PJ301M_Out>(Vec(2.5, 130), Port::OUTPUT, module, Splitter1x9Module::OUTPUT_3));
addOutput(Port::create<PJ301M_Out>(Vec(2.5, 160), Port::OUTPUT, module, Splitter1x9Module::OUTPUT_4));
addOutput(Port::create<PJ301M_Out>(Vec(2.5, 190), Port::OUTPUT, module, Splitter1x9Module::OUTPUT_5));
addOutput(Port::create<PJ301M_Out>(Vec(2.5, 220), Port::OUTPUT, module, Splitter1x9Module::OUTPUT_6));
addOutput(Port::create<PJ301M_Out>(Vec(2.5, 250), Port::OUTPUT, module, Splitter1x9Module::OUTPUT_7));
addOutput(Port::create<PJ301M_Out>(Vec(2.5, 280), Port::OUTPUT, module, Splitter1x9Module::OUTPUT_8));
addOutput(Port::create<PJ301M_Out>(Vec(3, 310), Port::OUTPUT, module, Splitter1x9Module::OUTPUT_9));
// Clipping red LED.
addChild(ModuleLightWidget::create<MediumLight<RedLight>>(Vec(18, 47), module, Splitter1x9Module::LED_CLIP));
}

} // namespace rack_plugin_Ohmer

using namespace rack_plugin_Ohmer;

RACK_PLUGIN_MODEL_INIT(Ohmer, Splitter1x9) {
Model *modelSplitter1x9 = Model::create<Splitter1x9Module, Splitter1x9Widget>("Ohmer Modules", "SplitterModule", "Splitter 1x9", MULTIPLE_TAG, UTILITY_TAG);
return modelSplitter1x9;
}

+ 0
- 12
plugins/community/repos/VultModules/LICENSE.txt View File

@@ -1,12 +0,0 @@
Based on the VCVRack example provided by Andrew Belt

Copyright (c) 2017 Leonardo Laguna Ruiz (modlfo@gmail.com), All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

1.- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2.- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
3.- Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
4.- Commercial use requires explicit permission of the author.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

+ 0
- 11
plugins/community/repos/VultModules/Makefile View File

@@ -1,11 +0,0 @@

SOURCES = $(wildcard src/*.cpp) $(wildcard src/*.c)

include ../../plugin.mk


dist: all
mkdir -p dist/VultModules
cp LICENSE* dist/VultModules/
cp $(TARGET) dist/VultModules/
cp -R res dist/VultModules/

+ 0
- 52
plugins/community/repos/VultModules/README.md View File

@@ -1,52 +0,0 @@
# Vult Modules for Rack

A set of modules for [VCVRack](https://vcvrack.com) written in [Vult](http://modlfo.github.io/vult/). Read more about these modules here: http://modlfo.github.io/projects/vult-modules/

I provide precompiled binaries for: [Linux, Mac and Windows](https://github.com/modlfo/VultModules/releases).

![Rescomb](/images/Rescomb-render.png?raw=true "Rescomb")
![Stabile](/images/Stabile-render.png?raw=true "Stabile")
![Lateralus](/images/Lateralus-render.png?raw=true "Lateralus")
![Debriatus](/images/Debriatus-render.png?raw=true "Debriatus")
![Splie](/images/Splie-render.png?raw=true "Splie")
![Tohe](/images/Tohe-render.png?raw=true "Tohe")
![Trummor](/images/Trummor-render.png?raw=true "Trummor")
![Tangents](/images/Tangents-render.png?raw=true "Tangents")

*This repository builds against the latest released version of Rack (the latest tag). It may take a day or two for me to catch up when a new version of Rack is released. Let me know if I haven't fixed that.*

## Donate

I’m glad to publish these modules for free so anyone can use them. Behind every module there are many hours of work (and many litters of coffee). If you enjoy these modules you can support the development by making a donation. As a suggestion, you can send me the amount to buy 1 kg of roasted coffee beans in your country. That will make me very happy. Here's the link: [DONATE](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=RRMY2QPYEZT2S)

## Use

Download from the [releases page](https://github.com/modlfo/VultModules/releases) the file corresponding to the VCVRack version you have. Place the `VultModules` directory in the plugins folder.


## Build

First you need to build the latest release version of [Rack](https://github.com/VCVRack/Rack) following the instructions in its [README](https://github.com/VCVRack/Rack/blob/master/README.md).

Then clone this repository inside the `plugins` folder of Rack and use `make`.

```
$ cd plugins
$ git clone https://github.com/modlfo/VultModules.git
$ make
```

## Modify

To change the DSP code you need to have Vult installed. Vult can be installed by downloading it from the [Releases](https://github.com/modlfo/vult/releases) page or installed with [npm](https://www.npmjs.com/package/vult).

Once you have Vult installed you can regenerate the code with the following line:
```
$ vultc src/VultEngine.vult -ccode -o src/VultEngine
```

## License

The license is a BSD 3-Clause with the addition that any commercial use requires explicit permission of the author. That applies for the source code.

For the image resources (all SVG files), any use requires explicit permission of the author.

BIN
plugins/community/repos/VultModules/images/Debriatus-render.png View File

Before After
Width: 150  |  Height: 380  |  Size: 27KB

BIN
plugins/community/repos/VultModules/images/Lateralus-render.png View File

Before After
Width: 150  |  Height: 380  |  Size: 20KB

BIN
plugins/community/repos/VultModules/images/Rescomb-render.png View File

Before After
Width: 150  |  Height: 380  |  Size: 22KB

BIN
plugins/community/repos/VultModules/images/Splie-render.png View File

Before After
Width: 45  |  Height: 380  |  Size: 7.8KB

BIN
plugins/community/repos/VultModules/images/Stabile-render.png View File

Before After
Width: 150  |  Height: 380  |  Size: 24KB

BIN
plugins/community/repos/VultModules/images/Tangents-render.png View File

Before After
Width: 150  |  Height: 380  |  Size: 21KB

BIN
plugins/community/repos/VultModules/images/Tohe-render.png View File

Before After
Width: 60  |  Height: 380  |  Size: 10KB

BIN
plugins/community/repos/VultModules/images/Trummor-render.png View File

Before After
Width: 300  |  Height: 380  |  Size: 46KB

+ 0
- 13
plugins/community/repos/VultModules/make.objects View File

@@ -1,13 +0,0 @@
ALL_OBJ= \
src/Debriatus.o \
src/Lateralus.o \
src/Rescomb.o \
src/Splie.o \
src/Stabile.o \
src/Tangents.o \
src/Tohe.o \
src/Trummor.o \
src/VultEngine.o \
src/VultModules.o \
src/vultin.o


+ 0
- 297
plugins/community/repos/VultModules/res/Debriatus.svg View File

@@ -1,297 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="150" height="380" viewBox="0 0 150 380" version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;">
<g id="Panel" transform="matrix(1,0,0,1,55.1709,-56.7292)">
<g id="rect9931" transform="matrix(3.78941,0,0,3.78266,-55.3752,-686.609)">
<rect x="0.054" y="196.512" width="39.584" height="100.458" style="fill:rgb(32,32,32);"/>
</g>
<g transform="matrix(1.05877,0,0,1.05877,-21.8739,95.2883)">
<g id="text7967.-9.-5">
<path d="M1.666,0l-1.341,-4.828l1.21,0l0.949,3.381l1.012,-3.381l1.125,0l0.911,3.399l1.024,-3.399l0.906,0l-1.434,4.828l-1.248,0l-0.88,-3.311l-0.985,3.311l-1.249,0Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M10.949,-0.519c-0.434,0.419 -0.899,0.629 -1.394,0.629c-0.422,0 -0.765,-0.129 -1.029,-0.387c-0.264,-0.258 -0.396,-0.592 -0.396,-1.003c0,-0.533 0.213,-0.944 0.64,-1.233c0.426,-0.289 1.037,-0.433 1.831,-0.433l0.348,0l0,-0.44c0,-0.501 -0.286,-0.752 -0.858,-0.752c-0.507,0 -1.02,0.144 -1.539,0.431l0,-0.897c0.59,-0.223 1.173,-0.334 1.75,-0.334c1.264,0 1.895,0.503 1.895,1.508l0,2.137c0,0.378 0.122,0.567 0.365,0.567c0.044,0 0.102,-0.005 0.172,-0.017l0.031,0.73c-0.276,0.082 -0.519,0.123 -0.73,0.123c-0.534,0 -0.877,-0.21 -1.029,-0.629l-0.057,0Zm0,-0.699l0,-0.981l-0.308,0c-0.841,0 -1.262,0.264 -1.262,0.792c0,0.179 0.061,0.329 0.182,0.451c0.122,0.121 0.272,0.182 0.451,0.182c0.305,0 0.617,-0.148 0.937,-0.444Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M15.069,0l-1.843,-4.828l1.372,0l1.35,3.482l1.341,-3.482l0.941,0l-1.86,4.828l-1.301,0Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M23.151,-0.163c-0.619,0.182 -1.205,0.273 -1.759,0.273c-0.806,0 -1.442,-0.229 -1.909,-0.686c-0.466,-0.457 -0.699,-1.082 -0.699,-1.873c0,-0.748 0.214,-1.349 0.64,-1.805c0.427,-0.456 0.99,-0.684 1.691,-0.684c0.706,0 1.222,0.223 1.548,0.668c0.325,0.446 0.488,1.151 0.488,2.115l-2.995,0c0.088,0.921 0.594,1.381 1.517,1.381c0.437,0 0.929,-0.101 1.478,-0.303l0,0.914Zm-3.012,-2.726l1.732,0c0,-0.824 -0.265,-1.235 -0.796,-1.235c-0.539,0 -0.851,0.411 -0.936,1.235Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M30.503,0l0,-0.91c-0.335,0.68 -0.861,1.02 -1.579,1.02c-0.58,0 -1.036,-0.213 -1.368,-0.638c-0.331,-0.425 -0.496,-1.01 -0.496,-1.754c0,-0.809 0.186,-1.454 0.56,-1.935c0.374,-0.481 0.876,-0.721 1.506,-0.721c0.504,0 0.963,0.199 1.377,0.598l0,-2.603l1.305,0l0,6.943l-1.305,0Zm0,-3.566c-0.314,-0.352 -0.65,-0.528 -1.007,-0.528c-0.32,0 -0.575,0.154 -0.766,0.462c-0.19,0.308 -0.285,0.721 -0.285,1.24c0,0.988 0.316,1.482 0.949,1.482c0.387,0 0.757,-0.248 1.109,-0.743l0,-1.913Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M37.362,-0.163c-0.619,0.182 -1.205,0.273 -1.759,0.273c-0.806,0 -1.442,-0.229 -1.908,-0.686c-0.466,-0.457 -0.699,-1.082 -0.699,-1.873c0,-0.748 0.213,-1.349 0.639,-1.805c0.427,-0.456 0.991,-0.684 1.691,-0.684c0.707,0 1.223,0.223 1.548,0.668c0.325,0.446 0.488,1.151 0.488,2.115l-2.994,0c0.087,0.921 0.593,1.381 1.517,1.381c0.436,0 0.929,-0.101 1.477,-0.303l0,0.914Zm-3.012,-2.726l1.732,0c0,-0.824 -0.265,-1.235 -0.795,-1.235c-0.54,0 -0.852,0.411 -0.937,1.235Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M38.58,-0.154l0,-0.954c0.645,0.27 1.196,0.404 1.653,0.404c0.534,0 0.801,-0.181 0.801,-0.545c0,-0.234 -0.22,-0.439 -0.66,-0.615l-0.44,-0.176c-0.478,-0.194 -0.819,-0.402 -1.024,-0.625c-0.205,-0.222 -0.308,-0.498 -0.308,-0.826c0,-0.458 0.174,-0.813 0.523,-1.067c0.349,-0.253 0.837,-0.38 1.464,-0.38c0.393,0 0.861,0.057 1.403,0.172l0,0.914c-0.522,-0.182 -0.954,-0.272 -1.297,-0.272c-0.539,0 -0.809,0.167 -0.809,0.501c0,0.22 0.199,0.406 0.598,0.558l0.378,0.145c0.566,0.214 0.959,0.431 1.181,0.651c0.221,0.22 0.332,0.503 0.332,0.849c0,0.454 -0.189,0.823 -0.565,1.106c-0.377,0.282 -0.867,0.424 -1.471,0.424c-0.581,0 -1.167,-0.088 -1.759,-0.264Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M46.288,-0.026c-0.311,0.09 -0.555,0.136 -0.734,0.136c-1.129,0 -1.693,-0.528 -1.693,-1.583l0,-2.542l-0.541,0l0,-0.813l0.541,0l0,-0.813l1.301,-0.15l0,0.963l1.034,0l0,0.813l-1.034,0l0,2.37c0,0.593 0.242,0.889 0.726,0.889c0.111,0 0.245,-0.021 0.4,-0.062l0,0.792Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M47.449,0l0,-4.828l1.301,0l0,0.91c0.337,-0.68 0.85,-1.02 1.539,-1.02c0.082,0 0.163,0.009 0.242,0.026l0,1.161c-0.184,-0.067 -0.356,-0.101 -0.514,-0.101c-0.519,0 -0.941,0.263 -1.267,0.787l0,3.065l-1.301,0Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M54.528,0l0,-0.91c-0.422,0.68 -0.97,1.02 -1.644,1.02c-0.431,0 -0.771,-0.136 -1.02,-0.409c-0.25,-0.273 -0.374,-0.645 -0.374,-1.117l0,-3.412l1.301,0l0,3.091c0,0.548 0.184,0.822 0.55,0.822c0.41,0 0.806,-0.291 1.187,-0.875l0,-3.038l1.302,0l0,4.828l-1.302,0Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M61.018,-0.106c-0.539,0.144 -1.039,0.216 -1.499,0.216c-0.771,0 -1.38,-0.227 -1.827,-0.679c-0.447,-0.453 -0.671,-1.07 -0.671,-1.849c0,-0.789 0.23,-1.406 0.691,-1.852c0.46,-0.445 1.096,-0.668 1.908,-0.668c0.393,0 0.846,0.063 1.359,0.189l0,0.941c-0.534,-0.173 -0.96,-0.259 -1.28,-0.259c-0.39,0 -0.703,0.149 -0.941,0.448c-0.237,0.299 -0.356,0.696 -0.356,1.192c0,0.507 0.128,0.913 0.385,1.218c0.256,0.305 0.598,0.457 1.026,0.457c0.39,0 0.792,-0.085 1.205,-0.255l0,0.901Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M64.738,-0.026c-0.311,0.09 -0.555,0.136 -0.734,0.136c-1.129,0 -1.693,-0.528 -1.693,-1.583l0,-2.542l-0.541,0l0,-0.813l0.541,0l0,-0.813l1.302,-0.15l0,0.963l1.033,0l0,0.813l-1.033,0l0,2.37c0,0.593 0.241,0.889 0.725,0.889c0.111,0 0.245,-0.021 0.4,-0.062l0,0.792Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M65.899,0l0,-4.828l1.302,0l0,4.828l-1.302,0Zm0,-5.641l0,-1.087l1.302,0l0,1.087l-1.302,0Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M70.854,0.11c-0.753,0 -1.352,-0.228 -1.796,-0.684c-0.444,-0.456 -0.666,-1.069 -0.666,-1.84c0,-0.78 0.224,-1.395 0.671,-1.847c0.447,-0.451 1.054,-0.677 1.822,-0.677c0.771,0 1.38,0.226 1.827,0.677c0.447,0.452 0.671,1.064 0.671,1.838c0,0.792 -0.224,1.412 -0.673,1.86c-0.448,0.449 -1.067,0.673 -1.856,0.673Zm0.022,-0.814c0.748,0 1.122,-0.573 1.122,-1.719c0,-0.525 -0.099,-0.939 -0.297,-1.244c-0.198,-0.305 -0.47,-0.457 -0.816,-0.457c-0.343,0 -0.613,0.152 -0.811,0.457c-0.198,0.305 -0.297,0.722 -0.297,1.253c0,0.525 0.098,0.941 0.295,1.249c0.196,0.308 0.464,0.461 0.804,0.461Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M74.579,0l0,-4.828l1.301,0l0,0.91c0.425,-0.68 0.974,-1.02 1.645,-1.02c0.431,0 0.771,0.136 1.02,0.409c0.249,0.273 0.374,0.645 0.374,1.117l0,3.412l-1.302,0l0,-3.091c0,-0.548 -0.182,-0.822 -0.545,-0.822c-0.413,0 -0.811,0.291 -1.192,0.875l0,3.038l-1.301,0Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
</g>
</g>
<g transform="matrix(1.33192,0,0,1.33192,-17.4823,83.9241)">
<g id="text7967">
<path d="M2.597,-1.568l0.425,0c0.321,0 0.608,-0.05 0.86,-0.151c0.252,-0.101 0.464,-0.239 0.637,-0.416c0.174,-0.176 0.306,-0.385 0.397,-0.628c0.091,-0.242 0.137,-0.508 0.137,-0.798c0,-0.283 -0.047,-0.548 -0.142,-0.793c-0.094,-0.246 -0.228,-0.457 -0.401,-0.633c-0.173,-0.176 -0.386,-0.315 -0.638,-0.415c-0.251,-0.101 -0.535,-0.152 -0.85,-0.152l-0.425,0l0,3.986Zm-1.851,-5.553l2.739,0c0.485,0 0.94,0.097 1.365,0.292c0.425,0.196 0.796,0.455 1.114,0.78c0.318,0.324 0.569,0.702 0.751,1.133c0.183,0.431 0.274,0.883 0.274,1.355c0,0.466 -0.09,0.915 -0.269,1.346c-0.179,0.431 -0.428,0.811 -0.746,1.138c-0.318,0.328 -0.69,0.589 -1.115,0.784c-0.425,0.195 -0.883,0.293 -1.374,0.293l-2.739,0l0,-7.121Z" style="fill:rgb(102,102,102);fill-rule:nonzero;"/>
<path d="M12.222,-5.554l-2.201,0l0,1.19l2.078,0l0,1.568l-2.078,0l0,1.228l2.201,0l0,1.568l-4.052,0l0,-7.121l4.052,0l0,1.567Z" style="fill:rgb(102,102,102);fill-rule:nonzero;"/>
<path d="M15.405,-1.436l0.406,0c0.466,0 0.799,-0.059 1.001,-0.179c0.201,-0.12 0.302,-0.312 0.302,-0.576c0,-0.265 -0.101,-0.457 -0.302,-0.576c-0.202,-0.12 -0.535,-0.18 -1.001,-0.18l-0.406,0l0,1.511Zm0,-2.89l0.34,0c0.579,0 0.869,-0.23 0.869,-0.689c0,-0.46 -0.29,-0.69 -0.869,-0.69l-0.34,0l0,1.379Zm-1.852,-2.795l2.758,0c0.655,0 1.153,0.157 1.493,0.472c0.34,0.315 0.51,0.768 0.51,1.36c0,0.359 -0.065,0.656 -0.194,0.892c-0.129,0.237 -0.326,0.436 -0.59,0.6c0.264,0.051 0.489,0.128 0.675,0.232c0.186,0.103 0.337,0.231 0.453,0.382c0.117,0.151 0.2,0.321 0.251,0.51c0.05,0.189 0.075,0.39 0.075,0.605c0,0.333 -0.058,0.629 -0.174,0.887c-0.117,0.259 -0.281,0.476 -0.492,0.652c-0.211,0.176 -0.467,0.309 -0.769,0.397c-0.303,0.088 -0.643,0.132 -1.02,0.132l-2.976,0l0,-7.121Z" style="fill:rgb(102,102,102);fill-rule:nonzero;"/>
<path d="M21.94,-3.939l0.35,0c0.365,0 0.645,-0.075 0.841,-0.226c0.195,-0.151 0.292,-0.369 0.292,-0.652c0,-0.283 -0.097,-0.5 -0.292,-0.652c-0.196,-0.151 -0.476,-0.226 -0.841,-0.226l-0.35,0l0,1.756Zm4.071,3.939l-2.304,0l-1.767,-2.739l0,2.739l-1.851,0l0,-7.121l2.881,0c0.397,0 0.743,0.058 1.039,0.174c0.296,0.117 0.54,0.276 0.732,0.477c0.192,0.202 0.337,0.435 0.434,0.699c0.098,0.265 0.147,0.548 0.147,0.85c0,0.542 -0.131,0.981 -0.392,1.318c-0.262,0.337 -0.647,0.565 -1.157,0.685l2.238,2.918Z" style="fill:rgb(102,102,102);fill-rule:nonzero;"/>
<rect x="26.786" y="-7.121" width="1.851" height="7.121" style="fill:rgb(102,102,102);fill-rule:nonzero;"/>
<path d="M34.002,-2.645l-0.832,-2.37l-0.831,2.37l1.663,0Zm0.491,1.408l-2.645,0l-0.425,1.237l-1.974,0l2.711,-7.121l2.021,0l2.711,7.121l-1.974,0l-0.425,-1.237Z" style="fill:rgb(102,102,102);fill-rule:nonzero;"/>
<path d="M40.094,-5.554l0,5.554l-1.852,0l0,-5.554l-1.52,0l0,-1.567l4.892,0l0,1.567l-1.52,0Z" style="fill:rgb(102,102,102);fill-rule:nonzero;"/>
<path d="M44.287,-7.121l0,3.872c0,0.208 0.008,0.42 0.024,0.637c0.015,0.218 0.063,0.414 0.141,0.591c0.079,0.176 0.203,0.319 0.373,0.43c0.17,0.11 0.41,0.165 0.718,0.165c0.309,0 0.547,-0.055 0.713,-0.165c0.167,-0.111 0.292,-0.254 0.373,-0.43c0.082,-0.177 0.131,-0.373 0.147,-0.591c0.016,-0.217 0.023,-0.429 0.023,-0.637l0,-3.872l1.842,0l0,4.127c0,1.108 -0.253,1.917 -0.76,2.427c-0.507,0.51 -1.286,0.765 -2.338,0.765c-1.051,0 -1.832,-0.255 -2.342,-0.765c-0.51,-0.51 -0.765,-1.319 -0.765,-2.427l0,-4.127l1.851,0Z" style="fill:rgb(102,102,102);fill-rule:nonzero;"/>
<path d="M54.044,-5.299c-0.202,-0.163 -0.403,-0.285 -0.605,-0.363c-0.201,-0.079 -0.396,-0.118 -0.585,-0.118c-0.24,0 -0.435,0.056 -0.586,0.17c-0.151,0.113 -0.227,0.261 -0.227,0.444c0,0.126 0.038,0.229 0.114,0.311c0.075,0.082 0.174,0.153 0.297,0.213c0.123,0.06 0.262,0.112 0.416,0.156c0.154,0.044 0.307,0.091 0.458,0.141c0.604,0.202 1.047,0.471 1.327,0.808c0.28,0.337 0.42,0.776 0.42,1.317c0,0.366 -0.061,0.696 -0.184,0.992c-0.123,0.296 -0.302,0.55 -0.538,0.76c-0.236,0.211 -0.526,0.375 -0.869,0.492c-0.343,0.116 -0.732,0.174 -1.167,0.174c-0.9,0 -1.734,-0.267 -2.503,-0.802l0.794,-1.493c0.277,0.246 0.551,0.428 0.821,0.548c0.271,0.12 0.539,0.179 0.803,0.179c0.303,0 0.528,-0.069 0.676,-0.207c0.148,-0.139 0.222,-0.296 0.222,-0.473c0,-0.107 -0.019,-0.199 -0.057,-0.278c-0.038,-0.079 -0.101,-0.151 -0.189,-0.217c-0.088,-0.067 -0.203,-0.128 -0.345,-0.185c-0.141,-0.056 -0.313,-0.119 -0.515,-0.188c-0.239,-0.076 -0.473,-0.159 -0.703,-0.251c-0.23,-0.091 -0.435,-0.212 -0.614,-0.363c-0.18,-0.152 -0.324,-0.342 -0.435,-0.572c-0.11,-0.23 -0.165,-0.521 -0.165,-0.873c0,-0.353 0.058,-0.673 0.175,-0.959c0.116,-0.287 0.28,-0.532 0.491,-0.737c0.211,-0.204 0.469,-0.363 0.775,-0.477c0.305,-0.113 0.647,-0.17 1.024,-0.17c0.353,0 0.721,0.049 1.105,0.147c0.384,0.097 0.753,0.24 1.105,0.429l-0.736,1.445Z" style="fill:rgb(102,102,102);fill-rule:nonzero;"/>
</g>
</g>
<g id="path8216.-1.-5.-0.-2" transform="matrix(4.00166,0,0,-4.00166,-57.9875,-851.405)">
<path d="M31.417,-243.598c0.684,1.185 0.416,2.705 -0.633,3.585c-1.048,0.88 -2.592,0.88 -3.64,0c-1.049,-0.88 -1.317,-2.4 -0.633,-3.585l2.453,1.416l2.453,-1.416Z" style="fill:none;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9630.-2.-6.-1" transform="matrix(4.00166,0,0,4.00166,-57.9875,-851.405)">
<path d="M31.324,243.897l0.006,1.102" style="fill:rgb(204,204,204);fill-rule:nonzero;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9630.-1.-1.-4.-7" transform="matrix(4.00166,0,0,4.00166,-57.9875,-851.405)">
<path d="M31.878,244.44l-1.102,0.005" style="fill:rgb(204,204,204);fill-rule:nonzero;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9630.-1.-6.-9.-9.-2" transform="matrix(4.00166,0,0,4.00166,-57.9875,-851.405)">
<path d="M27.3,244.409l-1.103,0.005" style="fill:rgb(204,204,204);fill-rule:nonzero;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9948.-9.-9.-4" transform="matrix(4.00166,0,0,4.00166,-57.9875,-851.405)">
<path d="M28.964,242.183l-0.006,-3.326" style="fill:none;stroke:rgb(204,204,204);stroke-width:0.29px;"/>
</g>
<g transform="matrix(4.00166,0,0,4.00166,-16.712,162.806)">
<g id="text9293.-4">
<path d="M1.022,-1.176l-0.472,0l0,0.252l0.43,0l0,0.332l-0.43,0l0,0.592l-0.392,0l0,-1.508l0.864,0l0,0.332Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M1.596,-0.754c0,0.06 0.011,0.115 0.034,0.166c0.023,0.051 0.053,0.095 0.092,0.132c0.039,0.037 0.084,0.066 0.135,0.087c0.051,0.021 0.106,0.031 0.163,0.031c0.057,0 0.112,-0.01 0.163,-0.031c0.051,-0.021 0.097,-0.05 0.136,-0.087c0.039,-0.037 0.07,-0.081 0.093,-0.132c0.023,-0.051 0.034,-0.106 0.034,-0.166c0,-0.06 -0.011,-0.115 -0.034,-0.166c-0.023,-0.051 -0.054,-0.095 -0.093,-0.132c-0.039,-0.037 -0.085,-0.066 -0.136,-0.087c-0.051,-0.021 -0.106,-0.031 -0.163,-0.031c-0.057,0 -0.112,0.01 -0.163,0.031c-0.051,0.021 -0.096,0.05 -0.135,0.087c-0.039,0.037 -0.069,0.081 -0.092,0.132c-0.023,0.051 -0.034,0.106 -0.034,0.166Zm-0.41,0c0,-0.112 0.021,-0.216 0.062,-0.313c0.041,-0.097 0.099,-0.181 0.172,-0.253c0.073,-0.072 0.161,-0.128 0.263,-0.169c0.102,-0.041 0.214,-0.061 0.337,-0.061c0.121,0 0.233,0.02 0.336,0.061c0.103,0.041 0.191,0.097 0.265,0.169c0.074,0.072 0.132,0.156 0.173,0.253c0.041,0.097 0.062,0.201 0.062,0.313c0,0.112 -0.021,0.216 -0.062,0.313c-0.041,0.097 -0.099,0.181 -0.173,0.253c-0.074,0.072 -0.162,0.128 -0.265,0.169c-0.103,0.041 -0.215,0.061 -0.336,0.061c-0.123,0 -0.235,-0.02 -0.337,-0.061c-0.102,-0.041 -0.19,-0.097 -0.263,-0.169c-0.073,-0.072 -0.131,-0.156 -0.172,-0.253c-0.041,-0.097 -0.062,-0.201 -0.062,-0.313Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M3.496,-1.508l0,1.176l0.47,0l0,0.332l-0.862,0l0,-1.508l0.392,0Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M4.56,-0.332l0.09,0c0.068,0 0.129,-0.011 0.182,-0.032c0.053,-0.021 0.098,-0.051 0.135,-0.088c0.037,-0.037 0.065,-0.082 0.084,-0.133c0.019,-0.051 0.029,-0.108 0.029,-0.169c0,-0.06 -0.01,-0.116 -0.03,-0.168c-0.02,-0.052 -0.048,-0.097 -0.085,-0.134c-0.037,-0.037 -0.082,-0.067 -0.135,-0.088c-0.053,-0.021 -0.113,-0.032 -0.18,-0.032l-0.09,0l0,0.844Zm-0.392,-1.176l0.58,0c0.103,0 0.199,0.021 0.289,0.062c0.09,0.041 0.169,0.096 0.236,0.165c0.067,0.069 0.12,0.149 0.159,0.24c0.039,0.091 0.058,0.187 0.058,0.287c0,0.099 -0.019,0.194 -0.057,0.285c-0.038,0.091 -0.091,0.172 -0.158,0.241c-0.067,0.069 -0.146,0.125 -0.236,0.166c-0.09,0.041 -0.187,0.062 -0.291,0.062l-0.58,0l0,-1.508Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
</g>
</g>
<g id="path8216.-1.-5.-0.-21" transform="matrix(4.00166,0,0,-4.00166,-57.9875,-851.405)">
<path d="M31.417,-243.598c0.684,1.185 0.416,2.705 -0.633,3.585c-1.048,0.88 -2.592,0.88 -3.64,0c-1.049,-0.88 -1.317,-2.4 -0.633,-3.585l2.453,1.416l2.453,-1.416Z" style="fill:none;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9630.-2.-6.-11" transform="matrix(4.00166,0,0,4.00166,-57.9875,-851.405)">
<path d="M31.324,243.897l0.006,1.102" style="fill:rgb(204,204,204);fill-rule:nonzero;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9630.-1.-1.-4.-71" transform="matrix(4.00166,0,0,4.00166,-57.9875,-851.405)">
<path d="M31.878,244.44l-1.102,0.005" style="fill:rgb(204,204,204);fill-rule:nonzero;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9630.-1.-6.-9.-9.-21" transform="matrix(4.00166,0,0,4.00166,-57.9875,-851.405)">
<path d="M27.3,244.409l-1.103,0.005" style="fill:rgb(204,204,204);fill-rule:nonzero;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9948.-9.-9.-41" transform="matrix(4.00166,0,0,4.00166,-57.9875,-851.405)">
<path d="M28.964,242.183l-0.006,-3.326" style="fill:none;stroke:rgb(204,204,204);stroke-width:0.29px;"/>
</g>
<g id="path8216.-1" transform="matrix(4.00166,0,0,-4.00166,-56.7265,-870.465)">
<path d="M18.227,-252.754c1.469,2.545 0.894,5.809 -1.357,7.698c-2.251,1.888 -5.566,1.888 -7.817,0c-2.251,-1.889 -2.826,-5.153 -1.357,-7.698" style="fill:none;stroke:rgb(204,204,204);stroke-width:0.5px;"/>
</g>
<g id="path9488.-2.-9" transform="matrix(4.00166,0,0,4.00166,-56.4562,-870.465)">
<circle cx="8.361" cy="255.07" r="0.926" style="fill:none;stroke:rgb(204,204,204);stroke-width:0.53px;"/>
</g>
<g id="path9488.-2.-6.-0" transform="matrix(4.00166,0,0,4.00166,-56.4562,-870.465)">
<circle cx="17.802" cy="254.942" r="0.926" style="fill:rgb(204,204,204);stroke:rgb(204,204,204);stroke-width:0.53px;"/>
</g>
<g transform="matrix(3.67512,0,0,4.00166,-48.2761,38.4026)">
<path d="M25.477,22.531c0,-0.211 -0.186,-0.383 -0.416,-0.383l-4.815,0c-0.23,0 -0.417,0.172 -0.417,0.383l0,0.765c0,0.211 0.187,0.382 0.417,0.382l4.815,0c0.23,0 0.416,-0.171 0.416,-0.382l0,-0.765Z" style="fill:rgb(38,38,38);"/>
</g>
<g id="path8216.-1.-5.-0.-22" transform="matrix(4.00166,0,0,-4.00166,-57.9875,-784.738)">
<path d="M31.417,-243.598c0.684,1.185 0.416,2.705 -0.633,3.585c-1.048,0.88 -2.592,0.88 -3.64,0c-1.049,-0.88 -1.317,-2.4 -0.633,-3.585l2.453,1.416l2.453,-1.416Z" style="fill:none;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9630.-2.-6.-12" transform="matrix(4.00166,0,0,4.00166,-57.9875,-784.738)">
<path d="M31.324,243.897l0.006,1.102" style="fill:rgb(204,204,204);fill-rule:nonzero;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9630.-1.-1.-4.-72" transform="matrix(4.00166,0,0,4.00166,-57.9875,-784.738)">
<path d="M31.878,244.44l-1.102,0.005" style="fill:rgb(204,204,204);fill-rule:nonzero;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9630.-1.-6.-9.-9.-22" transform="matrix(4.00166,0,0,4.00166,-57.9875,-784.738)">
<path d="M27.3,244.409l-1.103,0.005" style="fill:rgb(204,204,204);fill-rule:nonzero;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9948.-9.-9.-42" transform="matrix(4.00166,0,0,4.00166,-57.9875,-784.738)">
<path d="M28.964,242.183l-0.006,-3.326" style="fill:none;stroke:rgb(204,204,204);stroke-width:0.29px;"/>
</g>
<g transform="matrix(4.00166,0,0,4.00166,-19.712,229.473)">
<g id="text9293.-41">
<path d="M1.244,-1.004c-0.091,-0.111 -0.203,-0.166 -0.336,-0.166c-0.059,0 -0.113,0.011 -0.163,0.032c-0.05,0.021 -0.093,0.05 -0.129,0.087c-0.036,0.037 -0.064,0.08 -0.085,0.131c-0.021,0.051 -0.031,0.105 -0.031,0.164c0,0.06 0.01,0.115 0.031,0.166c0.021,0.051 0.049,0.095 0.086,0.132c0.037,0.037 0.08,0.067 0.129,0.088c0.049,0.021 0.103,0.032 0.16,0.032c0.125,0 0.238,-0.053 0.338,-0.16l0,0.464l-0.04,0.014c-0.06,0.021 -0.116,0.037 -0.168,0.047c-0.052,0.01 -0.103,0.015 -0.154,0.015c-0.104,0 -0.204,-0.02 -0.299,-0.059c-0.095,-0.039 -0.179,-0.095 -0.252,-0.166c-0.073,-0.071 -0.131,-0.156 -0.175,-0.254c-0.044,-0.098 -0.066,-0.205 -0.066,-0.321c0,-0.116 0.022,-0.222 0.065,-0.319c0.043,-0.097 0.101,-0.18 0.174,-0.25c0.073,-0.07 0.157,-0.125 0.253,-0.164c0.096,-0.039 0.197,-0.059 0.302,-0.059c0.06,0 0.119,0.006 0.177,0.019c0.058,0.013 0.119,0.032 0.183,0.059l0,0.468Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M1.884,-0.834l0.074,0c0.077,0 0.137,-0.016 0.178,-0.048c0.041,-0.032 0.062,-0.078 0.062,-0.138c0,-0.06 -0.021,-0.106 -0.062,-0.138c-0.041,-0.032 -0.101,-0.048 -0.178,-0.048l-0.074,0l0,0.372Zm0.862,0.834l-0.488,0l-0.374,-0.58l0,0.58l-0.392,0l0,-1.508l0.61,0c0.084,0 0.157,0.012 0.22,0.037c0.063,0.025 0.114,0.058 0.155,0.101c0.041,0.043 0.071,0.092 0.092,0.148c0.021,0.056 0.031,0.116 0.031,0.18c0,0.115 -0.028,0.208 -0.083,0.279c-0.055,0.071 -0.137,0.12 -0.245,0.145l0.474,0.618Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M3.288,-1.508l0,0.82c0,0.044 0.002,0.089 0.005,0.135c0.003,0.046 0.013,0.088 0.03,0.125c0.017,0.037 0.043,0.068 0.079,0.091c0.036,0.023 0.087,0.035 0.152,0.035c0.065,0 0.116,-0.012 0.151,-0.035c0.035,-0.023 0.062,-0.054 0.079,-0.091c0.017,-0.037 0.028,-0.079 0.031,-0.125c0.003,-0.046 0.005,-0.091 0.005,-0.135l0,-0.82l0.39,0l0,0.874c0,0.235 -0.054,0.406 -0.161,0.514c-0.107,0.108 -0.272,0.162 -0.495,0.162c-0.223,0 -0.388,-0.054 -0.496,-0.162c-0.108,-0.108 -0.162,-0.279 -0.162,-0.514l0,-0.874l0.392,0Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M5.354,-1.122c-0.043,-0.035 -0.085,-0.06 -0.128,-0.077c-0.043,-0.017 -0.084,-0.025 -0.124,-0.025c-0.051,0 -0.092,0.012 -0.124,0.036c-0.032,0.024 -0.048,0.055 -0.048,0.094c0,0.027 0.008,0.049 0.024,0.066c0.016,0.017 0.037,0.032 0.063,0.045c0.026,0.013 0.055,0.024 0.088,0.033c0.033,0.009 0.065,0.019 0.097,0.03c0.128,0.043 0.222,0.1 0.281,0.171c0.059,0.071 0.089,0.164 0.089,0.279c0,0.077 -0.013,0.147 -0.039,0.21c-0.026,0.063 -0.064,0.116 -0.114,0.161c-0.05,0.045 -0.111,0.079 -0.184,0.104c-0.073,0.025 -0.155,0.037 -0.247,0.037c-0.191,0 -0.367,-0.057 -0.53,-0.17l0.168,-0.316c0.059,0.052 0.117,0.091 0.174,0.116c0.057,0.025 0.114,0.038 0.17,0.038c0.064,0 0.112,-0.015 0.143,-0.044c0.031,-0.029 0.047,-0.063 0.047,-0.1c0,-0.023 -0.004,-0.042 -0.012,-0.059c-0.008,-0.017 -0.021,-0.032 -0.04,-0.046c-0.019,-0.014 -0.043,-0.027 -0.073,-0.039c-0.03,-0.012 -0.066,-0.025 -0.109,-0.04c-0.051,-0.016 -0.1,-0.034 -0.149,-0.053c-0.049,-0.019 -0.092,-0.045 -0.13,-0.077c-0.038,-0.032 -0.069,-0.072 -0.092,-0.121c-0.023,-0.049 -0.035,-0.11 -0.035,-0.185c0,-0.075 0.012,-0.142 0.037,-0.203c0.025,-0.061 0.059,-0.113 0.104,-0.156c0.045,-0.043 0.099,-0.077 0.164,-0.101c0.065,-0.024 0.137,-0.036 0.217,-0.036c0.075,0 0.153,0.01 0.234,0.031c0.081,0.021 0.159,0.051 0.234,0.091l-0.156,0.306Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M6.21,-0.926l0.566,0l0,-0.582l0.392,0l0,1.508l-0.392,0l0,-0.622l-0.566,0l0,0.622l-0.392,0l0,-1.508l0.392,0l0,0.582Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
</g>
</g>
<g id="path8216.-1.-5.-0.-23" transform="matrix(4.00166,0,0,-4.00166,-57.9875,-784.738)">
<path d="M31.417,-243.598c0.684,1.185 0.416,2.705 -0.633,3.585c-1.048,0.88 -2.592,0.88 -3.64,0c-1.049,-0.88 -1.317,-2.4 -0.633,-3.585l2.453,1.416l2.453,-1.416Z" style="fill:none;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9630.-2.-6.-13" transform="matrix(4.00166,0,0,4.00166,-57.9875,-784.738)">
<path d="M31.324,243.897l0.006,1.102" style="fill:rgb(204,204,204);fill-rule:nonzero;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9630.-1.-1.-4.-73" transform="matrix(4.00166,0,0,4.00166,-57.9875,-784.738)">
<path d="M31.878,244.44l-1.102,0.005" style="fill:rgb(204,204,204);fill-rule:nonzero;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9630.-1.-6.-9.-9.-23" transform="matrix(4.00166,0,0,4.00166,-57.9875,-784.738)">
<path d="M27.3,244.409l-1.103,0.005" style="fill:rgb(204,204,204);fill-rule:nonzero;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9948.-9.-9.-43" transform="matrix(4.00166,0,0,4.00166,-57.9875,-784.738)">
<path d="M28.964,242.183l-0.006,-3.326" style="fill:none;stroke:rgb(204,204,204);stroke-width:0.29px;"/>
</g>
<g id="path8216.-11" transform="matrix(4.00166,0,0,-4.00166,-56.7265,-803.799)">
<path d="M18.227,-252.754c1.469,2.545 0.894,5.809 -1.357,7.698c-2.251,1.888 -5.566,1.888 -7.817,0c-2.251,-1.889 -2.826,-5.153 -1.357,-7.698" style="fill:none;stroke:rgb(204,204,204);stroke-width:0.5px;"/>
</g>
<g id="path9488.-2.-91" transform="matrix(4.00166,0,0,4.00166,-56.4562,-803.799)">
<circle cx="8.361" cy="255.07" r="0.926" style="fill:none;stroke:rgb(204,204,204);stroke-width:0.53px;"/>
</g>
<g id="path9488.-2.-6.-01" transform="matrix(4.00166,0,0,4.00166,-56.4562,-803.799)">
<circle cx="17.802" cy="254.942" r="0.926" style="fill:rgb(204,204,204);stroke:rgb(204,204,204);stroke-width:0.53px;"/>
</g>
<g transform="matrix(3.67512,0,0,4.00166,-48.2761,105.069)">
<path d="M25.477,22.531c0,-0.211 -0.186,-0.383 -0.416,-0.383l-4.815,0c-0.23,0 -0.417,0.172 -0.417,0.383l0,0.765c0,0.211 0.187,0.382 0.417,0.382l4.815,0c0.23,0 0.416,-0.171 0.416,-0.382l0,-0.765Z" style="fill:rgb(38,38,38);"/>
</g>
<g id="path8216.-1.-5.-0.-24" transform="matrix(4.00166,0,0,-4.00166,-57.9875,-718.072)">
<path d="M31.417,-243.598c0.684,1.185 0.416,2.705 -0.633,3.585c-1.048,0.88 -2.592,0.88 -3.64,0c-1.049,-0.88 -1.317,-2.4 -0.633,-3.585l2.453,1.416l2.453,-1.416Z" style="fill:none;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9630.-2.-6.-14" transform="matrix(4.00166,0,0,4.00166,-57.9875,-718.072)">
<path d="M31.324,243.897l0.006,1.102" style="fill:rgb(204,204,204);fill-rule:nonzero;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9630.-1.-1.-4.-74" transform="matrix(4.00166,0,0,4.00166,-57.9875,-718.072)">
<path d="M31.878,244.44l-1.102,0.005" style="fill:rgb(204,204,204);fill-rule:nonzero;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9630.-1.-6.-9.-9.-24" transform="matrix(4.00166,0,0,4.00166,-57.9875,-718.072)">
<path d="M27.3,244.409l-1.103,0.005" style="fill:rgb(204,204,204);fill-rule:nonzero;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9948.-9.-9.-44" transform="matrix(4.00166,0,0,4.00166,-57.9875,-718.072)">
<path d="M28.964,242.183l-0.006,-3.326" style="fill:none;stroke:rgb(204,204,204);stroke-width:0.29px;"/>
</g>
<g transform="matrix(4.00166,0,0,4.00166,-22.712,296.139)">
<g id="text9293.-42">
<path d="M0.55,-0.332l0.09,0c0.068,0 0.129,-0.011 0.182,-0.032c0.053,-0.021 0.098,-0.051 0.135,-0.088c0.037,-0.037 0.065,-0.082 0.084,-0.133c0.019,-0.051 0.029,-0.108 0.029,-0.169c0,-0.06 -0.01,-0.116 -0.03,-0.168c-0.02,-0.052 -0.048,-0.097 -0.085,-0.134c-0.037,-0.037 -0.082,-0.067 -0.135,-0.088c-0.053,-0.021 -0.113,-0.032 -0.18,-0.032l-0.09,0l0,0.844Zm-0.392,-1.176l0.58,0c0.103,0 0.199,0.021 0.289,0.062c0.09,0.041 0.169,0.096 0.236,0.165c0.067,0.069 0.12,0.149 0.159,0.24c0.039,0.091 0.058,0.187 0.058,0.287c0,0.099 -0.019,0.194 -0.057,0.285c-0.038,0.091 -0.091,0.172 -0.158,0.241c-0.067,0.069 -0.146,0.125 -0.236,0.166c-0.09,0.041 -0.187,0.062 -0.291,0.062l-0.58,0l0,-1.508Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<rect x="1.73" y="-1.508" width="0.392" height="1.508" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M3.266,-1.122c-0.043,-0.035 -0.085,-0.06 -0.128,-0.077c-0.043,-0.017 -0.084,-0.025 -0.124,-0.025c-0.051,0 -0.092,0.012 -0.124,0.036c-0.032,0.024 -0.048,0.055 -0.048,0.094c0,0.027 0.008,0.049 0.024,0.066c0.016,0.017 0.037,0.032 0.063,0.045c0.026,0.013 0.055,0.024 0.088,0.033c0.033,0.009 0.065,0.019 0.097,0.03c0.128,0.043 0.222,0.1 0.281,0.171c0.059,0.071 0.089,0.164 0.089,0.279c0,0.077 -0.013,0.147 -0.039,0.21c-0.026,0.063 -0.064,0.116 -0.114,0.161c-0.05,0.045 -0.111,0.079 -0.184,0.104c-0.073,0.025 -0.155,0.037 -0.247,0.037c-0.191,0 -0.367,-0.057 -0.53,-0.17l0.168,-0.316c0.059,0.052 0.117,0.091 0.174,0.116c0.057,0.025 0.114,0.038 0.17,0.038c0.064,0 0.112,-0.015 0.143,-0.044c0.031,-0.029 0.047,-0.063 0.047,-0.1c0,-0.023 -0.004,-0.042 -0.012,-0.059c-0.008,-0.017 -0.021,-0.032 -0.04,-0.046c-0.019,-0.014 -0.043,-0.027 -0.073,-0.039c-0.03,-0.012 -0.066,-0.025 -0.109,-0.04c-0.051,-0.016 -0.1,-0.034 -0.149,-0.053c-0.049,-0.019 -0.092,-0.045 -0.13,-0.077c-0.038,-0.032 -0.069,-0.072 -0.092,-0.121c-0.023,-0.049 -0.035,-0.11 -0.035,-0.185c0,-0.075 0.012,-0.142 0.037,-0.203c0.025,-0.061 0.059,-0.113 0.104,-0.156c0.045,-0.043 0.099,-0.077 0.164,-0.101c0.065,-0.024 0.137,-0.036 0.217,-0.036c0.075,0 0.153,0.01 0.234,0.031c0.081,0.021 0.159,0.051 0.234,0.091l-0.156,0.306Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M4.312,-1.176l0,1.176l-0.392,0l0,-1.176l-0.322,0l0,-0.332l1.036,0l0,0.332l-0.322,0Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M5.136,-0.754c0,0.06 0.011,0.115 0.034,0.166c0.023,0.051 0.053,0.095 0.092,0.132c0.039,0.037 0.084,0.066 0.135,0.087c0.051,0.021 0.106,0.031 0.163,0.031c0.057,0 0.112,-0.01 0.163,-0.031c0.051,-0.021 0.097,-0.05 0.136,-0.087c0.039,-0.037 0.07,-0.081 0.093,-0.132c0.023,-0.051 0.034,-0.106 0.034,-0.166c0,-0.06 -0.011,-0.115 -0.034,-0.166c-0.023,-0.051 -0.054,-0.095 -0.093,-0.132c-0.039,-0.037 -0.085,-0.066 -0.136,-0.087c-0.051,-0.021 -0.106,-0.031 -0.163,-0.031c-0.057,0 -0.112,0.01 -0.163,0.031c-0.051,0.021 -0.096,0.05 -0.135,0.087c-0.039,0.037 -0.069,0.081 -0.092,0.132c-0.023,0.051 -0.034,0.106 -0.034,0.166Zm-0.41,0c0,-0.112 0.021,-0.216 0.062,-0.313c0.041,-0.097 0.099,-0.181 0.172,-0.253c0.073,-0.072 0.161,-0.128 0.263,-0.169c0.102,-0.041 0.214,-0.061 0.337,-0.061c0.121,0 0.233,0.02 0.336,0.061c0.103,0.041 0.191,0.097 0.265,0.169c0.074,0.072 0.132,0.156 0.173,0.253c0.041,0.097 0.062,0.201 0.062,0.313c0,0.112 -0.021,0.216 -0.062,0.313c-0.041,0.097 -0.099,0.181 -0.173,0.253c-0.074,0.072 -0.162,0.128 -0.265,0.169c-0.103,0.041 -0.215,0.061 -0.336,0.061c-0.123,0 -0.235,-0.02 -0.337,-0.061c-0.102,-0.041 -0.19,-0.097 -0.263,-0.169c-0.073,-0.072 -0.131,-0.156 -0.172,-0.253c-0.041,-0.097 -0.062,-0.201 -0.062,-0.313Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M7.036,-0.834l0.074,0c0.077,0 0.137,-0.016 0.178,-0.048c0.041,-0.032 0.062,-0.078 0.062,-0.138c0,-0.06 -0.021,-0.106 -0.062,-0.138c-0.041,-0.032 -0.101,-0.048 -0.178,-0.048l-0.074,0l0,0.372Zm0.862,0.834l-0.488,0l-0.374,-0.58l0,0.58l-0.392,0l0,-1.508l0.61,0c0.084,0 0.157,0.012 0.22,0.037c0.063,0.025 0.114,0.058 0.155,0.101c0.041,0.043 0.071,0.092 0.092,0.148c0.021,0.056 0.031,0.116 0.031,0.18c0,0.115 -0.028,0.208 -0.083,0.279c-0.055,0.071 -0.137,0.12 -0.245,0.145l0.474,0.618Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M8.636,-1.176l0,1.176l-0.392,0l0,-1.176l-0.322,0l0,-0.332l1.036,0l0,0.332l-0.322,0Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
</g>
</g>
<g id="path8216.-1.-5.-0.-25" transform="matrix(4.00166,0,0,-4.00166,-57.9875,-718.072)">
<path d="M31.417,-243.598c0.684,1.185 0.416,2.705 -0.633,3.585c-1.048,0.88 -2.592,0.88 -3.64,0c-1.049,-0.88 -1.317,-2.4 -0.633,-3.585l2.453,1.416l2.453,-1.416Z" style="fill:none;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9630.-2.-6.-15" transform="matrix(4.00166,0,0,4.00166,-57.9875,-718.072)">
<path d="M31.324,243.897l0.006,1.102" style="fill:rgb(204,204,204);fill-rule:nonzero;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9630.-1.-1.-4.-75" transform="matrix(4.00166,0,0,4.00166,-57.9875,-718.072)">
<path d="M31.878,244.44l-1.102,0.005" style="fill:rgb(204,204,204);fill-rule:nonzero;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9630.-1.-6.-9.-9.-25" transform="matrix(4.00166,0,0,4.00166,-57.9875,-718.072)">
<path d="M27.3,244.409l-1.103,0.005" style="fill:rgb(204,204,204);fill-rule:nonzero;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9948.-9.-9.-45" transform="matrix(4.00166,0,0,4.00166,-57.9875,-718.072)">
<path d="M28.964,242.183l-0.006,-3.326" style="fill:none;stroke:rgb(204,204,204);stroke-width:0.29px;"/>
</g>
<g id="path8216.-12" transform="matrix(4.00166,0,0,-4.00166,-56.7265,-737.132)">
<path d="M18.227,-252.754c1.469,2.545 0.894,5.809 -1.357,7.698c-2.251,1.888 -5.566,1.888 -7.817,0c-2.251,-1.889 -2.826,-5.153 -1.357,-7.698" style="fill:none;stroke:rgb(204,204,204);stroke-width:0.5px;"/>
</g>
<g id="path9488.-2.-92" transform="matrix(4.00166,0,0,4.00166,-56.4562,-737.132)">
<circle cx="8.361" cy="255.07" r="0.926" style="fill:none;stroke:rgb(204,204,204);stroke-width:0.53px;"/>
</g>
<g id="path9488.-2.-6.-02" transform="matrix(4.00166,0,0,4.00166,-56.4562,-737.132)">
<circle cx="17.802" cy="254.942" r="0.926" style="fill:rgb(204,204,204);stroke:rgb(204,204,204);stroke-width:0.53px;"/>
</g>
<g transform="matrix(3.67512,0,0,4.00166,-48.2761,171.736)">
<path d="M25.477,22.531c0,-0.211 -0.186,-0.383 -0.416,-0.383l-4.815,0c-0.23,0 -0.417,0.172 -0.417,0.383l0,0.765c0,0.211 0.187,0.382 0.417,0.382l4.815,0c0.23,0 0.416,-0.171 0.416,-0.382l0,-0.765Z" style="fill:rgb(38,38,38);"/>
</g>
<g id="path8216.-1.-5.-0.-26" transform="matrix(4.00166,0,0,-4.00166,-57.9875,-651.405)">
<path d="M31.417,-243.598c0.684,1.185 0.416,2.705 -0.633,3.585c-1.048,0.88 -2.592,0.88 -3.64,0c-1.049,-0.88 -1.317,-2.4 -0.633,-3.585l2.453,1.416l2.453,-1.416Z" style="fill:none;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9630.-2.-6.-16" transform="matrix(4.00166,0,0,4.00166,-57.9875,-651.405)">
<path d="M31.324,243.897l0.006,1.102" style="fill:rgb(204,204,204);fill-rule:nonzero;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9630.-1.-1.-4.-76" transform="matrix(4.00166,0,0,4.00166,-57.9875,-651.405)">
<path d="M31.878,244.44l-1.102,0.005" style="fill:rgb(204,204,204);fill-rule:nonzero;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9630.-1.-6.-9.-9.-26" transform="matrix(4.00166,0,0,4.00166,-57.9875,-651.405)">
<path d="M27.3,244.409l-1.103,0.005" style="fill:rgb(204,204,204);fill-rule:nonzero;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9948.-9.-9.-46" transform="matrix(4.00166,0,0,4.00166,-57.9875,-651.405)">
<path d="M28.964,242.183l-0.006,-3.326" style="fill:none;stroke:rgb(204,204,204);stroke-width:0.29px;"/>
</g>
<g transform="matrix(4.00166,0,0,4.00166,-25.712,362.806)">
<g id="text9293.-43">
<path d="M0.986,-1.122c-0.043,-0.035 -0.085,-0.06 -0.128,-0.077c-0.043,-0.017 -0.084,-0.025 -0.124,-0.025c-0.051,0 -0.092,0.012 -0.124,0.036c-0.032,0.024 -0.048,0.055 -0.048,0.094c0,0.027 0.008,0.049 0.024,0.066c0.016,0.017 0.037,0.032 0.063,0.045c0.026,0.013 0.055,0.024 0.088,0.033c0.033,0.009 0.065,0.019 0.097,0.03c0.128,0.043 0.222,0.1 0.281,0.171c0.059,0.071 0.089,0.164 0.089,0.279c0,0.077 -0.013,0.147 -0.039,0.21c-0.026,0.063 -0.064,0.116 -0.114,0.161c-0.05,0.045 -0.111,0.079 -0.184,0.104c-0.073,0.025 -0.155,0.037 -0.247,0.037c-0.191,0 -0.367,-0.057 -0.53,-0.17l0.168,-0.316c0.059,0.052 0.117,0.091 0.174,0.116c0.057,0.025 0.114,0.038 0.17,0.038c0.064,0 0.112,-0.015 0.143,-0.044c0.031,-0.029 0.047,-0.063 0.047,-0.1c0,-0.023 -0.004,-0.042 -0.012,-0.059c-0.008,-0.017 -0.021,-0.032 -0.04,-0.046c-0.019,-0.014 -0.043,-0.027 -0.073,-0.039c-0.03,-0.012 -0.066,-0.025 -0.109,-0.04c-0.051,-0.016 -0.1,-0.034 -0.149,-0.053c-0.049,-0.019 -0.092,-0.045 -0.13,-0.077c-0.038,-0.032 -0.069,-0.072 -0.092,-0.121c-0.023,-0.049 -0.035,-0.11 -0.035,-0.185c0,-0.075 0.012,-0.142 0.037,-0.203c0.025,-0.061 0.059,-0.113 0.104,-0.156c0.045,-0.043 0.099,-0.077 0.164,-0.101c0.065,-0.024 0.137,-0.036 0.217,-0.036c0.075,0 0.153,0.01 0.234,0.031c0.081,0.021 0.159,0.051 0.234,0.091l-0.156,0.306Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M2.242,-0.56l-0.176,-0.502l-0.176,0.502l0.352,0Zm0.104,0.298l-0.56,0l-0.09,0.262l-0.418,0l0.574,-1.508l0.428,0l0.574,1.508l-0.418,0l-0.09,-0.262Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M3.532,-1.176l0,1.176l-0.392,0l0,-1.176l-0.322,0l0,-0.332l1.036,0l0,0.332l-0.322,0Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M4.42,-1.508l0,0.82c0,0.044 0.002,0.089 0.005,0.135c0.003,0.046 0.013,0.088 0.03,0.125c0.017,0.037 0.043,0.068 0.079,0.091c0.036,0.023 0.087,0.035 0.152,0.035c0.065,0 0.116,-0.012 0.151,-0.035c0.035,-0.023 0.062,-0.054 0.079,-0.091c0.017,-0.037 0.028,-0.079 0.031,-0.125c0.003,-0.046 0.005,-0.091 0.005,-0.135l0,-0.82l0.39,0l0,0.874c0,0.235 -0.054,0.406 -0.161,0.514c-0.107,0.108 -0.272,0.162 -0.495,0.162c-0.223,0 -0.388,-0.054 -0.496,-0.162c-0.108,-0.108 -0.162,-0.279 -0.162,-0.514l0,-0.874l0.392,0Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M6.05,-0.834l0.074,0c0.077,0 0.137,-0.016 0.178,-0.048c0.041,-0.032 0.062,-0.078 0.062,-0.138c0,-0.06 -0.021,-0.106 -0.062,-0.138c-0.041,-0.032 -0.101,-0.048 -0.178,-0.048l-0.074,0l0,0.372Zm0.862,0.834l-0.488,0l-0.374,-0.58l0,0.58l-0.392,0l0,-1.508l0.61,0c0.084,0 0.157,0.012 0.22,0.037c0.063,0.025 0.114,0.058 0.155,0.101c0.041,0.043 0.071,0.092 0.092,0.148c0.021,0.056 0.031,0.116 0.031,0.18c0,0.115 -0.028,0.208 -0.083,0.279c-0.055,0.071 -0.137,0.12 -0.245,0.145l0.474,0.618Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M7.896,-0.56l-0.176,-0.502l-0.176,0.502l0.352,0Zm0.104,0.298l-0.56,0l-0.09,0.262l-0.418,0l0.574,-1.508l0.428,0l0.574,1.508l-0.418,0l-0.09,-0.262Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M9.186,-1.176l0,1.176l-0.392,0l0,-1.176l-0.322,0l0,-0.332l1.036,0l0,0.332l-0.322,0Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M10.54,-1.176l-0.466,0l0,0.252l0.44,0l0,0.332l-0.44,0l0,0.26l0.466,0l0,0.332l-0.858,0l0,-1.508l0.858,0l0,0.332Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
</g>
</g>
<g id="path8216.-1.-5.-0.-27" transform="matrix(4.00166,0,0,-4.00166,-57.9875,-651.405)">
<path d="M31.417,-243.598c0.684,1.185 0.416,2.705 -0.633,3.585c-1.048,0.88 -2.592,0.88 -3.64,0c-1.049,-0.88 -1.317,-2.4 -0.633,-3.585l2.453,1.416l2.453,-1.416Z" style="fill:none;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9630.-2.-6.-17" transform="matrix(4.00166,0,0,4.00166,-57.9875,-651.405)">
<path d="M31.324,243.897l0.006,1.102" style="fill:rgb(204,204,204);fill-rule:nonzero;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9630.-1.-1.-4.-77" transform="matrix(4.00166,0,0,4.00166,-57.9875,-651.405)">
<path d="M31.878,244.44l-1.102,0.005" style="fill:rgb(204,204,204);fill-rule:nonzero;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9630.-1.-6.-9.-9.-27" transform="matrix(4.00166,0,0,4.00166,-57.9875,-651.405)">
<path d="M27.3,244.409l-1.103,0.005" style="fill:rgb(204,204,204);fill-rule:nonzero;stroke:rgb(204,204,204);stroke-width:0.26px;"/>
</g>
<g id="path9948.-9.-9.-47" transform="matrix(4.00166,0,0,4.00166,-57.9875,-651.405)">
<path d="M28.964,242.183l-0.006,-3.326" style="fill:none;stroke:rgb(204,204,204);stroke-width:0.29px;"/>
</g>
<g id="path8216.-13" transform="matrix(4.00166,0,0,-4.00166,-56.7265,-670.465)">
<path d="M18.227,-252.754c1.469,2.545 0.894,5.809 -1.357,7.698c-2.251,1.888 -5.566,1.888 -7.817,0c-2.251,-1.889 -2.826,-5.153 -1.357,-7.698" style="fill:none;stroke:rgb(204,204,204);stroke-width:0.5px;"/>
</g>
<g id="path9488.-2.-93" transform="matrix(4.00166,0,0,4.00166,-56.4562,-670.465)">
<circle cx="8.361" cy="255.07" r="0.926" style="fill:none;stroke:rgb(204,204,204);stroke-width:0.53px;"/>
</g>
<g id="path9488.-2.-6.-03" transform="matrix(4.00166,0,0,4.00166,-56.4562,-670.465)">
<circle cx="17.802" cy="254.942" r="0.926" style="fill:rgb(204,204,204);stroke:rgb(204,204,204);stroke-width:0.53px;"/>
</g>
<g transform="matrix(3.67512,0,0,4.00166,-48.2761,238.403)">
<path d="M25.477,22.531c0,-0.211 -0.186,-0.383 -0.416,-0.383l-4.815,0c-0.23,0 -0.417,0.172 -0.417,0.383l0,0.765c0,0.211 0.187,0.382 0.417,0.382l4.815,0c0.23,0 0.416,-0.171 0.416,-0.382l0,-0.765Z" style="fill:rgb(38,38,38);"/>
</g>
<g transform="matrix(4.00166,0,0,4.00166,-29.6389,410.377)">
<g id="text9293.-44">
<rect x="0.158" y="-1.508" width="0.392" height="1.508" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M0.866,0l0,-1.508l0.392,0l0.724,0.922l0,-0.922l0.39,0l0,1.508l-0.39,0l-0.724,-0.922l0,0.922l-0.392,0Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M3.08,-0.816l0.13,0c0.144,0 0.216,-0.063 0.216,-0.188c0,-0.125 -0.072,-0.188 -0.216,-0.188l-0.13,0l0,0.376Zm0,0.816l-0.392,0l0,-1.508l0.624,0c0.169,0 0.299,0.044 0.389,0.132c0.09,0.088 0.135,0.212 0.135,0.372c0,0.16 -0.045,0.284 -0.135,0.372c-0.09,0.088 -0.22,0.132 -0.389,0.132l-0.232,0l0,0.5Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M4.436,-1.508l0,0.82c0,0.044 0.002,0.089 0.005,0.135c0.003,0.046 0.013,0.088 0.03,0.125c0.017,0.037 0.043,0.068 0.079,0.091c0.036,0.023 0.087,0.035 0.152,0.035c0.065,0 0.116,-0.012 0.151,-0.035c0.035,-0.023 0.062,-0.054 0.079,-0.091c0.017,-0.037 0.028,-0.079 0.031,-0.125c0.003,-0.046 0.005,-0.091 0.005,-0.135l0,-0.82l0.39,0l0,0.874c0,0.235 -0.054,0.406 -0.161,0.514c-0.107,0.108 -0.272,0.162 -0.495,0.162c-0.223,0 -0.388,-0.054 -0.496,-0.162c-0.108,-0.108 -0.162,-0.279 -0.162,-0.514l0,-0.874l0.392,0Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M6.246,-1.176l0,1.176l-0.392,0l0,-1.176l-0.322,0l0,-0.332l1.036,0l0,0.332l-0.322,0Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
</g>
</g>
<g transform="matrix(4.00166,0,0,4.00166,40.3611,410.377)">
<g id="text9293.-45">
<path d="M0.5,-0.754c0,0.06 0.011,0.115 0.034,0.166c0.023,0.051 0.053,0.095 0.092,0.132c0.039,0.037 0.084,0.066 0.135,0.087c0.051,0.021 0.106,0.031 0.163,0.031c0.057,0 0.112,-0.01 0.163,-0.031c0.051,-0.021 0.097,-0.05 0.136,-0.087c0.039,-0.037 0.07,-0.081 0.093,-0.132c0.023,-0.051 0.034,-0.106 0.034,-0.166c0,-0.06 -0.011,-0.115 -0.034,-0.166c-0.023,-0.051 -0.054,-0.095 -0.093,-0.132c-0.039,-0.037 -0.085,-0.066 -0.136,-0.087c-0.051,-0.021 -0.106,-0.031 -0.163,-0.031c-0.057,0 -0.112,0.01 -0.163,0.031c-0.051,0.021 -0.096,0.05 -0.135,0.087c-0.039,0.037 -0.069,0.081 -0.092,0.132c-0.023,0.051 -0.034,0.106 -0.034,0.166Zm-0.41,0c0,-0.112 0.021,-0.216 0.062,-0.313c0.041,-0.097 0.099,-0.181 0.172,-0.253c0.073,-0.072 0.161,-0.128 0.263,-0.169c0.102,-0.041 0.214,-0.061 0.337,-0.061c0.121,0 0.233,0.02 0.336,0.061c0.103,0.041 0.191,0.097 0.265,0.169c0.074,0.072 0.132,0.156 0.173,0.253c0.041,0.097 0.062,0.201 0.062,0.313c0,0.112 -0.021,0.216 -0.062,0.313c-0.041,0.097 -0.099,0.181 -0.173,0.253c-0.074,0.072 -0.162,0.128 -0.265,0.169c-0.103,0.041 -0.215,0.061 -0.336,0.061c-0.123,0 -0.235,-0.02 -0.337,-0.061c-0.102,-0.041 -0.19,-0.097 -0.263,-0.169c-0.073,-0.072 -0.131,-0.156 -0.172,-0.253c-0.041,-0.097 -0.062,-0.201 -0.062,-0.313Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M2.4,-1.508l0,0.82c0,0.044 0.002,0.089 0.005,0.135c0.003,0.046 0.013,0.088 0.03,0.125c0.017,0.037 0.043,0.068 0.079,0.091c0.036,0.023 0.087,0.035 0.152,0.035c0.065,0 0.116,-0.012 0.151,-0.035c0.035,-0.023 0.062,-0.054 0.079,-0.091c0.017,-0.037 0.028,-0.079 0.031,-0.125c0.003,-0.046 0.005,-0.091 0.005,-0.135l0,-0.82l0.39,0l0,0.874c0,0.235 -0.054,0.406 -0.161,0.514c-0.107,0.108 -0.272,0.162 -0.495,0.162c-0.223,0 -0.388,-0.054 -0.496,-0.162c-0.108,-0.108 -0.162,-0.279 -0.162,-0.514l0,-0.874l0.392,0Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M4.21,-1.176l0,1.176l-0.392,0l0,-1.176l-0.322,0l0,-0.332l1.036,0l0,0.332l-0.322,0Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M5.098,-0.816l0.13,0c0.144,0 0.216,-0.063 0.216,-0.188c0,-0.125 -0.072,-0.188 -0.216,-0.188l-0.13,0l0,0.376Zm0,0.816l-0.392,0l0,-1.508l0.624,0c0.169,0 0.299,0.044 0.389,0.132c0.09,0.088 0.135,0.212 0.135,0.372c0,0.16 -0.045,0.284 -0.135,0.372c-0.09,0.088 -0.22,0.132 -0.389,0.132l-0.232,0l0,0.5Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M6.454,-1.508l0,0.82c0,0.044 0.002,0.089 0.005,0.135c0.003,0.046 0.013,0.088 0.03,0.125c0.017,0.037 0.043,0.068 0.079,0.091c0.036,0.023 0.087,0.035 0.152,0.035c0.065,0 0.116,-0.012 0.151,-0.035c0.035,-0.023 0.062,-0.054 0.079,-0.091c0.017,-0.037 0.028,-0.079 0.031,-0.125c0.003,-0.046 0.005,-0.091 0.005,-0.135l0,-0.82l0.39,0l0,0.874c0,0.235 -0.054,0.406 -0.161,0.514c-0.107,0.108 -0.272,0.162 -0.495,0.162c-0.223,0 -0.388,-0.054 -0.496,-0.162c-0.108,-0.108 -0.162,-0.279 -0.162,-0.514l0,-0.874l0.392,0Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
<path d="M8.264,-1.176l0,1.176l-0.392,0l0,-1.176l-0.322,0l0,-0.332l1.036,0l0,0.332l-0.322,0Z" style="fill:rgb(204,204,204);fill-rule:nonzero;"/>
</g>
</g>
<g id="g50" transform="matrix(0.0956609,0,0,0.0956609,-13.7139,337.089)">
<path id="path42" d="M224.699,869.111l27.948,0l26.026,86.945l26.911,-86.945l27.806,0l-36.174,108.69c-3.38,10.021 -9.436,15.027 -18.173,15.027c-8.854,0 -14.971,-5.059 -18.345,-15.181l-35.999,-108.536Z" style="fill:rgb(102,102,102);fill-rule:nonzero;"/>
<path id="path44" d="M335.484,961.026l0,-91.915l26.211,0l0,91.041c0.464,3.263 3.495,4.893 9.087,4.893l17.824,0c5.357,0 8.328,-1.512 8.912,-4.543l0.175,-0.874l0,-90.517l26.211,0l0,91.74c0,8.038 -0.873,13.747 -2.621,17.125c-4.66,8.972 -12.873,13.455 -24.639,13.455l-33.9,0c-12.118,0 -20.388,-4.601 -24.814,-13.805c-1.632,-3.377 -2.446,-8.911 -2.446,-16.6l0,0Z" style="fill:rgb(102,102,102);fill-rule:nonzero;"/>
<path id="path46" d="M435.961,961.551l0,-92.439l26.212,0l0,90.342c0,3.73 2.211,5.592 6.64,5.592l46.657,0l-0.175,26.387l-48.754,0c-1.747,0 -3.263,-0.058 -4.543,-0.175c-9.437,-0.813 -16.137,-3.582 -20.096,-8.3c-3.962,-4.72 -5.941,-11.854 -5.941,-21.407l0,0Z" style="fill:rgb(102,102,102);fill-rule:nonzero;"/>
<path id="path48" d="M516.341,895.497l0,-26.386l78.635,0l0,26.386l-26.386,0l0,95.935l-26.212,0l0,-95.935l-26.037,0Z" style="fill:rgb(102,102,102);fill-rule:nonzero;"/>
</g>
<g id="g8091" transform="matrix(0.0359254,0,0,0.0359254,-3.34188,423.313)">
<path id="path4" d="M210.282,78.87c0,-125.517 -101.752,-227.268 -227.271,-227.268c-125.514,0 -227.267,101.751 -227.267,227.268c0,125.516 101.752,227.268 227.267,227.268c125.519,0 227.271,-101.752 227.271,-227.268l0,0Z" style="fill:rgb(117,117,117);fill-rule:nonzero;stroke:rgb(53,53,53);stroke-width:17px;stroke-miterlimit:10;"/>
<g id="g40" transform="matrix(1,0,0,1,-426.825,-542.575)">
<path id="polygon6" d="M357.002,759.965l15.391,-24.781l-29.594,-66.614l-61.688,-63.583l12.788,86.322l16.629,35.632l23.179,35.166l23.295,-2.142Z" style="fill:rgb(43,43,43);fill-rule:nonzero;"/>
<path id="polygon8" d="M460.762,760.17l-15.392,-24.783l29.597,-66.612l61.685,-63.582l-12.787,86.321l-16.63,35.631l-23.175,35.168l-23.298,-2.143Z" style="fill:rgb(38,38,38);fill-rule:nonzero;"/>
<path id="polygon12" d="M337.948,452.81l71.936,-18.383l0,374.323l-37.568,-73.799l-29.517,-66.381l-28.471,-16.175l-57.105,-81.295l-1.598,-21.58l31.971,-57.547l50.352,-39.163Z" style="fill:rgb(66,66,66);fill-rule:nonzero;"/>
<path id="polygon14" d="M481.727,452.944l-71.932,-18.382l0,374.325l37.564,-73.801l29.518,-66.379l28.473,-16.178l57.101,-81.295l1.599,-21.579l-31.969,-57.547l-50.354,-39.164Z" style="fill:rgb(51,51,51);fill-rule:nonzero;"/>
<path id="polyline16" d="M361.886,616.429l47.96,-46.887l0,34.229l-47.96,47.827l0,-35.169" style="fill:rgb(76,76,76);fill-rule:nonzero;"/>
<path id="polygon18" d="M409.881,603.732l-47.957,47.827l10.469,83.625l37.491,73.566l-0.003,-205.018Z" style="fill:rgb(91,91,91);fill-rule:nonzero;"/>
<path id="polygon20" d="M409.884,808.75l-37.491,-73.566l37.485,-17.672l0.006,91.238Z" style="fill:rgb(51,51,51);fill-rule:nonzero;"/>
<path id="polygon22" d="M361.924,651.559l0,-35.169l-34.766,-43.958l-41.119,-33.129l-0.043,25.934l21.582,50.752l54.346,35.57Z" style="fill:white;fill-rule:nonzero;"/>
<path id="polyline24" d="M457.816,616.448l-47.957,-46.887l0,34.229l47.957,47.826l0,-35.168" style="fill:rgb(45,45,45);fill-rule:nonzero;"/>
<path id="polygon26" d="M409.804,603.732l47.954,47.827l-10.469,83.625l-37.488,73.566l0.003,-205.018Z" style="fill:rgb(53,53,53);fill-rule:nonzero;"/>
<path id="polygon28" d="M409.801,808.75l37.488,-73.566l-37.482,-17.672l-0.006,91.238Z" style="fill:rgb(25,25,25);fill-rule:nonzero;"/>
<path id="polygon30" d="M457.758,651.559l0,-35.168l34.765,-43.958l41.122,-33.13l0.041,25.935l-21.578,50.753l-54.35,35.568Z" style="fill:white;fill-rule:nonzero;"/>
<path id="polyline32" d="M338.399,452.22l71.425,117.329l-0.154,-135.546" style="fill:rgb(56,56,56);fill-rule:nonzero;"/>
<path id="polyline34" d="M481.271,452.232l-71.425,117.329l0.154,-135.545" style="fill:rgb(45,45,45);fill-rule:nonzero;"/>
<path id="polygon36" d="M342.815,668.578l19.143,-16.982l10.448,83.674l-29.591,-66.692Z" style="fill:rgb(51,51,51);fill-rule:nonzero;"/>
<path id="polygon38" d="M476.975,668.989l-19.144,-16.982l-10.448,83.675l29.592,-66.693Z" style="fill:rgb(28,28,28);fill-rule:nonzero;"/>
</g>
</g>
</g>
</svg>

+ 0
- 15
plugins/community/repos/VultModules/res/Jack.svg View File

@@ -1,15 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;">
<g transform="matrix(8,0,0,8,-24,0)">
<path d="M4.5,0L5.799,0.75L5.799,2.25L4.5,3L3.201,2.25L3.201,0.75L4.5,0Z" style="fill:rgb(146,146,146);stroke:rgb(77,77,77);stroke-width:0.13px;"/>
</g>
<g transform="matrix(4.04783,0,0,4.04783,-0.14348,-0.14348)">
<circle cx="3" cy="3" r="1.976" style="fill:rgb(92,92,92);"/>
</g>
<g transform="matrix(3.03587,0,0,3.03587,2.89239,2.89239)">
<circle cx="3" cy="3" r="1.976"/>
</g>
</svg>

+ 0
- 18
plugins/community/repos/VultModules/res/Knob.svg View File

@@ -1,18 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="40px" height="40px" viewBox="0 0 40 40" version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;">
<g transform="matrix(3.81125,0,-8.67362e-19,3.79355,1.16625,1.03226)">
<circle cx="4.942" cy="5" r="5" style="fill:rgb(106,105,105);"/>
</g>
<g transform="matrix(4.23472,0,0,4.21505,-1.17362,-0.843011)">
<path d="M4.788,0.205C4.858,0.202 4.929,0.2 5,0.2C5.071,0.2 5.142,0.202 5.212,0.205C6.153,1.069 7.353,1.648 8.615,1.844C8.709,1.951 8.798,2.062 8.882,2.177C8.792,3.452 9.089,4.751 9.723,5.861C9.698,6.001 9.666,6.138 9.629,6.273C8.576,6.998 7.744,8.041 7.272,9.229C7.148,9.295 7.021,9.357 6.89,9.413C5.667,9.041 4.333,9.041 3.11,9.413C2.979,9.357 2.852,9.295 2.728,9.229C2.256,8.041 1.424,6.998 0.371,6.273C0.334,6.138 0.302,6.001 0.277,5.861C0.911,4.751 1.208,3.452 1.118,2.177C1.202,2.062 1.291,1.951 1.385,1.844C2.647,1.648 3.847,1.069 4.788,0.205Z" style="fill:rgb(16,16,16);"/>
</g>
<g transform="matrix(3.86248,-1.12757e-17,1.12757e-17,3.84454,0.687575,0.777282)">
<circle cx="5" cy="5" r="3.728" style="fill:rgb(48,48,48);stroke:rgb(128,128,128);stroke-width:0.26px;"/>
</g>
<g transform="matrix(0.151551,-4.47233e-19,7.31836e-19,0.221814,-0.459437,-2.44787)">
<path d="M145.832,21C147.581,21 149,22.419 149,24.168L144.5,33.671L144.5,80.004C144.5,84.294 141.813,87.731 135,87.777C128.525,87.822 125.5,84.294 125.5,80.004L125.5,33.671L121,24.168C121,22.419 122.419,21 124.168,21C124.168,21 128.816,19.513 135,19.423C140.308,19.346 145.832,21 145.832,21Z" style="fill:rgb(235,235,235);"/>
</g>
</svg>

Some files were not shown because too many files changed in this diff

Loading…
Cancel
Save