This file is indexed.

/usr/lib/lv2/so-synth.lv2/so-404.ttl is in so-synth-lv2 1.4-2.

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
@prefix lv2:  <http://lv2plug.in/ns/lv2core#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix ev: <http://lv2plug.in/ns/ext/event#>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
@prefix rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.

<urn:50m30n3:plugins:SO-404> a lv2:Plugin ;
	a lv2:InstrumentPlugin;
    doap:name "SO-404 Bass Synthesizer" ;
    doap:license <http://usefulinc.com/doap/licenses/gpl> ;
	lv2:requiredFeature <http://lv2plug.in/ns/ext/event> ;
    lv2:requiredFeature <http://lv2plug.in/ns/ext/uri-map> ;
	lv2:optionalFeature lv2:hardRtCapable;
	
    lv2:port [
    a lv2:AudioPort ;
    a lv2:OutputPort ;
    lv2:index 0 ;
    lv2:symbol "output" ;
    lv2:name "Output" ;
    ],[
    a lv2:InputPort;
    a ev:EventPort;
    lv2:index 1 ;
    ev:supportsEvent <http://lv2plug.in/ns/ext/midi#MidiEvent>;
    lv2:symbol "midi";
    lv2:name "MIDI Input";
    ],[
    a lv2:InputPort;
    a lv2:ControlPort;
    lv2:index 2;
    lv2:symbol "controlmode";
    lv2:name "Control Mode";
    lv2:portProperty lv2:toggled;
    lv2:portProperty lv2:enumeration;
    lv2:default 0;
    lv2:scalePoint [ rdfs:label "Control Ports"; rdf:value 1 ];
    lv2:scalePoint [ rdfs:label "Midi Commands"; rdf:value 0 ];
    ],[
    a lv2:InputPort;
    a lv2:ControlPort;
    lv2:index 3;
    lv2:symbol "volume";
    lv2:name "Volume";
    lv2:default 100;
    lv2:minimum 0;
    lv2:maximum 127;
    ],[
    a lv2:InputPort;
    a lv2:ControlPort;
    lv2:index 4;
    lv2:symbol "cutoff";
    lv2:name "Filter Cutoff";
    lv2:default 50;
    lv2:minimum 0;
    lv2:maximum 127;
    ],[
    a lv2:InputPort;
    a lv2:ControlPort;
    lv2:index 5;
    lv2:symbol "resonance";
    lv2:name "Filter Resonance";
    lv2:default 100;
    lv2:minimum 0;
    lv2:maximum 127;
    ],[
    a lv2:InputPort;
    a lv2:ControlPort;
    lv2:index 6;
    lv2:symbol "envelope";
    lv2:name "Filter Envelope";
    lv2:default 80;
    lv2:minimum 0;
    lv2:maximum 127;
    ],[
    a lv2:InputPort;
    a lv2:ControlPort;
    lv2:index 7;
    lv2:symbol "portamento";
    lv2:name "Portamento Time";
    lv2:default 64;
    lv2:minimum 0;
    lv2:maximum 127;
    ], [
    a lv2:InputPort;
    a lv2:ControlPort;
    lv2:index 8;
    lv2:symbol "release";
    lv2:name "Release Time";
    lv2:default 100;
    lv2:minimum 0;
    lv2:maximum 127;
    ],[
    a lv2:InputPort;
    a lv2:ControlPort;
    lv2:index 9;
    lv2:symbol "channel";
    lv2:name "Midi Channel";
    lv2:portProperty lv2:integer;
    lv2:default 0;
    lv2:minimum 0;
    lv2:maximum 16;
    lv2:scalePoint [ rdfs:label "Off"; rdf:value 16 ];
    ].