diff --git a/audio/cardinal/Makefile b/audio/cardinal/Makefile index 098bcc204ef3..0c2eef1fcbd9 100644 --- a/audio/cardinal/Makefile +++ b/audio/cardinal/Makefile @@ -1,45 +1,46 @@ PORTNAME= cardinal -DISTVERSION= 22.02 +DISTVERSION= 22.05 CATEGORIES= audio MASTER_SITES= https://github.com/DISTRHO/Cardinal/releases/download/${DISTVERSION}/ MAINTAINER= yuri@FreeBSD.org COMMENT= Plugin wrapper around VCV Rack LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${LOCALBASE}/include/FuzzySearchDatabase.hpp:textproc/fuzzysearchdatabase \ bash:shells/bash LIB_DEPENDS= libdbus-1.so:devel/dbus \ + libfftw3f.so:math/fftw3-float \ libjansson.so:devel/jansson \ liblo.so:audio/liblo \ libpffft.so:math/pffft \ libpulse-simple.so:audio/pulseaudio \ libsamplerate.so:audio/libsamplerate \ libsndfile.so:audio/libsndfile \ libspeexdsp.so:audio/speexdsp USES= compiler:c++11-lang gl gmake libarchive localbase:ldflags pkgconfig python shebangfix tar:xz xorg USE_XORG= x11 xcursor xext xrandr USE_GL= gl SHEBANG_GLOB= *.sh CXXFLAGS+= -I${LOCALBASE}/include/pffft LDFLAGS+= -lpffft MAKE_ENV= LD_PRELOAD=/usr/lib/libpthread.so # workaround for https://github.com/DISTRHO/Cardinal/issues/128#issuecomment-1030817359 MAKE_ARGS= SYSDEPS=true BINARY_ALIAS= gcc-ar=ar \ python3=${PYTHON_CMD} OPTIONS_DEFINE= DOCS LTO PORTDOCS= * LTO_MAKE_ARGS= WITH_LTO=true LTO_BROKEN= Fails to build with LTO because it is gcc-centered .include diff --git a/audio/cardinal/distinfo b/audio/cardinal/distinfo index 8de1fac545b7..3826476cc6b7 100644 --- a/audio/cardinal/distinfo +++ b/audio/cardinal/distinfo @@ -1,5 +1,3 @@ -TIMESTAMP = 1644950602 -SHA256 (cardinal-22.02.tar.xz) = 21594044e14615f7d3114d343429afef8c350d16fb74d329db415e055a03add3 -SIZE (cardinal-22.02.tar.xz) = 190648308 -SHA256 (b7d4847e1920a3d9c22e97dcd901360188e4c5a8.patch) = 92473b9f734b5665a2e9a697da85513efa46c546a388447b20f533d4bf7b0a95 -SIZE (b7d4847e1920a3d9c22e97dcd901360188e4c5a8.patch) = 2545 +TIMESTAMP = 1653111028 +SHA256 (cardinal-22.05.tar.xz) = 25ed44e06bba3d96cc04abeec788eb615cf847a0428e5222d19864cacb74d3be +SIZE (cardinal-22.05.tar.xz) = 273896508 diff --git a/audio/cardinal/files/patch-b7d4847e1920a3d9c22e97dcd901360188e4c5a8.patch b/audio/cardinal/files/patch-b7d4847e1920a3d9c22e97dcd901360188e4c5a8.patch deleted file mode 100644 index 005a3e2a8b9e..000000000000 --- a/audio/cardinal/files/patch-b7d4847e1920a3d9c22e97dcd901360188e4c5a8.patch +++ /dev/null @@ -1,52 +0,0 @@ -From b7d4847e1920a3d9c22e97dcd901360188e4c5a8 Mon Sep 17 00:00:00 2001 -From: falkTX -Date: Tue, 15 Feb 2022 09:56:36 +0000 -Subject: [PATCH] Do not build VST3 for currently unsupported systems - ---- - Makefile | 14 ++++++++++++++ - 1 file changed, 14 insertions(+) - -diff --git Makefile Makefile -index 4a911dc..c56fedb 100644 ---- Makefile -+++ Makefile -@@ -32,6 +32,14 @@ else - SYSDEPS ?= false - endif - -+ifeq ($(LINUX),true) -+VST3_SUPPORTED = true -+else ifeq ($(MACOS),true) -+VST3_SUPPORTED = true -+else ifeq ($(WINDOWS),true) -+VST3_SUPPORTED = true -+endif -+ - # -------------------------------------------------------------- - # Carla config - -@@ -249,9 +257,11 @@ install: - install -d $(DESTDIR)$(PREFIX)/lib/lv2/CardinalSynth.lv2 - install -d $(DESTDIR)$(PREFIX)/lib/vst/CardinalFX.vst - install -d $(DESTDIR)$(PREFIX)/lib/vst/CardinalSynth.vst -+ifeq ($(VST3_SUPPORTED),true) - install -d $(DESTDIR)$(PREFIX)/lib/vst3/Cardinal.vst3/Contents - install -d $(DESTDIR)$(PREFIX)/lib/vst3/CardinalFX.vst3/Contents - install -d $(DESTDIR)$(PREFIX)/lib/vst3/CardinalSynth.vst3/Contents -+endif - install -d $(DESTDIR)$(PREFIX)/share/cardinal - install -d $(DESTDIR)$(PREFIX)/share/doc/cardinal/docs - -@@ -262,9 +272,11 @@ install: - install -m 644 bin/CardinalFX.vst/*.* $(DESTDIR)$(PREFIX)/lib/vst/CardinalFX.vst/ - install -m 644 bin/CardinalSynth.vst/*.* $(DESTDIR)$(PREFIX)/lib/vst/CardinalSynth.vst/ - -+ifeq ($(VST3_SUPPORTED),true) - cp -rL bin/Cardinal.vst3/Contents/*-* $(DESTDIR)$(PREFIX)/lib/vst3/Cardinal.vst3/Contents/ - cp -rL bin/CardinalFX.vst3/Contents/*-* $(DESTDIR)$(PREFIX)/lib/vst3/CardinalFX.vst3/Contents/ - cp -rL bin/CardinalSynth.vst3/Contents/*-* $(DESTDIR)$(PREFIX)/lib/vst3/CardinalSynth.vst3/Contents/ -+endif - - install -m 755 bin/Cardinal$(APP_EXT) $(DESTDIR)$(PREFIX)/bin/ - cp -rL bin/Cardinal.lv2/resources/* $(DESTDIR)$(PREFIX)/share/cardinal/ diff --git a/audio/cardinal/files/patch-carla_source_Makefile.mk b/audio/cardinal/files/patch-carla_source_Makefile.mk new file mode 100644 index 000000000000..8944c608eda8 --- /dev/null +++ b/audio/cardinal/files/patch-carla_source_Makefile.mk @@ -0,0 +1,11 @@ +--- carla/source/Makefile.mk.orig 2022-05-21 05:42:01 UTC ++++ carla/source/Makefile.mk +@@ -86,7 +86,7 @@ endif + + ifneq ($(MACOS),true) + ifneq ($(WIN32),true) +-BASE_FLAGS += -fno-gnu-unique ++#BASE_FLAGS += -fno-gnu-unique + endif + endif + diff --git a/audio/cardinal/files/patch-carla_source_modules_AppConfig.h b/audio/cardinal/files/patch-carla_source_modules_AppConfig.h index 50e1f191e41f..f8f42a016f99 100644 --- a/audio/cardinal/files/patch-carla_source_modules_AppConfig.h +++ b/audio/cardinal/files/patch-carla_source_modules_AppConfig.h @@ -1,13 +1,13 @@ - for now treat FreeBSD as Linux for simplicity ---- carla/source/modules/AppConfig.h.orig 2022-01-30 04:43:57 UTC +--- carla/source/modules/AppConfig.h.orig 2022-05-15 13:40:22 UTC +++ carla/source/modules/AppConfig.h @@ -27,7 +27,7 @@ # define APPCONFIG_OS_WIN32 #elif defined(__APPLE__) # define APPCONFIG_OS_MAC -#elif defined(__linux__) || defined(__linux) +#elif defined(__linux__) || defined(__linux) || defined(__FreeBSD__) # define APPCONFIG_OS_LINUX - #else - # error Unsupported platform! + #elif defined(__FreeBSD__) + # define APPCONFIG_OS_FREEBSD diff --git a/audio/cardinal/files/patch-dpf_Makefile.base.mk b/audio/cardinal/files/patch-dpf_Makefile.base.mk new file mode 100644 index 000000000000..8a25a3ca2f50 --- /dev/null +++ b/audio/cardinal/files/patch-dpf_Makefile.base.mk @@ -0,0 +1,11 @@ +--- dpf/Makefile.base.mk.orig 2022-05-21 05:45:04 UTC ++++ dpf/Makefile.base.mk +@@ -173,7 +173,7 @@ BASE_OPTS = -O2 -ffast-math -fdata-sections -ffunctio + endif + + ifneq ($(MACOS_OR_WINDOWS),true) +-BASE_FLAGS += -fno-gnu-unique ++#BASE_FLAGS += -fno-gnu-unique + endif + + ifeq ($(WINDOWS),true) diff --git a/audio/cardinal/files/patch-src_Makefile b/audio/cardinal/files/patch-src_Makefile index 25048a1b67a1..525c1d257518 100644 --- a/audio/cardinal/files/patch-src_Makefile +++ b/audio/cardinal/files/patch-src_Makefile @@ -1,24 +1,24 @@ - use pffft from the package, see https://github.com/DISTRHO/Cardinal/issues/130 ---- src/Makefile.orig 2022-02-06 00:30:19 UTC +--- src/Makefile.orig 2022-05-15 13:39:19 UTC +++ src/Makefile -@@ -50,7 +50,7 @@ BASE_FLAGS += -IRack/dep/glfw/include +@@ -55,7 +55,7 @@ BASE_FLAGS += -IRack/dep/glfw/include BASE_FLAGS += -IRack/dep/nanosvg/src BASE_FLAGS += -IRack/dep/osdialog BASE_FLAGS += -IRack/dep/oui-blendish -BASE_FLAGS += -IRack/dep/pffft +#BASE_FLAGS += -IRack/dep/pffft ifeq ($(DEBUG),true) BASE_FLAGS += -UDEBUG -@@ -108,8 +108,8 @@ RACK_FILES += override/MenuBar.cpp +@@ -122,8 +122,8 @@ RACK_FILES += override/MenuBar.cpp RACK_FILES += override/Model.cpp RACK_FILES += override/Scene.cpp -RACK_FILES += Rack/dep/pffft/pffft.c -RACK_FILES += Rack/dep/pffft/fftpack.c +#RACK_FILES += Rack/dep/pffft/pffft.c +#RACK_FILES += Rack/dep/pffft/fftpack.c RACK_FILES += Rack/dep/osdialog/osdialog.c IGNORED_FILES = Rack/src/asset.cpp diff --git a/audio/cardinal/files/patch-src_Rack_Makefile b/audio/cardinal/files/patch-src_Rack_Makefile index c23ed7898755..8e30cc75fee5 100644 --- a/audio/cardinal/files/patch-src_Rack_Makefile +++ b/audio/cardinal/files/patch-src_Rack_Makefile @@ -1,11 +1,20 @@ ---- src/Rack/Makefile.orig 2022-02-06 00:28:59 UTC +--- src/Rack/Makefile.orig 2022-05-15 13:41:31 UTC +++ src/Rack/Makefile @@ -12,7 +12,7 @@ include arch.mk SOURCES += dep/nanovg/src/nanovg.c SOURCES += dep/osdialog/osdialog.c SOURCES += dep/oui-blendish/blendish.c -SOURCES += dep/pffft/pffft.c dep/pffft/fftpack.c +#SOURCES += dep/pffft/pffft.c dep/pffft/fftpack.c SOURCES += $(wildcard src/*.c src/*/*.c) SOURCES += $(wildcard src/*.cpp src/*/*.cpp) +@@ -31,7 +31,7 @@ ifdef ARCH_LIN + + # This prevents static variables in the DSO (dynamic shared object) from being preserved after dlclose(). + # I don't really understand the side effects (see GCC manual), but so far tests are positive. +- FLAGS += -fno-gnu-unique ++ #FLAGS += -fno-gnu-unique + + LDFLAGS += -Wl,--whole-archive + LDFLAGS += -static-libstdc++ -static-libgcc diff --git a/audio/cardinal/files/patch-src_Rack_plugin.mk b/audio/cardinal/files/patch-src_Rack_plugin.mk new file mode 100644 index 000000000000..d27b74425316 --- /dev/null +++ b/audio/cardinal/files/patch-src_Rack_plugin.mk @@ -0,0 +1,11 @@ +--- src/Rack/plugin.mk.orig 2022-05-21 05:37:01 UTC ++++ src/Rack/plugin.mk +@@ -26,7 +26,7 @@ include $(RACK_DIR)/arch.mk + ifdef ARCH_LIN + TARGET := plugin.so + # This prevents static variables in the DSO (dynamic shared object) from being preserved after dlclose(). +- FLAGS += -fno-gnu-unique ++ #FLAGS += -fno-gnu-unique + # When Rack loads a plugin, it symlinks /tmp/Rack2 to its system dir, so the plugin can link to libRack. + LDFLAGS += -Wl,-rpath=/tmp/Rack2 + # Since the plugin's compiler could be a different version than Rack's compiler, link libstdc++ and libgcc statically to avoid ABI issues. diff --git a/audio/cardinal/pkg-plist b/audio/cardinal/pkg-plist index 685caa795a88..343ab4fdd29f 100644 --- a/audio/cardinal/pkg-plist +++ b/audio/cardinal/pkg-plist @@ -1,3152 +1,4013 @@ bin/Cardinal lib/lv2/Cardinal.lv2/Cardinal.so lib/lv2/Cardinal.lv2/Cardinal.ttl lib/lv2/Cardinal.lv2/manifest.ttl lib/lv2/CardinalFX.lv2/CardinalFX.so lib/lv2/CardinalFX.lv2/CardinalFX.ttl lib/lv2/CardinalFX.lv2/manifest.ttl lib/lv2/CardinalSynth.lv2/CardinalSynth.so lib/lv2/CardinalSynth.lv2/CardinalSynth.ttl lib/lv2/CardinalSynth.lv2/manifest.ttl -lib/vst/CardinalFX.vst/CardinalFX.so -lib/vst/CardinalSynth.vst/CardinalSynth.so +lib/vst/Cardinal.vst/CardinalFX.so +lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/21kHz/res/Components/kHzButton_0.svg %%DATADIR%%/21kHz/res/Components/kHzButton_1.svg %%DATADIR%%/21kHz/res/Components/kHzKnob.svg %%DATADIR%%/21kHz/res/Components/kHzKnobSmall.svg %%DATADIR%%/21kHz/res/Components/kHzKnobTiny.svg %%DATADIR%%/21kHz/res/Components/kHzPort.svg %%DATADIR%%/21kHz/res/Components/kHzScrew.svg %%DATADIR%%/21kHz/res/Panels/D_Inf.svg %%DATADIR%%/21kHz/res/Panels/PalmLoop.svg %%DATADIR%%/21kHz/res/Panels/TachyonEntangler.svg +%%DATADIR%%/8Mode/res/8Mode_Knob1.svg +%%DATADIR%%/8Mode/res/8Mode_ss_0.svg +%%DATADIR%%/8Mode/res/8Mode_ss_1.svg +%%DATADIR%%/8Mode/res/SNsoft_Panel.svg +%%DATADIR%%/AaronStatic/res/ChordCV.svg +%%DATADIR%%/AaronStatic/res/DiatonicCV.svg +%%DATADIR%%/AaronStatic/res/RandomNoteCV.svg +%%DATADIR%%/AaronStatic/res/ScaleCV.svg +%%DATADIR%%/AaronStatic/res/fonts/PixelOperator.ttf +%%DATADIR%%/Algoritmarte/res/Clockkky.svg +%%DATADIR%%/Algoritmarte/res/CyclicCA.svg +%%DATADIR%%/Algoritmarte/res/HoldMeTight.svg +%%DATADIR%%/Algoritmarte/res/LEDSliderGreenHandle.svg +%%DATADIR%%/Algoritmarte/res/LEDSliderLong.svg +%%DATADIR%%/Algoritmarte/res/MusiFrog.svg +%%DATADIR%%/Algoritmarte/res/MusiMath.svg +%%DATADIR%%/Algoritmarte/res/Planetz.svg +%%DATADIR%%/Algoritmarte/res/Zefiro.svg +%%DATADIR%%/Algoritmarte/res/nunito/Nunito-Bold.ttf +%%DATADIR%%/Algoritmarte/res/sudo/Sudo.ttf %%DATADIR%%/AmalgamatedHarmonics/res/Arp31c.svg %%DATADIR%%/AmalgamatedHarmonics/res/Arp32p.svg %%DATADIR%%/AmalgamatedHarmonics/res/Arpeggiator2.svg %%DATADIR%%/AmalgamatedHarmonics/res/Bombe.svg %%DATADIR%%/AmalgamatedHarmonics/res/Chord.svg %%DATADIR%%/AmalgamatedHarmonics/res/Circle.svg %%DATADIR%%/AmalgamatedHarmonics/res/ComponentLibrary/AHBigKnob.svg %%DATADIR%%/AmalgamatedHarmonics/res/ComponentLibrary/AHButton.svg %%DATADIR%%/AmalgamatedHarmonics/res/ComponentLibrary/AHHugeKnob.svg %%DATADIR%%/AmalgamatedHarmonics/res/ComponentLibrary/AHJack.svg %%DATADIR%%/AmalgamatedHarmonics/res/ComponentLibrary/AHKnob.svg %%DATADIR%%/AmalgamatedHarmonics/res/ComponentLibrary/AHTrimpot.svg %%DATADIR%%/AmalgamatedHarmonics/res/DSEG14ClassicMini-BoldItalic.ttf %%DATADIR%%/AmalgamatedHarmonics/res/Galaxy.svg %%DATADIR%%/AmalgamatedHarmonics/res/Generative.svg %%DATADIR%%/AmalgamatedHarmonics/res/Imp.svg %%DATADIR%%/AmalgamatedHarmonics/res/Imperfect2.svg %%DATADIR%%/AmalgamatedHarmonics/res/MuxDeMux.svg %%DATADIR%%/AmalgamatedHarmonics/res/PolyProbe.svg %%DATADIR%%/AmalgamatedHarmonics/res/PolyScope.svg %%DATADIR%%/AmalgamatedHarmonics/res/PolyUtils.svg %%DATADIR%%/AmalgamatedHarmonics/res/PolyVolt.svg %%DATADIR%%/AmalgamatedHarmonics/res/Progress.svg %%DATADIR%%/AmalgamatedHarmonics/res/Progress2.svg %%DATADIR%%/AmalgamatedHarmonics/res/Roboto-Light.ttf %%DATADIR%%/AmalgamatedHarmonics/res/RobotoCondensed-Bold.ttf %%DATADIR%%/AmalgamatedHarmonics/res/Ruckus.svg %%DATADIR%%/AmalgamatedHarmonics/res/SLN.svg %%DATADIR%%/AmalgamatedHarmonics/res/ScaleQuantizer.svg %%DATADIR%%/AmalgamatedHarmonics/res/ScaleQuantizerMkII.svg +%%DATADIR%%/AnimatedCircuits/res/FoldingLight.svg +%%DATADIR%%/AnimatedCircuits/res/Knob_Black_Light_21.svg +%%DATADIR%%/AnimatedCircuits/res/Knob_Blue_Light_42.svg +%%DATADIR%%/AnimatedCircuits/res/Knob_Cap_Light_42_fg.svg +%%DATADIR%%/AnimatedCircuits/res/Knob_Grey_Light_42.svg +%%DATADIR%%/AnimatedCircuits/res/Knob_Ring_Light_42_bg.svg +%%DATADIR%%/AnimatedCircuits/res/Knob_White_Light_42.svg +%%DATADIR%%/AnimatedCircuits/res/LFoldLight.svg +%%DATADIR%%/AnimatedCircuits/res/PlugLight.svg +%%DATADIR%%/AnimatedCircuits/res/Switch_Blue_LinExp_ExpOn_Light.svg +%%DATADIR%%/AnimatedCircuits/res/Switch_Blue_LinExp_LinOn_Light.svg +%%DATADIR%%/AnimatedCircuits/res/Switch_Blue_TriSine_SineOn_Light.svg +%%DATADIR%%/AnimatedCircuits/res/Switch_Blue_TriSine_TriOn_Light.svg +%%DATADIR%%/AnimatedCircuits/res/Switch_Grey_Bi_Off.svg +%%DATADIR%%/AnimatedCircuits/res/Switch_Grey_Bi_On.svg +%%DATADIR%%/ArableInstruments/res/CKSS_rot_0.svg +%%DATADIR%%/ArableInstruments/res/CKSS_rot_1.svg +%%DATADIR%%/ArableInstruments/res/Joni.png +%%DATADIR%%/ArableInstruments/res/Joni.svg +%%DATADIR%%/ArableInstruments/res/Neil.svg %%DATADIR%%/AriaModules/res/components/fortune-off.svg %%DATADIR%%/AriaModules/res/components/fortune-on.svg %%DATADIR%%/AriaModules/res/components/grabby-bg.svg %%DATADIR%%/AriaModules/res/components/grabby-knob.svg %%DATADIR%%/AriaModules/res/components/jack-transparent.svg %%DATADIR%%/AriaModules/res/components/keyboard-off.svg %%DATADIR%%/AriaModules/res/components/keyboard-on.svg %%DATADIR%%/AriaModules/res/components/knob-820-arrow.svg %%DATADIR%%/AriaModules/res/components/knob-820-transparent.svg %%DATADIR%%/AriaModules/res/components/knob-820.svg %%DATADIR%%/AriaModules/res/components/label-button-bottom-off.svg %%DATADIR%%/AriaModules/res/components/label-button-bottom-on.svg %%DATADIR%%/AriaModules/res/components/label-button-right-off.svg %%DATADIR%%/AriaModules/res/components/label-button-right-on.svg %%DATADIR%%/AriaModules/res/components/pb-bg.svg %%DATADIR%%/AriaModules/res/components/pb-knob.svg %%DATADIR%%/AriaModules/res/components/pmbutton-minus-off.svg %%DATADIR%%/AriaModules/res/components/pmbutton-minus-on.svg %%DATADIR%%/AriaModules/res/components/pmbutton-plus-off.svg %%DATADIR%%/AriaModules/res/components/pmbutton-plus-on.svg %%DATADIR%%/AriaModules/res/components/psychopump-ms12-reference.svg %%DATADIR%%/AriaModules/res/components/psychopump-mute-off.svg %%DATADIR%%/AriaModules/res/components/psychopump-mute-on.svg %%DATADIR%%/AriaModules/res/components/psychopump-out1-off.svg %%DATADIR%%/AriaModules/res/components/psychopump-out1-on.svg %%DATADIR%%/AriaModules/res/components/psychopump-out2-off.svg %%DATADIR%%/AriaModules/res/components/psychopump-out2-on.svg %%DATADIR%%/AriaModules/res/components/psychopump-solo-off.svg %%DATADIR%%/AriaModules/res/components/psychopump-solo-on.svg %%DATADIR%%/AriaModules/res/components/pushbutton-500-off.svg %%DATADIR%%/AriaModules/res/components/pushbutton-500-on.svg %%DATADIR%%/AriaModules/res/components/pushbutton-500-pink.svg %%DATADIR%%/AriaModules/res/components/pushbutton-700-off.svg %%DATADIR%%/AriaModules/res/components/pushbutton-700-on.svg %%DATADIR%%/AriaModules/res/components/pushbutton-700-pink.svg %%DATADIR%%/AriaModules/res/components/pushbutton-820-light-only.svg %%DATADIR%%/AriaModules/res/components/pushbutton-820-off.svg %%DATADIR%%/AriaModules/res/components/pushbutton-820-on.svg %%DATADIR%%/AriaModules/res/components/pushbutton-820-padlock-off.svg %%DATADIR%%/AriaModules/res/components/pushbutton-820-padlock-on.svg %%DATADIR%%/AriaModules/res/components/pushbutton-820-pink.svg %%DATADIR%%/AriaModules/res/components/quantize-off.svg %%DATADIR%%/AriaModules/res/components/quantize-on.svg %%DATADIR%%/AriaModules/res/components/quantize-pink.svg %%DATADIR%%/AriaModules/res/components/rocker-switch-800-d.svg %%DATADIR%%/AriaModules/res/components/rocker-switch-800-l.svg %%DATADIR%%/AriaModules/res/components/rocker-switch-800-r.svg %%DATADIR%%/AriaModules/res/components/rocker-switch-800-u.svg %%DATADIR%%/AriaModules/res/components/rocker-switch-ub-b.svg %%DATADIR%%/AriaModules/res/components/rocker-switch-ub-u.svg %%DATADIR%%/AriaModules/res/components/screw.svg %%DATADIR%%/AriaModules/res/components/solomon-delay-lit.svg %%DATADIR%%/AriaModules/res/components/solomon-next-lit.svg %%DATADIR%%/AriaModules/res/components/solomon-play-lit.svg %%DATADIR%%/AriaModules/res/components/solomon-queue-lit.svg %%DATADIR%%/AriaModules/res/dseg/DSEG14ClassicMini-Italic.ttf %%DATADIR%%/AriaModules/res/faceplates/Bendlet-src.svg %%DATADIR%%/AriaModules/res/faceplates/Bendlet.svg %%DATADIR%%/AriaModules/res/faceplates/Blank.svg %%DATADIR%%/AriaModules/res/faceplates/Darius.svg %%DATADIR%%/AriaModules/res/faceplates/Grabby.svg %%DATADIR%%/AriaModules/res/faceplates/Pokies.svg %%DATADIR%%/AriaModules/res/faceplates/Psychopump.svg %%DATADIR%%/AriaModules/res/faceplates/Q.svg %%DATADIR%%/AriaModules/res/faceplates/Qqqq.svg %%DATADIR%%/AriaModules/res/faceplates/Quack.svg %%DATADIR%%/AriaModules/res/faceplates/Quale.svg %%DATADIR%%/AriaModules/res/faceplates/Rotatoes.svg %%DATADIR%%/AriaModules/res/faceplates/Smerge.svg %%DATADIR%%/AriaModules/res/faceplates/Solomon16.svg %%DATADIR%%/AriaModules/res/faceplates/Solomon4.svg %%DATADIR%%/AriaModules/res/faceplates/Solomon8.svg %%DATADIR%%/AriaModules/res/faceplates/Spleet.svg %%DATADIR%%/AriaModules/res/faceplates/Splirge.svg %%DATADIR%%/AriaModules/res/faceplates/Splort.svg %%DATADIR%%/AriaModules/res/faceplates/Srot.svg %%DATADIR%%/AriaModules/res/faceplates/Swerge.svg %%DATADIR%%/AriaModules/res/faceplates/Test.svg %%DATADIR%%/AriaModules/res/faceplates/Undular.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/100.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/101.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/102.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/103.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/104.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/105.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/106.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/107.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/108.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/109.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/110.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/111.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/112.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/113.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/114.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/115.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/116.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/117.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/118.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/119.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/120.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/121.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/122.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/123.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/124.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/125.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/126.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/32.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/33.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/34.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/35.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/36.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/37.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/38.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/39.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/40.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/41.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/42.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/43.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/44.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/45.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/46.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/47.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/48.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/49.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/50.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/51.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/52.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/53.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/54.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/55.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/56.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/57.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/58.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/59.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/60.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/61.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/62.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/63.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/64.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/65.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/66.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/67.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/68.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/69.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/70.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/71.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/72.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/73.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/74.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/75.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/76.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/77.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/78.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/79.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/80.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/81.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/82.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/83.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/84.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/85.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/86.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/87.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/88.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/89.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/90.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/91.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/92.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/93.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/94.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/95.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/96.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/97.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/98.svg %%DATADIR%%/AriaModules/res/lcd/Fixed_v01/99.svg %%DATADIR%%/AriaModules/res/lcd/piano/l0.svg %%DATADIR%%/AriaModules/res/lcd/piano/l1.svg %%DATADIR%%/AriaModules/res/lcd/piano/l10.svg %%DATADIR%%/AriaModules/res/lcd/piano/l11.svg %%DATADIR%%/AriaModules/res/lcd/piano/l2.svg %%DATADIR%%/AriaModules/res/lcd/piano/l3.svg %%DATADIR%%/AriaModules/res/lcd/piano/l4.svg %%DATADIR%%/AriaModules/res/lcd/piano/l5.svg %%DATADIR%%/AriaModules/res/lcd/piano/l6.svg %%DATADIR%%/AriaModules/res/lcd/piano/l7.svg %%DATADIR%%/AriaModules/res/lcd/piano/l8.svg %%DATADIR%%/AriaModules/res/lcd/piano/l9.svg %%DATADIR%%/AriaModules/res/lcd/piano/u0.svg %%DATADIR%%/AriaModules/res/lcd/piano/u1.svg %%DATADIR%%/AriaModules/res/lcd/piano/u10.svg %%DATADIR%%/AriaModules/res/lcd/piano/u11.svg %%DATADIR%%/AriaModules/res/lcd/piano/u2.svg %%DATADIR%%/AriaModules/res/lcd/piano/u3.svg %%DATADIR%%/AriaModules/res/lcd/piano/u4.svg %%DATADIR%%/AriaModules/res/lcd/piano/u5.svg %%DATADIR%%/AriaModules/res/lcd/piano/u6.svg %%DATADIR%%/AriaModules/res/lcd/piano/u7.svg %%DATADIR%%/AriaModules/res/lcd/piano/u8.svg %%DATADIR%%/AriaModules/res/lcd/piano/u9.svg %%DATADIR%%/AriaModules/res/numbered-buttons/01-lit.svg %%DATADIR%%/AriaModules/res/numbered-buttons/01.svg %%DATADIR%%/AriaModules/res/numbered-buttons/02-lit.svg %%DATADIR%%/AriaModules/res/numbered-buttons/02.svg %%DATADIR%%/AriaModules/res/numbered-buttons/03-lit.svg %%DATADIR%%/AriaModules/res/numbered-buttons/03.svg %%DATADIR%%/AriaModules/res/numbered-buttons/04-lit.svg %%DATADIR%%/AriaModules/res/numbered-buttons/04.svg %%DATADIR%%/AriaModules/res/numbered-buttons/05-lit.svg %%DATADIR%%/AriaModules/res/numbered-buttons/05.svg %%DATADIR%%/AriaModules/res/numbered-buttons/06-lit.svg %%DATADIR%%/AriaModules/res/numbered-buttons/06.svg %%DATADIR%%/AriaModules/res/numbered-buttons/07-lit.svg %%DATADIR%%/AriaModules/res/numbered-buttons/07.svg %%DATADIR%%/AriaModules/res/numbered-buttons/08-lit.svg %%DATADIR%%/AriaModules/res/numbered-buttons/08.svg %%DATADIR%%/AriaModules/res/numbered-buttons/09-lit.svg %%DATADIR%%/AriaModules/res/numbered-buttons/09.svg %%DATADIR%%/AriaModules/res/numbered-buttons/10-lit.svg %%DATADIR%%/AriaModules/res/numbered-buttons/10.svg %%DATADIR%%/AriaModules/res/numbered-buttons/11-lit.svg %%DATADIR%%/AriaModules/res/numbered-buttons/11.svg %%DATADIR%%/AriaModules/res/numbered-buttons/12-lit.svg %%DATADIR%%/AriaModules/res/numbered-buttons/12.svg %%DATADIR%%/AriaModules/res/numbered-buttons/13-lit.svg %%DATADIR%%/AriaModules/res/numbered-buttons/13.svg %%DATADIR%%/AriaModules/res/numbered-buttons/14-lit.svg %%DATADIR%%/AriaModules/res/numbered-buttons/14.svg %%DATADIR%%/AriaModules/res/numbered-buttons/15-lit.svg %%DATADIR%%/AriaModules/res/numbered-buttons/15.svg %%DATADIR%%/AriaModules/res/numbered-buttons/16-lit.svg %%DATADIR%%/AriaModules/res/numbered-buttons/16.svg %%DATADIR%%/AriaModules/res/numbered-buttons/tpl.svg %%DATADIR%%/AriaModules/res/piano-buttons/Piano-Reference.svg %%DATADIR%%/AriaModules/res/piano-buttons/pink-B.svg %%DATADIR%%/AriaModules/res/piano-buttons/pink-C.svg %%DATADIR%%/AriaModules/res/piano-buttons/pink-E.svg %%DATADIR%%/AriaModules/res/piano-buttons/pink-F.svg %%DATADIR%%/AriaModules/res/piano-buttons/pink-black.svg %%DATADIR%%/AriaModules/res/piano-buttons/pink-white.svg %%DATADIR%%/AriaModules/res/piano-buttons/unlit-B.svg %%DATADIR%%/AriaModules/res/piano-buttons/unlit-C.svg %%DATADIR%%/AriaModules/res/piano-buttons/unlit-E.svg %%DATADIR%%/AriaModules/res/piano-buttons/unlit-F.svg %%DATADIR%%/AriaModules/res/piano-buttons/unlit-black.svg %%DATADIR%%/AriaModules/res/piano-buttons/unlit-white.svg %%DATADIR%%/AriaModules/res/piano-buttons/yellow-B.svg %%DATADIR%%/AriaModules/res/piano-buttons/yellow-C.svg %%DATADIR%%/AriaModules/res/piano-buttons/yellow-E.svg %%DATADIR%%/AriaModules/res/piano-buttons/yellow-F.svg %%DATADIR%%/AriaModules/res/piano-buttons/yellow-black.svg %%DATADIR%%/AriaModules/res/piano-buttons/yellow-white.svg %%DATADIR%%/AriaModules/res/signature/signature.svg %%DATADIR%%/AudibleInstruments/res/Blinds.svg %%DATADIR%%/AudibleInstruments/res/Braids.svg %%DATADIR%%/AudibleInstruments/res/Branches.svg %%DATADIR%%/AudibleInstruments/res/CKSS_rot_0.svg %%DATADIR%%/AudibleInstruments/res/CKSS_rot_1.svg %%DATADIR%%/AudibleInstruments/res/Clouds.svg %%DATADIR%%/AudibleInstruments/res/Elements.svg %%DATADIR%%/AudibleInstruments/res/Frames.svg %%DATADIR%%/AudibleInstruments/res/Kinks.svg %%DATADIR%%/AudibleInstruments/res/Links.svg %%DATADIR%%/AudibleInstruments/res/Marbles.svg %%DATADIR%%/AudibleInstruments/res/Peaks.svg %%DATADIR%%/AudibleInstruments/res/Plaits.svg %%DATADIR%%/AudibleInstruments/res/Rings.svg %%DATADIR%%/AudibleInstruments/res/Ripples.svg %%DATADIR%%/AudibleInstruments/res/Shades.svg %%DATADIR%%/AudibleInstruments/res/Sheep.svg %%DATADIR%%/AudibleInstruments/res/Shelves.svg %%DATADIR%%/AudibleInstruments/res/Stages.svg %%DATADIR%%/AudibleInstruments/res/Streams.svg %%DATADIR%%/AudibleInstruments/res/Tides.svg %%DATADIR%%/AudibleInstruments/res/Tides2.svg %%DATADIR%%/AudibleInstruments/res/Veils.svg %%DATADIR%%/AudibleInstruments/res/Warps.svg %%DATADIR%%/AudibleInstruments/res/hdad-segment14-1.002/Segment14.ttf %%DATADIR%%/Autinn/res/AmpModule.svg %%DATADIR%%/Autinn/res/BassModule.svg %%DATADIR%%/Autinn/res/CVConverterModule.svg %%DATADIR%%/Autinn/res/ComponentLibrary/InPortAutinn.svg %%DATADIR%%/Autinn/res/ComponentLibrary/KnobLargeAutinn.svg %%DATADIR%%/Autinn/res/ComponentLibrary/KnobSmallAutinn.svg %%DATADIR%%/Autinn/res/ComponentLibrary/KnobSmallAutinnPink.svg %%DATADIR%%/Autinn/res/ComponentLibrary/KnobSmallAutinnTyrk.svg %%DATADIR%%/Autinn/res/ComponentLibrary/KnobSmallAutinnYel.svg %%DATADIR%%/Autinn/res/ComponentLibrary/OutPortAutinn.svg %%DATADIR%%/Autinn/res/ComponentLibrary/RoundButtonAutinn.svg %%DATADIR%%/Autinn/res/ComponentLibrary/RoundButtonAutinnDown.svg %%DATADIR%%/Autinn/res/ComponentLibrary/RoundButtonSmallAutinn.svg %%DATADIR%%/Autinn/res/ComponentLibrary/RoundButtonSmallAutinnDown.svg %%DATADIR%%/Autinn/res/ComponentLibrary/ScrewStarAutinn.svg %%DATADIR%%/Autinn/res/ComponentLibrary/SliderAutinn.svg %%DATADIR%%/Autinn/res/ComponentLibrary/SliderHandleAutinn.svg %%DATADIR%%/Autinn/res/ComponentLibrary/SliderShortAutinn.svg %%DATADIR%%/Autinn/res/DeadbandModule.svg %%DATADIR%%/Autinn/res/DigiModule.svg %%DATADIR%%/Autinn/res/DiseeModule.svg %%DATADIR%%/Autinn/res/FilModule.svg %%DATADIR%%/Autinn/res/FlopperModule.svg %%DATADIR%%/Autinn/res/ImpModule.svg %%DATADIR%%/Autinn/res/JetteModule.svg %%DATADIR%%/Autinn/res/MelodyModule.svg %%DATADIR%%/Autinn/res/MeraModule.svg %%DATADIR%%/Autinn/res/Mixer6Module.svg %%DATADIR%%/Autinn/res/NapModule.svg %%DATADIR%%/Autinn/res/NonModule.svg %%DATADIR%%/Autinn/res/OxcartModule.svg %%DATADIR%%/Autinn/res/RebelModule.svg %%DATADIR%%/Autinn/res/RetriModule.svg %%DATADIR%%/Autinn/res/SawModule.svg %%DATADIR%%/Autinn/res/SjipModule.svg %%DATADIR%%/Autinn/res/SquareModule.svg %%DATADIR%%/Autinn/res/VibratoModule.svg %%DATADIR%%/Autinn/res/VxyModule.svg %%DATADIR%%/Autinn/res/ZodModule.svg +%%DATADIR%%/Axioma/res/AxiomaKnob.svg +%%DATADIR%%/Axioma/res/AxiomaPort.svg +%%DATADIR%%/Axioma/res/Ikeda.svg +%%DATADIR%%/Axioma/res/Rhodonea.svg +%%DATADIR%%/Axioma/res/Tesseract.svg +%%DATADIR%%/Axioma/res/TheBifurcator.svg %%DATADIR%%/BaconPlugs/res/1f60d.svg %%DATADIR%%/BaconPlugs/res/1f953.svg %%DATADIR%%/BaconPlugs/res/BaconSliderHandle.svg %%DATADIR%%/BaconPlugs/res/HelpActive.svg %%DATADIR%%/BaconPlugs/res/HelpActiveSmall.svg %%DATADIR%%/BaconPlugs/res/HelpGraySmall.svg %%DATADIR%%/BaconPlugs/res/Keypunch029.json %%DATADIR%%/BaconPlugs/res/Monitorica-Bd.ttf %%DATADIR%%/BaconPlugs/res/SABROG-White-circle-button.svg %%DATADIR%%/BaconPlugs/res/midi/chopin/chpn-p1.mid %%DATADIR%%/BaconPlugs/res/midi/chopin/chpn-p10.mid %%DATADIR%%/BaconPlugs/res/midi/chopin/chpn-p11.mid %%DATADIR%%/BaconPlugs/res/midi/chopin/chpn-p12.mid %%DATADIR%%/BaconPlugs/res/midi/chopin/chpn-p13.mid %%DATADIR%%/BaconPlugs/res/midi/chopin/chpn-p14.mid %%DATADIR%%/BaconPlugs/res/midi/chopin/chpn-p15.mid %%DATADIR%%/BaconPlugs/res/midi/chopin/chpn-p16.mid %%DATADIR%%/BaconPlugs/res/midi/chopin/chpn-p17.mid %%DATADIR%%/BaconPlugs/res/midi/chopin/chpn-p18.mid %%DATADIR%%/BaconPlugs/res/midi/chopin/chpn-p19.mid %%DATADIR%%/BaconPlugs/res/midi/chopin/chpn-p2.mid %%DATADIR%%/BaconPlugs/res/midi/chopin/chpn-p20.mid %%DATADIR%%/BaconPlugs/res/midi/chopin/chpn-p21.mid %%DATADIR%%/BaconPlugs/res/midi/chopin/chpn-p22.mid %%DATADIR%%/BaconPlugs/res/midi/chopin/chpn-p23.mid %%DATADIR%%/BaconPlugs/res/midi/chopin/chpn-p24.mid %%DATADIR%%/BaconPlugs/res/midi/chopin/chpn-p3.mid %%DATADIR%%/BaconPlugs/res/midi/chopin/chpn-p4.mid %%DATADIR%%/BaconPlugs/res/midi/chopin/chpn-p5.mid %%DATADIR%%/BaconPlugs/res/midi/chopin/chpn-p6.mid %%DATADIR%%/BaconPlugs/res/midi/chopin/chpn-p7.mid %%DATADIR%%/BaconPlugs/res/midi/chopin/chpn-p8.mid %%DATADIR%%/BaconPlugs/res/midi/chopin/chpn-p9.mid %%DATADIR%%/BaconPlugs/res/midi/debussy/deb_clai.mid %%DATADIR%%/BaconPlugs/res/midi/debussy/deb_prel.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v00.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v01.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v02.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v03.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v04.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v05.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v06.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v07.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v08.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v09.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v10.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v11.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v12.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v13.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v14.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v15.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v16.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v17.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v18.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v19.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v20.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v21.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v22.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v23.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v24.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v25.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v26.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v27.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v28.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v29.mid %%DATADIR%%/BaconPlugs/res/midi/goldberg/988-v30.mid %%DATADIR%%/BaconPlugs/res/sabrog-25-down.svg %%DATADIR%%/BaconPlugs/res/sabrog-25-up.svg +%%DATADIR%%/Befaco/res/components/BananutBlack.svg +%%DATADIR%%/Befaco/res/components/BananutRed.svg +%%DATADIR%%/Befaco/res/components/BefacoButton_0.svg +%%DATADIR%%/Befaco/res/components/BefacoButton_1.svg +%%DATADIR%%/Befaco/res/components/BefacoSlidePotHandleSmall.svg +%%DATADIR%%/Befaco/res/components/BefacoSlidePotSmall.svg +%%DATADIR%%/Befaco/res/components/BefacoSwitchHoriz_0.svg +%%DATADIR%%/Befaco/res/components/BefacoSwitchHoriz_1.svg +%%DATADIR%%/Befaco/res/components/BefacoSwitchHoriz_2.svg +%%DATADIR%%/Befaco/res/components/BefacoTinyKnobBlack_bg.svg +%%DATADIR%%/Befaco/res/components/BefacoTinyKnobDarkGrey_bg.svg +%%DATADIR%%/Befaco/res/components/BefacoTinyKnobLightGrey_bg.svg +%%DATADIR%%/Befaco/res/components/BefacoTinyKnobRed_bg.svg +%%DATADIR%%/Befaco/res/components/BefacoTinyPointWhite.svg +%%DATADIR%%/Befaco/res/components/CrossfaderBackground.svg +%%DATADIR%%/Befaco/res/components/CrossfaderHandle.svg +%%DATADIR%%/Befaco/res/components/Davies1900hBlack.svg +%%DATADIR%%/Befaco/res/components/Davies1900hDarkGrey.svg +%%DATADIR%%/Befaco/res/components/Davies1900hDarkGrey_bg.svg +%%DATADIR%%/Befaco/res/components/Davies1900hLargeGrey.svg +%%DATADIR%%/Befaco/res/components/Davies1900hLargeGrey_bg.svg +%%DATADIR%%/Befaco/res/components/Davies1900hLargeLightGrey.svg +%%DATADIR%%/Befaco/res/components/Davies1900hLargeLightGrey_bg.svg +%%DATADIR%%/Befaco/res/components/Davies1900hLightGrey.svg +%%DATADIR%%/Befaco/res/components/Davies1900hLightGrey_bg.svg +%%DATADIR%%/Befaco/res/components/Knurlie.svg +%%DATADIR%%/Befaco/res/components/SwitchNarrowHoriz_0.svg +%%DATADIR%%/Befaco/res/components/SwitchNarrowHoriz_1.svg +%%DATADIR%%/Befaco/res/components/SwitchNarrow_0.svg +%%DATADIR%%/Befaco/res/components/SwitchNarrow_1.svg +%%DATADIR%%/Befaco/res/components/SwitchNarrow_2.svg +%%DATADIR%%/Befaco/res/fonts/Segment7Standard.otf +%%DATADIR%%/Befaco/res/panels/ABC.svg +%%DATADIR%%/Befaco/res/panels/ADSR.svg +%%DATADIR%%/Befaco/res/panels/ChoppingKinky.svg +%%DATADIR%%/Befaco/res/panels/DualAtenuverter.svg +%%DATADIR%%/Befaco/res/panels/EvenVCO.svg +%%DATADIR%%/Befaco/res/panels/HexmixVCA.svg +%%DATADIR%%/Befaco/res/panels/Kickall.svg +%%DATADIR%%/Befaco/res/panels/Mex.svg +%%DATADIR%%/Befaco/res/panels/Mixer.svg +%%DATADIR%%/Befaco/res/panels/Morphader.svg +%%DATADIR%%/Befaco/res/panels/Muxlicer.svg +%%DATADIR%%/Befaco/res/panels/NoisePlethora.svg +%%DATADIR%%/Befaco/res/panels/Percall.svg +%%DATADIR%%/Befaco/res/panels/Rampage.svg +%%DATADIR%%/Befaco/res/panels/STMix.svg +%%DATADIR%%/Befaco/res/panels/SamplingModulator.svg +%%DATADIR%%/Befaco/res/panels/SlewLimiter.svg +%%DATADIR%%/Befaco/res/panels/SpringReverb.svg +%%DATADIR%%/Befaco/res/panels/StereoStrip.svg %%DATADIR%%/Bidoo/res/ACNE.svg %%DATADIR%%/Bidoo/res/ANTN.svg %%DATADIR%%/Bidoo/res/BAFIS.svg %%DATADIR%%/Bidoo/res/BANCAU.svg %%DATADIR%%/Bidoo/res/BAR.svg %%DATADIR%%/Bidoo/res/BISTROT.svg %%DATADIR%%/Bidoo/res/BORDL.svg %%DATADIR%%/Bidoo/res/CANARD.svg %%DATADIR%%/Bidoo/res/CHUTE.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/BlackKnobBidoo-bg.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/BlackKnobBidoo.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/BlueBtn_0.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/BlueBtn_1.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/BlueCKD6_0.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/BlueCKD6_1.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/BlueKnobBidoo-bg.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/BlueKnobBidoo.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/BlueTrimpotBidoo-bg.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/BlueTrimpotBidoo.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/CKSS4_0.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/CKSS4_1.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/CKSS4_2.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/CKSS4_3.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/CKSS8_0.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/CKSS8_1.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/CKSS8_2.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/CKSS8_3.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/CKSS8_4.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/CKSS8_5.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/CKSS8_6.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/CKSS8_7.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/ColoredKnobBidoo-bg.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/ColoredKnobBidoo.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/ColoredLargeKnobBidoo-bg.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/ColoredLargeKnobBidoo.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/DownBtn_0.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/DownBtn_1.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/GreenKnobBidoo-bg.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/GreenKnobBidoo.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/HugeBlueKnobBidoo-bg.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/HugeBlueKnobBidoo.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/HugeRedKnobBidoo-bg.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/HugeRedKnobBidoo.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/LargeBlueKnobBidoo-bg.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/LargeBlueKnobBidoo.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/LeftBtn_0.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/LeftBtn_1.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/MuteBtn_0.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/MuteBtn_1.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/PJ301M.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/RedBtn_0.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/RedBtn_1.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/RedKnobBidoo-bg.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/RedKnobBidoo.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/RightBtn_0.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/RightBtn_1.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/Rnd2Btn_0.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/Rnd2Btn_1.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/RndBtn_0.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/RndBtn_1.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/SaveBtn_0.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/SaveBtn_1.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/SmallBlueKnobBidoo-bg.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/SmallBlueKnobBidoo.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/SmallLEDBezel.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/SoloBtn_0.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/SoloBtn_1.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/SpiralKnobBidoo-bg.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/SpiralKnobBidoo.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/TinyPJ301M.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/Trimpot.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/TrimpotBidoo-bg.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/TrimpotBidoo.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/UpBtn_0.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/UpBtn_1.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/bidooLongSlider.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/bidooSlidePotHandle.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/bidooSlidePotLong.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/bidooSlidePotShort.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/btnblue.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/btndimmedblue.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/btndimmedgreen.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/btngreen.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/btngrey.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/btnorange.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/btnred.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/btnwhite.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/design.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/ledblue.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/leddimmedblue.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/ledgreen.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/ledgrey.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/ledorange.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/ledred.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/miniLEDButton.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/octave_0.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/octave_1.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/ziNCBlueKnobBidoo.svg %%DATADIR%%/Bidoo/res/DFUZE.svg %%DATADIR%%/Bidoo/res/DIKTAT.svg %%DATADIR%%/Bidoo/res/DILEMO.svg %%DATADIR%%/Bidoo/res/DTROY.svg %%DATADIR%%/Bidoo/res/DUKE.svg %%DATADIR%%/Bidoo/res/EDSAROS.svg %%DATADIR%%/Bidoo/res/EMILE.svg %%DATADIR%%/Bidoo/res/FLAME.svg %%DATADIR%%/Bidoo/res/FORK.svg %%DATADIR%%/Bidoo/res/FREIN.svg %%DATADIR%%/Bidoo/res/HCTIP.svg %%DATADIR%%/Bidoo/res/HUITRE.svg %%DATADIR%%/Bidoo/res/LAMBDA.svg %%DATADIR%%/Bidoo/res/LATE.svg %%DATADIR%%/Bidoo/res/LIMBO.svg %%DATADIR%%/Bidoo/res/LIMONADE.svg %%DATADIR%%/Bidoo/res/LOURDE.svg %%DATADIR%%/Bidoo/res/MAGMA.svg %%DATADIR%%/Bidoo/res/MINIBAR.svg %%DATADIR%%/Bidoo/res/MOIRE.svg %%DATADIR%%/Bidoo/res/MS.svg %%DATADIR%%/Bidoo/res/MU.svg %%DATADIR%%/Bidoo/res/OAI.svg %%DATADIR%%/Bidoo/res/OUAIVE.svg %%DATADIR%%/Bidoo/res/PERCO.svg %%DATADIR%%/Bidoo/res/PILOT.svg %%DATADIR%%/Bidoo/res/POUPRE.svg %%DATADIR%%/Bidoo/res/RABBIT.svg %%DATADIR%%/Bidoo/res/REI.svg %%DATADIR%%/Bidoo/res/SIGMA.svg %%DATADIR%%/Bidoo/res/SPORE.svg %%DATADIR%%/Bidoo/res/TIARE.svg %%DATADIR%%/Bidoo/res/TOCANTE.svg %%DATADIR%%/Bidoo/res/VOID.svg %%DATADIR%%/Bidoo/res/ZINC.svg %%DATADIR%%/Bidoo/res/ZOUMAI.svg +%%DATADIR%%/Bidoo/res/ZOUMAIExpander.svg %%DATADIR%%/BogaudioModules/res/AD-dark.svg %%DATADIR%%/BogaudioModules/res/AD-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/AD.svg %%DATADIR%%/BogaudioModules/res/ADSR-dark.svg %%DATADIR%%/BogaudioModules/res/ADSR-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/ADSR.svg %%DATADIR%%/BogaudioModules/res/AMRM-dark.svg %%DATADIR%%/BogaudioModules/res/AMRM-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/AMRM.svg %%DATADIR%%/BogaudioModules/res/ASR-dark.svg %%DATADIR%%/BogaudioModules/res/ASR-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/ASR.svg %%DATADIR%%/BogaudioModules/res/Additator-dark.svg %%DATADIR%%/BogaudioModules/res/Additator-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Additator.svg %%DATADIR%%/BogaudioModules/res/AddrSeq-dark.svg %%DATADIR%%/BogaudioModules/res/AddrSeq-latif.svg %%DATADIR%%/BogaudioModules/res/AddrSeq-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/AddrSeq.svg %%DATADIR%%/BogaudioModules/res/AddrSeqX-dark.svg %%DATADIR%%/BogaudioModules/res/AddrSeqX-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/AddrSeqX.svg %%DATADIR%%/BogaudioModules/res/Analyzer-dark.svg %%DATADIR%%/BogaudioModules/res/Analyzer-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Analyzer.svg %%DATADIR%%/BogaudioModules/res/AnalyzerXL.svg %%DATADIR%%/BogaudioModules/res/Arp-dark.svg %%DATADIR%%/BogaudioModules/res/Arp-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Arp.svg %%DATADIR%%/BogaudioModules/res/Assign-dark.svg %%DATADIR%%/BogaudioModules/res/Assign-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Assign.svg %%DATADIR%%/BogaudioModules/res/Blank3-dark.svg %%DATADIR%%/BogaudioModules/res/Blank3-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Blank3.svg %%DATADIR%%/BogaudioModules/res/Blank6-dark.svg %%DATADIR%%/BogaudioModules/res/Blank6-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Blank6.svg %%DATADIR%%/BogaudioModules/res/Bool-dark.svg %%DATADIR%%/BogaudioModules/res/Bool-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Bool.svg %%DATADIR%%/BogaudioModules/res/CVD-dark.svg %%DATADIR%%/BogaudioModules/res/CVD-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/CVD.svg %%DATADIR%%/BogaudioModules/res/Chirp-dark.svg %%DATADIR%%/BogaudioModules/res/Chirp-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Chirp.svg %%DATADIR%%/BogaudioModules/res/Clpr-dark.svg %%DATADIR%%/BogaudioModules/res/Clpr-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Clpr.svg %%DATADIR%%/BogaudioModules/res/Cmp-dark.svg %%DATADIR%%/BogaudioModules/res/Cmp-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Cmp.svg %%DATADIR%%/BogaudioModules/res/CmpDist-dark.svg %%DATADIR%%/BogaudioModules/res/CmpDist-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/CmpDist.svg %%DATADIR%%/BogaudioModules/res/DADSRH-dark.svg %%DATADIR%%/BogaudioModules/res/DADSRH-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/DADSRH.svg %%DATADIR%%/BogaudioModules/res/DADSRHPlus-dark.svg %%DATADIR%%/BogaudioModules/res/DADSRHPlus-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/DADSRHPlus.svg %%DATADIR%%/BogaudioModules/res/DGate-dark.svg %%DATADIR%%/BogaudioModules/res/DGate-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/DGate.svg %%DATADIR%%/BogaudioModules/res/Detune-dark.svg %%DATADIR%%/BogaudioModules/res/Detune-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Detune.svg %%DATADIR%%/BogaudioModules/res/EQ-dark.svg %%DATADIR%%/BogaudioModules/res/EQ-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/EQ.svg %%DATADIR%%/BogaudioModules/res/EQS-dark.svg %%DATADIR%%/BogaudioModules/res/EQS-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/EQS.svg %%DATADIR%%/BogaudioModules/res/Edge-dark.svg %%DATADIR%%/BogaudioModules/res/Edge-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Edge.svg %%DATADIR%%/BogaudioModules/res/EightFO-dark.svg %%DATADIR%%/BogaudioModules/res/EightFO-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/EightFO.svg %%DATADIR%%/BogaudioModules/res/EightOne-dark.svg %%DATADIR%%/BogaudioModules/res/EightOne-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/EightOne.svg %%DATADIR%%/BogaudioModules/res/FFB-dark.svg %%DATADIR%%/BogaudioModules/res/FFB-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/FFB.svg %%DATADIR%%/BogaudioModules/res/FMOp-dark.svg %%DATADIR%%/BogaudioModules/res/FMOp-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/FMOp.svg %%DATADIR%%/BogaudioModules/res/FlipFlop-dark.svg %%DATADIR%%/BogaudioModules/res/FlipFlop-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/FlipFlop.svg %%DATADIR%%/BogaudioModules/res/Follow-dark.svg %%DATADIR%%/BogaudioModules/res/Follow-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Follow.svg %%DATADIR%%/BogaudioModules/res/FourFO-dark.svg %%DATADIR%%/BogaudioModules/res/FourFO-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/FourFO.svg %%DATADIR%%/BogaudioModules/res/FourMan-dark.svg %%DATADIR%%/BogaudioModules/res/FourMan-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/FourMan.svg %%DATADIR%%/BogaudioModules/res/Inv-dark.svg %%DATADIR%%/BogaudioModules/res/Inv-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Inv.svg %%DATADIR%%/BogaudioModules/res/LFO-dark.svg %%DATADIR%%/BogaudioModules/res/LFO-latif.svg %%DATADIR%%/BogaudioModules/res/LFO-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/LFO.svg %%DATADIR%%/BogaudioModules/res/LLFO-dark.svg %%DATADIR%%/BogaudioModules/res/LLFO-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/LLFO.svg %%DATADIR%%/BogaudioModules/res/LLPG-dark.svg %%DATADIR%%/BogaudioModules/res/LLPG-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/LLPG.svg %%DATADIR%%/BogaudioModules/res/LPG-dark.svg %%DATADIR%%/BogaudioModules/res/LPG-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/LPG.svg %%DATADIR%%/BogaudioModules/res/LVCF-dark.svg %%DATADIR%%/BogaudioModules/res/LVCF-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/LVCF.svg %%DATADIR%%/BogaudioModules/res/LVCO-dark.svg %%DATADIR%%/BogaudioModules/res/LVCO-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/LVCO.svg %%DATADIR%%/BogaudioModules/res/Lag-dark.svg %%DATADIR%%/BogaudioModules/res/Lag-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Lag.svg %%DATADIR%%/BogaudioModules/res/Lgsw-dark.svg %%DATADIR%%/BogaudioModules/res/Lgsw-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Lgsw.svg %%DATADIR%%/BogaudioModules/res/Lmtr-dark.svg %%DATADIR%%/BogaudioModules/res/Lmtr-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Lmtr.svg %%DATADIR%%/BogaudioModules/res/Manual-dark.svg %%DATADIR%%/BogaudioModules/res/Manual-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Manual.svg %%DATADIR%%/BogaudioModules/res/Matrix18-dark.svg %%DATADIR%%/BogaudioModules/res/Matrix18-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Matrix18.svg %%DATADIR%%/BogaudioModules/res/Matrix44-dark.svg %%DATADIR%%/BogaudioModules/res/Matrix44-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Matrix44.svg %%DATADIR%%/BogaudioModules/res/Matrix44Cvm-dark.svg %%DATADIR%%/BogaudioModules/res/Matrix44Cvm-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Matrix44Cvm.svg %%DATADIR%%/BogaudioModules/res/Matrix81-dark.svg %%DATADIR%%/BogaudioModules/res/Matrix81-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Matrix81.svg %%DATADIR%%/BogaudioModules/res/Matrix88-dark.svg %%DATADIR%%/BogaudioModules/res/Matrix88-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Matrix88.svg %%DATADIR%%/BogaudioModules/res/Matrix88Cv-dark.svg %%DATADIR%%/BogaudioModules/res/Matrix88Cv-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Matrix88Cv.svg %%DATADIR%%/BogaudioModules/res/Matrix88M-dark.svg %%DATADIR%%/BogaudioModules/res/Matrix88M-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Matrix88M.svg %%DATADIR%%/BogaudioModules/res/MegaGate-dark.svg %%DATADIR%%/BogaudioModules/res/MegaGate-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/MegaGate.svg %%DATADIR%%/BogaudioModules/res/Mix1-dark.svg %%DATADIR%%/BogaudioModules/res/Mix1-latif.svg %%DATADIR%%/BogaudioModules/res/Mix1-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Mix1.svg %%DATADIR%%/BogaudioModules/res/Mix2-dark.svg %%DATADIR%%/BogaudioModules/res/Mix2-latif.svg %%DATADIR%%/BogaudioModules/res/Mix2-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Mix2.svg %%DATADIR%%/BogaudioModules/res/Mix4-dark.svg %%DATADIR%%/BogaudioModules/res/Mix4-latif.svg %%DATADIR%%/BogaudioModules/res/Mix4-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Mix4.svg %%DATADIR%%/BogaudioModules/res/Mix4x-dark.svg %%DATADIR%%/BogaudioModules/res/Mix4x-latif.svg %%DATADIR%%/BogaudioModules/res/Mix4x-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Mix4x.svg %%DATADIR%%/BogaudioModules/res/Mix8-dark.svg %%DATADIR%%/BogaudioModules/res/Mix8-latif.svg %%DATADIR%%/BogaudioModules/res/Mix8-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Mix8.svg %%DATADIR%%/BogaudioModules/res/Mix8x-dark.svg %%DATADIR%%/BogaudioModules/res/Mix8x-latif.svg %%DATADIR%%/BogaudioModules/res/Mix8x-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Mix8x.svg %%DATADIR%%/BogaudioModules/res/Mono-dark.svg %%DATADIR%%/BogaudioModules/res/Mono-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Mono.svg %%DATADIR%%/BogaudioModules/res/Mult-dark.svg %%DATADIR%%/BogaudioModules/res/Mult-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Mult.svg %%DATADIR%%/BogaudioModules/res/Mumix-dark.svg %%DATADIR%%/BogaudioModules/res/Mumix-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Mumix.svg %%DATADIR%%/BogaudioModules/res/Mute8-dark.svg %%DATADIR%%/BogaudioModules/res/Mute8-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Mute8.svg %%DATADIR%%/BogaudioModules/res/Noise-dark.svg %%DATADIR%%/BogaudioModules/res/Noise-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Noise.svg %%DATADIR%%/BogaudioModules/res/Nsgt-dark.svg %%DATADIR%%/BogaudioModules/res/Nsgt-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Nsgt.svg %%DATADIR%%/BogaudioModules/res/Offset-dark.svg %%DATADIR%%/BogaudioModules/res/Offset-latif.svg %%DATADIR%%/BogaudioModules/res/Offset-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Offset.svg %%DATADIR%%/BogaudioModules/res/OneEight-dark.svg %%DATADIR%%/BogaudioModules/res/OneEight-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/OneEight.svg %%DATADIR%%/BogaudioModules/res/PEQ-dark.svg %%DATADIR%%/BogaudioModules/res/PEQ-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/PEQ.svg %%DATADIR%%/BogaudioModules/res/PEQ14-dark.svg %%DATADIR%%/BogaudioModules/res/PEQ14-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/PEQ14.svg %%DATADIR%%/BogaudioModules/res/PEQ14XF-dark.svg %%DATADIR%%/BogaudioModules/res/PEQ14XF-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/PEQ14XF.svg %%DATADIR%%/BogaudioModules/res/PEQ14XR-dark.svg %%DATADIR%%/BogaudioModules/res/PEQ14XR-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/PEQ14XR.svg %%DATADIR%%/BogaudioModules/res/PEQ14XV-dark.svg %%DATADIR%%/BogaudioModules/res/PEQ14XV-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/PEQ14XV.svg %%DATADIR%%/BogaudioModules/res/PEQ6-dark.svg %%DATADIR%%/BogaudioModules/res/PEQ6-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/PEQ6.svg %%DATADIR%%/BogaudioModules/res/PEQ6XF-dark.svg %%DATADIR%%/BogaudioModules/res/PEQ6XF-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/PEQ6XF.svg %%DATADIR%%/BogaudioModules/res/Pan-dark.svg %%DATADIR%%/BogaudioModules/res/Pan-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Pan.svg %%DATADIR%%/BogaudioModules/res/Pgmr-dark.svg %%DATADIR%%/BogaudioModules/res/Pgmr-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Pgmr.svg %%DATADIR%%/BogaudioModules/res/PgmrX-dark.svg %%DATADIR%%/BogaudioModules/res/PgmrX-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/PgmrX.svg %%DATADIR%%/BogaudioModules/res/PolyCon16-dark.svg %%DATADIR%%/BogaudioModules/res/PolyCon16-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/PolyCon16.svg %%DATADIR%%/BogaudioModules/res/PolyCon8-dark.svg %%DATADIR%%/BogaudioModules/res/PolyCon8-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/PolyCon8.svg %%DATADIR%%/BogaudioModules/res/PolyMult-dark.svg %%DATADIR%%/BogaudioModules/res/PolyMult-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/PolyMult.svg %%DATADIR%%/BogaudioModules/res/PolyOff16-dark.svg %%DATADIR%%/BogaudioModules/res/PolyOff16-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/PolyOff16.svg %%DATADIR%%/BogaudioModules/res/PolyOff8-dark.svg %%DATADIR%%/BogaudioModules/res/PolyOff8-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/PolyOff8.svg %%DATADIR%%/BogaudioModules/res/Pressor-dark.svg %%DATADIR%%/BogaudioModules/res/Pressor-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Pressor.svg %%DATADIR%%/BogaudioModules/res/Pulse-dark.svg %%DATADIR%%/BogaudioModules/res/Pulse-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Pulse.svg %%DATADIR%%/BogaudioModules/res/RGate-dark.svg %%DATADIR%%/BogaudioModules/res/RGate-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/RGate.svg %%DATADIR%%/BogaudioModules/res/Ranalyzer.svg %%DATADIR%%/BogaudioModules/res/Reftone-dark.svg %%DATADIR%%/BogaudioModules/res/Reftone-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Reftone.svg %%DATADIR%%/BogaudioModules/res/SampleHold-dark.svg %%DATADIR%%/BogaudioModules/res/SampleHold-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/SampleHold.svg %%DATADIR%%/BogaudioModules/res/Shaper-dark.svg %%DATADIR%%/BogaudioModules/res/Shaper-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Shaper.svg %%DATADIR%%/BogaudioModules/res/ShaperPlus-dark.svg %%DATADIR%%/BogaudioModules/res/ShaperPlus-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/ShaperPlus.svg %%DATADIR%%/BogaudioModules/res/Sine-dark.svg %%DATADIR%%/BogaudioModules/res/Sine-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Sine.svg %%DATADIR%%/BogaudioModules/res/Slew-dark.svg %%DATADIR%%/BogaudioModules/res/Slew-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Slew.svg %%DATADIR%%/BogaudioModules/res/Stack-dark.svg %%DATADIR%%/BogaudioModules/res/Stack-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Stack.svg %%DATADIR%%/BogaudioModules/res/Sums-dark.svg %%DATADIR%%/BogaudioModules/res/Sums-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Sums.svg %%DATADIR%%/BogaudioModules/res/Switch-dark.svg %%DATADIR%%/BogaudioModules/res/Switch-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Switch.svg %%DATADIR%%/BogaudioModules/res/Switch1616-dark.svg %%DATADIR%%/BogaudioModules/res/Switch1616-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Switch1616.svg %%DATADIR%%/BogaudioModules/res/Switch18-dark.svg %%DATADIR%%/BogaudioModules/res/Switch18-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Switch18.svg %%DATADIR%%/BogaudioModules/res/Switch44-dark.svg %%DATADIR%%/BogaudioModules/res/Switch44-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Switch44.svg %%DATADIR%%/BogaudioModules/res/Switch81-dark.svg %%DATADIR%%/BogaudioModules/res/Switch81-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Switch81.svg %%DATADIR%%/BogaudioModules/res/Switch88-dark.svg %%DATADIR%%/BogaudioModules/res/Switch88-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Switch88.svg %%DATADIR%%/BogaudioModules/res/Test-dark.svg %%DATADIR%%/BogaudioModules/res/Test-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Test.svg %%DATADIR%%/BogaudioModules/res/Test2-dark.svg %%DATADIR%%/BogaudioModules/res/Test2-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Test2.svg %%DATADIR%%/BogaudioModules/res/TestExpanderBase-dark.svg %%DATADIR%%/BogaudioModules/res/TestExpanderBase-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/TestExpanderBase.svg %%DATADIR%%/BogaudioModules/res/TestExpanderExtension-dark.svg %%DATADIR%%/BogaudioModules/res/TestExpanderExtension-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/TestExpanderExtension.svg %%DATADIR%%/BogaudioModules/res/TestGl-dark.svg %%DATADIR%%/BogaudioModules/res/TestGl-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/TestGl.svg %%DATADIR%%/BogaudioModules/res/TestVCF-dark.svg %%DATADIR%%/BogaudioModules/res/TestVCF-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/TestVCF.svg %%DATADIR%%/BogaudioModules/res/UMix-dark.svg %%DATADIR%%/BogaudioModules/res/UMix-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/UMix.svg %%DATADIR%%/BogaudioModules/res/Unison-dark.svg %%DATADIR%%/BogaudioModules/res/Unison-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Unison.svg %%DATADIR%%/BogaudioModules/res/VCA-dark.svg %%DATADIR%%/BogaudioModules/res/VCA-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/VCA.svg %%DATADIR%%/BogaudioModules/res/VCAmp-dark.svg %%DATADIR%%/BogaudioModules/res/VCAmp-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/VCAmp.svg %%DATADIR%%/BogaudioModules/res/VCF-dark.svg %%DATADIR%%/BogaudioModules/res/VCF-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/VCF.svg %%DATADIR%%/BogaudioModules/res/VCM-dark.svg %%DATADIR%%/BogaudioModules/res/VCM-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/VCM.svg %%DATADIR%%/BogaudioModules/res/VCO-dark.svg %%DATADIR%%/BogaudioModules/res/VCO-latif.svg %%DATADIR%%/BogaudioModules/res/VCO-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/VCO.svg %%DATADIR%%/BogaudioModules/res/VU-dark.svg %%DATADIR%%/BogaudioModules/res/VU-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/VU.svg %%DATADIR%%/BogaudioModules/res/Velo-dark.svg %%DATADIR%%/BogaudioModules/res/Velo-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Velo.svg %%DATADIR%%/BogaudioModules/res/Vish-dark.svg %%DATADIR%%/BogaudioModules/res/Vish-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Vish.svg %%DATADIR%%/BogaudioModules/res/Walk-dark.svg %%DATADIR%%/BogaudioModules/res/Walk-latif.svg %%DATADIR%%/BogaudioModules/res/Walk-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Walk.svg %%DATADIR%%/BogaudioModules/res/Walk2-dark.svg %%DATADIR%%/BogaudioModules/res/Walk2-latif.svg %%DATADIR%%/BogaudioModules/res/Walk2-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/Walk2.svg %%DATADIR%%/BogaudioModules/res/XCO-dark.svg %%DATADIR%%/BogaudioModules/res/XCO-latif.svg %%DATADIR%%/BogaudioModules/res/XCO-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/XCO.svg %%DATADIR%%/BogaudioModules/res/XFade-dark.svg %%DATADIR%%/BogaudioModules/res/XFade-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/XFade.svg %%DATADIR%%/BogaudioModules/res/button_18px_0.svg %%DATADIR%%/BogaudioModules/res/button_18px_1.svg %%DATADIR%%/BogaudioModules/res/button_18px_1_green.svg %%DATADIR%%/BogaudioModules/res/button_18px_1_orange.svg %%DATADIR%%/BogaudioModules/res/button_9px_0.svg %%DATADIR%%/BogaudioModules/res/button_9px_1.svg %%DATADIR%%/BogaudioModules/res/button_9px_1_green.svg %%DATADIR%%/BogaudioModules/res/fonts/audiowide.ttf %%DATADIR%%/BogaudioModules/res/fonts/inconsolata-bold.ttf %%DATADIR%%/BogaudioModules/res/fonts/inconsolata.ttf %%DATADIR%%/BogaudioModules/res/knob_16px-dark.svg %%DATADIR%%/BogaudioModules/res/knob_16px-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/knob_16px.svg %%DATADIR%%/BogaudioModules/res/knob_19px-dark.svg %%DATADIR%%/BogaudioModules/res/knob_19px-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/knob_19px.svg %%DATADIR%%/BogaudioModules/res/knob_26px-dark.svg %%DATADIR%%/BogaudioModules/res/knob_26px-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/knob_26px.svg %%DATADIR%%/BogaudioModules/res/knob_29px-dark.svg %%DATADIR%%/BogaudioModules/res/knob_29px-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/knob_29px.svg %%DATADIR%%/BogaudioModules/res/knob_38px-dark.svg %%DATADIR%%/BogaudioModules/res/knob_38px-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/knob_38px.svg %%DATADIR%%/BogaudioModules/res/knob_45px-dark.svg %%DATADIR%%/BogaudioModules/res/knob_45px-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/knob_45px.svg %%DATADIR%%/BogaudioModules/res/knob_68px-dark.svg %%DATADIR%%/BogaudioModules/res/knob_68px-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/knob_68px.svg %%DATADIR%%/BogaudioModules/res/port-dark.svg %%DATADIR%%/BogaudioModules/res/port-lowcontrast.svg %%DATADIR%%/BogaudioModules/res/port.svg %%DATADIR%%/BogaudioModules/res/slider_switch_2_14px_0.svg %%DATADIR%%/BogaudioModules/res/slider_switch_2_14px_1.svg %%DATADIR%%/Cardinal/res/AudioFile.svg +%%DATADIR%%/Cardinal/res/AudioToCVPitch.svg %%DATADIR%%/Cardinal/res/Blank.svg %%DATADIR%%/Cardinal/res/Carla.svg %%DATADIR%%/Cardinal/res/ExpanderMIDI.svg %%DATADIR%%/Cardinal/res/HostAudio.svg %%DATADIR%%/Cardinal/res/HostCV.svg %%DATADIR%%/Cardinal/res/HostMIDI.svg %%DATADIR%%/Cardinal/res/HostMIDICC.svg %%DATADIR%%/Cardinal/res/HostMIDIGate.svg %%DATADIR%%/Cardinal/res/HostMIDIMap.svg %%DATADIR%%/Cardinal/res/HostParameters.svg %%DATADIR%%/Cardinal/res/HostTime.svg %%DATADIR%%/Cardinal/res/Ildaeil.svg %%DATADIR%%/Cardinal/res/MPV.svg %%DATADIR%%/Cardinal/res/Miku/Miku.png %%DATADIR%%/Cardinal/res/glBars.svg +%%DATADIR%%/CatroModulo/res/CM-1.svg +%%DATADIR%%/CatroModulo/res/CM-10.svg +%%DATADIR%%/CatroModulo/res/CM-2.svg +%%DATADIR%%/CatroModulo/res/CM-3.svg +%%DATADIR%%/CatroModulo/res/CM-4.svg +%%DATADIR%%/CatroModulo/res/CM-5.svg +%%DATADIR%%/CatroModulo/res/CM-6.svg +%%DATADIR%%/CatroModulo/res/CM-7.svg +%%DATADIR%%/CatroModulo/res/CM-8.svg +%%DATADIR%%/CatroModulo/res/CM-9.svg +%%DATADIR%%/CatroModulo/res/CM-TS_small_0.svg +%%DATADIR%%/CatroModulo/res/CM-TS_small_1.svg +%%DATADIR%%/CatroModulo/res/CM-TS_small_3_0.svg +%%DATADIR%%/CatroModulo/res/CM-TS_small_3_1.svg +%%DATADIR%%/CatroModulo/res/CM-TS_small_3_2.svg +%%DATADIR%%/CatroModulo/res/CM-TS_smallh_0.svg +%%DATADIR%%/CatroModulo/res/CM-TS_smallh_1.svg +%%DATADIR%%/CatroModulo/res/CM-button_small_red.svg +%%DATADIR%%/CatroModulo/res/CM-button_small_red_dn.svg +%%DATADIR%%/CatroModulo/res/CM-indicator_bigeye.svg +%%DATADIR%%/CatroModulo/res/CM-input_bpm.svg +%%DATADIR%%/CatroModulo/res/CM-input_def.svg +%%DATADIR%%/CatroModulo/res/CM-input_def_tinybuttonL.svg +%%DATADIR%%/CatroModulo/res/CM-input_def_tinybuttonL_dn.svg +%%DATADIR%%/CatroModulo/res/CM-input_def_tinybuttonR.svg +%%DATADIR%%/CatroModulo/res/CM-input_def_tinybuttonR_dn.svg +%%DATADIR%%/CatroModulo/res/CM-input_ext.svg +%%DATADIR%%/CatroModulo/res/CM-input_small.svg +%%DATADIR%%/CatroModulo/res/CM-input_small_tinybuttonL.svg +%%DATADIR%%/CatroModulo/res/CM-input_small_tinybuttonL_dn.svg +%%DATADIR%%/CatroModulo/res/CM-knob_big_attn.svg +%%DATADIR%%/CatroModulo/res/CM-knob_big_def.svg +%%DATADIR%%/CatroModulo/res/CM-knob_big_offset.svg +%%DATADIR%%/CatroModulo/res/CM-knob_big_red.svg +%%DATADIR%%/CatroModulo/res/CM-knob_bigeye.svg +%%DATADIR%%/CatroModulo/res/CM-knob_huge_red.svg +%%DATADIR%%/CatroModulo/res/CM-knob_small_def.svg +%%DATADIR%%/CatroModulo/res/CM-knob_small_red.svg +%%DATADIR%%/CatroModulo/res/CM-ledbutton_mini_0.svg +%%DATADIR%%/CatroModulo/res/CM-ledbutton_mini_1.svg +%%DATADIR%%/CatroModulo/res/CM-output_bpm.svg +%%DATADIR%%/CatroModulo/res/CM-output_def.svg +%%DATADIR%%/CatroModulo/res/CM-output_def_dark.svg +%%DATADIR%%/CatroModulo/res/CM-output_small.svg +%%DATADIR%%/CatroModulo/res/CM-pot1_big.svg +%%DATADIR%%/CatroModulo/res/CM-pot1_huge.svg +%%DATADIR%%/CatroModulo/res/CM-pot1_small.svg +%%DATADIR%%/CatroModulo/res/CM-recbutton.svg +%%DATADIR%%/CatroModulo/res/CM-recbutton_dn.svg +%%DATADIR%%/CatroModulo/res/CM-slider_big_red.svg +%%DATADIR%%/CatroModulo/res/CM-slider_big_red_bg.svg +%%DATADIR%%/CatroModulo/res/CM-tryme_button.svg +%%DATADIR%%/CatroModulo/res/CM-tryme_button_dn.svg +%%DATADIR%%/CatroModulo/res/CM8_normoff.svg +%%DATADIR%%/CatroModulo/res/CM8_normon.svg +%%DATADIR%%/CatroModulo/res/CM9_ledinc.svg +%%DATADIR%%/CatroModulo/res/Segment7Standard.ttf %%DATADIR%%/ChowDSP/res/ChowChorus.svg %%DATADIR%%/ChowDSP/res/ChowDer.svg %%DATADIR%%/ChowDSP/res/ChowFDN.svg %%DATADIR%%/ChowDSP/res/ChowModal.svg %%DATADIR%%/ChowDSP/res/ChowPhaseFB.svg %%DATADIR%%/ChowDSP/res/ChowPhaseMod.svg %%DATADIR%%/ChowDSP/res/ChowPulse.svg %%DATADIR%%/ChowDSP/res/ChowRNN.svg %%DATADIR%%/ChowDSP/res/ChowTape.svg %%DATADIR%%/ChowDSP/res/ChowTapeChew.svg %%DATADIR%%/ChowDSP/res/ChowTapeCompression.svg %%DATADIR%%/ChowDSP/res/ChowTapeDegrade.svg %%DATADIR%%/ChowDSP/res/ChowTapeLoss.svg %%DATADIR%%/ChowDSP/res/Credit.svg %%DATADIR%%/ChowDSP/res/Warp.svg %%DATADIR%%/ChowDSP/res/WernerFilter.svg %%DATADIR%%/ChowDSP/res/components/Knob.svg %%DATADIR%%/ChowDSP/res/components/KnobLarge.svg %%DATADIR%%/ChowDSP/res/components/PinwheelRust_0.svg %%DATADIR%%/ChowDSP/res/components/PinwheelRust_1.svg %%DATADIR%%/ChowDSP/res/components/PinwheelTeal_0.svg %%DATADIR%%/ChowDSP/res/components/PinwheelTeal_1.svg %%DATADIR%%/ChowDSP/res/components/Port.svg %%DATADIR%%/ChowDSP/res/components/SmallKnob.svg %%DATADIR%%/ChowDSP/res/fonts/RobotoCondensed-Bold.ttf %%DATADIR%%/ComponentLibrary/ADAT.svg %%DATADIR%%/ComponentLibrary/BefacoBigKnob.svg %%DATADIR%%/ComponentLibrary/BefacoBigKnob_bg.svg %%DATADIR%%/ComponentLibrary/BefacoPush_0.svg %%DATADIR%%/ComponentLibrary/BefacoPush_1.svg %%DATADIR%%/ComponentLibrary/BefacoSlidePot.svg %%DATADIR%%/ComponentLibrary/BefacoSlidePotHandle.svg %%DATADIR%%/ComponentLibrary/BefacoSwitch.svg %%DATADIR%%/ComponentLibrary/BefacoSwitch_0.svg %%DATADIR%%/ComponentLibrary/BefacoSwitch_1.svg %%DATADIR%%/ComponentLibrary/BefacoSwitch_2.svg %%DATADIR%%/ComponentLibrary/BefacoTinyKnobWhite_bg.svg %%DATADIR%%/ComponentLibrary/BefacoTinyPointBlack.svg %%DATADIR%%/ComponentLibrary/CKD6_0.svg %%DATADIR%%/ComponentLibrary/CKD6_1.svg %%DATADIR%%/ComponentLibrary/CKSSThreeHorizontal_0.svg %%DATADIR%%/ComponentLibrary/CKSSThreeHorizontal_1.svg %%DATADIR%%/ComponentLibrary/CKSSThreeHorizontal_2.svg %%DATADIR%%/ComponentLibrary/CKSSThree_0.svg %%DATADIR%%/ComponentLibrary/CKSSThree_1.svg %%DATADIR%%/ComponentLibrary/CKSSThree_2.svg %%DATADIR%%/ComponentLibrary/CKSS_0.svg %%DATADIR%%/ComponentLibrary/CKSS_1.svg %%DATADIR%%/ComponentLibrary/CL1362.svg %%DATADIR%%/ComponentLibrary/Davies1900hBlack.svg %%DATADIR%%/ComponentLibrary/Davies1900hBlack_bg.svg %%DATADIR%%/ComponentLibrary/Davies1900hLargeBlack.svg %%DATADIR%%/ComponentLibrary/Davies1900hLargeBlack_bg.svg %%DATADIR%%/ComponentLibrary/Davies1900hLargeRed.svg %%DATADIR%%/ComponentLibrary/Davies1900hLargeRed_bg.svg %%DATADIR%%/ComponentLibrary/Davies1900hLargeWhite.svg %%DATADIR%%/ComponentLibrary/Davies1900hLargeWhite_bg.svg %%DATADIR%%/ComponentLibrary/Davies1900hRed.svg %%DATADIR%%/ComponentLibrary/Davies1900hRed_bg.svg %%DATADIR%%/ComponentLibrary/Davies1900hWhite.svg %%DATADIR%%/ComponentLibrary/Davies1900hWhite_bg.svg %%DATADIR%%/ComponentLibrary/LargeLight.svg %%DATADIR%%/ComponentLibrary/MIDI_DIN.svg %%DATADIR%%/ComponentLibrary/MediumLight.svg %%DATADIR%%/ComponentLibrary/NKK_0.svg %%DATADIR%%/ComponentLibrary/NKK_1.svg %%DATADIR%%/ComponentLibrary/NKK_2.svg %%DATADIR%%/ComponentLibrary/PB61303.svg %%DATADIR%%/ComponentLibrary/PJ301M.svg %%DATADIR%%/ComponentLibrary/PJ3410.svg %%DATADIR%%/ComponentLibrary/Plug.svg %%DATADIR%%/ComponentLibrary/PlugPort.svg %%DATADIR%%/ComponentLibrary/Rail.svg %%DATADIR%%/ComponentLibrary/Rogan1PBlue.svg %%DATADIR%%/ComponentLibrary/Rogan1PBlue_fg.svg %%DATADIR%%/ComponentLibrary/Rogan1PGreen.svg %%DATADIR%%/ComponentLibrary/Rogan1PGreen_fg.svg %%DATADIR%%/ComponentLibrary/Rogan1PRed.svg %%DATADIR%%/ComponentLibrary/Rogan1PRed_fg.svg %%DATADIR%%/ComponentLibrary/Rogan1PSBlue.svg %%DATADIR%%/ComponentLibrary/Rogan1PSBlue_fg.svg %%DATADIR%%/ComponentLibrary/Rogan1PSGreen.svg %%DATADIR%%/ComponentLibrary/Rogan1PSGreen_fg.svg %%DATADIR%%/ComponentLibrary/Rogan1PSRed.svg %%DATADIR%%/ComponentLibrary/Rogan1PSRed_fg.svg %%DATADIR%%/ComponentLibrary/Rogan1PSWhite.svg %%DATADIR%%/ComponentLibrary/Rogan1PSWhite_fg.svg %%DATADIR%%/ComponentLibrary/Rogan1PS_bg.svg %%DATADIR%%/ComponentLibrary/Rogan1PWhite.svg %%DATADIR%%/ComponentLibrary/Rogan1PWhite_fg.svg %%DATADIR%%/ComponentLibrary/Rogan1P_bg.svg %%DATADIR%%/ComponentLibrary/Rogan2PBlue.svg %%DATADIR%%/ComponentLibrary/Rogan2PBlue_fg.svg %%DATADIR%%/ComponentLibrary/Rogan2PGreen.svg %%DATADIR%%/ComponentLibrary/Rogan2PGreen_fg.svg %%DATADIR%%/ComponentLibrary/Rogan2PRed.svg %%DATADIR%%/ComponentLibrary/Rogan2PRed_fg.svg %%DATADIR%%/ComponentLibrary/Rogan2PSBlue.svg %%DATADIR%%/ComponentLibrary/Rogan2PSBlue_fg.svg %%DATADIR%%/ComponentLibrary/Rogan2PSGreen.svg %%DATADIR%%/ComponentLibrary/Rogan2PSGreen_fg.svg %%DATADIR%%/ComponentLibrary/Rogan2PSRed.svg %%DATADIR%%/ComponentLibrary/Rogan2PSRed_fg.svg %%DATADIR%%/ComponentLibrary/Rogan2PSWhite.svg %%DATADIR%%/ComponentLibrary/Rogan2PSWhite_fg.svg %%DATADIR%%/ComponentLibrary/Rogan2PS_bg.svg %%DATADIR%%/ComponentLibrary/Rogan2PWhite.svg %%DATADIR%%/ComponentLibrary/Rogan2PWhite_fg.svg %%DATADIR%%/ComponentLibrary/Rogan2P_bg.svg %%DATADIR%%/ComponentLibrary/Rogan2SGray.svg %%DATADIR%%/ComponentLibrary/Rogan2SGray_fg.svg %%DATADIR%%/ComponentLibrary/Rogan2S_bg.svg %%DATADIR%%/ComponentLibrary/Rogan3PBlue.svg %%DATADIR%%/ComponentLibrary/Rogan3PBlue_fg.svg %%DATADIR%%/ComponentLibrary/Rogan3PGreen.svg %%DATADIR%%/ComponentLibrary/Rogan3PGreen_fg.svg %%DATADIR%%/ComponentLibrary/Rogan3PRed.svg %%DATADIR%%/ComponentLibrary/Rogan3PRed_fg.svg %%DATADIR%%/ComponentLibrary/Rogan3PSBlue.svg %%DATADIR%%/ComponentLibrary/Rogan3PSBlue_fg.svg %%DATADIR%%/ComponentLibrary/Rogan3PSGreen.svg %%DATADIR%%/ComponentLibrary/Rogan3PSGreen_fg.svg %%DATADIR%%/ComponentLibrary/Rogan3PSRed.svg %%DATADIR%%/ComponentLibrary/Rogan3PSRed_fg.svg %%DATADIR%%/ComponentLibrary/Rogan3PSWhite.svg %%DATADIR%%/ComponentLibrary/Rogan3PSWhite_fg.svg %%DATADIR%%/ComponentLibrary/Rogan3PS_bg.svg %%DATADIR%%/ComponentLibrary/Rogan3PWhite.svg %%DATADIR%%/ComponentLibrary/Rogan3PWhite_fg.svg %%DATADIR%%/ComponentLibrary/Rogan3P_bg.svg %%DATADIR%%/ComponentLibrary/Rogan5PSGray.svg %%DATADIR%%/ComponentLibrary/Rogan5PSGray_fg.svg %%DATADIR%%/ComponentLibrary/Rogan5PS_bg.svg %%DATADIR%%/ComponentLibrary/Rogan6PSWhite.svg %%DATADIR%%/ComponentLibrary/Rogan6PSWhite_fg.svg %%DATADIR%%/ComponentLibrary/Rogan6PS_bg.svg %%DATADIR%%/ComponentLibrary/RoundBigBlackKnob.svg %%DATADIR%%/ComponentLibrary/RoundBigBlackKnob_bg.svg %%DATADIR%%/ComponentLibrary/RoundBlackKnob.svg %%DATADIR%%/ComponentLibrary/RoundBlackKnob_bg.svg %%DATADIR%%/ComponentLibrary/RoundHugeBlackKnob.svg %%DATADIR%%/ComponentLibrary/RoundHugeBlackKnob_bg.svg %%DATADIR%%/ComponentLibrary/RoundLargeBlackKnob.svg %%DATADIR%%/ComponentLibrary/RoundLargeBlackKnob_bg.svg %%DATADIR%%/ComponentLibrary/RoundSmallBlackKnob.svg %%DATADIR%%/ComponentLibrary/RoundSmallBlackKnob_bg.svg %%DATADIR%%/ComponentLibrary/ScrewBlack.svg %%DATADIR%%/ComponentLibrary/ScrewSilver.svg %%DATADIR%%/ComponentLibrary/SmallLight.svg %%DATADIR%%/ComponentLibrary/SynthTechAlco.svg %%DATADIR%%/ComponentLibrary/SynthTechAlco_bg.svg %%DATADIR%%/ComponentLibrary/TL1105_0.svg %%DATADIR%%/ComponentLibrary/TL1105_1.svg %%DATADIR%%/ComponentLibrary/TinyLight.svg %%DATADIR%%/ComponentLibrary/Trimpot.svg %%DATADIR%%/ComponentLibrary/Trimpot_bg.svg %%DATADIR%%/ComponentLibrary/USB_B.svg %%DATADIR%%/ComponentLibrary/VCVBezel.svg %%DATADIR%%/ComponentLibrary/VCVButton_0.svg %%DATADIR%%/ComponentLibrary/VCVButton_1.svg %%DATADIR%%/ComponentLibrary/VCVSlider.svg %%DATADIR%%/ComponentLibrary/VCVSliderHandle.svg %%DATADIR%%/ComponentLibrary/VCVSliderLight.svg %%DATADIR%%/DrumKit/res/BD9.svg %%DATADIR%%/DrumKit/res/Baronial.svg %%DATADIR%%/DrumKit/res/CR78.svg %%DATADIR%%/DrumKit/res/ClosedHH.svg %%DATADIR%%/DrumKit/res/DMX.svg %%DATADIR%%/DrumKit/res/Gnome.svg %%DATADIR%%/DrumKit/res/Marionette.svg %%DATADIR%%/DrumKit/res/OpenHH.svg %%DATADIR%%/DrumKit/res/SBD.svg %%DATADIR%%/DrumKit/res/Sequencer.svg %%DATADIR%%/DrumKit/res/Snare.svg %%DATADIR%%/DrumKit/res/Tomi.svg %%DATADIR%%/DrumKit/res/component/Knob.svg %%DATADIR%%/DrumKit/res/component/NovaMono.ttf %%DATADIR%%/DrumKit/res/component/Port.svg %%DATADIR%%/DrumKit/res/component/led-down-off.svg %%DATADIR%%/DrumKit/res/component/led-down-on.svg %%DATADIR%%/DrumKit/res/component/led-up-off.svg %%DATADIR%%/DrumKit/res/component/led-up-on.svg %%DATADIR%%/DrumKit/res/component/pad-off.svg %%DATADIR%%/DrumKit/res/component/pad-on.svg %%DATADIR%%/DrumKit/res/component/switch_0.svg %%DATADIR%%/DrumKit/res/component/switch_1.svg %%DATADIR%%/DrumKit/res/samples/bd9/01.raw %%DATADIR%%/DrumKit/res/samples/bd9/02.raw %%DATADIR%%/DrumKit/res/samples/bd9/03.raw %%DATADIR%%/DrumKit/res/samples/bd9/04.raw %%DATADIR%%/DrumKit/res/samples/bd9/05.raw %%DATADIR%%/DrumKit/res/samples/bd9/06.raw %%DATADIR%%/DrumKit/res/samples/bd9/07.raw %%DATADIR%%/DrumKit/res/samples/bd9/08.raw %%DATADIR%%/DrumKit/res/samples/bd9/09.raw %%DATADIR%%/DrumKit/res/samples/bd9/10.raw %%DATADIR%%/DrumKit/res/samples/bd9/11.raw %%DATADIR%%/DrumKit/res/samples/bd9/12.raw %%DATADIR%%/DrumKit/res/samples/bd9/13.raw %%DATADIR%%/DrumKit/res/samples/bd9/14.raw %%DATADIR%%/DrumKit/res/samples/bd9/15.raw %%DATADIR%%/DrumKit/res/samples/bd9/16.raw %%DATADIR%%/DrumKit/res/samples/closedhh/01.raw %%DATADIR%%/DrumKit/res/samples/closedhh/02.raw %%DATADIR%%/DrumKit/res/samples/closedhh/03.raw %%DATADIR%%/DrumKit/res/samples/closedhh/04.raw %%DATADIR%%/DrumKit/res/samples/closedhh/05.raw %%DATADIR%%/DrumKit/res/samples/closedhh/06.raw %%DATADIR%%/DrumKit/res/samples/closedhh/07.raw %%DATADIR%%/DrumKit/res/samples/closedhh/08.raw %%DATADIR%%/DrumKit/res/samples/closedhh/09.raw %%DATADIR%%/DrumKit/res/samples/closedhh/10.raw %%DATADIR%%/DrumKit/res/samples/closedhh/11.raw %%DATADIR%%/DrumKit/res/samples/closedhh/12.raw %%DATADIR%%/DrumKit/res/samples/closedhh/13.raw %%DATADIR%%/DrumKit/res/samples/closedhh/14.raw %%DATADIR%%/DrumKit/res/samples/closedhh/15.raw %%DATADIR%%/DrumKit/res/samples/cr78/01.raw %%DATADIR%%/DrumKit/res/samples/cr78/02.raw %%DATADIR%%/DrumKit/res/samples/cr78/03.raw %%DATADIR%%/DrumKit/res/samples/cr78/04.raw %%DATADIR%%/DrumKit/res/samples/cr78/05.raw %%DATADIR%%/DrumKit/res/samples/cr78/06.raw %%DATADIR%%/DrumKit/res/samples/cr78/07.raw %%DATADIR%%/DrumKit/res/samples/dmx/01.raw %%DATADIR%%/DrumKit/res/samples/dmx/02.raw %%DATADIR%%/DrumKit/res/samples/dmx/03.raw %%DATADIR%%/DrumKit/res/samples/dmx/04.raw %%DATADIR%%/DrumKit/res/samples/dmx/05.raw %%DATADIR%%/DrumKit/res/samples/dmx/06.raw %%DATADIR%%/DrumKit/res/samples/dmx/07.raw %%DATADIR%%/DrumKit/res/samples/dmx/08.raw %%DATADIR%%/DrumKit/res/samples/dmx/09.raw %%DATADIR%%/DrumKit/res/samples/dmx/10.raw %%DATADIR%%/DrumKit/res/samples/dmx/11.raw %%DATADIR%%/DrumKit/res/samples/dmx/12.raw %%DATADIR%%/DrumKit/res/samples/kick/01.raw %%DATADIR%%/DrumKit/res/samples/kick/02.raw %%DATADIR%%/DrumKit/res/samples/openhh/01.raw %%DATADIR%%/DrumKit/res/samples/openhh/02.raw %%DATADIR%%/DrumKit/res/samples/openhh/03.raw %%DATADIR%%/DrumKit/res/samples/openhh/04.raw %%DATADIR%%/DrumKit/res/samples/openhh/05.raw %%DATADIR%%/DrumKit/res/samples/openhh/06.raw %%DATADIR%%/DrumKit/res/samples/openhh/07.raw %%DATADIR%%/DrumKit/res/samples/openhh/08.raw %%DATADIR%%/DrumKit/res/samples/openhh/09.raw %%DATADIR%%/DrumKit/res/samples/openhh/10.raw %%DATADIR%%/DrumKit/res/samples/openhh/11.raw %%DATADIR%%/DrumKit/res/samples/openhh/12.raw %%DATADIR%%/DrumKit/res/samples/openhh/13.raw %%DATADIR%%/DrumKit/res/samples/openhh/14.raw %%DATADIR%%/DrumKit/res/samples/snare/01.raw %%DATADIR%%/DrumKit/res/samples/snare/02.raw %%DATADIR%%/DrumKit/res/samples/snare/03.raw %%DATADIR%%/DrumKit/res/samples/snare/04.raw %%DATADIR%%/DrumKit/res/samples/snare/05.raw %%DATADIR%%/DrumKit/res/samples/snare/06.raw %%DATADIR%%/DrumKit/res/samples/snare/07.raw %%DATADIR%%/DrumKit/res/samples/snare/08.raw %%DATADIR%%/DrumKit/res/samples/snare/09.raw %%DATADIR%%/DrumKit/res/samples/snare/10.raw %%DATADIR%%/DrumKit/res/samples/snare/11.raw %%DATADIR%%/DrumKit/res/samples/snare/12.raw %%DATADIR%%/DrumKit/res/samples/snare/13.raw %%DATADIR%%/DrumKit/res/samples/snare/14.raw %%DATADIR%%/DrumKit/res/samples/snare/15.raw %%DATADIR%%/DrumKit/res/samples/snare/16.raw %%DATADIR%%/DrumKit/res/samples/tomi/01.raw %%DATADIR%%/DrumKit/res/samples/tomi/02.raw %%DATADIR%%/DrumKit/res/samples/tomi/03.raw %%DATADIR%%/DrumKit/res/samples/tomi/04.raw %%DATADIR%%/DrumKit/res/samples/tomi/05.raw %%DATADIR%%/DrumKit/res/samples/tomi/06.raw %%DATADIR%%/DrumKit/res/samples/tomi/07.raw %%DATADIR%%/DrumKit/res/samples/tomi/08.raw %%DATADIR%%/DrumKit/res/samples/tomi/09.raw %%DATADIR%%/DrumKit/res/samples/tomi/10.raw %%DATADIR%%/DrumKit/res/samples/tomi/11.raw %%DATADIR%%/DrumKit/res/samples/tomi/12.raw %%DATADIR%%/DrumKit/res/samples/tomi/13.raw %%DATADIR%%/DrumKit/res/samples/tomi/14.raw %%DATADIR%%/ESeries/res/E340.svg %%DATADIR%%/ExpertSleepers-Encoders/res/8CV.svg %%DATADIR%%/ExpertSleepers-Encoders/res/8GT.svg %%DATADIR%%/ExpertSleepers-Encoders/res/Calibrator.svg %%DATADIR%%/ExpertSleepers-Encoders/res/ES40.svg %%DATADIR%%/ExpertSleepers-Encoders/res/ES5.svg %%DATADIR%%/ExpertSleepers-Encoders/res/SMUX.svg %%DATADIR%%/Extratone/res/Darwinism.svg %%DATADIR%%/Extratone/res/HalluciMemory.svg %%DATADIR%%/Extratone/res/Ichneumonid.svg %%DATADIR%%/Extratone/res/Meganeura.svg %%DATADIR%%/Extratone/res/Mesoglea.svg %%DATADIR%%/Extratone/res/Mesoglea2.svg %%DATADIR%%/Extratone/res/Mesohyl.svg %%DATADIR%%/Extratone/res/Mesohyl.svg.2021_10_03_10_40_51.0.svg %%DATADIR%%/Extratone/res/Modulo.svg %%DATADIR%%/Extratone/res/Opabinia.svg %%DATADIR%%/Extratone/res/OpabiniaPink.svg %%DATADIR%%/Extratone/res/OpabiniaRed.svg %%DATADIR%%/Extratone/res/Pureneura.svg %%DATADIR%%/Extratone/res/Puzzlebox.svg %%DATADIR%%/Extratone/res/RoundBlackKnob.svg %%DATADIR%%/Extratone/res/Splitterburst.svg %%DATADIR%%/Extratone/res/XTRTN.svg %%DATADIR%%/Extratone/res/XtrtnBlank.svg %%DATADIR%%/Extratone/res/XtrtnKnob.svg %%DATADIR%%/Extratone/res/XtrtnMedKnob.svg %%DATADIR%%/Extratone/res/XtrtnSmallKnob.svg %%DATADIR%%/Extratone/res/screw.svg %%DATADIR%%/Extratone/res/screw2.svg %%DATADIR%%/Extratone/res/screw3.svg %%DATADIR%%/Extratone/res/wasp.svg %%DATADIR%%/FehlerFabrik/res/Arpanet.svg %%DATADIR%%/FehlerFabrik/res/Aspect.svg %%DATADIR%%/FehlerFabrik/res/Botzinger.svg %%DATADIR%%/FehlerFabrik/res/Chi.svg %%DATADIR%%/FehlerFabrik/res/Components/CKSS_0.svg %%DATADIR%%/FehlerFabrik/res/Components/CKSS_1.svg %%DATADIR%%/FehlerFabrik/res/Components/FF01JK.svg %%DATADIR%%/FehlerFabrik/res/Components/FF06B.svg %%DATADIR%%/FehlerFabrik/res/Components/FF06G.svg %%DATADIR%%/FehlerFabrik/res/Components/FF08G.svg %%DATADIR%%/FehlerFabrik/res/Components/FF10B.svg %%DATADIR%%/FehlerFabrik/res/Components/FF10G.svg %%DATADIR%%/FehlerFabrik/res/Components/FF15G.svg %%DATADIR%%/FehlerFabrik/res/Components/FF20G.svg %%DATADIR%%/FehlerFabrik/res/Components/FFDPW_0.svg %%DATADIR%%/FehlerFabrik/res/Components/FFDPW_1.svg %%DATADIR%%/FehlerFabrik/res/Components/FFHexScrew.svg %%DATADIR%%/FehlerFabrik/res/Components/HCKSS_0.svg %%DATADIR%%/FehlerFabrik/res/Components/HCKSS_1.svg %%DATADIR%%/FehlerFabrik/res/Fax.svg %%DATADIR%%/FehlerFabrik/res/Lilt.svg %%DATADIR%%/FehlerFabrik/res/Luigi.svg %%DATADIR%%/FehlerFabrik/res/Monte.svg %%DATADIR%%/FehlerFabrik/res/Nova.svg %%DATADIR%%/FehlerFabrik/res/PSIOP.svg %%DATADIR%%/FehlerFabrik/res/Planck.svg %%DATADIR%%/FehlerFabrik/res/Rasoir.svg %%DATADIR%%/FehlerFabrik/res/Sigma.svg +%%DATADIR%%/Fundamental/presets/Quantizer/00_Ionian (Major).vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/01_Dorian.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/02_Phrygian.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/03_Lydian.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/04_Mixolydian.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/05_Aeolian (Minor).vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/06_Locrian.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/07_Aeolian 7 (Harmonic Minor).vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/08_Locrian 6.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/09_Ionian #5.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/10_Dorian #4.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/11_Phrygian 3.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/12_Lydian #2.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/13_Locrian b4 bb7.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/14_Aeolian 6 7 (Melodic Minor).vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/15_Phrygian 6.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/16_Lydian #5.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/17_Lydian b7.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/18_Aeolian 3.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/19_Locrian 2.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/20_Locrian b4.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/21_Bebop Dominant.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/22_Bebop Major.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/23_Bebop Minor.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/24_Bebop Melodic Minor.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/25_Blues Major.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/26_Blues Minor.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/27_Blues Diminished.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/28_Blues Pentatonic.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/29_Blues Rock'n'Roll.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/30_Byzantine.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/31_Hungarian Minor.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/32_Hungarian Gypsy.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/33_Spanish Gypsy.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/34_Major Pentatonic.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/35_Neutral Pentatonic.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/36_Rock Pentatonic.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/37_Scottish Pentatonic.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/38_Minor Pentatonic.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/39_Whole.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/40_Whole-Half.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/41_Half-Whole.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/42_Augmented.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/43_Byzantine.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/44_Chromatic.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/45_Enigmatic (Ascending).vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/46_Enigmatic (Descending).vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/47_Hungarian Major.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/48_Hungarian Minor.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/49_Neapolitan Major.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/50_Neapolitan Minor.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/51_Overtone.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/52_Prometheus.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/53_Prometheus Neapolitan.vcvm +%%DATADIR%%/Fundamental/presets/Quantizer/54_Spanish 8 Tone.vcvm +%%DATADIR%%/Fundamental/res/8vert.svg +%%DATADIR%%/Fundamental/res/ADSR.svg +%%DATADIR%%/Fundamental/res/Delay.svg +%%DATADIR%%/Fundamental/res/LFO.svg +%%DATADIR%%/Fundamental/res/Merge.svg +%%DATADIR%%/Fundamental/res/MidSide.svg +%%DATADIR%%/Fundamental/res/Mixer.svg +%%DATADIR%%/Fundamental/res/Mutes.svg +%%DATADIR%%/Fundamental/res/Noise.svg +%%DATADIR%%/Fundamental/res/Octave.svg +%%DATADIR%%/Fundamental/res/Pulses.svg +%%DATADIR%%/Fundamental/res/Quantizer.svg +%%DATADIR%%/Fundamental/res/Random.svg +%%DATADIR%%/Fundamental/res/SEQ3.svg +%%DATADIR%%/Fundamental/res/Scope.svg +%%DATADIR%%/Fundamental/res/SequentialSwitch1.svg +%%DATADIR%%/Fundamental/res/SequentialSwitch2.svg +%%DATADIR%%/Fundamental/res/Split.svg +%%DATADIR%%/Fundamental/res/Sum.svg +%%DATADIR%%/Fundamental/res/VCA-1.svg +%%DATADIR%%/Fundamental/res/VCA.svg +%%DATADIR%%/Fundamental/res/VCF.svg +%%DATADIR%%/Fundamental/res/VCMixer.svg +%%DATADIR%%/Fundamental/res/VCO.svg +%%DATADIR%%/Fundamental/res/WTLFO.svg +%%DATADIR%%/Fundamental/res/WTVCO.svg +%%DATADIR%%/Fundamental/res/components/ADSR-bg.svg +%%DATADIR%%/Fundamental/res/components/Scope-bg.svg +%%DATADIR%%/Fundamental/res/components/button-off.svg +%%DATADIR%%/Fundamental/res/components/button-on.svg +%%DATADIR%%/Fundamental/res/components/knob-marker-small.svg +%%DATADIR%%/Fundamental/res/components/knob-marker.svg +%%DATADIR%%/Fundamental/res/components/knob-small.svg +%%DATADIR%%/Fundamental/res/components/knob.svg +%%DATADIR%%/Fundamental/res/components/port.svg %%DATADIR%%/GlueTheGiant/res/BusDepot.svg %%DATADIR%%/GlueTheGiant/res/BusDepot_Night.svg %%DATADIR%%/GlueTheGiant/res/BusRoute.svg %%DATADIR%%/GlueTheGiant/res/BusRoute_Night.svg %%DATADIR%%/GlueTheGiant/res/EnterBus.svg %%DATADIR%%/GlueTheGiant/res/EnterBus_Night.svg %%DATADIR%%/GlueTheGiant/res/ExitBus.svg %%DATADIR%%/GlueTheGiant/res/ExitBus_Night.svg %%DATADIR%%/GlueTheGiant/res/GigBus.svg %%DATADIR%%/GlueTheGiant/res/GigBus_Night.svg %%DATADIR%%/GlueTheGiant/res/MetroCityBus.svg %%DATADIR%%/GlueTheGiant/res/MetroCityBus_Night.svg %%DATADIR%%/GlueTheGiant/res/MiniBus.svg %%DATADIR%%/GlueTheGiant/res/MiniBus_Night.svg %%DATADIR%%/GlueTheGiant/res/Road.svg %%DATADIR%%/GlueTheGiant/res/Road_Night.svg %%DATADIR%%/GlueTheGiant/res/SchoolBus.svg %%DATADIR%%/GlueTheGiant/res/SchoolBus_Night.svg %%DATADIR%%/GlueTheGiant/res/components/BlackButton_0.svg %%DATADIR%%/GlueTheGiant/res/components/BlackButton_1.svg %%DATADIR%%/GlueTheGiant/res/components/BlackButton_Night_0.svg %%DATADIR%%/GlueTheGiant/res/components/BlackButton_Night_1.svg %%DATADIR%%/GlueTheGiant/res/components/BlackKnob.svg %%DATADIR%%/GlueTheGiant/res/components/BlackKnob_Night.svg %%DATADIR%%/GlueTheGiant/res/components/BlackTinyButton_0.svg %%DATADIR%%/GlueTheGiant/res/components/BlackTinyButton_1.svg %%DATADIR%%/GlueTheGiant/res/components/BlackTinyButton_Night_0.svg %%DATADIR%%/GlueTheGiant/res/components/BlackTinyButton_Night_1.svg %%DATADIR%%/GlueTheGiant/res/components/BlackTinyKnob.svg %%DATADIR%%/GlueTheGiant/res/components/BlackTinyKnob_Night.svg %%DATADIR%%/GlueTheGiant/res/components/BlueKnob.svg %%DATADIR%%/GlueTheGiant/res/components/BlueKnob_Night.svg %%DATADIR%%/GlueTheGiant/res/components/BlueTinyKnob.svg %%DATADIR%%/GlueTheGiant/res/components/BlueTinyKnob_Night.svg %%DATADIR%%/GlueTheGiant/res/components/GrayKnob.svg %%DATADIR%%/GlueTheGiant/res/components/GrayKnob_Night.svg %%DATADIR%%/GlueTheGiant/res/components/GrayTinyKnob.svg %%DATADIR%%/GlueTheGiant/res/components/GrayTinyKnob_Night.svg %%DATADIR%%/GlueTheGiant/res/components/KeyPort.svg %%DATADIR%%/GlueTheGiant/res/components/KeyPort_Night.svg %%DATADIR%%/GlueTheGiant/res/components/NutPort.svg %%DATADIR%%/GlueTheGiant/res/components/NutPort_Night.svg %%DATADIR%%/GlueTheGiant/res/components/OrangeKnob.svg %%DATADIR%%/GlueTheGiant/res/components/OrangeKnob_Night.svg %%DATADIR%%/GlueTheGiant/res/components/OrangeTinyKnob.svg %%DATADIR%%/GlueTheGiant/res/components/OrangeTinyKnob_Night.svg %%DATADIR%%/GlueTheGiant/res/components/RedKnob.svg %%DATADIR%%/GlueTheGiant/res/components/RedKnob_Night.svg %%DATADIR%%/GlueTheGiant/res/components/RedTinyKnob.svg %%DATADIR%%/GlueTheGiant/res/components/RedTinyKnob_Night.svg %%DATADIR%%/GlueTheGiant/res/components/ScrewUp.svg %%DATADIR%%/GlueTheGiant/res/components/ScrewUp_Night.svg %%DATADIR%%/GlueTheGiant/res/fonts/DSEG7-Classic-MINI/DSEG7ClassicMini-Bold.ttf %%DATADIR%%/GlueTheGiant/res/fonts/DSEG7-Classic-MINI/DSEG7ClassicMini-Regular.ttf +%%DATADIR%%/GoodSheperd/res/Holzschnabel.svg +%%DATADIR%%/GoodSheperd/res/Hurdle.svg +%%DATADIR%%/GoodSheperd/res/SEQ3st.svg +%%DATADIR%%/GoodSheperd/res/Seqtrol.svg +%%DATADIR%%/GoodSheperd/res/Stable16.svg +%%DATADIR%%/GoodSheperd/res/Stall.svg +%%DATADIR%%/GoodSheperd/res/Switch1.svg +%%DATADIR%%/GoodSheperd/res/components/ArrowDown_0.svg +%%DATADIR%%/GoodSheperd/res/components/ArrowDown_1.svg +%%DATADIR%%/GoodSheperd/res/components/ArrowLeft_0.svg +%%DATADIR%%/GoodSheperd/res/components/ArrowLeft_1.svg +%%DATADIR%%/GoodSheperd/res/components/ArrowRight_0.svg +%%DATADIR%%/GoodSheperd/res/components/ArrowRight_1.svg +%%DATADIR%%/GoodSheperd/res/components/ArrowUp_0.svg +%%DATADIR%%/GoodSheperd/res/components/ArrowUp_1.svg +%%DATADIR%%/GoodSheperd/res/components/SquareSwitch_0.svg +%%DATADIR%%/GoodSheperd/res/components/SquareSwitch_1.svg +%%DATADIR%%/GrandeModular/presets/LFO4/01_Golden_ratio-1.618x.vcvm +%%DATADIR%%/GrandeModular/presets/LFO4/02_Silver_ratio-2.414x.vcvm +%%DATADIR%%/GrandeModular/presets/LFO4/03_Bronze_ratio-3.303x.vcvm +%%DATADIR%%/GrandeModular/presets/LFO4/04_Copper_ratio-4.236x.vcvm +%%DATADIR%%/GrandeModular/presets/LFO4/05_Nickel_ratio-5.193x.vcvm %%DATADIR%%/GrandeModular/presets/Quant/01_Chromatic.vcvm %%DATADIR%%/GrandeModular/presets/Quant/02_Major.vcvm %%DATADIR%%/GrandeModular/presets/Quant/03_Dorian.vcvm %%DATADIR%%/GrandeModular/presets/Quant/04_Phrygian.vcvm %%DATADIR%%/GrandeModular/presets/Quant/05_Lydian.vcvm %%DATADIR%%/GrandeModular/presets/Quant/06_Mixolydian.vcvm %%DATADIR%%/GrandeModular/presets/Quant/07_Aeolian.vcvm %%DATADIR%%/GrandeModular/presets/Quant/08_Locrian.vcvm %%DATADIR%%/GrandeModular/presets/Quant/09_Harmonic_Minor.vcvm %%DATADIR%%/GrandeModular/presets/Quant/10_Melodic_Minor.vcvm %%DATADIR%%/GrandeModular/presets/Quant/11_Major_Pentatonic.vcvm %%DATADIR%%/GrandeModular/presets/Quant/12_Minor_Pentatonic.vcvm %%DATADIR%%/GrandeModular/presets/Quant/13_Blues.vcvm %%DATADIR%%/GrandeModular/presets/Quant/14_Whole_Tone.vcvm %%DATADIR%%/GrandeModular/presets/Scale/01_Chromatic.vcvm %%DATADIR%%/GrandeModular/presets/Scale/02_Major.vcvm %%DATADIR%%/GrandeModular/presets/Scale/03_Dorian.vcvm %%DATADIR%%/GrandeModular/presets/Scale/04_Phrygian.vcvm %%DATADIR%%/GrandeModular/presets/Scale/05_Lydian.vcvm %%DATADIR%%/GrandeModular/presets/Scale/06_Mixolydian.vcvm %%DATADIR%%/GrandeModular/presets/Scale/07_Aeolian.vcvm %%DATADIR%%/GrandeModular/presets/Scale/08_Locrian.vcvm %%DATADIR%%/GrandeModular/presets/Scale/09_Harmonic_Minor.vcvm %%DATADIR%%/GrandeModular/presets/Scale/10_Melodic_Minor.vcvm %%DATADIR%%/GrandeModular/presets/Scale/11_Major_Pentatonic.vcvm %%DATADIR%%/GrandeModular/presets/Scale/12_Minor_Pentatonic.vcvm %%DATADIR%%/GrandeModular/presets/Scale/13_Blues.vcvm %%DATADIR%%/GrandeModular/presets/Scale/14_Whole_Tone.vcvm %%DATADIR%%/GrandeModular/res/BlackButton0.svg %%DATADIR%%/GrandeModular/res/BlackButton1.svg %%DATADIR%%/GrandeModular/res/Clip.svg %%DATADIR%%/GrandeModular/res/LFO3.svg +%%DATADIR%%/GrandeModular/res/LFO4.svg +%%DATADIR%%/GrandeModular/res/Logic.svg %%DATADIR%%/GrandeModular/res/MediumLightFlat.svg %%DATADIR%%/GrandeModular/res/Merge8.svg %%DATADIR%%/GrandeModular/res/MergeSplit4.svg %%DATADIR%%/GrandeModular/res/MicrotonalChords.svg %%DATADIR%%/GrandeModular/res/MicrotonalNotes.svg %%DATADIR%%/GrandeModular/res/NoteMT.svg +%%DATADIR%%/GrandeModular/res/Peak.svg %%DATADIR%%/GrandeModular/res/PetiteLight.svg %%DATADIR%%/GrandeModular/res/PetiteLightBot.svg %%DATADIR%%/GrandeModular/res/PetiteLightFlat.svg %%DATADIR%%/GrandeModular/res/PetiteLightTop.svg %%DATADIR%%/GrandeModular/res/PolyMergeResplit.svg %%DATADIR%%/GrandeModular/res/PolySplit.svg +%%DATADIR%%/GrandeModular/res/Push.svg %%DATADIR%%/GrandeModular/res/Quant.svg %%DATADIR%%/GrandeModular/res/QuantIntervals.svg %%DATADIR%%/GrandeModular/res/QuantMT.svg %%DATADIR%%/GrandeModular/res/RectButton0.svg %%DATADIR%%/GrandeModular/res/RectButton1.svg +%%DATADIR%%/GrandeModular/res/RectButton1dim.svg %%DATADIR%%/GrandeModular/res/SampleDelays.svg %%DATADIR%%/GrandeModular/res/Scale.svg %%DATADIR%%/GrandeModular/res/SmallLEDButton0.svg %%DATADIR%%/GrandeModular/res/SmallLEDButton1.svg %%DATADIR%%/GrandeModular/res/SmallLightBot.svg +%%DATADIR%%/GrandeModular/res/SmallLightFlat.svg %%DATADIR%%/GrandeModular/res/SmallLightTop.svg %%DATADIR%%/GrandeModular/res/Split8.svg +%%DATADIR%%/GrandeModular/res/SquareButton0.svg +%%DATADIR%%/GrandeModular/res/SquareButton1.svg +%%DATADIR%%/GrandeModular/res/SquareButton1dim.svg %%DATADIR%%/GrandeModular/res/Tails.svg %%DATADIR%%/GrandeModular/res/TinyLightFlat.svg %%DATADIR%%/GrandeModular/res/TriangleLEDButton0.svg %%DATADIR%%/GrandeModular/res/TriangleLEDButton1.svg %%DATADIR%%/GrandeModular/res/TriangleLightFlat.svg %%DATADIR%%/GrandeModular/res/VCA3.svg +%%DATADIR%%/GrandeModular/res/VCA4.svg %%DATADIR%%/GrandeModular/res/VarSampleDelays.svg %%DATADIR%%/GrandeModular/res/WhiteButton0.svg %%DATADIR%%/GrandeModular/res/WhiteButton1.svg +%%DATADIR%%/HamptonHarmonics/res/Arp.svg +%%DATADIR%%/HamptonHarmonics/res/PixelOperator.ttf +%%DATADIR%%/HamptonHarmonics/res/Progress.svg +%%DATADIR%%/HamptonHarmonics/res/davies_gray_medium.svg +%%DATADIR%%/HamptonHarmonics/res/davies_maroon_large.svg +%%DATADIR%%/HamptonHarmonics/res/davies_maroon_medium.svg %%DATADIR%%/HetrickCV/res/1OpChaos.svg %%DATADIR%%/HetrickCV/res/2OpChaos.svg %%DATADIR%%/HetrickCV/res/2To4.svg %%DATADIR%%/HetrickCV/res/3OpChaos.svg %%DATADIR%%/HetrickCV/res/ASR.svg %%DATADIR%%/HetrickCV/res/AToD.svg %%DATADIR%%/HetrickCV/res/BinaryGate.svg %%DATADIR%%/HetrickCV/res/BinaryNoise.svg %%DATADIR%%/HetrickCV/res/Bitshift.svg %%DATADIR%%/HetrickCV/res/Blanks/BlankPanel1.svg %%DATADIR%%/HetrickCV/res/Blanks/BlankPanel2.svg %%DATADIR%%/HetrickCV/res/Blanks/BlankPanel3.svg %%DATADIR%%/HetrickCV/res/Blanks/BlankPanel5.svg %%DATADIR%%/HetrickCV/res/Blanks/BlankPanel6.svg %%DATADIR%%/HetrickCV/res/Blanks/BlankPanel7.svg %%DATADIR%%/HetrickCV/res/Blanks/BlankPanel8.svg %%DATADIR%%/HetrickCV/res/Boolean3.svg %%DATADIR%%/HetrickCV/res/CKSS_rot_0.svg %%DATADIR%%/HetrickCV/res/CKSS_rot_1.svg %%DATADIR%%/HetrickCV/res/ChaoticAttractors.svg %%DATADIR%%/HetrickCV/res/ClockedNoise.svg %%DATADIR%%/HetrickCV/res/Comparator.svg %%DATADIR%%/HetrickCV/res/Contrast.svg %%DATADIR%%/HetrickCV/res/Crackle.svg %%DATADIR%%/HetrickCV/res/DToA.svg %%DATADIR%%/HetrickCV/res/DataCompander.svg %%DATADIR%%/HetrickCV/res/Delta.svg %%DATADIR%%/HetrickCV/res/Dust.svg %%DATADIR%%/HetrickCV/res/Exponent.svg %%DATADIR%%/HetrickCV/res/FBSineChaos.svg %%DATADIR%%/HetrickCV/res/FlipFlop.svg %%DATADIR%%/HetrickCV/res/FlipPan.svg %%DATADIR%%/HetrickCV/res/GateJunction.svg %%DATADIR%%/HetrickCV/res/Gingerbread.svg %%DATADIR%%/HetrickCV/res/LogicCombiner.svg %%DATADIR%%/HetrickCV/res/LogicInverter.svg %%DATADIR%%/HetrickCV/res/Logos/hetrickcvlogo.svg %%DATADIR%%/HetrickCV/res/MidSide.svg %%DATADIR%%/HetrickCV/res/MinMax.svg %%DATADIR%%/HetrickCV/res/RandomGates.svg %%DATADIR%%/HetrickCV/res/Rotator.svg %%DATADIR%%/HetrickCV/res/Rungler.svg %%DATADIR%%/HetrickCV/res/Scanner.svg %%DATADIR%%/HetrickCV/res/TrigShaper.svg %%DATADIR%%/HetrickCV/res/Waveshape.svg %%DATADIR%%/HetrickCV/res/XYToPolar.svg %%DATADIR%%/ImpromptuModular/res/AdvancedGateDetails.svg %%DATADIR%%/ImpromptuModular/res/FoundryBlockDiag.svg %%DATADIR%%/ImpromptuModular/res/PhraseSeq16BlockDiag.svg %%DATADIR%%/ImpromptuModular/res/comp/AqLedBg.svg %%DATADIR%%/ImpromptuModular/res/comp/CvPad.svg %%DATADIR%%/ImpromptuModular/res/comp/KeyboardBig.svg %%DATADIR%%/ImpromptuModular/res/comp/KeyboardSmall.svg %%DATADIR%%/ImpromptuModular/res/comp/TactPad.svg %%DATADIR%%/ImpromptuModular/res/comp/complib/MediumLargeLight.svg %%DATADIR%%/ImpromptuModular/res/comp/complib/Rogan1.svg %%DATADIR%%/ImpromptuModular/res/comp/complib/Rogan1PSWhite_fg.svg %%DATADIR%%/ImpromptuModular/res/comp/complib/Rogan1PWhite_fg.svg %%DATADIR%%/ImpromptuModular/res/comp/complib/Rogan1S.svg %%DATADIR%%/ImpromptuModular/res/comp/complib/Trimpot.svg %%DATADIR%%/ImpromptuModular/res/comp/complib/Trimpot_bg.svg %%DATADIR%%/ImpromptuModular/res/fonts/Segment14.ttf %%DATADIR%%/ImpromptuModular/res/fonts/Sniglet-Regular.ttf %%DATADIR%%/ImpromptuModular/res/panels/AdaptiveQuantizer.svg %%DATADIR%%/ImpromptuModular/res/panels/BigButtonSeq.svg %%DATADIR%%/ImpromptuModular/res/panels/BigButtonSeq2.svg %%DATADIR%%/ImpromptuModular/res/panels/BlankPanel.svg %%DATADIR%%/ImpromptuModular/res/panels/ChordKey.svg %%DATADIR%%/ImpromptuModular/res/panels/ChordKeyExpander.svg %%DATADIR%%/ImpromptuModular/res/panels/Clkd.svg %%DATADIR%%/ImpromptuModular/res/panels/Clocked.svg %%DATADIR%%/ImpromptuModular/res/panels/ClockedExpander.svg %%DATADIR%%/ImpromptuModular/res/panels/CvPad.svg %%DATADIR%%/ImpromptuModular/res/panels/Foundry.svg %%DATADIR%%/ImpromptuModular/res/panels/FoundryExpander.svg %%DATADIR%%/ImpromptuModular/res/panels/FourView.svg %%DATADIR%%/ImpromptuModular/res/panels/GateSeq64.svg %%DATADIR%%/ImpromptuModular/res/panels/GateSeq64Expander.svg %%DATADIR%%/ImpromptuModular/res/panels/Hotkey.svg %%DATADIR%%/ImpromptuModular/res/panels/Part.svg %%DATADIR%%/ImpromptuModular/res/panels/PhraseSeq16.svg %%DATADIR%%/ImpromptuModular/res/panels/PhraseSeq32.svg %%DATADIR%%/ImpromptuModular/res/panels/PhraseSeqExpander.svg %%DATADIR%%/ImpromptuModular/res/panels/ProbKey.svg %%DATADIR%%/ImpromptuModular/res/panels/SemiModular.svg +%%DATADIR%%/ImpromptuModular/res/panels/Sygen.svg %%DATADIR%%/ImpromptuModular/res/panels/Tact.svg %%DATADIR%%/ImpromptuModular/res/panels/Tact1.svg %%DATADIR%%/ImpromptuModular/res/panels/TactG.svg %%DATADIR%%/ImpromptuModular/res/panels/TwelveKey.svg +%%DATADIR%%/ImpromptuModular/res/panels/Variations.svg %%DATADIR%%/ImpromptuModular/res/panels/WriteSeq32.svg %%DATADIR%%/ImpromptuModular/res/panels/WriteSeq64.svg %%DATADIR%%/JW-Modules/res/Add5.svg %%DATADIR%%/JW-Modules/res/BlankPanel1hp.svg %%DATADIR%%/JW-Modules/res/BlankPanelLarge.svg %%DATADIR%%/JW-Modules/res/BlankPanelMedium.svg %%DATADIR%%/JW-Modules/res/BlankPanelSmall.svg %%DATADIR%%/JW-Modules/res/BouncyBalls.svg %%DATADIR%%/JW-Modules/res/Bowl-food.svg %%DATADIR%%/JW-Modules/res/Bowl-no-food.svg %%DATADIR%%/JW-Modules/res/CDM.svg %%DATADIR%%/JW-Modules/res/Cat.svg %%DATADIR%%/JW-Modules/res/CoolBreeze.svg %%DATADIR%%/JW-Modules/res/D1v1de.svg %%DATADIR%%/JW-Modules/res/DejaVuSansMono.ttf %%DATADIR%%/JW-Modules/res/DivSeq.svg %%DATADIR%%/JW-Modules/res/DownButton.svg %%DATADIR%%/JW-Modules/res/DownButtonDown.svg %%DATADIR%%/JW-Modules/res/EightSeq.svg %%DATADIR%%/JW-Modules/res/GridSeq.svg %%DATADIR%%/JW-Modules/res/Hairball.svg %%DATADIR%%/JW-Modules/res/LeftButton.svg %%DATADIR%%/JW-Modules/res/LeftButtonDown.svg %%DATADIR%%/JW-Modules/res/MinMax.svg %%DATADIR%%/JW-Modules/res/NoteSeq.svg %%DATADIR%%/JW-Modules/res/NoteSeq16.svg %%DATADIR%%/JW-Modules/res/NoteSeqFu.svg %%DATADIR%%/JW-Modules/res/OnePattern.svg %%DATADIR%%/JW-Modules/res/PT.svg %%DATADIR%%/JW-Modules/res/Patterns.svg %%DATADIR%%/JW-Modules/res/Pres1t.svg %%DATADIR%%/JW-Modules/res/RepButton.svg %%DATADIR%%/JW-Modules/res/RepButtonDown.svg %%DATADIR%%/JW-Modules/res/RightButton.svg %%DATADIR%%/JW-Modules/res/RightButtonDown.svg %%DATADIR%%/JW-Modules/res/RndButton.svg %%DATADIR%%/JW-Modules/res/RndButtonDown.svg %%DATADIR%%/JW-Modules/res/Screw_J.svg %%DATADIR%%/JW-Modules/res/Screw_W.svg %%DATADIR%%/JW-Modules/res/SmallButtonDown.svg %%DATADIR%%/JW-Modules/res/SmallButtonUp.svg %%DATADIR%%/JW-Modules/res/SmallWhiteKnob.svg %%DATADIR%%/JW-Modules/res/SnowFlake.svg %%DATADIR%%/JW-Modules/res/Str1ker.svg %%DATADIR%%/JW-Modules/res/Switch_Horizontal_0.svg %%DATADIR%%/JW-Modules/res/Switch_Horizontal_1.svg %%DATADIR%%/JW-Modules/res/Switch_Vertical_0.svg %%DATADIR%%/JW-Modules/res/Switch_Vertical_1.svg %%DATADIR%%/JW-Modules/res/TinyButtonDown.svg %%DATADIR%%/JW-Modules/res/TinyButtonUp.svg %%DATADIR%%/JW-Modules/res/TinyPJ301M.svg %%DATADIR%%/JW-Modules/res/TinyPJ301M_blue.svg %%DATADIR%%/JW-Modules/res/TinyPJ301M_orange.svg %%DATADIR%%/JW-Modules/res/TinyPJ301M_purple.svg %%DATADIR%%/JW-Modules/res/TinyPJ301M_white.svg %%DATADIR%%/JW-Modules/res/TinyPJ301M_yellow.svg %%DATADIR%%/JW-Modules/res/TinyWhiteGrayKnob.svg %%DATADIR%%/JW-Modules/res/TinyWhiteKnob.svg %%DATADIR%%/JW-Modules/res/Trigs.svg %%DATADIR%%/JW-Modules/res/UpButton.svg %%DATADIR%%/JW-Modules/res/UpButtonDown.svg %%DATADIR%%/JW-Modules/res/WavHeadPanel.svg %%DATADIR%%/JW-Modules/res/WavHeadSmall.svg %%DATADIR%%/JW-Modules/res/XYPad.svg %%DATADIR%%/LifeFormModular/res/AdditiveVibration.svg %%DATADIR%%/LifeFormModular/res/BurstIntegrator.svg %%DATADIR%%/LifeFormModular/res/ComplexOsc.svg %%DATADIR%%/LifeFormModular/res/Driftgen.svg %%DATADIR%%/LifeFormModular/res/ImpulseControl.svg %%DATADIR%%/LifeFormModular/res/InJack.svg %%DATADIR%%/LifeFormModular/res/Jack.svg %%DATADIR%%/LifeFormModular/res/LEDButton.svg %%DATADIR%%/LifeFormModular/res/LFMKnob.svg %%DATADIR%%/LifeFormModular/res/LFMSlider.svg %%DATADIR%%/LifeFormModular/res/LFMSliderWhiteHandle.svg %%DATADIR%%/LifeFormModular/res/LFMSwitch_0.svg %%DATADIR%%/LifeFormModular/res/LFMSwitch_1.svg %%DATADIR%%/LifeFormModular/res/LFMSwitch_2.svg %%DATADIR%%/LifeFormModular/res/LFMTinyKnob.svg %%DATADIR%%/LifeFormModular/res/MS_0.svg %%DATADIR%%/LifeFormModular/res/MS_1.svg %%DATADIR%%/LifeFormModular/res/MiniJack.svg %%DATADIR%%/LifeFormModular/res/OutJack.svg %%DATADIR%%/LifeFormModular/res/PercussiveVibration.svg %%DATADIR%%/LifeFormModular/res/PitchDiktat.svg %%DATADIR%%/LifeFormModular/res/PitchIntegrator.svg %%DATADIR%%/LifeFormModular/res/QuadModulator.svg %%DATADIR%%/LifeFormModular/res/QuadSteppedOffset.svg %%DATADIR%%/LifeFormModular/res/QuadUtility.svg %%DATADIR%%/LifeFormModular/res/SequenceModeler.svg %%DATADIR%%/LifeFormModular/res/TimeDiktat.svg +%%DATADIR%%/LilacLoop/res/LargeWarmButton_0.svg +%%DATADIR%%/LilacLoop/res/LargeWarmButton_1.svg +%%DATADIR%%/LilacLoop/res/Looper.svg +%%DATADIR%%/LilacLoop/res/LooperTwo.svg +%%DATADIR%%/LilacLoop/res/Port.svg +%%DATADIR%%/LilacLoop/res/WarmButton_0.svg +%%DATADIR%%/LilacLoop/res/WarmButton_1.svg +%%DATADIR%%/LilacLoop/res/WarmKnob.svg +%%DATADIR%%/LilacLoop/res/WarmLEDButton.svg %%DATADIR%%/LittleUtils/res/Bias_Semitone.svg %%DATADIR%%/LittleUtils/res/ButtonModule.svg %%DATADIR%%/LittleUtils/res/Button_button_0.svg %%DATADIR%%/LittleUtils/res/Button_button_1.svg %%DATADIR%%/LittleUtils/res/MulDiv.svg %%DATADIR%%/LittleUtils/res/PulseGenerator.svg %%DATADIR%%/LittleUtils/res/TeleportIn.svg %%DATADIR%%/LittleUtils/res/TeleportOut.svg %%DATADIR%%/LittleUtils/res/fonts/CooperHewitt-Bold.ttf %%DATADIR%%/LittleUtils/res/fonts/CooperHewitt-Book.ttf %%DATADIR%%/LittleUtils/res/fonts/CooperHewitt-Light.ttf %%DATADIR%%/LittleUtils/res/fonts/CooperHewitt-Thin.ttf %%DATADIR%%/LittleUtils/res/fonts/Overpass-Black.ttf %%DATADIR%%/LittleUtils/res/fonts/Overpass-Bold.ttf %%DATADIR%%/LittleUtils/res/fonts/Overpass-ExtraBold.ttf %%DATADIR%%/LittleUtils/res/fonts/Overpass-Regular.ttf %%DATADIR%%/LittleUtils/res/fonts/RobotoMono-Bold.ttf %%DATADIR%%/LittleUtils/res/fonts/RobotoMono-Regular.ttf %%DATADIR%%/LomasModules/res/AdvancedSampler.svg %%DATADIR%%/LomasModules/res/Components/RoundBigGrayKnob.svg %%DATADIR%%/LomasModules/res/Components/RoundGrayKnob.svg %%DATADIR%%/LomasModules/res/Components/RoundSmallGrayKnob.svg %%DATADIR%%/LomasModules/res/Components/RubberButton.svg %%DATADIR%%/LomasModules/res/Components/RubberButton1.svg %%DATADIR%%/LomasModules/res/Components/RubberSmallButton.svg %%DATADIR%%/LomasModules/res/Components/RubberSmallButton1.svg %%DATADIR%%/LomasModules/res/Fonts/FiraMono-Bold.ttf %%DATADIR%%/LomasModules/res/GateSequencer.svg %%DATADIR%%/LyraeModules/presets/Vega/120bpm.vcvm %%DATADIR%%/LyraeModules/presets/Vega/30bpm.vcvm %%DATADIR%%/LyraeModules/presets/Vega/60bpm.vcvm %%DATADIR%%/LyraeModules/res/BD383238.svg +%%DATADIR%%/LyraeModules/res/BD383238gen.svg %%DATADIR%%/LyraeModules/res/Bolt.svg %%DATADIR%%/LyraeModules/res/Gamma.svg %%DATADIR%%/LyraeModules/res/HexKnob.svg %%DATADIR%%/LyraeModules/res/Jack.svg %%DATADIR%%/LyraeModules/res/MedHexKnob.svg %%DATADIR%%/LyraeModules/res/SmallHexKnob.svg %%DATADIR%%/LyraeModules/res/SmallHexKnobInverted.svg %%DATADIR%%/LyraeModules/res/Sulafat.svg %%DATADIR%%/LyraeModules/res/Vega.svg %%DATADIR%%/LyraeModules/res/VegaOld.svg +%%DATADIR%%/LyraeModules/res/Vegagen.svg %%DATADIR%%/LyraeModules/res/Vegarawtxt.svg +%%DATADIR%%/LyraeModules/res/Vegatest.svg %%DATADIR%%/LyraeModules/res/Zeta.svg %%DATADIR%%/LyraeModules/res/ZetaAlt.svg %%DATADIR%%/LyraeModules/res/Zetab.svg %%DATADIR%%/LyraeModules/res/ZetabAlt.svg %%DATADIR%%/LyraeModules/res/Zetac.svg %%DATADIR%%/LyraeModules/res/ZetacAlt.svg +%%DATADIR%%/LyraeModules/res/Zetal.svg %%DATADIR%%/LyraeModules/res/button18_0.svg %%DATADIR%%/LyraeModules/res/button18_1.svg %%DATADIR%%/LyraeModules/res/button18_2.svg %%DATADIR%%/LyraeModules/res/button9_0.svg %%DATADIR%%/LyraeModules/res/button9_1.svg %%DATADIR%%/LyraeModules/res/button9_2.svg %%DATADIR%%/LyraeModules/res/delta1.svg -%%DATADIR%%/LyraeModules/res/drawing.svg %%DATADIR%%/LyraeModules/res/lyrae.svg +%%DATADIR%%/ML_modules/res/Arpeggiator.svg +%%DATADIR%%/ML_modules/res/Arpeggiator_orig.svg +%%DATADIR%%/ML_modules/res/BPMdetect.svg +%%DATADIR%%/ML_modules/res/BPMdetect_orig.svg +%%DATADIR%%/ML_modules/res/CKSS_0.svg +%%DATADIR%%/ML_modules/res/CKSS_1.svg +%%DATADIR%%/ML_modules/res/Cloner.svg +%%DATADIR%%/ML_modules/res/Cloner_orig.svg +%%DATADIR%%/ML_modules/res/Constants.svg +%%DATADIR%%/ML_modules/res/Constants_orig.svg +%%DATADIR%%/ML_modules/res/Counter.svg +%%DATADIR%%/ML_modules/res/Counter_orig.svg +%%DATADIR%%/ML_modules/res/DejaVuSansMono.ttf +%%DATADIR%%/ML_modules/res/FreeVerb.svg +%%DATADIR%%/ML_modules/res/FreeVerb_orig.svg +%%DATADIR%%/ML_modules/res/Jack.svg +%%DATADIR%%/ML_modules/res/Jack_out.svg +%%DATADIR%%/ML_modules/res/LEDButton.svg +%%DATADIR%%/ML_modules/res/LEDButton_medium.svg +%%DATADIR%%/ML_modules/res/LEDButton_small.svg +%%DATADIR%%/ML_modules/res/MLButton_0.svg +%%DATADIR%%/ML_modules/res/MLButton_1.svg +%%DATADIR%%/ML_modules/res/MLScrew.svg +%%DATADIR%%/ML_modules/res/NewKnob_28.svg +%%DATADIR%%/ML_modules/res/NewKnob_28_bg.svg +%%DATADIR%%/ML_modules/res/NewKnob_36.svg +%%DATADIR%%/ML_modules/res/NewKnob_36_bg.svg +%%DATADIR%%/ML_modules/res/NewRedKnob_28.svg +%%DATADIR%%/ML_modules/res/NewRedKnob_36.svg +%%DATADIR%%/ML_modules/res/OctaFlop.svg +%%DATADIR%%/ML_modules/res/OctaFlop_orig.svg +%%DATADIR%%/ML_modules/res/OctaPlus.svg +%%DATADIR%%/ML_modules/res/OctaPlus_orig.svg +%%DATADIR%%/ML_modules/res/OctaSwitch.svg +%%DATADIR%%/ML_modules/res/OctaSwitch_orig.svg +%%DATADIR%%/ML_modules/res/OctaTimes.svg +%%DATADIR%%/ML_modules/res/OctaTimes_orig.svg +%%DATADIR%%/ML_modules/res/OctaTrig.svg +%%DATADIR%%/ML_modules/res/OctaTrig_orig.svg +%%DATADIR%%/ML_modules/res/PolySplitter.svg +%%DATADIR%%/ML_modules/res/PolySplitter_orig.svg +%%DATADIR%%/ML_modules/res/Quantizer.svg +%%DATADIR%%/ML_modules/res/Quantizer_orig.svg +%%DATADIR%%/ML_modules/res/Quantum.svg +%%DATADIR%%/ML_modules/res/Quantum_orig.svg +%%DATADIR%%/ML_modules/res/SH8.svg +%%DATADIR%%/ML_modules/res/SH8_orig.svg +%%DATADIR%%/ML_modules/res/Segment7Standard.ttf +%%DATADIR%%/ML_modules/res/SeqSwitch.svg +%%DATADIR%%/ML_modules/res/SeqSwitch2.svg +%%DATADIR%%/ML_modules/res/SeqSwitch2_orig.svg +%%DATADIR%%/ML_modules/res/SeqSwitch_orig.svg +%%DATADIR%%/ML_modules/res/ShiftReg.svg +%%DATADIR%%/ML_modules/res/ShiftReg2.svg +%%DATADIR%%/ML_modules/res/ShiftReg2_orig.svg +%%DATADIR%%/ML_modules/res/ShiftReg_orig.svg +%%DATADIR%%/ML_modules/res/Slider_3_Horiz_0.svg +%%DATADIR%%/ML_modules/res/Slider_3_Horiz_1.svg +%%DATADIR%%/ML_modules/res/Slider_3_Horiz_2.svg +%%DATADIR%%/ML_modules/res/SmallButton_0.svg +%%DATADIR%%/ML_modules/res/SmallButton_1.svg +%%DATADIR%%/ML_modules/res/SmallButton_Dn_0.svg +%%DATADIR%%/ML_modules/res/SmallButton_Dn_1.svg +%%DATADIR%%/ML_modules/res/SmallButton_Up_0.svg +%%DATADIR%%/ML_modules/res/SmallButton_Up_1.svg +%%DATADIR%%/ML_modules/res/Sum8.svg +%%DATADIR%%/ML_modules/res/Sum8_orig.svg +%%DATADIR%%/ML_modules/res/Sum8mk2.svg +%%DATADIR%%/ML_modules/res/Sum8mk2_orig.svg +%%DATADIR%%/ML_modules/res/Sum8mk3.svg +%%DATADIR%%/ML_modules/res/Sum8mk3_orig.svg +%%DATADIR%%/ML_modules/res/TrigBuf.svg +%%DATADIR%%/ML_modules/res/TrigBuf_orig.svg +%%DATADIR%%/ML_modules/res/TrigDelay.svg +%%DATADIR%%/ML_modules/res/TrigDelay_orig.svg +%%DATADIR%%/ML_modules/res/TrigSwitch.svg +%%DATADIR%%/ML_modules/res/TrigSwitch2.svg +%%DATADIR%%/ML_modules/res/TrigSwitch2_orig.svg +%%DATADIR%%/ML_modules/res/TrigSwitch3.svg +%%DATADIR%%/ML_modules/res/TrigSwitch3_2.svg +%%DATADIR%%/ML_modules/res/TrigSwitch3_2_orig.svg +%%DATADIR%%/ML_modules/res/TrigSwitch3_orig.svg +%%DATADIR%%/ML_modules/res/TrigSwitch_orig.svg +%%DATADIR%%/ML_modules/res/VoltMeter.svg +%%DATADIR%%/ML_modules/res/VoltMeter_orig.svg +%%DATADIR%%/MSM/res/Button/ButtonGreen0.svg +%%DATADIR%%/MSM/res/Button/ButtonGreen1.svg +%%DATADIR%%/MSM/res/Button/ColorButton0.svg +%%DATADIR%%/MSM/res/Button/ColorButton1.svg +%%DATADIR%%/MSM/res/Button/ColorButton2.svg +%%DATADIR%%/MSM/res/Button/ColorButton3.svg +%%DATADIR%%/MSM/res/Button/ColorButton4.svg +%%DATADIR%%/MSM/res/Button/ColorButton5.svg +%%DATADIR%%/MSM/res/Button/Easteregg_0.svg +%%DATADIR%%/MSM/res/Button/Easteregg_1.svg +%%DATADIR%%/MSM/res/Button/GreyRoundToggle_0.svg +%%DATADIR%%/MSM/res/Button/GreyRoundToggle_1.svg +%%DATADIR%%/MSM/res/Fonts/DejaVuSansMono.ttf +%%DATADIR%%/MSM/res/Fonts/Segment7Standard.ttf +%%DATADIR%%/MSM/res/Fonts/Sudo.ttf +%%DATADIR%%/MSM/res/Knobs/BlueLargeKnob.svg +%%DATADIR%%/MSM/res/Knobs/BlueSmallKnob.svg +%%DATADIR%%/MSM/res/Knobs/GreenLargeKnob.svg +%%DATADIR%%/MSM/res/Knobs/GreenSmallKnob.svg +%%DATADIR%%/MSM/res/Knobs/GreenTinyKnob.svg +%%DATADIR%%/MSM/res/Knobs/GreyLargeKnob.svg +%%DATADIR%%/MSM/res/Knobs/GreySmallKnob.svg +%%DATADIR%%/MSM/res/Knobs/RedLargeKnob.svg +%%DATADIR%%/MSM/res/Knobs/RedLargeKnob3d.svg +%%DATADIR%%/MSM/res/Knobs/RedSmallKnob.svg +%%DATADIR%%/MSM/res/Knobs/VioLargeKnob.svg +%%DATADIR%%/MSM/res/Knobs/YellowSmallKnob.svg +%%DATADIR%%/MSM/res/Lights/BlueLight_0.svg +%%DATADIR%%/MSM/res/Lights/BlueLight_1.svg +%%DATADIR%%/MSM/res/Panels/ADSR-Dark.svg +%%DATADIR%%/MSM/res/Panels/ADSR.svg +%%DATADIR%%/MSM/res/Panels/BVCO-Dark.svg +%%DATADIR%%/MSM/res/Panels/BVCO.svg +%%DATADIR%%/MSM/res/Panels/Bitcrusher-Dark.svg +%%DATADIR%%/MSM/res/Panels/Bitcrusher.svg +%%DATADIR%%/MSM/res/Panels/BlankPanelDark.svg +%%DATADIR%%/MSM/res/Panels/BlankPanelLight.svg +%%DATADIR%%/MSM/res/Panels/CrazyMult-Dark.svg +%%DATADIR%%/MSM/res/Panels/CrazyMult.svg +%%DATADIR%%/MSM/res/Panels/Delay-Dark.svg +%%DATADIR%%/MSM/res/Panels/Delay.svg +%%DATADIR%%/MSM/res/Panels/Fade-Dark.svg +%%DATADIR%%/MSM/res/Panels/Fade.svg +%%DATADIR%%/MSM/res/Panels/MLFO-Dark.svg +%%DATADIR%%/MSM/res/Panels/MLFO.svg +%%DATADIR%%/MSM/res/Panels/MSVCO-Dark.svg +%%DATADIR%%/MSM/res/Panels/MSVCO-Espen-Front.svg +%%DATADIR%%/MSM/res/Panels/MSVCO-Omri-Front.svg +%%DATADIR%%/MSM/res/Panels/MSVCO.svg +%%DATADIR%%/MSM/res/Panels/Morpher-Dark.svg +%%DATADIR%%/MSM/res/Panels/Morpher.svg +%%DATADIR%%/MSM/res/Panels/Mult-Dark.svg +%%DATADIR%%/MSM/res/Panels/Mult.svg +%%DATADIR%%/MSM/res/Panels/Noise-Dark.svg +%%DATADIR%%/MSM/res/Panels/Noise.svg +%%DATADIR%%/MSM/res/Panels/Phaser-Dark.svg +%%DATADIR%%/MSM/res/Panels/Phaser.svg +%%DATADIR%%/MSM/res/Panels/RandomSource-Dark.svg +%%DATADIR%%/MSM/res/Panels/RandomSource.svg +%%DATADIR%%/MSM/res/Panels/RingMod-Dark.svg +%%DATADIR%%/MSM/res/Panels/RingMod.svg +%%DATADIR%%/MSM/res/Panels/SimpleSlider-Dark.svg +%%DATADIR%%/MSM/res/Panels/SimpleSlider.svg +%%DATADIR%%/MSM/res/Panels/TVCF-Dark.svg +%%DATADIR%%/MSM/res/Panels/TVCF.svg +%%DATADIR%%/MSM/res/Panels/TriVCO-Dark.svg +%%DATADIR%%/MSM/res/Panels/TriVCO.svg +%%DATADIR%%/MSM/res/Panels/VCA-Dark.svg +%%DATADIR%%/MSM/res/Panels/VCA.svg +%%DATADIR%%/MSM/res/Panels/VCO-Dark.svg +%%DATADIR%%/MSM/res/Panels/VCO.svg +%%DATADIR%%/MSM/res/Panels/WaveShaper-Dark.svg +%%DATADIR%%/MSM/res/Panels/WaveShaper.svg +%%DATADIR%%/MSM/res/Panels/Wavefolder-Dark.svg +%%DATADIR%%/MSM/res/Panels/Wavefolder.svg +%%DATADIR%%/MSM/res/Panels/XSEQ-Dark.svg +%%DATADIR%%/MSM/res/Panels/XSEQ-Expension-Dark.svg +%%DATADIR%%/MSM/res/Panels/XSEQ-Expension.svg +%%DATADIR%%/MSM/res/Panels/XSEQ.svg +%%DATADIR%%/MSM/res/Port/SilverSixPort.svg +%%DATADIR%%/MSM/res/Port/SilverSixPortA.svg +%%DATADIR%%/MSM/res/Port/SilverSixPortB.svg +%%DATADIR%%/MSM/res/Port/SilverSixPortC.svg +%%DATADIR%%/MSM/res/Port/SilverSixPortD.svg +%%DATADIR%%/MSM/res/Port/SilverSixPortE.svg +%%DATADIR%%/MSM/res/Screws/MScrewA.svg +%%DATADIR%%/MSM/res/Screws/MScrewB.svg +%%DATADIR%%/MSM/res/Screws/MScrewC.svg +%%DATADIR%%/MSM/res/Screws/MScrewD.svg +%%DATADIR%%/MSM/res/Slider/SlidePot.svg +%%DATADIR%%/MSM/res/Slider/SlidePotHandle.svg +%%DATADIR%%/MSM/res/Slider/slider.svg +%%DATADIR%%/MSM/res/Slider/sliderhandle.svg +%%DATADIR%%/MSM/res/Switch/CKSSThree_0.svg +%%DATADIR%%/MSM/res/Switch/CKSSThree_1.svg +%%DATADIR%%/MSM/res/Switch/CKSSThree_2.svg +%%DATADIR%%/MSM/res/Switch/FMSM_0.svg +%%DATADIR%%/MSM/res/Switch/FMSM_1.svg +%%DATADIR%%/MSM/res/Switch/FMSM_2.svg +%%DATADIR%%/MSM/res/Switch/FMSM_3.svg +%%DATADIR%%/MSM/res/Switch/VioMSwitchVert_0.svg +%%DATADIR%%/MSM/res/Switch/VioMSwitchVert_1.svg +%%DATADIR%%/MSM/res/Switch/VioMSwitch_0.svg +%%DATADIR%%/MSM/res/Switch/VioMSwitch_1.svg +%%DATADIR%%/Meander/res/Bravura.otf +%%DATADIR%%/Meander/res/DejaVu-LICENSE.txt +%%DATADIR%%/Meander/res/DejaVuSansMono.ttf +%%DATADIR%%/Meander/res/Meander-Demo-Patch.png +%%DATADIR%%/Meander/res/Meander-dark.png +%%DATADIR%%/Meander/res/Meander-dark.svg +%%DATADIR%%/Meander/res/Meander-light.png +%%DATADIR%%/Meander/res/Meander-light.svg +%%DATADIR%%/Meander/res/Meander.png +%%DATADIR%%/Meander/res/Meander.svg +%%DATADIR%%/Meander/res/OFL.txt +%%DATADIR%%/Meander/res/TinyPJ301M.svg +%%DATADIR%%/Meander/res/Ubuntu Condensed 400.ttf %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Creative/Pluck Swell (Warped).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Creative/Pluck(Ping)-Swell(Pong).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Creative/Ramp (Riser).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Grooves/Groove - Warped - 1.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Grooves/Groove - Warped - 2.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Grooves/Groove - Warped - 3.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Grooves/Groove - Warped - 4.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Grooves/Groove - Warped - 5.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Grooves/Groove - Warped - 6.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/LPG/LPG - 250Hz.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/LPG/LPG - 500Hz.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Looping/Hard - FWD - Saw X2.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Looping/Hard - FWD - Tri X2.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Looping/Soft - FWD - Saw X2.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Looping/Soft - FWD - Tri X2.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Looping/Sustain Loop.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Percussion/HiHat 1 - Click.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Percussion/HiHat 2 - Forward.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Percussion/HiHat 3 - Back.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Percussion/Kick 1 - AmpEG - Short.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Percussion/Kick 2 - AmpEG - Long.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Percussion/Kick 3 - AmpEG - Soft.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Percussion/Kick 4 - PitEG - Knock.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Percussion/Kick 5 - PitEG - Thud.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Percussion/Kick 6 - PitEG - Click.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Percussion/Perc 1 - Long.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Percussion/Perc 2 - Short.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Percussion/Ride 1 - Hard.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Percussion/Ride 2 - Soft.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Percussion/Ride 3 - Swell.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Percussion/Ride 4 - Rim.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Percussion/Ride 5 - Bell.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Percussion/Snare 1 - Long.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Percussion/Snare 2 - Late.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Percussion/Snare 3 - Rim.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Percussion/Snare 4 - Shot.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Side Chain/SC - Lag (Warped).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Side Chain/SC - Quick (Warped).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Side Chain/SC - Slow (Warped).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Side Chain/SC - Standard (Warped).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Stepped/Quant Melo 1 (Warped).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Stepped/Quant Melo 2 (Warped).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Stepped/Quant Melo 3 (Warped).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Stepped/Quant Melo 4 (Warped).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Stepped/Quant Melo 5 (Warped).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Stepped/Quant Melo 6 (Warped).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Circadian Sound/Utility/Monitor (Send VCA to Trig).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/CommunityPresets.txt %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Controllah/1 - Controllah.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Controllah/2 - Controllah.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Controllah/3 - Controllah.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Controllah/4 - Controllah.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Go On/1 - Go On.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Go On/2 - Go On.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Go On/3 - Go On.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Go On/4 - Go On.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Go On/5 - Go On.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Go On/6 - Go On.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Go On/7 - Go On.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Go On/8 - Go On.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Go On/9 - Go On.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/MixMastah/32-Slope-A.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/MixMastah/32-Slope-B.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/MixMastah/64-Slope-A.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/MixMastah/64-Slope-B.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Perco/1 - Perco.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Perco/2 - Perco.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Perco/3 - Perco.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Perco/4 - Perco.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Perco/5 - Perco.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Perco/6 - Perco.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Perco/7 - Perco.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Perco/8 - Perco.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Perco/9 - Perco.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Reverse/1 - Reverse.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Reverse/2 - Reverse.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Reverse/3 - Reverse.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Reverse/4 - Reverse.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Reverse/5 - Reverse.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Reverse/6 - Reverse.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Rhythmic/1 - Riddim.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Rhythmic/10 - Riddim.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Rhythmic/2 - Riddim.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Rhythmic/3 - Riddim.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Rhythmic/4 - Riddim.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Rhythmic/5 - Riddim.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Rhythmic/6 - Riddim.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Rhythmic/7 - Riddim.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Rhythmic/8 - Riddim.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Rhythmic/9 - Riddim.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Wonky Clicks/1 - Wonky.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Wonky Clicks/2 - Wonky.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Wonky Clicks/3 - Wonky.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Wonky Clicks/4 - Wonky.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Eurikon/Wonky Clicks/5 - Wonky.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/1V Quantizer/Blues.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/1V Quantizer/Chord Maj.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/1V Quantizer/Chord Maj7.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/1V Quantizer/Chord Min.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/1V Quantizer/Chord Min7.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/1V Quantizer/Chord Power.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/1V Quantizer/Major.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/1V Quantizer/Minor (dorian).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/1V Quantizer/Minor.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/1V Quantizer/Pentatonic Japanese.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/1V Quantizer/Pentatonic Major.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/1V Quantizer/Pentatonic Minor.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/1V Quantizer/Tetrachord Major.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/1V Quantizer/Tetrachord Minor.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/1V Quantizer/Weighted Major.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/1V Quantizer/Weighted Minor (dorian).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/1V Quantizer/Weighted Minor.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/2V Quantizer/Blues.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/2V Quantizer/Chord Maj.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/2V Quantizer/Chord Maj7.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/2V Quantizer/Chord Min.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/2V Quantizer/Chord Min7.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/2V Quantizer/Chord Power.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/2V Quantizer/Major.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/2V Quantizer/Minor (dorian).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/2V Quantizer/Minor.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/2V Quantizer/Pentatonic Japanese.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/2V Quantizer/Pentatonic Major.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/2V Quantizer/Pentatonic Minor.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/2V Quantizer/Tetrachord Major.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/2V Quantizer/Tetrachord Minor.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/2V Quantizer/Voiced Major.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/2V Quantizer/Voiced Minor (dorian).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/2V Quantizer/Voiced Minor.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/2V Quantizer/Weighted Major.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/2V Quantizer/Weighted Minor (dorian).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/2V Quantizer/Weighted Minor.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/3V Quantizer/Blues.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/3V Quantizer/Chord Maj.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/3V Quantizer/Chord Maj7.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/3V Quantizer/Chord Min.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/3V Quantizer/Chord Min7.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/3V Quantizer/Chord Power.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/3V Quantizer/Major.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/3V Quantizer/Minor (dorian).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/3V Quantizer/Minor.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/3V Quantizer/Pentatonic Japanese.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/3V Quantizer/Pentatonic Major.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/3V Quantizer/Pentatonic Minor.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/3V Quantizer/Tetrachord Major.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/3V Quantizer/Tetrachord Minor.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/3V Quantizer/Voiced Major.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/3V Quantizer/Voiced Minor (dorian).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/3V Quantizer/Voiced Minor.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/3V Quantizer/Weighted Major.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/3V Quantizer/Weighted Minor (dorian).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/3V Quantizer/Weighted Minor.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/4V Series/Harmonics.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/4V Series/Subharmonics.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Cinematic/Cinematic 1.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Cinematic/Cinematic 2.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Cinematic/Cinematic 3.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Grooves/Groove 1.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Grooves/Groove 2.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Grooves/Groove 3.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Grooves/Groove 4.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Grooves/Groove 5.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Oscillators/Camel.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Oscillators/Chip.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Oscillators/Double-S.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Oscillators/Double-T.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Oscillators/Dragon.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Oscillators/Glitch.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Oscillators/Jagged.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Oscillators/Origami.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Oscillators/Reed.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Oscillators/Vocal.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/VOSIM/Vosim 1.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/VOSIM/Vosim 2.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/VOSIM/Vosim 3.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/VOSIM/Vosim 4.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/VOSIM/Vosim 5.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/VOSIM/Vosim 6.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/VOSIM/Vosim 7.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/VOSIM/Vosim 8.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Voltage Utilities/-5-5V to 0-10V Converter.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Voltage Utilities/0-10V to -5-5V Converter.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Voltage Utilities/EXP to LIN (Bipolar).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Voltage Utilities/EXP to LIN (Unipolar).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Voltage Utilities/Inverter (Bipolar).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Voltage Utilities/Inverter (Unipolar).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Voltage Utilities/LIN to EXP (Bipolar).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Voltage Utilities/LIN to EXP (Unipolar).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Voltage Utilities/Rectifier - Full Wave (Amped).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Voltage Utilities/Rectifier - Full Wave.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Voltage Utilities/Rectifier - Half Wave (Amped).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Voltage Utilities/Rectifier - Half Wave.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Wave Crushers/Broken DAC 1.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Wave Crushers/Broken DAC 2.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Wave Crushers/Hard 2-bit.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Wave Crushers/Hard 3-bit.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Wave Crushers/Hard 4-bit.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Wave Crushers/Soft 2-bit.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Wave Crushers/Soft 3-bit.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Wave Crushers/Soft 4-bit.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Wave Folders/Analog Folder 1.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Wave Folders/Analog Folder 2.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Wave Folders/Fold-Back 1.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Wave Folders/Fold-Back 2.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Wave Folders/Fold-Back 3.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Wave Folders/Fold-Back 4.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Wave Folders/Fold-Back 5.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Wave Folders/Fold-Back 6.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Wave Folders/Fold-Back 7.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Wave Folders/Unity Gain Folder.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Wave Shapers/Bad Transistor.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Wave Shapers/Broken Triode.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Wave Shapers/Distortion.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Wave Shapers/Even Harmonics.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Wave Shapers/Hard Clipper.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Wave Shapers/Overdrive.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Wave Shapers/Saturation.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Wave Shapers/Soft Clipper.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Wave Shapers/Tape.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Wave Shapers/Tube 1.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Wave Shapers/Tube 2.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityPresets/Jakub Ciupinski/Wave Shapers/Tube 3.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Grooves/Groove 1.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Grooves/Groove 2.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Grooves/Groove 3.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Grooves/Groove 4.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Grooves/Groove 5.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Grooves/Groove 6.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Looping/Hard - Saw X2.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Looping/Hard - Tri X2.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Looping/Soft - Saw X2.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Looping/Soft - Tri X2.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Looping/Sustain Loop.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Percussion/HiHat - EG 1.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Percussion/HiHat - EG 2.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Percussion/HiHat - EG 3.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Percussion/Kick - EG 1.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Percussion/Kick - EG 2.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Percussion/Kick - EG 3.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Percussion/Kick - EG 4.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Percussion/Kick - EG 5.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Percussion/Kick - EG 6.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Percussion/Perc - EG 1.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Percussion/Perc - EG 2.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Percussion/Ride - EG 1.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Percussion/Ride - EG 2.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Percussion/Ride - EG 3.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Percussion/Ride - EG 4.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Percussion/Ride - EG 5.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Percussion/Snare - EG 1.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Percussion/Snare - EG 2.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Percussion/Snare - EG 3.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Percussion/Snare - EG 4.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Shapes/Pluck Swell.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Shapes/Pluck X2.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Shapes/Ramp.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Shapes/Rocky.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Shapes/Shark Fin.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Side Chain/SC - Lag.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Side Chain/SC - Quick.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Side Chain/SC - Slow.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Side Chain/SC - Standard.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Stepped/Quant Melo 1.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Stepped/Quant Melo 2.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Stepped/Quant Melo 3.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Stepped/Quant Melo 4.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Stepped/Quant Melo 5.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Circadian Sound/Stepped/Quant Melo 6.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/CommunityShapes.txt %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/Controllah/1 - Controllah.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/Controllah/2 - Controllah.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/Controllah/3 - Controllah.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/Controllah/4 - Controllah.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/FreeForm/Building07.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/FreeForm/CatsAllFolks.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/FreeForm/Cricket.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/FreeForm/DasNeuRDM.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/FreeForm/DoctorTwo.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/FreeForm/JustaPulse.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/FreeForm/MatterOfJagged.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/FreeForm/Mroar_chord.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/FreeForm/Mroar_filtah.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/FreeForm/SweeyX.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/FreeForm/TakeMeThere.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/FreeForm/TribeZ.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/FreeForm/TwoFace.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/FreeForm/UpsideCrown.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/FreeForm/YouNoMe.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/Go On/1 - Go On.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/Go On/2 - Go On.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/Go On/3 - Go On.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/Go On/4 - Go On.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/MixMastah/32_slope A.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/MixMastah/32_slope B.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/MixMastah/64_slope A.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/MixMastah/64_slope B.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/MixMastah/StairWay2.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/Perco/1 - Perco.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/Perco/2 - Perco.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/Perco/3 - Perco.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/Perco/4 - Perco.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/Perco/5 - Perco.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/Perco/6 - Perco.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/Perco/7 - Perco.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/Perco/8 - Perco.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Eurikon/Perco/9 - Perco.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/JW/3Plucks.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/JW/Autograph.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/JW/Bat.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/JW/Claw.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/JW/Ditch.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/JW/FilterSteps.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/JW/Half Pipe.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/JW/JW.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/JW/JW2.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/JW/JW3.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/JW/JW4.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/JW/Pluck.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/JW/QuickRiseSlowFall.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/JW/Shark.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/JW/Shark2.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/JW/Step and Curve.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/JW/StepSeq.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/JW/Steps.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/JW/VCV.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/JW/WWW.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/JW/WavHead.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Jakub Ciupinski/Cinematic/Cinematic 1.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Jakub Ciupinski/Cinematic/Cinematic 2.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Jakub Ciupinski/Cinematic/Cinematic 3.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Jakub Ciupinski/Grooves/Groove 1.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Jakub Ciupinski/Grooves/Groove 2.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Jakub Ciupinski/Grooves/Groove 3.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Jakub Ciupinski/Grooves/Groove 4.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Jakub Ciupinski/Grooves/Groove 5.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Jakub Ciupinski/Oscillators/Camel.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Jakub Ciupinski/Oscillators/Chip.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Jakub Ciupinski/Oscillators/Double-S.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Jakub Ciupinski/Oscillators/Double-T.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Jakub Ciupinski/Oscillators/Dragon.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Jakub Ciupinski/Oscillators/Glitch.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Jakub Ciupinski/Oscillators/Jagged.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Jakub Ciupinski/Oscillators/Origami.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Jakub Ciupinski/Oscillators/Reed.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Jakub Ciupinski/Oscillators/Vocal.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Jakub Ciupinski/VOSIM/Vosim 1.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Jakub Ciupinski/VOSIM/Vosim 2.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Jakub Ciupinski/VOSIM/Vosim 3.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Jakub Ciupinski/VOSIM/Vosim 4.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Jakub Ciupinski/VOSIM/Vosim 5.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Jakub Ciupinski/VOSIM/Vosim 6.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Jakub Ciupinski/VOSIM/Vosim 7.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/Jakub Ciupinski/VOSIM/Vosim 8.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/VCV Rack Ideas/Attack/Dual attack.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/VCV Rack Ideas/Attack/Tripple attack.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/VCV Rack Ideas/Complex/Complex1.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/VCV Rack Ideas/Complex/Complex2.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/VCV Rack Ideas/Complex/Complex3.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/VCV Rack Ideas/Complex/Complex4.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/VCV Rack Ideas/Complex/Complex5.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/VCV Rack Ideas/Complex/Complex6.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/VCV Rack Ideas/Musical Snap/Musical Snap Delay like.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/VCV Rack Ideas/Musical Snap/Musical Snap and Release1.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/VCV Rack Ideas/Musical Snap/Musical Snap long delay like dance.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/VCV Rack Ideas/Musical Snap/Musical Snap long delay like rise.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/VCV Rack Ideas/Musical Snap/Musical Snap long delay like.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/VCV Rack Ideas/Musical Snap/Musical Snap techno reverse.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/VCV Rack Ideas/Musical Snap/Musical Snap techno1.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/VCV Rack Ideas/Musical Snap/Musical Snap techno2.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/VCV Rack Ideas/Musical Snap/Musical Snap1.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/VCV Rack Ideas/Musical Snap/Musical Snap2.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/CommunityShapes/VCV Rack Ideas/Musical Snap/Musical Snap3.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Envelopes/CHH 16ths Bar Vel.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Envelopes/CHH 16ths Bar.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Envelopes/CHH 8ths Bar Vel.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Envelopes/CHH 8ths Bar.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Envelopes/CHH Hit.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Envelopes/Click.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Envelopes/Crash Hit.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Envelopes/Crash.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Envelopes/OHH 4 in a Bar.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Envelopes/OHH Hit.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Envelopes/OHH Off-Beat.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Envelopes/Snare 2&4.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Envelopes/Snare Hit.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Gates/16th Note Trigs (CHH).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Gates/8th Note Trigs.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Gates/Beats 2&4 Trig (Clap Snare).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Gates/Off-Beat Trig (OHH).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Gates/On-Beat Trig (Kick).smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Envelopes/16th Build & Pause Open.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Envelopes/16th Hats Rising & Opening.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Envelopes/16th Pulse Rising Linear.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Envelopes/16th Snare Beat Accent.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Envelopes/16th Snare Build & Pause.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Envelopes/16th Snares Fill.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Envelopes/16th Snares Rising & Opening.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Envelopes/16th Snares Rising Linear.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Envelopes/16th Snares Rising Thin.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Envelopes/4 bar Speed Up Roll Pause.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Envelopes/6 x 8th note Snares.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Envelopes/8ths Opening.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Envelopes/8ths Rising & Opening.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Envelopes/Doubling Hats.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Envelopes/Doubling Snares.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Envelopes/Every Third 16th.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Envelopes/Ratatat Hats.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Envelopes/Ratatat Snares 1.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Envelopes/Ratatat Snares 2.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Envelopes/Slow Down 1.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Envelopes/Slow Down 2.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Envelopes/Speed Up 1.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Envelopes/Speed Up 2.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Gates/1 Bar Speed Up Roll Gates.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Gates/1 Bar Speed Up Roll Trigs.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Gates/16th Note Pause Gates.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Gates/16th Note Pause Trigs.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Gates/4 Bar Double Roll Trigs.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Gates/4 bar Speed Up Roll Trigs.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Gates/6 x 8th Note Gates.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Gates/6 x 8th Note Trigs.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Gates/Every Third 16th Gates.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Gates/Every Third 16th Trigs.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Gates/Ratatat Gates.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Drum Roll Gates/Ratatat Trigs.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Noise Grooves/Hats & Snares - 2 bar.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Noise Grooves/Hats & Snares Groove 1a.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Noise Grooves/Hats & Snares Groove 1b.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Noise Grooves/Hats & Snares Groove 2a.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Noise Grooves/Hats & Snares Groove 2b.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Noise Grooves/Hats & Snares Groove 3a.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Noise Grooves/Hats & Snares Groove 3b.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Noise Grooves/Noise Hats Groove 1a.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Noise Grooves/Noise Hats Groove 1b.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Noise Grooves/Noise Hats Groove 1c.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Noise Grooves/Noise Hats Groove 2a.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Noise Grooves/Noise Hats Groove 2b.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Noise Grooves/Noise Hats Groove 2c.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Noise Grooves/Noise Hats Groove 3a.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Noise Grooves/Noise Hats Groove 3b.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Noise Grooves/Noise Hats Groove 3c.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Noise Shakers/Shake it 1.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Noise Shakers/Shake it 2.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Noise Shakers/Shake it 3.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Drums/Noise Shakers/Shake it 4.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Ducking/Duck 16th beat.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Ducking/Duck 16ths Three.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Ducking/Duck 8th Beat Below 300.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Ducking/Duck 8th Half.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Ducking/Duck 8th attack beat.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Ducking/Duck 8th beat partial.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Ducking/Duck 8th beat.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Ducking/Duck Leave the middle.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Ducking/Duck S-Shape 1.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Ducking/Duck S-Shape 2.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Ducking/Duck-Double.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Ducking/Duck-Kick.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Ducking/Duck-PsyBass.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Ducking/Duck-Snare 1.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Ducking/Duck-Snare 2.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Envelope/16th Note Pluck.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Envelope/8th Note Pluck.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Envelope/AD Curved.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Envelope/AD Linear.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Envelope/ADSR Curved.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Envelope/ADSR.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Envelope/AHDSR Curved.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Envelope/AHDSR Linear.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Envelope/AHR Curved.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Envelope/AHR Linear.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Envelope/ALR Tremolo.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Envelope/ASR Curved.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Envelope/ASR Linear.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Envelope/Attacker.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Envelope/Gate SR.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Groovy Gates/Attack the Gate.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Groovy Gates/Bouncy Gate.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Groovy Gates/Cheeky Gate.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Groovy Gates/Church Gate.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Groovy Gates/Dream Gate.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Groovy Gates/Slinky 1.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Groovy Gates/Slinky 2.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Groovy Gates/Slinky 3.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Groovy Gates/Slinky 4.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Groovy Gates/Slinky 5.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Groovy Gates/Snapper.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Groovy Gates/Stuck Record.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Groovy Gates/Syncogated.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Groovy Gates/Three Grow.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Hard Gates/Hard Gate 1.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Hard Gates/Hard Gate 2.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Hard Gates/Hard Gate 3.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Hard Gates/Hard Gate 4.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Hard Gates/Hard Gate 5.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Hard Gates/Hard Gate 6.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Hard Gates/Hard Gate 7.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Hard Gates/Hard Gate 8.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Trance Gates/Trance Gate 1 Decay.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Trance Gates/Trance Gate 1 Hard.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Trance Gates/Trance Gate 1 Mix.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Trance Gates/Trance Gate 1 Soft.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Trance Gates/Trance Gate 2 Decay.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Trance Gates/Trance Gate 2 Hard.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Trance Gates/Trance Gate 2 Soft.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Trance Gates/Trance Gate 3 Decay.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Trance Gates/Trance Gate 3 Hard.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Utility Gates/16th Note Gates.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Utility Gates/32nd Note Gates.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Gated/Utility Gates/8th Note Gates.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Bipolar LFO/Curve LFO Bi.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Bipolar LFO/Dome LFO Bi.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Bipolar LFO/Pulse LFO Bi.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Bipolar LFO/Ramp Curved LFO Bi.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Bipolar LFO/Ramp LFO Bi.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Bipolar LFO/Ramp Square LFO Bi.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Bipolar LFO/Randomish LFO Bi.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Bipolar LFO/Saw LFO Bi.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Bipolar LFO/Saw Square LFO Bi.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Bipolar LFO/Shark Fin LFO Bi.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Bipolar LFO/Sine LFO Bi.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Bipolar LFO/Square LFO Bi.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Bipolar LFO/Square Soft LFO Bi.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Bipolar LFO/Tremolo LFO Bi.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Bipolar LFO/Triangle LFO Bi.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Bipolar LFO/Triangle Square LFO Bi.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Unipolar LFO/Curve LFO Uni.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Unipolar LFO/Dome LFO Uni.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Unipolar LFO/Pulse LFO Uni.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Unipolar LFO/Ramp Curved LFO Uni.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Unipolar LFO/Ramp LFO Uni.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Unipolar LFO/Ramp Square LFO UNi.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Unipolar LFO/Randomish LFO Uni.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Unipolar LFO/Saw Curved LFO Uni.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Unipolar LFO/Saw LFO Uni.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Unipolar LFO/Saw Square LFO Uni.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Unipolar LFO/Shark Fin LFO Uni.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Unipolar LFO/Sine LFO Uni.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Unipolar LFO/Square LFO Uni.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Unipolar LFO/Square Soft LFO Uni.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Unipolar LFO/Tremolo LFO Uni.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Unipolar LFO/Triangle LFO Uni.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Unipolar LFO/Triangle Square LFO Uni.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/LFO/Unipolar LFO/Trigger LFO.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/MindMeldPresets.txt %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Hard Gate Generators/Grid16_Segs16_Gates.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Hard Gate Generators/Grid16_Segs8-32_Gates.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Hard Gate Generators/Grid32_Segs32_Gates.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Scale Sequencers - 16 Step/16S Blues.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Scale Sequencers - 16 Step/16S Dorian.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Scale Sequencers - 16 Step/16S Japanese Pentatonic.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Scale Sequencers - 16 Step/16S Locrian.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Scale Sequencers - 16 Step/16S Lydian.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Scale Sequencers - 16 Step/16S Major Pentatonic.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Scale Sequencers - 16 Step/16S Major.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Scale Sequencers - 16 Step/16S Minor Pentatonic.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Scale Sequencers - 16 Step/16S Minor.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Scale Sequencers - 16 Step/16S Mixolydian.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Scale Sequencers - 16 Step/16S Phrygian Dominant.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Scale Sequencers - 16 Step/16S Phrygian Pentatonic.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Scale Sequencers - 16 Step/16S Phrygian.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Scale Sequencers - 8 Step/8S Blues.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Scale Sequencers - 8 Step/8S Dorian.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Scale Sequencers - 8 Step/8S Japanese Pentatonic.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Scale Sequencers - 8 Step/8S Locrian.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Scale Sequencers - 8 Step/8S Lydian.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Scale Sequencers - 8 Step/8S Major Pentatonic.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Scale Sequencers - 8 Step/8S Major.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Scale Sequencers - 8 Step/8S Minor Pentatonic.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Scale Sequencers - 8 Step/8S Minor.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Scale Sequencers - 8 Step/8S Mixolydian.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Scale Sequencers - 8 Step/8S Phrygian Dominant.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Scale Sequencers - 8 Step/8S Phrygian Pentatonic.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Scale Sequencers - 8 Step/8S Phrygian.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Stepped Pattern Generators/Grid16 Steps Generator.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Randomise/Stepped Pattern Generators/Grid8 Steps Generator.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Bipolar/Falling Bends.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Bipolar/Falling ZigZags.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Bipolar/Rising Bends.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Bipolar/Rising ZigZag.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Fallers/Fade Out Bendy.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Fallers/Fade Out.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Fallers/Faller Curved.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Fallers/Faller Gated Curved Off.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Fallers/Faller Gated Curved.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Fallers/Faller Gated-off.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Fallers/Faller Gated.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Fallers/Faller S-shape.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Fallers/Falling Fins.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Fallers/Falling Gates Off.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Fallers/Falling Gates.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Fallers/Falling Peaks.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Fallers/Falling Stairs.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Rise & Fall/Bowl.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Rise & Fall/Dome.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Risers/Fade In Bendy.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Risers/Fade In.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Risers/Riser Curved.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Risers/Riser Gated Curved Off.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Risers/Riser Gated Curved.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Risers/Riser Gated-Off.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Risers/Riser Gated.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Risers/Riser S-shape.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Risers/Rising Fins.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Risers/Rising Gates Off.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Risers/Rising Gates.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Risers/Rising Peaks.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Risers & Fallers/Risers/Rising Stairs.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Triplets/Triplets - Accented.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Triplets/Triplets - Beat.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Triplets/Triplets - Opening.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Triplets/Triplets - Rhythm 1.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Triplets/Triplets - Rhythm 2.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Triplets/Triplets - Rhythm 3.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldPresets/Triplets/Triplets - Three Grow.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/BasicShapes/Flat 0.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/BasicShapes/Flat 100.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/BasicShapes/Flat 25.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/BasicShapes/Flat 50.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/BasicShapes/Flat 75.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/BasicShapes/Pulse 25.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/BasicShapes/Pulse 50.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/BasicShapes/Pulse 75.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/BasicShapes/Ramp 50% Duty.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/BasicShapes/Ramp Curved.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/BasicShapes/Ramp Square Mix.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/BasicShapes/Ramp.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/BasicShapes/Saw 50% Duty.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/BasicShapes/Saw Curved.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/BasicShapes/Saw Square Mix.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/BasicShapes/Saw.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/BasicShapes/Shark Fin.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/BasicShapes/Sine.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/BasicShapes/Square.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/BasicShapes/Tremolo.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/BasicShapes/Triangle Square Mix.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/BasicShapes/Triangle.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/BasicShapes/Trigger.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Envelopes/CHH 16ths Vel.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Envelopes/CHH 16ths.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Envelopes/CHH 8ths Vel.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Envelopes/CHH 8ths.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Envelopes/CHH Hit.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Envelopes/Click.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Envelopes/Crash Hit.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Envelopes/Crash.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Envelopes/OHH 4 in a Bar.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Envelopes/OHH Hit.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Envelopes/OHH Off-Beat.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Envelopes/Snare 2 & 4.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Envelopes/Snare Hit.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Gates/16th Hats Rising & Opening.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Gates/16th Note Trigs (CHH).smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Gates/8th Note Trigs.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Gates/Beats 2&4 Trig (Clap Snare).smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Gates/Off-Beat Trig (OHH).smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Gates/On-Beat Trig (Kick).smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Envelopes/16th Build & Pause Open.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Envelopes/16th Hats Rising & Opening.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Envelopes/16th Pulse Rising Linear.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Envelopes/16th Snare Beat Accent.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Envelopes/16th Snare Build & pause.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Envelopes/16th Snares Fill.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Envelopes/16th Snares Rising & Opening.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Envelopes/16th Snares Rising Linear.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Envelopes/16th Snares Rising Thin.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Envelopes/4 bar Speed Up Roll Pause.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Envelopes/6 x 8th Note Snares.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Envelopes/8ths Opening.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Envelopes/8ths Rising & Opening.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Envelopes/Doubling Hats.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Envelopes/Doubling Snares.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Envelopes/Every Third 16th.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Envelopes/Ratatat Hats.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Envelopes/Ratatat Snares 1.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Envelopes/Ratatat Snares 2.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Envelopes/Slow Down 1.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Envelopes/Slow Down 2.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Envelopes/Speed Up 1.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Envelopes/Speed Up 2.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Gates/1 Bar Speed Up Roll Gates.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Gates/1 Bar Speed Up Roll Trigs.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Gates/16th Note Pause Gates.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Gates/16th Note Pause Trigs.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Gates/4 Bar Double Roll Trigs.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Gates/4 Bar Speed Up Roll Trigs.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Gates/6 x 8th Note Gates.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Gates/6 x 8th Note Trigs.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Gates/Every Third 16th Gates.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Gates/Every Third 16th Trigs.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Gates/Ratatat Gates.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Drum Roll Gates/Ratatat Trigs.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Noise Grooves/Hats & Snares - 2 Bar.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Noise Grooves/Hats & Snares Groove 1a.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Noise Grooves/Hats & Snares Groove 1b.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Noise Grooves/Hats & Snares Groove 2a.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Noise Grooves/Hats & Snares Groove 2b.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Noise Grooves/Hats & Snares Groove 3a.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Noise Grooves/Hats & Snares Groove 3b.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Noise Grooves/Noise Hats Groove 1a.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Noise Grooves/Noise Hats Groove 1b.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Noise Grooves/Noise Hats Groove 1c.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Noise Grooves/Noise Hats Groove 2a.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Noise Grooves/Noise Hats Groove 2b.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Noise Grooves/Noise Hats Groove 2c.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Noise Grooves/Noise Hats Groove 3a.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Noise Grooves/Noise Hats Groove 3b.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Noise Grooves/Noise Hats Groove 3c.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Noise Shakers/Shake it 1.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Noise Shakers/Shake it 2.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Noise Shakers/Shake it 3.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Drums/Noise Shakers/Shake it 4.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Ducking/Duck 16th Beat.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Ducking/Duck 16ths Three.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Ducking/Duck 8th Attack Beat.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Ducking/Duck 8th Beat Partial.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Ducking/Duck 8th Beat.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Ducking/Duck 8th Half.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Ducking/Duck Double.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Ducking/Duck Leave the Middle.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Ducking/Duck S-Shape 1.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Ducking/Duck S-Shape 2.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Ducking/Duck-Kick.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Ducking/Duck-PsyBass.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Ducking/Duck-Snare 1.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Ducking/Duck-Snare 2.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Envelope/AD Curved.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Envelope/AD Linear.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Envelope/ADSR Curved.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Envelope/ADSR.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Envelope/AHDSR Curved.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Envelope/AHDSR Linear.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Envelope/AHR Curved.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Envelope/AHR Linear.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Envelope/Attacker.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Envelope/Gate SR.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Envelope/Pluck.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Groovy Gates/Attack the Gate.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Groovy Gates/Bouncy Gate.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Groovy Gates/Cheeky Gate.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Groovy Gates/Church Gate.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Groovy Gates/Dream Gate.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Groovy Gates/Slinky 1.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Groovy Gates/Slinky 2.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Groovy Gates/Slinky 3.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Groovy Gates/Slinky 4.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Groovy Gates/Slinky 5.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Groovy Gates/Snapper.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Groovy Gates/Stuck Record.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Groovy Gates/Syncogated.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Groovy Gates/Three Grow.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Hard Gates/Hard Gate 1.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Hard Gates/Hard Gate 2.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Hard Gates/Hard Gate 3.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Hard Gates/Hard Gate 4.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Hard Gates/Hard Gate 5.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Hard Gates/Hard Gate 6.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Hard Gates/Hard Gate 7.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Hard Gates/Hard Gate 8.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Trance Gates/Trance Gate 1 Decay.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Trance Gates/Trance Gate 1 Hard.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Trance Gates/Trance Gate 1 Mix.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Trance Gates/Trance Gate 1 Soft.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Trance Gates/Trance Gate 2 Decay.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Trance Gates/Trance Gate 2 Foft.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Trance Gates/Trance Gate 2 Hard.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Trance Gates/Trance Gate 3 Decay.smpr %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Trance Gates/Trance Gate 3 Hard.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Utility Gates/16th Note Gates.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Utility Gates/32nd Note Gates.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Gated/Utility Gates/8th Note Gates.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/MindMeldShapes.txt %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Bipolar/Falling Bends.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Bipolar/Falling ZigZags.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Bipolar/Rising Bends.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Bipolar/Rising ZigZags.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Fallers/Fade Out Bendy.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Fallers/Fade Out.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Fallers/Faller Curved.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Fallers/Faller Gated Curved Off.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Fallers/Faller Gated Curved.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Fallers/Faller Gated Off.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Fallers/Faller Gated.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Fallers/Faller S-shape.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Fallers/Falling Fins.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Fallers/Falling Gates Off.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Fallers/Falling Gates.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Fallers/Falling Peaks.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Fallers/Falling Stairs.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Rise & Fall/Bowl.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Rise & Fall/Dome.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Risers/Fade In Bendy.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Risers/Fade In.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Risers/Riser Curved.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Risers/Riser Gated Curved Off.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Risers/Riser Gated Curved.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Risers/Riser Gated Off.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Risers/Riser Gated.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Risers/Riser S-shape.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Risers/Rising Fins.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Risers/Rising Gates Off.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Risers/Rising Gates.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Risers/Rising Peaks.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Risers & Fallers/Risers/Rising Stairs.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Triplets/Triplets - Accented.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Triplets/Triplets - Beat.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Triplets/Triplets - Opening.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Triplets/Triplets - Rhythm 1.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Triplets/Triplets - Rhythm 2.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Triplets/Triplets - Rhythm 3.smsh %%DATADIR%%/MindMeldModular/res/ShapeMaster/MindMeldShapes/Triplets/Triplets - Three Grow.smsh %%DATADIR%%/MindMeldModular/res/comp/bass/bypass-round-off.svg %%DATADIR%%/MindMeldModular/res/comp/bass/bypass-round-on.svg %%DATADIR%%/MindMeldModular/res/comp/bass/solo-round-off.svg %%DATADIR%%/MindMeldModular/res/comp/bass/solo-round-on.svg %%DATADIR%%/MindMeldModular/res/comp/big-knob-pointer.svg %%DATADIR%%/MindMeldModular/res/comp/bigger-knob-pointer.svg %%DATADIR%%/MindMeldModular/res/comp/eq/band1-off.svg %%DATADIR%%/MindMeldModular/res/comp/eq/band1-on.svg %%DATADIR%%/MindMeldModular/res/comp/eq/band2-off.svg %%DATADIR%%/MindMeldModular/res/comp/eq/band2-on.svg %%DATADIR%%/MindMeldModular/res/comp/eq/band3-off.svg %%DATADIR%%/MindMeldModular/res/comp/eq/band3-on.svg %%DATADIR%%/MindMeldModular/res/comp/eq/band4-off.svg %%DATADIR%%/MindMeldModular/res/comp/eq/band4-on.svg %%DATADIR%%/MindMeldModular/res/comp/eq/bell-off.svg %%DATADIR%%/MindMeldModular/res/comp/eq/bell-on.svg %%DATADIR%%/MindMeldModular/res/comp/eq/global-bypass-off.svg %%DATADIR%%/MindMeldModular/res/comp/eq/global-bypass-on.svg %%DATADIR%%/MindMeldModular/res/comp/eq/high-shelf-off.svg %%DATADIR%%/MindMeldModular/res/comp/eq/high-shelf-on.svg %%DATADIR%%/MindMeldModular/res/comp/eq/low-shelf-off.svg %%DATADIR%%/MindMeldModular/res/comp/eq/low-shelf-on.svg %%DATADIR%%/MindMeldModular/res/comp/jack-poly.svg %%DATADIR%%/MindMeldModular/res/comp/jack.svg %%DATADIR%%/MindMeldModular/res/comp/knob-bg-7.5.svg %%DATADIR%%/MindMeldModular/res/comp/knob-bg-8.svg %%DATADIR%%/MindMeldModular/res/comp/knob-blue-7.5.svg %%DATADIR%%/MindMeldModular/res/comp/knob-blue-8.svg %%DATADIR%%/MindMeldModular/res/comp/knob-green-8.svg %%DATADIR%%/MindMeldModular/res/comp/knob-grey-7.5.svg %%DATADIR%%/MindMeldModular/res/comp/knob-grey-8.svg %%DATADIR%%/MindMeldModular/res/comp/knob-orange-7.5.svg %%DATADIR%%/MindMeldModular/res/comp/knob-purple-7.5.svg %%DATADIR%%/MindMeldModular/res/comp/knob-purple-8.svg %%DATADIR%%/MindMeldModular/res/comp/knob-red-7.5.svg %%DATADIR%%/MindMeldModular/res/comp/knob-red-8.svg %%DATADIR%%/MindMeldModular/res/comp/led-button.svg %%DATADIR%%/MindMeldModular/res/comp/mixer/dim-off.svg %%DATADIR%%/MindMeldModular/res/comp/mixer/dim-on.svg %%DATADIR%%/MindMeldModular/res/comp/mixer/fade-off.svg %%DATADIR%%/MindMeldModular/res/comp/mixer/fade-on.svg %%DATADIR%%/MindMeldModular/res/comp/mixer/fader-aux-bg.svg %%DATADIR%%/MindMeldModular/res/comp/mixer/fader-channel-bg.svg %%DATADIR%%/MindMeldModular/res/comp/mixer/fader-channel.svg %%DATADIR%%/MindMeldModular/res/comp/mixer/fader-master-bg.svg %%DATADIR%%/MindMeldModular/res/comp/mixer/fader-master.svg %%DATADIR%%/MindMeldModular/res/comp/mixer/group-minus-active.svg %%DATADIR%%/MindMeldModular/res/comp/mixer/group-minus.svg %%DATADIR%%/MindMeldModular/res/comp/mixer/group-plus-active.svg %%DATADIR%%/MindMeldModular/res/comp/mixer/group-plus.svg %%DATADIR%%/MindMeldModular/res/comp/mixer/mono-off.svg %%DATADIR%%/MindMeldModular/res/comp/mixer/mono-on.svg %%DATADIR%%/MindMeldModular/res/comp/mixer/mute-off.svg %%DATADIR%%/MindMeldModular/res/comp/mixer/mute-on.svg %%DATADIR%%/MindMeldModular/res/comp/mixer/solo-off.svg %%DATADIR%%/MindMeldModular/res/comp/mixer/solo-on.svg %%DATADIR%%/MindMeldModular/res/comp/round-button4-grey.svg %%DATADIR%%/MindMeldModular/res/comp/shape/E1-on.svg %%DATADIR%%/MindMeldModular/res/comp/shape/E2-on.svg %%DATADIR%%/MindMeldModular/res/comp/shape/E3-on.svg %%DATADIR%%/MindMeldModular/res/comp/shape/E4-on.svg %%DATADIR%%/MindMeldModular/res/comp/shape/E5-on.svg %%DATADIR%%/MindMeldModular/res/comp/shape/E6-on.svg %%DATADIR%%/MindMeldModular/res/comp/shape/E7-on.svg %%DATADIR%%/MindMeldModular/res/comp/shape/E8-on.svg %%DATADIR%%/MindMeldModular/res/comp/shape/SL-off.svg %%DATADIR%%/MindMeldModular/res/comp/shape/freeze-off.svg %%DATADIR%%/MindMeldModular/res/comp/shape/freeze-on.svg %%DATADIR%%/MindMeldModular/res/comp/shape/headphones-off.svg %%DATADIR%%/MindMeldModular/res/comp/shape/headphones-on.svg %%DATADIR%%/MindMeldModular/res/comp/shape/lock-off.svg %%DATADIR%%/MindMeldModular/res/comp/shape/lock-on.svg %%DATADIR%%/MindMeldModular/res/comp/shape/loop-on.svg %%DATADIR%%/MindMeldModular/res/comp/shape/play-off.svg %%DATADIR%%/MindMeldModular/res/comp/shape/play-on.svg %%DATADIR%%/MindMeldModular/res/comp/shape/sidechain-settings-off.svg %%DATADIR%%/MindMeldModular/res/comp/shape/sidechain-settings-on.svg %%DATADIR%%/MindMeldModular/res/comp/shape/sustain-on.svg %%DATADIR%%/MindMeldModular/res/comp/shape/sync-off.svg %%DATADIR%%/MindMeldModular/res/comp/shape/sync-on.svg %%DATADIR%%/MindMeldModular/res/comp/switch-off.svg %%DATADIR%%/MindMeldModular/res/comp/switch-on.svg %%DATADIR%%/MindMeldModular/res/dark/BassMaster.svg %%DATADIR%%/MindMeldModular/res/dark/BassMasterSnr.svg %%DATADIR%%/MindMeldModular/res/dark/EqSpander.svg %%DATADIR%%/MindMeldModular/res/dark/ShapeMaster.svg %%DATADIR%%/MindMeldModular/res/dark/auxspander-jr.svg %%DATADIR%%/MindMeldModular/res/dark/auxspander.svg %%DATADIR%%/MindMeldModular/res/dark/eqmaster.svg %%DATADIR%%/MindMeldModular/res/dark/meld/meld-1-8.svg %%DATADIR%%/MindMeldModular/res/dark/meld/meld-9-16.svg %%DATADIR%%/MindMeldModular/res/dark/meld/meld-grp-aux.svg %%DATADIR%%/MindMeldModular/res/dark/mixmaster-jr.svg %%DATADIR%%/MindMeldModular/res/dark/mixmaster.svg %%DATADIR%%/MindMeldModular/res/dark/ms-melder.svg %%DATADIR%%/MindMeldModular/res/dark/unmeld-1-8.svg %%DATADIR%%/MindMeldModular/res/dark/unmeld-9-16.svg %%DATADIR%%/MindMeldModular/res/dark/unmeld-grp-aux.svg %%DATADIR%%/MindMeldModular/res/fonts/RobotoCondensed-Regular.ttf +%%DATADIR%%/MockbaModular/res/Blank.svg +%%DATADIR%%/MockbaModular/res/CZDblSine.svg +%%DATADIR%%/MockbaModular/res/CZOsc.svg +%%DATADIR%%/MockbaModular/res/CZPulse.svg +%%DATADIR%%/MockbaModular/res/CZReso1.svg +%%DATADIR%%/MockbaModular/res/CZReso2.svg +%%DATADIR%%/MockbaModular/res/CZReso3.svg +%%DATADIR%%/MockbaModular/res/CZSaw.svg +%%DATADIR%%/MockbaModular/res/CZSawPulse.svg +%%DATADIR%%/MockbaModular/res/CZSquare.svg +%%DATADIR%%/MockbaModular/res/Comparator.svg +%%DATADIR%%/MockbaModular/res/Countah.svg +%%DATADIR%%/MockbaModular/res/Dividah.svg +%%DATADIR%%/MockbaModular/res/DualAND.svg +%%DATADIR%%/MockbaModular/res/DualBUFFER.svg +%%DATADIR%%/MockbaModular/res/DualNAND.svg +%%DATADIR%%/MockbaModular/res/DualNOR.svg +%%DATADIR%%/MockbaModular/res/DualNOT.svg +%%DATADIR%%/MockbaModular/res/DualOR.svg +%%DATADIR%%/MockbaModular/res/DualXNOR.svg +%%DATADIR%%/MockbaModular/res/DualXOR.svg +%%DATADIR%%/MockbaModular/res/Empty_dark.svg +%%DATADIR%%/MockbaModular/res/Empty_gray.svg +%%DATADIR%%/MockbaModular/res/Empty_light.svg +%%DATADIR%%/MockbaModular/res/Feidah.svg +%%DATADIR%%/MockbaModular/res/FeidahS.svg +%%DATADIR%%/MockbaModular/res/Filtah.svg +%%DATADIR%%/MockbaModular/res/HSW_0.svg +%%DATADIR%%/MockbaModular/res/HSW_1.svg +%%DATADIR%%/MockbaModular/res/HSW_2.svg +%%DATADIR%%/MockbaModular/res/Holdah.svg +%%DATADIR%%/MockbaModular/res/MaugOsc.svg +%%DATADIR%%/MockbaModular/res/MaugSaw.svg +%%DATADIR%%/MockbaModular/res/MaugSaw2.svg +%%DATADIR%%/MockbaModular/res/MaugShark.svg +%%DATADIR%%/MockbaModular/res/MaugSquare.svg +%%DATADIR%%/MockbaModular/res/MaugSquare2.svg +%%DATADIR%%/MockbaModular/res/MaugSquare3.svg +%%DATADIR%%/MockbaModular/res/MaugTriangle.svg +%%DATADIR%%/MockbaModular/res/Mixah.svg +%%DATADIR%%/MockbaModular/res/Mixah3.svg +%%DATADIR%%/MockbaModular/res/PSelectah.svg +%%DATADIR%%/MockbaModular/res/Pannah.svg +%%DATADIR%%/MockbaModular/res/ReVoltah.svg +%%DATADIR%%/MockbaModular/res/Selectah.svg +%%DATADIR%%/MockbaModular/res/Shapah.svg +%%DATADIR%%/MockbaModular/res/UDPClockMaster.svg +%%DATADIR%%/MockbaModular/res/UDPClockSlave.svg +%%DATADIR%%/MockbaModular/res/knob.svg +%%DATADIR%%/MockbaModular/res/port.svg +%%DATADIR%%/MockbaModular/res/screw.svg +%%DATADIR%%/MockbaModular/res/selector.svg %%DATADIR%%/Mog/res/Exo2-BoldItalic.ttf -%%DATADIR%%/Mog/res/MogLogo.svg +%%DATADIR%%/Mog/res/Mog Logo.svg %%DATADIR%%/Mog/res/Network.svg %%DATADIR%%/Mog/res/Nexus.svg %%DATADIR%%/Mog/res/Quantizer.svg %%DATADIR%%/Mog/res/components/knob_transparent.svg %%DATADIR%%/Mog/res/components/knob_transparent_dotted.svg %%DATADIR%%/Mog/res/components/knob_transparent_small.svg %%DATADIR%%/Mog/res/components/pushbutton_large_off.svg %%DATADIR%%/Mog/res/components/pushbutton_large_on.svg %%DATADIR%%/Mog/res/components/pushbutton_large_transparent_on.svg %%DATADIR%%/Mog/res/components/pushbutton_tiny_off.svg %%DATADIR%%/Mog/res/components/pushbutton_tiny_on.svg %%DATADIR%%/Mog/res/components/rocker_h_off.svg %%DATADIR%%/Mog/res/components/rocker_h_on.svg %%DATADIR%%/Mog/res/components/rocker_v_off.svg %%DATADIR%%/Mog/res/components/rocker_v_on.svg %%DATADIR%%/Mog/res/components/socket_round_dark.svg %%DATADIR%%/Mog/res/components/socket_round_dark_ring.svg +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Eugene/Agsag-Samai.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Eugene/AkaPygmies.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Eugene/Aksak.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Eugene/Bendir.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Eugene/BossaNova.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Eugene/CentralAfricanRepublic.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Eugene/Cinquillo.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Eugene/Cueca.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Eugene/Cumbia.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Eugene/Fandango.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Eugene/GhanaClap.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Eugene/Khafif-e-ramal.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Eugene/Money.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Eugene/Mpre.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Eugene/Nawakhat.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Eugene/Ngbaka-Maibo.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Eugene/OutsideNow.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Eugene/PicturesAtAnExhibition.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Eugene/RomanianFoldDance.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Eugene/Ruchenitza.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Eugene/Samba.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Eugene/Sangha.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Eugene/SpanishTango.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Eugene/TakeFive.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Eugene/Tresillo.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Eugene/Venda.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Eugene/VendaClap.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Eugene/WestAndCentralAfrica.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Eugene/York-Samai.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/Agsag-Samai.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/AkaPygmies.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/Aksak.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/Bendir.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/BossaNova.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/CentralAfricanRepublic.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/Cinquillo.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/Cueca.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/Cumbia.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/Fandango.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/GhanaClap.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/Khafif-e-ramal.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/Money.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/Mpre.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/Nawakhat.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/Ngbaka-Maibo.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/OutsideNow.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/PicturesAtAnExhibition.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/RomanianFoldDance.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/Ruchenitza.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/Samba.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/Sangha.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/SpanishTango.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/TakeFive.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/Tresillo.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/Venda.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/VendaClap.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/WestAndCentralAfrica.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/York-Samai.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/[Poly] FourOnTheFloor.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/[Poly] Samba.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/[Poly] Standard16thNoteGroove.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/[Poly] Standard8thNoteGroove.vcvm +%%DATADIR%%/Orbits/presets/RareBreeds_Orbits_Polygene/[Poly] TriggerEachChannel.vcvm +%%DATADIR%%/Orbits/res/blue-knob-large.svg +%%DATADIR%%/Orbits/res/blue-knob-small.svg +%%DATADIR%%/Orbits/res/dark-hex-screw.svg +%%DATADIR%%/Orbits/res/dark-inv-switch-off.svg +%%DATADIR%%/Orbits/res/dark-inv-switch-on.svg +%%DATADIR%%/Orbits/res/dark-port.svg +%%DATADIR%%/Orbits/res/dark-rev-switch-off.svg +%%DATADIR%%/Orbits/res/dark-rev-switch-on.svg +%%DATADIR%%/Orbits/res/dark-sync-switch-off.svg +%%DATADIR%%/Orbits/res/dark-sync-switch-on.svg +%%DATADIR%%/Orbits/res/eugene-dark-panel.svg +%%DATADIR%%/Orbits/res/eugene-layout.json +%%DATADIR%%/Orbits/res/eugene-light-panel.svg +%%DATADIR%%/Orbits/res/fonts/ShareTechMono-Regular.ttf +%%DATADIR%%/Orbits/res/grey-knob-small.svg +%%DATADIR%%/Orbits/res/light-hex-screw.svg +%%DATADIR%%/Orbits/res/light-inv-switch-off.svg +%%DATADIR%%/Orbits/res/light-inv-switch-on.svg +%%DATADIR%%/Orbits/res/light-port.svg +%%DATADIR%%/Orbits/res/light-rev-switch-off.svg +%%DATADIR%%/Orbits/res/light-rev-switch-on.svg +%%DATADIR%%/Orbits/res/light-sync-switch-off.svg +%%DATADIR%%/Orbits/res/light-sync-switch-on.svg +%%DATADIR%%/Orbits/res/polygene-dark-panel.svg +%%DATADIR%%/Orbits/res/polygene-layout.json +%%DATADIR%%/Orbits/res/polygene-light-panel.svg +%%DATADIR%%/Orbits/res/red-knob-large.svg +%%DATADIR%%/Orbits/res/red-knob-small.svg +%%DATADIR%%/Orbits/res/rnd-switch-off.svg +%%DATADIR%%/Orbits/res/rnd-switch-on.svg +%%DATADIR%%/ParableInstruments/res/CKSS_rot_0.svg +%%DATADIR%%/ParableInstruments/res/CKSS_rot_1.svg +%%DATADIR%%/ParableInstruments/res/Neil.png +%%DATADIR%%/ParableInstruments/res/Neil.svg +%%DATADIR%%/PathSet/res/AstroVibe.svg +%%DATADIR%%/PathSet/res/Blank.svg +%%DATADIR%%/PathSet/res/GlassPane.svg +%%DATADIR%%/PathSet/res/IceTray.svg +%%DATADIR%%/PathSet/res/Nudge.svg +%%DATADIR%%/PathSet/res/ShiftyExpander.svg +%%DATADIR%%/PathSet/res/ShiftyMod.svg +%%DATADIR%%/PathSet/res/WhiteKnob.svg +%%DATADIR%%/PathSet/res/WhiteKnob_bg.svg +%%DATADIR%%/PinkTrombone/res/Bolt.svg +%%DATADIR%%/PinkTrombone/res/HexKnob.svg +%%DATADIR%%/PinkTrombone/res/Jack.svg +%%DATADIR%%/PinkTrombone/res/MedHexKnob.svg +%%DATADIR%%/PinkTrombone/res/PinkTrombone.svg +%%DATADIR%%/PinkTrombone/res/SmallHexKnob.svg +%%DATADIR%%/PinkTrombone/res/SmallHexKnobInverted.svg +%%DATADIR%%/PinkTrombone/res/button18_0.svg +%%DATADIR%%/PinkTrombone/res/button18_1.svg +%%DATADIR%%/PinkTrombone/res/button18_2.svg +%%DATADIR%%/PinkTrombone/res/button9_0.svg +%%DATADIR%%/PinkTrombone/res/button9_1.svg +%%DATADIR%%/PinkTrombone/res/button9_2.svg +%%DATADIR%%/PinkTrombone/res/pinktromboneold.svg %%DATADIR%%/PluginManifests/21kHz.json +%%DATADIR%%/PluginManifests/8Mode.json +%%DATADIR%%/PluginManifests/AaronStatic.json +%%DATADIR%%/PluginManifests/Algoritmarte.json %%DATADIR%%/PluginManifests/AmalgamatedHarmonics.json +%%DATADIR%%/PluginManifests/AnimatedCircuits.json +%%DATADIR%%/PluginManifests/ArableInstruments.json %%DATADIR%%/PluginManifests/AriaModules.json %%DATADIR%%/PluginManifests/AudibleInstruments.json %%DATADIR%%/PluginManifests/Autinn.json +%%DATADIR%%/PluginManifests/Axioma.json %%DATADIR%%/PluginManifests/BaconPlugs.json +%%DATADIR%%/PluginManifests/Befaco.json %%DATADIR%%/PluginManifests/Bidoo.json %%DATADIR%%/PluginManifests/BogaudioModules.json %%DATADIR%%/PluginManifests/Cardinal.json +%%DATADIR%%/PluginManifests/CatroModulo.json %%DATADIR%%/PluginManifests/ChowDSP.json %%DATADIR%%/PluginManifests/DrumKit.json %%DATADIR%%/PluginManifests/ESeries.json %%DATADIR%%/PluginManifests/ExpertSleepers-Encoders.json %%DATADIR%%/PluginManifests/Extratone.json %%DATADIR%%/PluginManifests/FehlerFabrik.json +%%DATADIR%%/PluginManifests/Fundamental.json %%DATADIR%%/PluginManifests/GlueTheGiant.json +%%DATADIR%%/PluginManifests/GoodSheperd.json %%DATADIR%%/PluginManifests/GrandeModular.json +%%DATADIR%%/PluginManifests/HamptonHarmonics.json %%DATADIR%%/PluginManifests/HetrickCV.json %%DATADIR%%/PluginManifests/ImpromptuModular.json %%DATADIR%%/PluginManifests/JW-Modules.json %%DATADIR%%/PluginManifests/LifeFormModular.json +%%DATADIR%%/PluginManifests/LilacLoop.json %%DATADIR%%/PluginManifests/LittleUtils.json %%DATADIR%%/PluginManifests/LomasModules.json %%DATADIR%%/PluginManifests/LyraeModules.json +%%DATADIR%%/PluginManifests/ML_modules.json +%%DATADIR%%/PluginManifests/MSM.json +%%DATADIR%%/PluginManifests/Meander.json %%DATADIR%%/PluginManifests/MindMeldModular.json +%%DATADIR%%/PluginManifests/MockbaModular.json %%DATADIR%%/PluginManifests/Mog.json +%%DATADIR%%/PluginManifests/Orbits.json +%%DATADIR%%/PluginManifests/ParableInstruments.json +%%DATADIR%%/PluginManifests/PathSet.json +%%DATADIR%%/PluginManifests/PinkTrombone.json %%DATADIR%%/PluginManifests/Prism.json %%DATADIR%%/PluginManifests/ValleyAudio.json +%%DATADIR%%/PluginManifests/WhatTheRack.json %%DATADIR%%/PluginManifests/ZZC.json %%DATADIR%%/PluginManifests/ZetaCarinaeModules.json %%DATADIR%%/PluginManifests/cf.json %%DATADIR%%/PluginManifests/ihtsyn.json +%%DATADIR%%/PluginManifests/kocmoc.json %%DATADIR%%/PluginManifests/mscHack.json +%%DATADIR%%/PluginManifests/nonlinearcircuits.json %%DATADIR%%/PluginManifests/rackwindows.json %%DATADIR%%/PluginManifests/repelzen.json %%DATADIR%%/PluginManifests/sonusmodular.json +%%DATADIR%%/PluginManifests/stocaudio.json +%%DATADIR%%/PluginManifests/unless_modules.json +%%DATADIR%%/PluginManifests/voxglitch.json %%DATADIR%%/Prism/res/ComponentLibrary/PrismButton_0.svg %%DATADIR%%/Prism/res/ComponentLibrary/PrismButton_1.svg %%DATADIR%%/Prism/res/ComponentLibrary/PrismFloatReadout.svg %%DATADIR%%/Prism/res/ComponentLibrary/PrismIndicator.svg %%DATADIR%%/Prism/res/ComponentLibrary/PrismIntegerReadout.svg %%DATADIR%%/Prism/res/ComponentLibrary/PrismKnob.svg %%DATADIR%%/Prism/res/ComponentLibrary/PrismLargeButton_0.svg %%DATADIR%%/Prism/res/ComponentLibrary/PrismLargeButton_1.svg %%DATADIR%%/Prism/res/ComponentLibrary/PrismMonoIn.svg %%DATADIR%%/Prism/res/ComponentLibrary/PrismMonoOut.svg %%DATADIR%%/Prism/res/ComponentLibrary/PrismPolyIn.svg %%DATADIR%%/Prism/res/ComponentLibrary/PrismPolyOut.svg %%DATADIR%%/Prism/res/ComponentLibrary/PrismSSwitch_0.svg %%DATADIR%%/Prism/res/ComponentLibrary/PrismSSwitch_1.svg %%DATADIR%%/Prism/res/ComponentLibrary/PrismSSwitch_2.svg %%DATADIR%%/Prism/res/ComponentLibrary/PrismSlider.svg %%DATADIR%%/Prism/res/ComponentLibrary/PrismSliderHandle.svg %%DATADIR%%/Prism/res/ComponentLibrary/PrismSliderNop.svg %%DATADIR%%/Prism/res/ComponentLibrary/PrismTrimpot.svg %%DATADIR%%/Prism/res/ComponentLibrary/prism_Jack.svg %%DATADIR%%/Prism/res/ComponentLibrary/prism_Knob_L.svg %%DATADIR%%/Prism/res/ComponentLibrary/prism_Knob_S.svg %%DATADIR%%/Prism/res/ComponentLibrary/prism_Switch2_1.svg %%DATADIR%%/Prism/res/ComponentLibrary/prism_Switch3_1.svg %%DATADIR%%/Prism/res/ComponentLibrary/prism_Switch3_2-08.svg %%DATADIR%%/Prism/res/ComponentLibrary/prism_Switch3_2-11.svg %%DATADIR%%/Prism/res/ComponentLibrary/prism_Switch3_3.svg %%DATADIR%%/Prism/res/ComponentLibrary/prism_button_0.svg %%DATADIR%%/Prism/res/ComponentLibrary/prism_button_1.svg %%DATADIR%%/Prism/res/ComponentLibrary/prism_fader.svg %%DATADIR%%/Prism/res/ComponentLibrary/prism_triangle.svg %%DATADIR%%/Prism/res/RainbowScaleExpander.svg %%DATADIR%%/Prism/res/RobotoCondensed-Regular.ttf %%DATADIR%%/Prism/res/prism_Droplet.svg %%DATADIR%%/Prism/res/prism_Rainbow.svg %%DATADIR%%/ValleyAudio/res/AmalgamPanelDark.svg %%DATADIR%%/ValleyAudio/res/AmalgamPanelLight.svg %%DATADIR%%/ValleyAudio/res/DSEG14Classic-Italic.ttf %%DATADIR%%/ValleyAudio/res/DexterPanelDark.svg %%DATADIR%%/ValleyAudio/res/DexterPanelLight.svg %%DATADIR%%/ValleyAudio/res/FelinePanelDark.svg %%DATADIR%%/ValleyAudio/res/FelinePanelLight.svg %%DATADIR%%/ValleyAudio/res/InterzonePanelDark.svg %%DATADIR%%/ValleyAudio/res/InterzonePanelLight.svg %%DATADIR%%/ValleyAudio/res/LightLEDButton.svg %%DATADIR%%/ValleyAudio/res/LightLEDButton80.svg %%DATADIR%%/ValleyAudio/res/PJ301MDark.svg %%DATADIR%%/ValleyAudio/res/PJ301MDarkSmall.svg %%DATADIR%%/ValleyAudio/res/PJ301MDarkSmallOut.svg %%DATADIR%%/ValleyAudio/res/PlateauPanelDark.svg %%DATADIR%%/ValleyAudio/res/PlateauPanelLight.svg %%DATADIR%%/ValleyAudio/res/Rogan1PSBlue.svg %%DATADIR%%/ValleyAudio/res/Rogan1PSBlueMed.svg %%DATADIR%%/ValleyAudio/res/Rogan1PSBlueMedSmall.svg %%DATADIR%%/ValleyAudio/res/Rogan1PSBlueSmall.svg %%DATADIR%%/ValleyAudio/res/Rogan1PSBrightRed.svg %%DATADIR%%/ValleyAudio/res/Rogan1PSBrightRedSmall.svg %%DATADIR%%/ValleyAudio/res/Rogan1PSGreen.svg %%DATADIR%%/ValleyAudio/res/Rogan1PSGreenMed.svg %%DATADIR%%/ValleyAudio/res/Rogan1PSGreenSmall.svg %%DATADIR%%/ValleyAudio/res/Rogan1PSMustard.svg %%DATADIR%%/ValleyAudio/res/Rogan1PSMustardMed.svg %%DATADIR%%/ValleyAudio/res/Rogan1PSMustardSmall.svg %%DATADIR%%/ValleyAudio/res/Rogan1PSOrange.svg %%DATADIR%%/ValleyAudio/res/Rogan1PSOrangeMed.svg %%DATADIR%%/ValleyAudio/res/Rogan1PSOrangeSmall.svg %%DATADIR%%/ValleyAudio/res/Rogan1PSPurple.svg %%DATADIR%%/ValleyAudio/res/Rogan1PSPurpleMed.svg %%DATADIR%%/ValleyAudio/res/Rogan1PSPurpleSmall.svg %%DATADIR%%/ValleyAudio/res/Rogan1PSRed.svg %%DATADIR%%/ValleyAudio/res/Rogan1PSRedMed.svg %%DATADIR%%/ValleyAudio/res/Rogan1PSRedSmall.svg %%DATADIR%%/ValleyAudio/res/Rogan1PSWhiteMed.svg %%DATADIR%%/ValleyAudio/res/Rogan1PSWhiteMedSmall.svg %%DATADIR%%/ValleyAudio/res/Rogan1PSWhiteSmall.svg %%DATADIR%%/ValleyAudio/res/Rogan1PSYellow.svg %%DATADIR%%/ValleyAudio/res/Rogan1PSYellowSmall.svg %%DATADIR%%/ValleyAudio/res/ShareTechMono-Regular.ttf %%DATADIR%%/ValleyAudio/res/TerrorformDark.svg %%DATADIR%%/ValleyAudio/res/TerrorformDarkManager.svg %%DATADIR%%/ValleyAudio/res/TerrorformLight.svg %%DATADIR%%/ValleyAudio/res/TerrorformLightManager.svg %%DATADIR%%/ValleyAudio/res/Topograph.svg %%DATADIR%%/ValleyAudio/res/TopographPanel.svg %%DATADIR%%/ValleyAudio/res/TopographPanelWhite.svg %%DATADIR%%/ValleyAudio/res/UGraphPanel.svg %%DATADIR%%/ValleyAudio/res/UGraphPanelLight.svg %%DATADIR%%/ValleyAudio/res/algo0.svg %%DATADIR%%/ValleyAudio/res/algo0Dark.svg %%DATADIR%%/ValleyAudio/res/algo1.svg %%DATADIR%%/ValleyAudio/res/algo10.svg %%DATADIR%%/ValleyAudio/res/algo10Dark.svg %%DATADIR%%/ValleyAudio/res/algo11.svg %%DATADIR%%/ValleyAudio/res/algo11Dark.svg %%DATADIR%%/ValleyAudio/res/algo12.svg %%DATADIR%%/ValleyAudio/res/algo12Dark.svg %%DATADIR%%/ValleyAudio/res/algo13.svg %%DATADIR%%/ValleyAudio/res/algo13Dark.svg %%DATADIR%%/ValleyAudio/res/algo14.svg %%DATADIR%%/ValleyAudio/res/algo14Dark.svg %%DATADIR%%/ValleyAudio/res/algo15.svg %%DATADIR%%/ValleyAudio/res/algo15Dark.svg %%DATADIR%%/ValleyAudio/res/algo16.svg %%DATADIR%%/ValleyAudio/res/algo16Dark.svg %%DATADIR%%/ValleyAudio/res/algo17.svg %%DATADIR%%/ValleyAudio/res/algo17Dark.svg %%DATADIR%%/ValleyAudio/res/algo18.svg %%DATADIR%%/ValleyAudio/res/algo18Dark.svg %%DATADIR%%/ValleyAudio/res/algo19.svg %%DATADIR%%/ValleyAudio/res/algo19Dark.svg %%DATADIR%%/ValleyAudio/res/algo1Dark.svg %%DATADIR%%/ValleyAudio/res/algo2.svg %%DATADIR%%/ValleyAudio/res/algo20.svg %%DATADIR%%/ValleyAudio/res/algo20Dark.svg %%DATADIR%%/ValleyAudio/res/algo21.svg %%DATADIR%%/ValleyAudio/res/algo21Dark.svg %%DATADIR%%/ValleyAudio/res/algo22.svg %%DATADIR%%/ValleyAudio/res/algo22Dark.svg %%DATADIR%%/ValleyAudio/res/algo2Dark.svg %%DATADIR%%/ValleyAudio/res/algo3.svg %%DATADIR%%/ValleyAudio/res/algo3Dark.svg %%DATADIR%%/ValleyAudio/res/algo4.svg %%DATADIR%%/ValleyAudio/res/algo4Dark.svg %%DATADIR%%/ValleyAudio/res/algo5.svg %%DATADIR%%/ValleyAudio/res/algo5Dark.svg %%DATADIR%%/ValleyAudio/res/algo6.svg %%DATADIR%%/ValleyAudio/res/algo6Dark.svg %%DATADIR%%/ValleyAudio/res/algo7.svg %%DATADIR%%/ValleyAudio/res/algo7Dark.svg %%DATADIR%%/ValleyAudio/res/algo8.svg %%DATADIR%%/ValleyAudio/res/algo8Dark.svg %%DATADIR%%/ValleyAudio/res/algo9.svg %%DATADIR%%/ValleyAudio/res/algo9Dark.svg %%DATADIR%%/ValleyAudio/res/din1451alt.ttf %%DATADIR%%/ValleyAudio/res/sliderBlue.svg %%DATADIR%%/ValleyAudio/res/sliderGreen.svg %%DATADIR%%/ValleyAudio/res/sliderOrange.svg %%DATADIR%%/ValleyAudio/res/sliderRed.svg %%DATADIR%%/ValleyAudio/res/sliderYellow.svg %%DATADIR%%/ValleyAudio/res/v2/Med/Rogan1PSBlueMed-fg.svg %%DATADIR%%/ValleyAudio/res/v2/Med/Rogan1PSBlueMed.svg %%DATADIR%%/ValleyAudio/res/v2/Med/Rogan1PSBlueMedSmall-fg.svg %%DATADIR%%/ValleyAudio/res/v2/Med/Rogan1PSBlueMedSmall.svg %%DATADIR%%/ValleyAudio/res/v2/Med/Rogan1PSGreenMed-fg.svg %%DATADIR%%/ValleyAudio/res/v2/Med/Rogan1PSGreenMed.svg %%DATADIR%%/ValleyAudio/res/v2/Med/Rogan1PSMed-bg.svg %%DATADIR%%/ValleyAudio/res/v2/Med/Rogan1PSMedSmall-bg.svg %%DATADIR%%/ValleyAudio/res/v2/Med/Rogan1PSMustardMed-fg.svg %%DATADIR%%/ValleyAudio/res/v2/Med/Rogan1PSMustardMed.svg %%DATADIR%%/ValleyAudio/res/v2/Med/Rogan1PSOrangeMed-fg.svg %%DATADIR%%/ValleyAudio/res/v2/Med/Rogan1PSOrangeMed.svg %%DATADIR%%/ValleyAudio/res/v2/Med/Rogan1PSPurpleMed-fg.svg %%DATADIR%%/ValleyAudio/res/v2/Med/Rogan1PSPurpleMed.svg %%DATADIR%%/ValleyAudio/res/v2/Med/Rogan1PSRedMed-fg.svg %%DATADIR%%/ValleyAudio/res/v2/Med/Rogan1PSRedMed.svg %%DATADIR%%/ValleyAudio/res/v2/Med/Rogan1PSWhiteMed-fg.svg %%DATADIR%%/ValleyAudio/res/v2/Med/Rogan1PSWhiteMed.svg %%DATADIR%%/ValleyAudio/res/v2/Med/Rogan1PSWhiteMedSmall-fg.svg %%DATADIR%%/ValleyAudio/res/v2/Med/Rogan1PSWhiteMedSmall.svg %%DATADIR%%/ValleyAudio/res/v2/Rogan1PS-bg.svg %%DATADIR%%/ValleyAudio/res/v2/Rogan1PSBrightRed-fg.svg %%DATADIR%%/ValleyAudio/res/v2/Rogan1PSBrightRed.svg %%DATADIR%%/ValleyAudio/res/v2/Rogan1PSOrange-fg.svg %%DATADIR%%/ValleyAudio/res/v2/Rogan1PSOrange.svg %%DATADIR%%/ValleyAudio/res/v2/Rogan1PSYellow-fg.svg %%DATADIR%%/ValleyAudio/res/v2/Rogan1PSYellow.svg %%DATADIR%%/ValleyAudio/res/v2/Small/Rogan1PSBlueSmall-fg.svg %%DATADIR%%/ValleyAudio/res/v2/Small/Rogan1PSBlueSmall.svg %%DATADIR%%/ValleyAudio/res/v2/Small/Rogan1PSBrightRedSmall-fg.svg %%DATADIR%%/ValleyAudio/res/v2/Small/Rogan1PSBrightRedSmall.svg %%DATADIR%%/ValleyAudio/res/v2/Small/Rogan1PSGreenSmall-fg.svg %%DATADIR%%/ValleyAudio/res/v2/Small/Rogan1PSGreenSmall.svg %%DATADIR%%/ValleyAudio/res/v2/Small/Rogan1PSMustardSmall-fg.svg %%DATADIR%%/ValleyAudio/res/v2/Small/Rogan1PSMustardSmall.svg %%DATADIR%%/ValleyAudio/res/v2/Small/Rogan1PSOrangeSmall-fg.svg %%DATADIR%%/ValleyAudio/res/v2/Small/Rogan1PSOrangeSmall.svg %%DATADIR%%/ValleyAudio/res/v2/Small/Rogan1PSPurpleSmall-fg.svg %%DATADIR%%/ValleyAudio/res/v2/Small/Rogan1PSPurpleSmall.svg %%DATADIR%%/ValleyAudio/res/v2/Small/Rogan1PSRedSmall-fg.svg %%DATADIR%%/ValleyAudio/res/v2/Small/Rogan1PSRedSmall.svg %%DATADIR%%/ValleyAudio/res/v2/Small/Rogan1PSSmall-bg.svg %%DATADIR%%/ValleyAudio/res/v2/Small/Rogan1PSWhiteSmall-fg.svg %%DATADIR%%/ValleyAudio/res/v2/Small/Rogan1PSWhiteSmall.svg %%DATADIR%%/ValleyAudio/res/v2/Small/Rogan1PSYellowSmall-fg.svg %%DATADIR%%/ValleyAudio/res/v2/Small/Rogan1PSYellowSmall.svg %%DATADIR%%/ValleyAudio/res/valleySliderBackground.svg +%%DATADIR%%/WhatTheRack/res/BoomButton/question_bw.svg +%%DATADIR%%/WhatTheRack/res/BoomButton/question_color.svg +%%DATADIR%%/WhatTheRack/res/WhatTheJack.svg +%%DATADIR%%/WhatTheRack/res/WhatTheMod.svg +%%DATADIR%%/WhatTheRack/res/WhatTheRack.svg %%DATADIR%%/ZZC/res/fonts/DSEG/DSEG7ClassicMini-Italic.ttf %%DATADIR%%/ZZC/res/fonts/Nunito/Nunito-Black.ttf %%DATADIR%%/ZZC/res/fonts/Nunito/Nunito-Bold.ttf %%DATADIR%%/ZZC/res/fonts/Nunito/Nunito-ExtraBold.ttf %%DATADIR%%/ZZC/res/fonts/Nunito/Nunito-ExtraLight.ttf %%DATADIR%%/ZZC/res/fonts/Nunito/Nunito-Light.ttf %%DATADIR%%/ZZC/res/fonts/Nunito/Nunito-Medium.ttf %%DATADIR%%/ZZC/res/fonts/Nunito/Nunito-Regular.ttf %%DATADIR%%/ZZC/res/fonts/Nunito/Nunito-SemiBold.ttf %%DATADIR%%/ZZC/res/knobs/ZZC-Big-Knob-Inner.svg %%DATADIR%%/ZZC/res/knobs/ZZC-Big-Knob.svg %%DATADIR%%/ZZC/res/knobs/ZZC-Cross-Knob-29.svg %%DATADIR%%/ZZC/res/knobs/ZZC-Cross-Knob-45.svg %%DATADIR%%/ZZC/res/knobs/ZZC-Cross-Knob.svg %%DATADIR%%/ZZC/res/knobs/ZZC-Direct-Knob-15.svg %%DATADIR%%/ZZC/res/knobs/ZZC-Direct-Knob-19.svg %%DATADIR%%/ZZC/res/knobs/ZZC-Direct-Knob-With-Dot-19.svg %%DATADIR%%/ZZC/res/knobs/ZZC-Encoder-Knob.svg %%DATADIR%%/ZZC/res/knobs/ZZC-Knob-19.svg %%DATADIR%%/ZZC/res/knobs/ZZC-Knob-21.svg %%DATADIR%%/ZZC/res/knobs/ZZC-Knob-23.svg %%DATADIR%%/ZZC/res/knobs/ZZC-Knob-25-Encoder.svg %%DATADIR%%/ZZC/res/knobs/ZZC-Knob-25.svg %%DATADIR%%/ZZC/res/knobs/ZZC-Knob-27-19-Encoder.svg %%DATADIR%%/ZZC/res/knobs/ZZC-Knob-27-21-Encoder.svg %%DATADIR%%/ZZC/res/knobs/ZZC-Knob-27-23-Encoder.svg %%DATADIR%%/ZZC/res/knobs/ZZC-Knob-27-Encoder.svg %%DATADIR%%/ZZC/res/knobs/ZZC-Knob-27.svg %%DATADIR%%/ZZC/res/knobs/ZZC-Knob-With-Dot-19.svg %%DATADIR%%/ZZC/res/knobs/ZZC-Precise-Knob.svg %%DATADIR%%/ZZC/res/knobs/ZZC-Select-Knob.svg %%DATADIR%%/ZZC/res/knobs/ZZC-Stepped-Knob.svg %%DATADIR%%/ZZC/res/panels/Clock.svg %%DATADIR%%/ZZC/res/panels/Div.svg %%DATADIR%%/ZZC/res/panels/DivExp.svg %%DATADIR%%/ZZC/res/panels/Divider.svg %%DATADIR%%/ZZC/res/panels/FN-3.svg %%DATADIR%%/ZZC/res/panels/Phasor.svg %%DATADIR%%/ZZC/res/panels/Polygate.svg %%DATADIR%%/ZZC/res/panels/SC-VCA.svg %%DATADIR%%/ZZC/res/panels/SH-8.svg %%DATADIR%%/ZZC/res/panels/SRC.svg %%DATADIR%%/ZZC/res/panels/WavetablePlayer.svg %%DATADIR%%/ZZC/res/screws/ZZC-Screw.svg %%DATADIR%%/ZZC/res/sliders/ZZC-Small-Slider_BG.svg %%DATADIR%%/ZZC/res/sliders/ZZC-Small-Slider_Handle.svg %%DATADIR%%/ZZC/res/sockets/ZZC-PJ.svg %%DATADIR%%/ZZC/res/switches/ZZC-FN-3-Uni-Bi-Switch_0.svg %%DATADIR%%/ZZC/res/switches/ZZC-FN-3-Uni-Bi-Switch_1.svg %%DATADIR%%/ZZC/res/switches/ZZC-FN-3-Wave-Switch_0.svg %%DATADIR%%/ZZC/res/switches/ZZC-FN-3-Wave-Switch_1.svg %%DATADIR%%/ZZC/res/switches/ZZC-FN-3-Wave-Switch_2.svg %%DATADIR%%/ZZC/res/switches/ZZC-LED-Bezel-Dark.svg %%DATADIR%%/ZZC/res/switches/ZZC-Next-Button.svg %%DATADIR%%/ZZC/res/switches/ZZC-Open-Button.svg %%DATADIR%%/ZZC/res/switches/ZZC-Prev-Button.svg %%DATADIR%%/ZZC/res/switches/ZZC-Switch-2-Vertical_0.svg %%DATADIR%%/ZZC/res/switches/ZZC-Switch-2-Vertical_1.svg %%DATADIR%%/ZZC/res/switches/ZZC-Switch-2_0.svg %%DATADIR%%/ZZC/res/switches/ZZC-Switch-2_1.svg %%DATADIR%%/ZZC/res/switches/ZZC-Switch-3_0.svg %%DATADIR%%/ZZC/res/switches/ZZC-Switch-3_1.svg %%DATADIR%%/ZZC/res/switches/ZZC-Switch-3_2.svg %%DATADIR%%/ZZC/res/switches/ZZC-VBPSVOCT-Switch_0.svg %%DATADIR%%/ZZC/res/switches/ZZC-VBPSVOCT-Switch_1.svg %%DATADIR%%/ZetaCarinaeModules/res/BrownianBridge.svg %%DATADIR%%/ZetaCarinaeModules/res/FireflyPlate.svg %%DATADIR%%/ZetaCarinaeModules/res/GuildensTurnPlate.svg %%DATADIR%%/ZetaCarinaeModules/res/IOUPlate.svg %%DATADIR%%/ZetaCarinaeModules/res/OrnsteinUhlenbeckPlate.svg %%DATADIR%%/ZetaCarinaeModules/res/RosenchancePlate.svg %%DATADIR%%/ZetaCarinaeModules/res/RosslerRustlerPlate.svg %%DATADIR%%/ZetaCarinaeModules/res/WarblerPlate.svg %%DATADIR%%/cf/playeroscs/noisepink.wav %%DATADIR%%/cf/playeroscs/noisewhite.wav %%DATADIR%%/cf/playeroscs/osc1.wav %%DATADIR%%/cf/playeroscs/osc2.wav %%DATADIR%%/cf/playeroscs/osc3.wav %%DATADIR%%/cf/playeroscs/osc4.wav %%DATADIR%%/cf/playeroscs/osc5.wav %%DATADIR%%/cf/playeroscs/osc6.wav %%DATADIR%%/cf/playeroscs/osc7.wav %%DATADIR%%/cf/playeroscs/osc8.wav %%DATADIR%%/cf/playeroscs/saw.wav %%DATADIR%%/cf/res/ALGEBRA.svg %%DATADIR%%/cf/res/BUFFER.svg %%DATADIR%%/cf/res/CHOKE.svg %%DATADIR%%/cf/res/CUBE.svg %%DATADIR%%/cf/res/CUTS.svg %%DATADIR%%/cf/res/DAVE.svg %%DATADIR%%/cf/res/DISTO.svg %%DATADIR%%/cf/res/DejaVuSansMono.ttf %%DATADIR%%/cf/res/EACH.svg %%DATADIR%%/cf/res/FOUR.svg %%DATADIR%%/cf/res/FUNKTION.svg %%DATADIR%%/cf/res/L.svg %%DATADIR%%/cf/res/L3DS3Q.svg %%DATADIR%%/cf/res/LABEL.svg %%DATADIR%%/cf/res/LEDS.svg %%DATADIR%%/cf/res/LEDSEQ.svg %%DATADIR%%/cf/res/Ldown.svg %%DATADIR%%/cf/res/MASTER.svg %%DATADIR%%/cf/res/METRO.svg %%DATADIR%%/cf/res/MONO.svg %%DATADIR%%/cf/res/PATCH.svg %%DATADIR%%/cf/res/PEAK.svg %%DATADIR%%/cf/res/PLAY.svg %%DATADIR%%/cf/res/PLAYER.svg %%DATADIR%%/cf/res/PadButton.svg %%DATADIR%%/cf/res/PadButtonDown.svg %%DATADIR%%/cf/res/SLIDERSEQ.svg %%DATADIR%%/cf/res/STEPS.svg %%DATADIR%%/cf/res/STEREO.svg %%DATADIR%%/cf/res/SUB.svg %%DATADIR%%/cf/res/Segment7Standard.ttf %%DATADIR%%/cf/res/VARIABLE.svg %%DATADIR%%/cf/res/VT323-Regular.ttf %%DATADIR%%/cf/res/cach.svg %%DATADIR%%/cf/res/cfBigKnob-bg.svg %%DATADIR%%/cf/res/cfBigKnob.svg %%DATADIR%%/cf/res/cfTrimpot-bg.svg %%DATADIR%%/cf/res/cfTrimpot.svg %%DATADIR%%/cf/res/distocach.svg %%DATADIR%%/cf/res/downButton.svg %%DATADIR%%/cf/res/downButtonDown.svg %%DATADIR%%/cf/res/plusButton.svg %%DATADIR%%/cf/res/trSEQ.svg %%DATADIR%%/cf/res/upButton.svg %%DATADIR%%/cf/res/upButtonDown.svg %%DATADIR%%/fonts/DSEG7ClassicMini-Bold.ttf %%DATADIR%%/fonts/DSEG7ClassicMini-BoldItalic.ttf %%DATADIR%%/fonts/DSEG7ClassicMini-Italic.ttf %%DATADIR%%/fonts/DSEG7ClassicMini-Light.ttf %%DATADIR%%/fonts/DSEG7ClassicMini-LightItalic.ttf %%DATADIR%%/fonts/DSEG7ClassicMini-Regular.ttf %%DATADIR%%/fonts/DejaVuSans.ttf %%DATADIR%%/fonts/Nunito-Bold.ttf %%DATADIR%%/fonts/ShareTechMono-Regular.ttf %%DATADIR%%/ihtsyn/res/Davies1900hWhite20.svg %%DATADIR%%/ihtsyn/res/Davies1900hWhite20_bg.svg %%DATADIR%%/ihtsyn/res/HiVerb.svg +%%DATADIR%%/ihtsyn/res/LEDCalculator.ttf %%DATADIR%%/ihtsyn/res/MVerb.svg %%DATADIR%%/ihtsyn/res/PitchShifter.svg %%DATADIR%%/ihtsyn/res/TwistedMVerb.svg %%DATADIR%%/ihtsyn/res/nyTapperDown12.svg %%DATADIR%%/ihtsyn/res/nyTapperDown16.svg %%DATADIR%%/ihtsyn/res/nyTapperUp12.svg %%DATADIR%%/ihtsyn/res/nyTapperUp16.svg +%%DATADIR%%/kocmoc/res/DDLY.svg +%%DATADIR%%/kocmoc/res/LADR.svg +%%DATADIR%%/kocmoc/res/MUL.svg +%%DATADIR%%/kocmoc/res/OP.svg +%%DATADIR%%/kocmoc/res/PHASR.svg +%%DATADIR%%/kocmoc/res/SKF.svg +%%DATADIR%%/kocmoc/res/SVF.svg +%%DATADIR%%/kocmoc/res/TRG.svg %%DATADIR%%/mscHack/res/ARP700.svg %%DATADIR%%/mscHack/res/ASAF8.svg %%DATADIR%%/mscHack/res/Alienz.svg %%DATADIR%%/mscHack/res/Compressor.svg %%DATADIR%%/mscHack/res/Dronez.svg %%DATADIR%%/mscHack/res/Lorenz.svg %%DATADIR%%/mscHack/res/MasterClockx4.svg %%DATADIR%%/mscHack/res/MasterClockx8.svg %%DATADIR%%/mscHack/res/Maude221.svg %%DATADIR%%/mscHack/res/Mixer_16_4_4.svg %%DATADIR%%/mscHack/res/Mixer_24_4_4.svg %%DATADIR%%/mscHack/res/Mixer_4_0_4.svg %%DATADIR%%/mscHack/res/Mixer_9_3_4.svg %%DATADIR%%/mscHack/res/Morze.svg %%DATADIR%%/mscHack/res/OSC3Channel.svg %%DATADIR%%/mscHack/res/OSC_WaveMorph_3.svg %%DATADIR%%/mscHack/res/PingPong.svg %%DATADIR%%/mscHack/res/SEQ_6x32x16.svg %%DATADIR%%/mscHack/res/SEQ_Envelope_8.svg %%DATADIR%%/mscHack/res/Seq_3x16x16.svg %%DATADIR%%/mscHack/res/StepDelay.svg %%DATADIR%%/mscHack/res/SynthDrums.svg %%DATADIR%%/mscHack/res/TriadSequencer2.svg %%DATADIR%%/mscHack/res/Windz.svg %%DATADIR%%/mscHack/res/XFade.svg %%DATADIR%%/mscHack/res/mschack_3p_vert_simple_01.svg %%DATADIR%%/mscHack/res/mschack_3p_vert_simple_02.svg %%DATADIR%%/mscHack/res/mschack_3p_vert_simple_03.svg %%DATADIR%%/mscHack/res/mschack_5p_filtersel_01.svg %%DATADIR%%/mscHack/res/mschack_5p_filtersel_02.svg %%DATADIR%%/mscHack/res/mschack_5p_filtersel_03.svg %%DATADIR%%/mscHack/res/mschack_5p_filtersel_04.svg %%DATADIR%%/mscHack/res/mschack_5p_filtersel_05.svg %%DATADIR%%/mscHack/res/mschack_Knob_Blue1_26.svg %%DATADIR%%/mscHack/res/mschack_Knob_Blue2_15.svg %%DATADIR%%/mscHack/res/mschack_Knob_Blue2_26.svg %%DATADIR%%/mscHack/res/mschack_Knob_Blue2_40.svg %%DATADIR%%/mscHack/res/mschack_Knob_Blue2_56.svg %%DATADIR%%/mscHack/res/mschack_Knob_Blue3_15.svg %%DATADIR%%/mscHack/res/mschack_Knob_Blue3_20.svg %%DATADIR%%/mscHack/res/mschack_Knob_Green1_15.svg %%DATADIR%%/mscHack/res/mschack_Knob_Green1_40.svg %%DATADIR%%/mscHack/res/mschack_Knob_Purp1_15.svg %%DATADIR%%/mscHack/res/mschack_Knob_Purp1_20.svg %%DATADIR%%/mscHack/res/mschack_Knob_Red1_15.svg %%DATADIR%%/mscHack/res/mschack_Knob_Red1_20.svg %%DATADIR%%/mscHack/res/mschack_Knob_Yellow1_15.svg %%DATADIR%%/mscHack/res/mschack_Knob_Yellow1_26.svg %%DATADIR%%/mscHack/res/mschack_Knob_Yellow2_26.svg %%DATADIR%%/mscHack/res/mschack_Knob_Yellow2_40.svg %%DATADIR%%/mscHack/res/mschack_Knob_Yellow2_56.svg %%DATADIR%%/mscHack/res/mschack_Knob_Yellow3_15.svg %%DATADIR%%/mscHack/res/mschack_Knob_Yellow3_20.svg %%DATADIR%%/mscHack/res/mschack_PortIn_small.svg %%DATADIR%%/mscHack/res/mschack_PortOut_small.svg %%DATADIR%%/mscHack/res/mschack_Slider02_10x15.svg %%DATADIR%%/mscHack/res/mschack_sliderBG_01.svg %%DATADIR%%/mscHack/res/mschack_sliderBG_02.svg %%DATADIR%%/mscHack/res/mschack_sliderKNOB_01.svg %%DATADIR%%/mscHack/res/mschack_square_button.svg +%%DATADIR%%/nonlinearcircuits/res/Audiowide-Regular.ttf +%%DATADIR%%/nonlinearcircuits/res/BOOLs.afdesign +%%DATADIR%%/nonlinearcircuits/res/BOOLs.svg +%%DATADIR%%/nonlinearcircuits/res/BOOLs2.svg +%%DATADIR%%/nonlinearcircuits/res/DoubleNeuronBright.svg +%%DATADIR%%/nonlinearcircuits/res/DoubleNeuronDark.svg +%%DATADIR%%/nonlinearcircuits/res/DoubleNeuronRef.svg +%%DATADIR%%/nonlinearcircuits/res/LetsSplosh.svg +%%DATADIR%%/nonlinearcircuits/res/NLC - 1050 MIXER SEQUENCER.afdesign +%%DATADIR%%/nonlinearcircuits/res/NLC - 1050 MIXER SEQUENCER.svg +%%DATADIR%%/nonlinearcircuits/res/NLC - 32to1.afdesign +%%DATADIR%%/nonlinearcircuits/res/NLC - 32to1.svg +%%DATADIR%%/nonlinearcircuits/res/NLC - 4seq.afdesign +%%DATADIR%%/nonlinearcircuits/res/NLC - 4seq.svg +%%DATADIR%%/nonlinearcircuits/res/NLC - 8 BIT CIPHER.afdesign +%%DATADIR%%/nonlinearcircuits/res/NLC - 8 BIT CIPHER.svg +%%DATADIR%%/nonlinearcircuits/res/NLC - DIVIDE & CONQUER.afdesign +%%DATADIR%%/nonlinearcircuits/res/NLC - DIVIDE & CONQUER.svg +%%DATADIR%%/nonlinearcircuits/res/NLC - DIVIDE & CONQUERNoCircles.afdesign +%%DATADIR%%/nonlinearcircuits/res/NLC - DIVINE CMOS.afdesign +%%DATADIR%%/nonlinearcircuits/res/NLC - DIVINE CMOS.svg +%%DATADIR%%/nonlinearcircuits/res/NLC - GENiE.afdesign +%%DATADIR%%/nonlinearcircuits/res/NLC - GENiE.svg +%%DATADIR%%/nonlinearcircuits/res/NLC - NEURON.afdesign +%%DATADIR%%/nonlinearcircuits/res/NLC - NEURON.svg +%%DATADIR%%/nonlinearcircuits/res/NLC - NUMBERWANG.afdesign +%%DATADIR%%/nonlinearcircuits/res/NLC - NUMBERWANG.svg +%%DATADIR%%/nonlinearcircuits/res/NLC - ROUTER.afdesign +%%DATADIR%%/nonlinearcircuits/res/NLC - ROUTER.svg +%%DATADIR%%/nonlinearcircuits/res/NLC - SEGUE.afdesign +%%DATADIR%%/nonlinearcircuits/res/NLC - SEGUE.svg +%%DATADIR%%/nonlinearcircuits/res/NLC - STATUES.afdesign +%%DATADIR%%/nonlinearcircuits/res/NLC - STATUES.svg +%%DATADIR%%/nonlinearcircuits/res/squid-axon-original-panel.svg +%%DATADIR%%/nonlinearcircuits/res/squid-axon-papernoise-panel.afdesign +%%DATADIR%%/nonlinearcircuits/res/squid-axon-papernoise-panel.svg +%%DATADIR%%/nonlinearcircuits/res/squid-axon-papernoise-panel2.svg %%DATADIR%%/rackwindows/res/bitshiftgain_dark.svg %%DATADIR%%/rackwindows/res/capacitor_mono_dark.svg %%DATADIR%%/rackwindows/res/capacitor_st_dark.svg %%DATADIR%%/rackwindows/res/chorus_dark.svg %%DATADIR%%/rackwindows/res/components/rw_CKSS_0.svg %%DATADIR%%/rackwindows/res/components/rw_CKSS_1.svg %%DATADIR%%/rackwindows/res/components/rw_CKSS_rot_0.svg %%DATADIR%%/rackwindows/res/components/rw_CKSS_rot_1.svg %%DATADIR%%/rackwindows/res/components/rw_PJ301M.svg %%DATADIR%%/rackwindows/res/components/rw_PJ301M_silver.svg %%DATADIR%%/rackwindows/res/components/rw_knob_large_dark.svg %%DATADIR%%/rackwindows/res/components/rw_knob_medium_dark.svg %%DATADIR%%/rackwindows/res/components/rw_knob_small_dark.svg %%DATADIR%%/rackwindows/res/components/rw_knob_trimpot.svg %%DATADIR%%/rackwindows/res/components/rw_screw_dark.svg %%DATADIR%%/rackwindows/res/components/rw_switch_three_0.svg %%DATADIR%%/rackwindows/res/components/rw_switch_three_1.svg %%DATADIR%%/rackwindows/res/components/rw_switch_three_2.svg %%DATADIR%%/rackwindows/res/components/rw_switch_three_vert_0.svg %%DATADIR%%/rackwindows/res/components/rw_switch_three_vert_1.svg %%DATADIR%%/rackwindows/res/components/rw_switch_three_vert_2.svg %%DATADIR%%/rackwindows/res/console_dark.svg %%DATADIR%%/rackwindows/res/console_mm_dark.svg %%DATADIR%%/rackwindows/res/distance_dark.svg %%DATADIR%%/rackwindows/res/golem_dark.svg %%DATADIR%%/rackwindows/res/holt_dark.svg %%DATADIR%%/rackwindows/res/hombre_dark.svg %%DATADIR%%/rackwindows/res/interstage_dark.svg %%DATADIR%%/rackwindows/res/monitoring_dark.svg %%DATADIR%%/rackwindows/res/mv_dark.svg %%DATADIR%%/rackwindows/res/rasp_dark.svg %%DATADIR%%/rackwindows/res/reseq_dark.svg %%DATADIR%%/rackwindows/res/tape_dark.svg %%DATADIR%%/rackwindows/res/tremolo_dark.svg %%DATADIR%%/rackwindows/res/vibrato_dark.svg %%DATADIR%%/repelzen/res/recomp/button_l.svg %%DATADIR%%/repelzen/res/recomp/button_l_push.svg %%DATADIR%%/repelzen/res/recomp/button_m.svg %%DATADIR%%/repelzen/res/recomp/button_m_push.svg %%DATADIR%%/repelzen/res/recomp/jack.svg %%DATADIR%%/repelzen/res/recomp/knob_l_grey.svg %%DATADIR%%/repelzen/res/recomp/knob_m_blue.svg %%DATADIR%%/repelzen/res/recomp/knob_m_green.svg %%DATADIR%%/repelzen/res/recomp/knob_m_grey.svg %%DATADIR%%/repelzen/res/recomp/knob_m_red.svg %%DATADIR%%/repelzen/res/recomp/knob_m_yellow.svg %%DATADIR%%/repelzen/res/recomp/knob_s_blue.svg %%DATADIR%%/repelzen/res/recomp/knob_s_green.svg %%DATADIR%%/repelzen/res/recomp/knob_s_grey.svg %%DATADIR%%/repelzen/res/recomp/knob_s_red.svg %%DATADIR%%/repelzen/res/recomp/knob_s_yellow.svg %%DATADIR%%/repelzen/res/recomp/switch2_1.svg %%DATADIR%%/repelzen/res/recomp/switch2_2.svg %%DATADIR%%/repelzen/res/recomp/switch3_1.svg %%DATADIR%%/repelzen/res/recomp/switch3_2.svg %%DATADIR%%/repelzen/res/recomp/switch3_3.svg %%DATADIR%%/repelzen/res/reface/reburst_bg.svg %%DATADIR%%/repelzen/res/reface/refold_bg.svg %%DATADIR%%/repelzen/res/reface/repelzen_bg1.svg %%DATADIR%%/repelzen/res/reface/repelzen_bg2.svg %%DATADIR%%/repelzen/res/reface/repelzen_bg3.svg %%DATADIR%%/repelzen/res/reface/repelzen_bg4.svg %%DATADIR%%/repelzen/res/reface/repelzen_bg5.svg %%DATADIR%%/repelzen/res/reface/repelzen_bg6.svg %%DATADIR%%/repelzen/res/reface/repelzen_bg7.svg %%DATADIR%%/repelzen/res/reface/repelzen_bg8.svg %%DATADIR%%/repelzen/res/reface/retrig_bg.svg %%DATADIR%%/repelzen/res/reface/rewin_bg.svg %%DATADIR%%/repelzen/res/reface/rexmix_bg.svg %%DATADIR%%/sonusmodular/res/LEDButton.svg %%DATADIR%%/sonusmodular/res/LEDButton_0.svg %%DATADIR%%/sonusmodular/res/LEDButton_1.svg %%DATADIR%%/sonusmodular/res/addiction.svg %%DATADIR%%/sonusmodular/res/bigknob.svg %%DATADIR%%/sonusmodular/res/bitter.svg %%DATADIR%%/sonusmodular/res/bymidside.svg %%DATADIR%%/sonusmodular/res/campione.svg %%DATADIR%%/sonusmodular/res/chainsaw.svg %%DATADIR%%/sonusmodular/res/ctrl.svg %%DATADIR%%/sonusmodular/res/deathcrush.svg %%DATADIR%%/sonusmodular/res/fraction.svg %%DATADIR%%/sonusmodular/res/harmony.svg %%DATADIR%%/sonusmodular/res/knob.svg %%DATADIR%%/sonusmodular/res/ladrone.svg %%DATADIR%%/sonusmodular/res/ledbutton_off.svg %%DATADIR%%/sonusmodular/res/ledbutton_on.svg %%DATADIR%%/sonusmodular/res/luppolo.svg %%DATADIR%%/sonusmodular/res/luppolo3.svg %%DATADIR%%/sonusmodular/res/micromacro.svg %%DATADIR%%/sonusmodular/res/mrcheb.svg %%DATADIR%%/sonusmodular/res/multimulti.svg %%DATADIR%%/sonusmodular/res/neurosc.svg %%DATADIR%%/sonusmodular/res/oktagon.svg %%DATADIR%%/sonusmodular/res/osculum.svg %%DATADIR%%/sonusmodular/res/paramath.svg %%DATADIR%%/sonusmodular/res/piconoise.svg %%DATADIR%%/sonusmodular/res/pith.svg %%DATADIR%%/sonusmodular/res/pusher.svg %%DATADIR%%/sonusmodular/res/ringo.svg %%DATADIR%%/sonusmodular/res/scramblase.svg %%DATADIR%%/sonusmodular/res/screw.svg %%DATADIR%%/sonusmodular/res/tropicana.svg %%DATADIR%%/sonusmodular/res/twoff.svg %%DATADIR%%/sonusmodular/res/yabp.svg +%%DATADIR%%/stocaudio/res/comp/jack/aPjackarancione.svg +%%DATADIR%%/stocaudio/res/comp/jack/aPjackazzurro.svg +%%DATADIR%%/stocaudio/res/comp/jack/aPjackbianco.svg +%%DATADIR%%/stocaudio/res/comp/jack/aPjackblu.svg +%%DATADIR%%/stocaudio/res/comp/jack/aPjackfux.svg +%%DATADIR%%/stocaudio/res/comp/jack/aPjackgiallo.svg +%%DATADIR%%/stocaudio/res/comp/jack/aPjacknero.svg +%%DATADIR%%/stocaudio/res/comp/jack/aPjackrosa.svg +%%DATADIR%%/stocaudio/res/comp/jack/aPjackrosso.svg +%%DATADIR%%/stocaudio/res/comp/jack/aPjackturchese.svg +%%DATADIR%%/stocaudio/res/comp/jack/aPjackverde.svg +%%DATADIR%%/stocaudio/res/comp/jack/aPjackviola.svg +%%DATADIR%%/stocaudio/res/comp/stocAttn.svg +%%DATADIR%%/stocaudio/res/comp/stocBigKnob.svg +%%DATADIR%%/stocaudio/res/comp/stocButton.svg +%%DATADIR%%/stocaudio/res/comp/stocKnob.svg +%%DATADIR%%/stocaudio/res/comp/stocScrew.svg +%%DATADIR%%/stocaudio/res/comp/stocScrewq.svg +%%DATADIR%%/stocaudio/res/polydelay.svg +%%DATADIR%%/stocaudio/res/polyturing.svg +%%DATADIR%%/stocaudio/res/spread.svg +%%DATADIR%%/template-fx.vcv +%%DATADIR%%/template-synth.vcv %%DATADIR%%/template.vcv +%%DATADIR%%/unless_modules/art/avoider.art +%%DATADIR%%/unless_modules/art/pianoid.art +%%DATADIR%%/unless_modules/art/svg/buttons/AG_Auto.svg +%%DATADIR%%/unless_modules/art/svg/buttons/AG_Gate.svg +%%DATADIR%%/unless_modules/art/svg/buttons/AddButton.svg +%%DATADIR%%/unless_modules/art/svg/buttons/AddButtonDown.svg +%%DATADIR%%/unless_modules/art/svg/buttons/BlankButton.svg +%%DATADIR%%/unless_modules/art/svg/buttons/BlankButtonDown.svg +%%DATADIR%%/unless_modules/art/svg/buttons/CvButton.svg +%%DATADIR%%/unless_modules/art/svg/buttons/DotButton.svg +%%DATADIR%%/unless_modules/art/svg/buttons/DotDotButton.svg +%%DATADIR%%/unless_modules/art/svg/buttons/DownButton.svg +%%DATADIR%%/unless_modules/art/svg/buttons/GateButton.svg +%%DATADIR%%/unless_modules/art/svg/buttons/LeftButton.svg +%%DATADIR%%/unless_modules/art/svg/buttons/LeftButtonDown.svg +%%DATADIR%%/unless_modules/art/svg/buttons/LoopOffButton.svg +%%DATADIR%%/unless_modules/art/svg/buttons/LoopOnButton.svg +%%DATADIR%%/unless_modules/art/svg/buttons/OffSwitch.svg +%%DATADIR%%/unless_modules/art/svg/buttons/OnSwitch.svg +%%DATADIR%%/unless_modules/art/svg/buttons/PlayButton.svg +%%DATADIR%%/unless_modules/art/svg/buttons/PlayButtonDown.svg +%%DATADIR%%/unless_modules/art/svg/buttons/RecordButton.svg +%%DATADIR%%/unless_modules/art/svg/buttons/RecordButtonDown.svg +%%DATADIR%%/unless_modules/art/svg/buttons/RightButton.svg +%%DATADIR%%/unless_modules/art/svg/buttons/RightButtonDown.svg +%%DATADIR%%/unless_modules/art/svg/buttons/StopButton.svg +%%DATADIR%%/unless_modules/art/svg/buttons/StopButtonDown.svg +%%DATADIR%%/unless_modules/art/svg/buttons/UpButton.svg +%%DATADIR%%/unless_modules/art/svg/knobs/ArrowKnob.svg +%%DATADIR%%/unless_modules/art/svg/knobs/MrChainkov.svg +%%DATADIR%%/unless_modules/art/svg/knobs/PiongKnob.svg +%%DATADIR%%/unless_modules/art/svg/knobs/PiongKnobSmall.svg +%%DATADIR%%/unless_modules/art/svg/knobs/SmallKnob.svg +%%DATADIR%%/unless_modules/art/svg/knobs/SpiralKnob.svg +%%DATADIR%%/unless_modules/art/svg/knobs/StartEncoder.svg +%%DATADIR%%/unless_modules/art/svg/knobs/StopEncoder.svg +%%DATADIR%%/unless_modules/art/svg/knobs/SunKnob.svg +%%DATADIR%%/unless_modules/art/svg/knobs/TransparentKnob.svg +%%DATADIR%%/unless_modules/art/svg/misc/PeaceScrew.svg +%%DATADIR%%/unless_modules/art/svg/misc/PiongDisplay.svg +%%DATADIR%%/unless_modules/art/svg/misc/TreeScrew.svg +%%DATADIR%%/unless_modules/art/svg/panels/Finger.svg +%%DATADIR%%/unless_modules/art/svg/panels/Piong.svg +%%DATADIR%%/unless_modules/art/svg/ports/24PX.svg +%%DATADIR%%/unless_modules/art/svg/ports/DarkHole.svg +%%DATADIR%%/unless_modules/art/svg/ports/FlatBrightPort.svg +%%DATADIR%%/unless_modules/art/svg/ports/FlatInputPort.svg +%%DATADIR%%/unless_modules/art/svg/ports/InputGatePort.svg +%%DATADIR%%/unless_modules/art/svg/ports/InputPort.svg +%%DATADIR%%/unless_modules/art/svg/ports/OutputGatePort.svg +%%DATADIR%%/unless_modules/art/svg/ports/OutputPort.svg +%%DATADIR%%/unless_modules/art/svg/ports/SmallBrightPort.svg +%%DATADIR%%/unless_modules/art/svg/ports/SmallDarkPort.svg +%%DATADIR%%/unless_modules/art/svg/ports/SmallHole.svg +%%DATADIR%%/unless_modules/art/svg/ports/VOctInputPort.svg +%%DATADIR%%/unless_modules/art/svg/ports/VOctOutputPort.svg +%%DATADIR%%/unless_modules/art/towers.art +%%DATADIR%%/unless_modules/font/CuteFont-Regular.ttf +%%DATADIR%%/unless_modules/font/Terminus.ttf +%%DATADIR%%/voxglitch/res/ShareTechMono-Regular.ttf +%%DATADIR%%/voxglitch/res/autobreak_front_panel.svg +%%DATADIR%%/voxglitch/res/bytebeat_front_panel.svg +%%DATADIR%%/voxglitch/res/components/GridButtonON.svg +%%DATADIR%%/voxglitch/res/components/GridButtonOff.svg +%%DATADIR%%/voxglitch/res/components/PushButton_0.svg +%%DATADIR%%/voxglitch/res/components/PushButton_1.svg +%%DATADIR%%/voxglitch/res/components/TrimpotMedium.svg +%%DATADIR%%/voxglitch/res/components/TrimpotMedium_bg.svg +%%DATADIR%%/voxglitch/res/components/modded_CL1362.svg +%%DATADIR%%/voxglitch/res/digital_programmer_front_panel-backup.svg +%%DATADIR%%/voxglitch/res/digital_programmer_front_panel.svg +%%DATADIR%%/voxglitch/res/digital_sequencer_front_panel.svg +%%DATADIR%%/voxglitch/res/digital_sequencer_xp_front_panel.svg +%%DATADIR%%/voxglitch/res/ghosts_front_panel.svg +%%DATADIR%%/voxglitch/res/glitch_sequencer_front_panel.svg +%%DATADIR%%/voxglitch/res/goblins_front_panel.svg +%%DATADIR%%/voxglitch/res/grain_engine_mk2_expander_front_panel.svg +%%DATADIR%%/voxglitch/res/grain_engine_mk2_front_panel_r3.svg +%%DATADIR%%/voxglitch/res/grain_fx_front_panel.svg +%%DATADIR%%/voxglitch/res/groove_box_front_panel.svg +%%DATADIR%%/voxglitch/res/hazumi_front_panel.svg +%%DATADIR%%/voxglitch/res/looper_front_panel.svg +%%DATADIR%%/voxglitch/res/repeater_front_panel.svg +%%DATADIR%%/voxglitch/res/samplerx8_front_panel.svg +%%DATADIR%%/voxglitch/res/satanonaut_front_panel.svg +%%DATADIR%%/voxglitch/res/wav_bank_front_panel.svg +%%DATADIR%%/voxglitch/res/wav_bank_mc_front_panel.svg +%%DATADIR%%/voxglitch/res/wav_bank_mc_front_panel_v2.svg +%%DATADIR%%/voxglitch/res/xy_front_panel.svg