/home/guest/lv2 ├── atom.lv2 │   ├── atom.h │   ├── atom.meta.ttl │   ├── atom-test.c │   ├── atom-test-utils.c │   ├── atom.ttl │   ├── forge.h │   ├── forge-overflow-test.c │   ├── manifest.ttl │   └── util.h ├── buf-size.lv2 │   ├── buf-size.h │   ├── buf-size.meta.ttl │   ├── buf-size.ttl │   └── manifest.ttl ├── calf.lv2 │   ├── Analyzer.ttl │   ├── BassEnhancer.ttl │   ├── calflv2gui.so │   ├── calf.so -> /usr/lib/x86_64-linux-gnu/calf/calf.so │   ├── CompensationDelay.ttl │   ├── Compressor.ttl │   ├── Crusher.ttl │   ├── Deesser.ttl │   ├── Emphasis.ttl │   ├── EnvelopeFilter.ttl │   ├── Equalizer12Band.ttl │   ├── Equalizer30Band.ttl │   ├── Equalizer5Band.ttl │   ├── Equalizer8Band.ttl │   ├── Exciter.ttl │   ├── Filterclavier.ttl │   ├── Filter.ttl │   ├── Flanger.ttl │   ├── Fluidsynth.ttl │   ├── Gate.ttl │   ├── HaasEnhancer.ttl │   ├── Limiter.ttl │   ├── manifest.ttl │   ├── MonoCompressor.ttl │   ├── MonoInput.ttl │   ├── Monosynth.ttl │   ├── MultibandCompressor.ttl │   ├── MultibandEnhancer.ttl │   ├── MultibandGate.ttl │   ├── MultibandLimiter.ttl │   ├── MultiChorus.ttl │   ├── MultiSpread.ttl │   ├── Organ.ttl │   ├── Phaser.ttl │   ├── Pitch.ttl │   ├── presets-Filter.ttl │   ├── presets-Flanger.ttl │   ├── presets-MonoCompressor.ttl │   ├── presets-Monosynth.ttl │   ├── presets-Organ.ttl │   ├── presets-Reverb.ttl │   ├── presets-Wavetable.ttl │   ├── Pulsator.ttl │   ├── Reverb.ttl │   ├── ReverseDelay.ttl │   ├── RingModulator.ttl │   ├── RotarySpeaker.ttl │   ├── Saturator.ttl │   ├── SidechainCompressor.ttl │   ├── SidechainGate.ttl │   ├── SidechainLimiter.ttl │   ├── StereoTools.ttl │   ├── TapeSimulator.ttl │   ├── TransientDesigner.ttl │   ├── VintageDelay.ttl │   ├── Vinyl.ttl │   ├── Vocoder.ttl │   ├── Wavetable.ttl │   ├── XOver2Band.ttl │   ├── XOver3Band.ttl │   └── XOver4Band.ttl ├── core.lv2 │   ├── attributes.h │   ├── lv2core.meta.ttl │   ├── lv2core.ttl │   ├── lv2.h │   ├── lv2_util.h │   ├── manifest.ttl │   ├── meta.ttl │   └── people.ttl ├── data-access.lv2 │   ├── data-access.h │   ├── data-access.meta.ttl │   ├── data-access.ttl │   └── manifest.ttl ├── dynmanifest.lv2 │   ├── dynmanifest.h │   ├── dynmanifest.meta.ttl │   ├── dynmanifest.ttl │   └── manifest.ttl ├── event.lv2 │   ├── event.h │   ├── event-helpers.h │   ├── event.meta.ttl │   ├── event.ttl │   └── manifest.ttl ├── instance-access.lv2 │   ├── instance-access.h │   ├── instance-access.meta.ttl │   ├── instance-access.ttl │   └── manifest.ttl ├── log.lv2 │   ├── logger.h │   ├── log.h │   ├── log.meta.ttl │   ├── log.ttl │   └── manifest.ttl ├── midi.lv2 │   ├── manifest.ttl │   ├── midi.h │   ├── midi.meta.ttl │   └── midi.ttl ├── morph.lv2 │   ├── manifest.ttl │   ├── morph.h │   ├── morph.meta.ttl │   └── morph.ttl ├── options.lv2 │   ├── manifest.ttl │   ├── options.h │   ├── options.meta.ttl │   └── options.ttl ├── parameters.lv2 │   ├── manifest.ttl │   ├── parameters.h │   ├── parameters.meta.ttl │   └── parameters.ttl ├── patch.lv2 │   ├── manifest.ttl │   ├── patch.h │   ├── patch.meta.ttl │   └── patch.ttl ├── port-groups.lv2 │   ├── manifest.ttl │   ├── port-groups.h │   ├── port-groups.meta.ttl │   └── port-groups.ttl ├── port-props.lv2 │   ├── manifest.ttl │   ├── port-props.h │   ├── port-props.meta.ttl │   └── port-props.ttl ├── presets.lv2 │   ├── manifest.ttl │   ├── presets.h │   ├── presets.meta.ttl │   └── presets.ttl ├── reasonablesynth.lv2 │   ├── manifest.ttl │   ├── reasonablesynth.so │   └── reasonablesynth.ttl ├── resize-port.lv2 │   ├── manifest.ttl │   ├── resize-port.h │   ├── resize-port.meta.ttl │   └── resize-port.ttl ├── schemas.lv2 │   ├── dcs.ttl │   ├── dct.ttl │   ├── doap.ttl │   ├── foaf.ttl │   ├── manifest.ttl │   ├── owl.ttl │   ├── rdfs.ttl │   ├── rdf.ttl │   └── xsd.ttl ├── state.lv2 │   ├── manifest.ttl │   ├── state.h │   ├── state.meta.ttl │   └── state.ttl ├── time.lv2 │   ├── manifest.ttl │   ├── time.h │   ├── time.meta.ttl │   └── time.ttl ├── ui.lv2 │   ├── manifest.ttl │   ├── ui.h │   ├── ui.meta.ttl │   └── ui.ttl ├── units.lv2 │   ├── manifest.ttl │   ├── units.h │   ├── units.meta.ttl │   └── units.ttl ├── urid.lv2 │   ├── manifest.ttl │   ├── urid.h │   ├── urid.meta.ttl │   └── urid.ttl ├── uri-map.lv2 │   ├── manifest.ttl │   ├── uri-map.h │   ├── uri-map.meta.ttl │   └── uri-map.ttl └── worker.lv2 ├── manifest.ttl ├── worker.h ├── worker.meta.ttl └── worker.ttl 27 directories, 180 files