This file is indexed.

/usr/lib/lv2/calf.lv2/RingModulator.ttl is in calf-plugins 0.0.60-5.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
@prefix : <http://calf.sourceforge.net/plugins/RingModulator#> .
@prefix rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix lv2:  <http://lv2plug.in/ns/lv2core#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix uiext: <http://lv2plug.in/ns/extensions/ui#> .
@prefix atom: <http://lv2plug.in/ns/ext/atom#> .
@prefix lv2midi: <http://lv2plug.in/ns/ext/midi#> .
@prefix lv2ctx: <http://lv2plug.in/ns/dev/contexts#> .
@prefix strport: <http://lv2plug.in/ns/dev/string-port#> .
@prefix pg: <http://lv2plug.in/ns/ext/port-groups#> .
@prefix ue: <http://lv2plug.in/ns/extensions/units#> .
@prefix epp: <http://lv2plug.in/ns/ext/port-props#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix param: <http://lv2plug.in/ns/ext/parameters#> .

<http://calf.sourceforge.net/plugins/gui/gtk2-gui>
    a uiext:GtkUI ;
    lv2:extensionData uiext:idleInterface ,
        uiext:showInterface ;
    lv2:requiredFeature uiext:makeResident ;
    lv2:optionalFeature <http://lv2plug.in/ns/ext/instance-access> ;
    lv2:optionalFeature <http://lv2plug.in/ns/ext/data-access> ;
    uiext:binary <calflv2gui.so> .

<http://calf.sourceforge.net/plugins/gui/gtk2-gui-req>
    a uiext:GtkUI ;
    lv2:extensionData uiext:idleInterface ,
        uiext:showInterface ;
    lv2:requiredFeature uiext:makeResident ;
    lv2:requiredFeature <http://lv2plug.in/ns/ext/instance-access> ;
    lv2:requiredFeature <http://lv2plug.in/ns/ext/data-access> ;
    uiext:binary <calflv2gui.so> .

<http://calf.sourceforge.net/plugins/gui/gtk2-gui> uiext:portNotification [
    uiext:plugin <http://calf.sourceforge.net/plugins/RingModulator> ;
    uiext:portIndex 3
] .

<http://calf.sourceforge.net/plugins/gui/gtk2-gui> uiext:portNotification [
    uiext:plugin <http://calf.sourceforge.net/plugins/RingModulator> ;
    uiext:portIndex 4
] .

<http://calf.sourceforge.net/plugins/gui/gtk2-gui> uiext:portNotification [
    uiext:plugin <http://calf.sourceforge.net/plugins/RingModulator> ;
    uiext:portIndex 5
] .

<http://calf.sourceforge.net/plugins/gui/gtk2-gui> uiext:portNotification [
    uiext:plugin <http://calf.sourceforge.net/plugins/RingModulator> ;
    uiext:portIndex 6
] .

<http://calf.sourceforge.net/plugins/gui/gtk2-gui> uiext:portNotification [
    uiext:plugin <http://calf.sourceforge.net/plugins/RingModulator> ;
    uiext:portIndex 7
] .

<http://calf.sourceforge.net/plugins/gui/gtk2-gui> uiext:portNotification [
    uiext:plugin <http://calf.sourceforge.net/plugins/RingModulator> ;
    uiext:portIndex 8
] .

<http://calf.sourceforge.net/plugins/gui/gtk2-gui> uiext:portNotification [
    uiext:plugin <http://calf.sourceforge.net/plugins/RingModulator> ;
    uiext:portIndex 9
] .

<http://calf.sourceforge.net/plugins/gui/gtk2-gui> uiext:portNotification [
    uiext:plugin <http://calf.sourceforge.net/plugins/RingModulator> ;
    uiext:portIndex 10
] .

<http://calf.sourceforge.net/plugins/gui/gtk2-gui> uiext:portNotification [
    uiext:plugin <http://calf.sourceforge.net/plugins/RingModulator> ;
    uiext:portIndex 26
] .

<http://calf.sourceforge.net/plugins/gui/gtk2-gui> uiext:portNotification [
    uiext:plugin <http://calf.sourceforge.net/plugins/RingModulator> ;
    uiext:portIndex 36
] .

:in a pg:StereoGroup , pg:InputGroup ;
    lv2:symbol "in" ;
    rdfs:label "Input" .

:out a pg:StereoGroup , pg:OutputGroup ;
    lv2:symbol "out" ;
    rdfs:label "Output" .

<http://calf.sourceforge.net/plugins/RingModulator> a lv2:ModulatorPlugin ;
    doap:name "Calf Ring Modulator" ;
    doap:maintainer [ foaf:name "Calf Studio Gear" ; ] ;
    uiext:ui <http://calf.sourceforge.net/plugins/gui/gtk2-gui> ;
    doap:license <http://usefulinc.com/doap/licenses/lgpl> ;
    dct:replaces <urn:ladspa:34068> ;
    lv2:optionalFeature epp:supportsStrictBounds ;
    lv2:optionalFeature lv2:hardRTCapable ;
    pg:mainInput :in ;
    pg:mainOutput :out ;
    lv2:port [
        a lv2:InputPort ;
        a lv2:AudioPort ;
        lv2:index 0 ;
        lv2:symbol "in_l" ;
        lv2:name "In L" ;
        lv2:designation pg:left ;
        pg:group :in ;
    ] , [
        a lv2:InputPort ;
        a lv2:AudioPort ;
        lv2:index 1 ;
        lv2:symbol "in_r" ;
        lv2:name "In R" ;
        lv2:portProperty lv2:connectionOptional ;
        lv2:designation pg:right ;
        pg:group :in ;
    ] , [
        a lv2:OutputPort ;
        a lv2:AudioPort ;
        lv2:index 2 ;
        lv2:symbol "out_l" ;
        lv2:name "Out L" ;
        lv2:designation pg:left ;
        pg:group :out ;
    ] , [
        a lv2:OutputPort ;
        a lv2:AudioPort ;
        lv2:index 3 ;
        lv2:symbol "out_r" ;
        lv2:name "Out R" ;
        lv2:designation pg:right ;
        pg:group :out ;
    ] , [
        a lv2:InputPort ;
        a lv2:ControlPort ;
        lv2:index 4 ;
        lv2:symbol "bypass" ;
        lv2:name "Bypass" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:portProperty lv2:toggled ;
        lv2:default 0.00000 ;
        lv2:minimum 0.00000 ;
        lv2:maximum 1.00000 ;
    ] , [
        a lv2:InputPort ;
        a lv2:ControlPort ;
        lv2:index 5 ;
        lv2:symbol "level_in" ;
        lv2:name "Input Gain" ;
        lv2:default 1.00000 ;
        lv2:minimum 0.0156250 ;
        lv2:maximum 64.0000 ;
    ] , [
        a lv2:InputPort ;
        a lv2:ControlPort ;
        lv2:index 6 ;
        lv2:symbol "level_out" ;
        lv2:name "Output Gain" ;
        lv2:default 1.00000 ;
        lv2:minimum 0.0156250 ;
        lv2:maximum 64.0000 ;
    ] , [
        a lv2:OutputPort ;
        a lv2:ControlPort ;
        lv2:index 7 ;
        lv2:symbol "meter_inL" ;
        lv2:name "Meter-InL" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:portProperty lv2:connectionOptional ;
        lv2:minimum 0.00000 ;
        lv2:maximum 1.00000 ;
    ] , [
        a lv2:OutputPort ;
        a lv2:ControlPort ;
        lv2:index 8 ;
        lv2:symbol "meter_inR" ;
        lv2:name "Meter-InR" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:portProperty lv2:connectionOptional ;
        lv2:minimum 0.00000 ;
        lv2:maximum 1.00000 ;
    ] , [
        a lv2:OutputPort ;
        a lv2:ControlPort ;
        lv2:index 9 ;
        lv2:symbol "meter_outL" ;
        lv2:name "Meter-OutL" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:portProperty lv2:connectionOptional ;
        lv2:minimum 0.00000 ;
        lv2:maximum 1.00000 ;
    ] , [
        a lv2:OutputPort ;
        a lv2:ControlPort ;
        lv2:index 10 ;
        lv2:symbol "meter_outR" ;
        lv2:name "Meter-OutR" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:portProperty lv2:connectionOptional ;
        lv2:minimum 0.00000 ;
        lv2:maximum 1.00000 ;
    ] , [
        a lv2:OutputPort ;
        a lv2:ControlPort ;
        lv2:index 11 ;
        lv2:symbol "clip_inL" ;
        lv2:name "0dB-InL" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:portProperty lv2:connectionOptional ;
        lv2:minimum 0.00000 ;
        lv2:maximum 1.00000 ;
    ] , [
        a lv2:OutputPort ;
        a lv2:ControlPort ;
        lv2:index 12 ;
        lv2:symbol "clip_inR" ;
        lv2:name "0dB-InR" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:portProperty lv2:connectionOptional ;
        lv2:minimum 0.00000 ;
        lv2:maximum 1.00000 ;
    ] , [
        a lv2:OutputPort ;
        a lv2:ControlPort ;
        lv2:index 13 ;
        lv2:symbol "clip_outL" ;
        lv2:name "0dB-OutL" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:portProperty lv2:connectionOptional ;
        lv2:minimum 0.00000 ;
        lv2:maximum 1.00000 ;
    ] , [
        a lv2:OutputPort ;
        a lv2:ControlPort ;
        lv2:index 14 ;
        lv2:symbol "clip_outR" ;
        lv2:name "0dB-OutR" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:portProperty lv2:connectionOptional ;
        lv2:minimum 0.00000 ;
        lv2:maximum 1.00000 ;
    ] , [
        a lv2:InputPort ;
        a lv2:ControlPort ;
        lv2:index 15 ;
        lv2:symbol "mod_mode" ;
        lv2:name "Modulator" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:portProperty lv2:integer ;
        lv2:portProperty lv2:enumeration ;
        lv2:scalePoint [ rdfs:label "Sine"; rdf:value 0 ] ;
        lv2:scalePoint [ rdfs:label "Triangle"; rdf:value 1 ] ;
        lv2:scalePoint [ rdfs:label "Square"; rdf:value 2 ] ;
        lv2:scalePoint [ rdfs:label "Saw up"; rdf:value 3 ] ;
        lv2:scalePoint [ rdfs:label "Saw down"; rdf:value 4 ] ;
        lv2:default 0.00000 ;
        lv2:minimum 0.00000 ;
        lv2:maximum 4.00000 ;
    ] , [
        a lv2:InputPort ;
        a lv2:ControlPort ;
        lv2:index 16 ;
        lv2:symbol "mod_freq" ;
        lv2:name "Mod Freq" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:portProperty epp:logarithmic ;
        lv2:default 1000.00 ;
        lv2:minimum 1.00000 ;
        lv2:maximum 20000.0 ;
        ue:unit ue:hz ;
    ] , [
        a lv2:InputPort ;
        a lv2:ControlPort ;
        lv2:index 17 ;
        lv2:symbol "mod_amount" ;
        lv2:name "Mod Amount" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:default 0.500000 ;
        lv2:minimum 0.00000 ;
        lv2:maximum 1.00000 ;
    ] , [
        a lv2:InputPort ;
        a lv2:ControlPort ;
        lv2:index 18 ;
        lv2:symbol "mod_phase" ;
        lv2:name "Mod Phase" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:default 0.500000 ;
        lv2:minimum 0.00000 ;
        lv2:maximum 1.00000 ;
        ue:unit ue:coef ;
    ] , [
        a lv2:InputPort ;
        a lv2:ControlPort ;
        lv2:index 19 ;
        lv2:symbol "mod_detune" ;
        lv2:name "Mod Detune" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:default 0.00000 ;
        lv2:minimum -200.000 ;
        lv2:maximum 200.000 ;
        ue:unit ue:cent ;
    ] , [
        a lv2:InputPort ;
        a lv2:ControlPort ;
        lv2:index 20 ;
        lv2:symbol "mod_listen" ;
        lv2:name "Listen" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:portProperty lv2:toggled ;
        lv2:default 0.00000 ;
        lv2:minimum 0.00000 ;
        lv2:maximum 1.00000 ;
    ] , [
        a lv2:InputPort ;
        a lv2:ControlPort ;
        lv2:index 21 ;
        lv2:symbol "lfo1_mode" ;
        lv2:name "LFO 1" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:portProperty lv2:integer ;
        lv2:portProperty lv2:enumeration ;
        lv2:scalePoint [ rdfs:label "Sine"; rdf:value 0 ] ;
        lv2:scalePoint [ rdfs:label "Triangle"; rdf:value 1 ] ;
        lv2:scalePoint [ rdfs:label "Square"; rdf:value 2 ] ;
        lv2:scalePoint [ rdfs:label "Saw up"; rdf:value 3 ] ;
        lv2:scalePoint [ rdfs:label "Saw down"; rdf:value 4 ] ;
        lv2:default 0.00000 ;
        lv2:minimum 0.00000 ;
        lv2:maximum 4.00000 ;
    ] , [
        a lv2:InputPort ;
        a lv2:ControlPort ;
        lv2:index 22 ;
        lv2:symbol "lfo1_freq" ;
        lv2:name "LFO 1 Freq" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:portProperty epp:logarithmic ;
        lv2:default 0.100000 ;
        lv2:minimum 0.0100000 ;
        lv2:maximum 10.0000 ;
        ue:unit ue:hz ;
    ] , [
        a lv2:InputPort ;
        a lv2:ControlPort ;
        lv2:index 23 ;
        lv2:symbol "lfo1_reset" ;
        lv2:name "Reset 1" ;
        lv2:portProperty epp:trigger ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:portProperty lv2:toggled ;
        lv2:default 0.00000 ;
        lv2:minimum 0.00000 ;
        lv2:maximum 1.00000 ;
    ] , [
        a lv2:InputPort ;
        a lv2:ControlPort ;
        lv2:index 24 ;
        lv2:symbol "lfo1_mod_freq_lo" ;
        lv2:name "Mod Freq LO" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:portProperty epp:logarithmic ;
        lv2:default 100.000 ;
        lv2:minimum 1.00000 ;
        lv2:maximum 20000.0 ;
        ue:unit ue:hz ;
    ] , [
        a lv2:InputPort ;
        a lv2:ControlPort ;
        lv2:index 25 ;
        lv2:symbol "lfo1_mod_freq_hi" ;
        lv2:name "Mod Freq HI" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:portProperty epp:logarithmic ;
        lv2:default 10000.0 ;
        lv2:minimum 1.00000 ;
        lv2:maximum 20000.0 ;
        ue:unit ue:hz ;
    ] , [
        a lv2:InputPort ;
        a lv2:ControlPort ;
        lv2:index 26 ;
        lv2:symbol "lfo1_mod_freq_active" ;
        lv2:name "Mod Freq Active" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:portProperty lv2:toggled ;
        lv2:default 0.00000 ;
        lv2:minimum 0.00000 ;
        lv2:maximum 1.00000 ;
    ] , [
        a lv2:InputPort ;
        a lv2:ControlPort ;
        lv2:index 27 ;
        lv2:symbol "lfo1_mod_detune_lo" ;
        lv2:name "Mod Detune LO" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:default -100.000 ;
        lv2:minimum -200.000 ;
        lv2:maximum 200.000 ;
        ue:unit ue:cent ;
    ] , [
        a lv2:InputPort ;
        a lv2:ControlPort ;
        lv2:index 28 ;
        lv2:symbol "lfo1_mod_detune_hi" ;
        lv2:name "Mod Detune HI" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:default 100.000 ;
        lv2:minimum -200.000 ;
        lv2:maximum 200.000 ;
        ue:unit ue:cent ;
    ] , [
        a lv2:InputPort ;
        a lv2:ControlPort ;
        lv2:index 29 ;
        lv2:symbol "lfo1_mod_detune_active" ;
        lv2:name "Mod Detune Active" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:portProperty lv2:toggled ;
        lv2:default 0.00000 ;
        lv2:minimum 0.00000 ;
        lv2:maximum 1.00000 ;
    ] , [
        a lv2:OutputPort ;
        a lv2:ControlPort ;
        lv2:index 30 ;
        lv2:symbol "lfo1_activity" ;
        lv2:name "Activity 1" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:portProperty lv2:connectionOptional ;
        lv2:minimum 0.00000 ;
        lv2:maximum 1.00000 ;
    ] , [
        a lv2:InputPort ;
        a lv2:ControlPort ;
        lv2:index 31 ;
        lv2:symbol "lfo2_mode" ;
        lv2:name "LFO 2" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:portProperty lv2:integer ;
        lv2:portProperty lv2:enumeration ;
        lv2:scalePoint [ rdfs:label "Sine"; rdf:value 0 ] ;
        lv2:scalePoint [ rdfs:label "Triangle"; rdf:value 1 ] ;
        lv2:scalePoint [ rdfs:label "Square"; rdf:value 2 ] ;
        lv2:scalePoint [ rdfs:label "Saw up"; rdf:value 3 ] ;
        lv2:scalePoint [ rdfs:label "Saw down"; rdf:value 4 ] ;
        lv2:default 0.00000 ;
        lv2:minimum 0.00000 ;
        lv2:maximum 4.00000 ;
    ] , [
        a lv2:InputPort ;
        a lv2:ControlPort ;
        lv2:index 32 ;
        lv2:symbol "lfo2_freq" ;
        lv2:name "LFO 2 Freq" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:portProperty epp:logarithmic ;
        lv2:default 0.200000 ;
        lv2:minimum 0.0100000 ;
        lv2:maximum 10.0000 ;
        ue:unit ue:hz ;
    ] , [
        a lv2:InputPort ;
        a lv2:ControlPort ;
        lv2:index 33 ;
        lv2:symbol "lfo2_reset" ;
        lv2:name "Reset 2" ;
        lv2:portProperty epp:trigger ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:portProperty lv2:toggled ;
        lv2:default 0.00000 ;
        lv2:minimum 0.00000 ;
        lv2:maximum 1.00000 ;
    ] , [
        a lv2:InputPort ;
        a lv2:ControlPort ;
        lv2:index 34 ;
        lv2:symbol "lfo2_lfo1_freq_lo" ;
        lv2:name "LFO Freq LO" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:portProperty epp:logarithmic ;
        lv2:default 0.0500000 ;
        lv2:minimum 0.0100000 ;
        lv2:maximum 10.0000 ;
        ue:unit ue:hz ;
    ] , [
        a lv2:InputPort ;
        a lv2:ControlPort ;
        lv2:index 35 ;
        lv2:symbol "lfo2_lfo1_freq_hi" ;
        lv2:name "LFO Freq HI" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:portProperty epp:logarithmic ;
        lv2:default 0.500000 ;
        lv2:minimum 0.0100000 ;
        lv2:maximum 10.0000 ;
        ue:unit ue:hz ;
    ] , [
        a lv2:InputPort ;
        a lv2:ControlPort ;
        lv2:index 36 ;
        lv2:symbol "lfo2_lfo1_freq_active" ;
        lv2:name "LFO 1 Freq Active" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:portProperty lv2:toggled ;
        lv2:default 0.00000 ;
        lv2:minimum 0.00000 ;
        lv2:maximum 1.00000 ;
    ] , [
        a lv2:InputPort ;
        a lv2:ControlPort ;
        lv2:index 37 ;
        lv2:symbol "lfo2_mod_amount_lo" ;
        lv2:name "Mod Amount LO" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:default 0.300000 ;
        lv2:minimum 0.00000 ;
        lv2:maximum 1.00000 ;
    ] , [
        a lv2:InputPort ;
        a lv2:ControlPort ;
        lv2:index 38 ;
        lv2:symbol "lfo2_mod_amount_hi" ;
        lv2:name "Mod Amount HI" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:default 0.600000 ;
        lv2:minimum 0.00000 ;
        lv2:maximum 1.00000 ;
    ] , [
        a lv2:InputPort ;
        a lv2:ControlPort ;
        lv2:index 39 ;
        lv2:symbol "lfo2_mod_amount_active" ;
        lv2:name "Mod Amount Active" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:portProperty lv2:toggled ;
        lv2:default 0.00000 ;
        lv2:minimum 0.00000 ;
        lv2:maximum 1.00000 ;
    ] , [
        a lv2:OutputPort ;
        a lv2:ControlPort ;
        lv2:index 40 ;
        lv2:symbol "lfo2_activity" ;
        lv2:name "Activity 2" ;
        lv2:portProperty epp:hasStrictBounds ;
        lv2:portProperty lv2:connectionOptional ;
        lv2:minimum 0.00000 ;
        lv2:maximum 1.00000 ;
    ]
.