1<CsoundSynthesizer>
2<CsOptions>
3--midi-key-cps=4 --midi-velocity=5
4</CsOptions>
5<CsInstruments>
6
7; by Sean Costello, August 23-26, 1999
8; GUI and some additions by Josep M Comajuncosas, July 2001
9; CsoundQt version by Andres Cabrera 2010
10
11sr = 44100
12ksmps = 128
13nchnls = 2
140dbfs = 1
15
16gasig2 init 0	; global variable to send pulse waves to ensemble section
17ga2 init 0	; global variable to send output of ensemble to reverb
18
19
20instr 1	; Used to generate simple sawtooth-like waveforms
21
22ifreq  = 440 * 2 ^((p4 -69)/12)
23print ifreq
24iharms=(sr*.4) / ifreq	; Limits number of harmonics in bandlimited
25			; pulse waveform
26
27asig	gbuzz	1, ifreq, iharms, 1, .9, 2
28kenv 	madsr	1, 0,1,1.5
29
30aout = kenv * asig * .45
31; The output of instr 19 is sent to the "ensemble" chorusing
32; section. None of the dry signal will be heard in the output.
33gasig2 = gasig2 + aout
34
35endin
36
37
38instr 22	; Ensemble section. Takes static sawtooth waves,
39		; and produces an animated flanged/chorused/vibratoed
40		; output. The phase shifter follows the output
41		; of the ensemble.
42
43kVcf1 invalue "Vcf1"
44kVcf2 invalue "Vcf2"
45kLfoWave invalue "LfoWave"
46kLfoDepth invalue "LfoDepth"
47kLfoFreq invalue "LfoFreq"
48kPhFreq invalue "PhFreq"
49kPhFdbk invalue "PhFdbk"
50kPhQ invalue "PhQ"
51kPhStages invalue "PhStages"
52kPhSep invalue "PhSep"
53
54ivib = p4 * .00025	; Determines amount of pitch change/vibrato/
55		; chorusing. A value of 1 gives moderately thick
56		; chorusing, without excessive vibrato. Vary this
57		; according to taste.
58
59;LFOs
60ktimea	oscil	4, 0.33, 1
61ktimeb	oscil	4, 0.33, 1, .333
62ktimec	oscil	4, 0.33, 1, .667
63
64ktimed	oscil	1, 5.5, 1
65ktimee	oscil	1, 5.5, 1, .333
66ktimef	oscil	1, 5.5, 1, .667
67
68
69ktime1 = (ktimea + ktimed) * ivib
70ktime2 = (ktimeb + ktimee) * ivib
71ktime3 = (ktimec + ktimef) * ivib
72
73;Chorus
74adummy	delayr	.030
75asig1	deltap3	ktime1 + .012
76asig2	deltap3	ktime2 + .012
77asig3 	deltap3	ktime3 + .012
78	delayw	gasig2
79
80aVcfIn = (asig1 + asig2 + asig3) * .01
81;Vcf
82klow limit 1-kVcf2,0,1
83kband mirror kVcf2,0,1
84khigh limit kVcf2-1,0,1
85
86alow, ahigh, aband	svfilter	aVcfIn, kVcf1, 10
87aPhaserIn mac klow,alow,kband,aband,khigh,ahigh
88
89outs aband, aband
90;Lfo
91lfo:
92ilfowave = 10+i(kLfoWave)
93klfofrq	oscil	kLfoDepth, kLfoFreq, ilfowave,-1
94rigoto end
95;rireturn
96igoto skip0
97if ilfowave == kLfoWave kgoto skip0
98reinit lfo
99
100skip0:
101kmod	= kPhFreq*(1+klfofrq)
102kmod limit kmod,20,sr/4
103
104;Phaser
105phaser:
106istages = i(kPhStages)
107
108aphs	phaser2 aPhaserIn, kmod, kPhQ, istages, 2, kPhSep, kPhFdbk
109	aout2=(aPhaserIn + aphs) * .5
110
111rireturn
112igoto skip1
113if istages == kPhStages kgoto skip1
114reinit phaser
115skip1:
116
117ga2 = ga2 + aout2
118
119
120gasig2 = 0
121end:
122endin
123
124
125instr 99	; Simple implementation of Feedback Delay Network (FDN)
126		; reverb, as described by John Stautner and Miller
127		; Puckette, "Designing Multi-Channel Reverberators,"
128
129kRevWet invalue "RevWet"
130kRevSize invalue "RevSize"
131kRevColor invalue "RevColor"
132
133atap	multitap ga2, 0.00043, 0.0215, 0.00268, 0.0298, 0.00485, 0.0572, 0.00595, 0.0708, 0.00741, 0.0797, 0.0142, 0.134, 0.0217, 0.181, 0.0272, 0.192, 0.0379, 0.346, 0.0841, 0.504
134
135aRvb_FreeL, aRvb_FreeR freeverb ga2, ga2, kRevSize, kRevColor
136
137outs aRvb_FreeL*kRevWet + ga2*(1-kRevWet), aRvb_FreeR*kRevWet + ga2*(1-kRevWet)
138
139ga2 = 0
140
141endin
142
143</CsInstruments>
144<CsScore>
145
146f1 0 32768 10 1		; Sine wave for delay line modulation
147f2 0 8192 9 1 1 .25		; Cosine wave for gbuzz
148
149;several shapes for the lfo
150f10 0 32768 10 1;sine
151f11 0 32768 7 0 15360 1 2048 -1 15360 0;saw up
152f12 0 32768 7 0 15360 -1 2048 1 15360 0;saw down
153f13 0 32768 7 0 8192 1 8192 0 8192 -1 8192 0;triangle
154
155; freeverb time constants, as direct (negative) sample, with arbitrary gains
156f71 0 16   -2  -1116 -1188 -1277 -1356 -1422 -1491 -1557 -1617  0.8  0.79  0.78  0.77  0.76  0.75  0.74  0.73
157f72 0 16   -2  -556 -441 -341 -225 0.7  0.72  0.74  0.76
158
159; Global instrument for ensemble/phaser effect. p4 sets amount
160; of pitch change in chorusing.
161f0 3600
162i22 0 3600 .9
163
164; Global instrument for reverb.
165i99 0 3600 .93 1.2 1 7000 1
166
167e
168</CsScore>
169</CsoundSynthesizer>
170<bsbPanel>
171 <label>Widgets</label>
172 <objectName/>
173 <x>674</x>
174 <y>160</y>
175 <width>419</width>
176 <height>351</height>
177 <visible>true</visible>
178 <uuid/>
179 <bgcolor mode="background">
180  <r>0</r>
181  <g>0</g>
182  <b>0</b>
183 </bgcolor>
184 <bsbObject version="2" type="BSBLabel">
185  <objectName/>
186  <x>5</x>
187  <y>123</y>
188  <width>197</width>
189  <height>183</height>
190  <uuid>{accac81c-0549-4f39-89bd-f30ebc1cabe5}</uuid>
191  <visible>true</visible>
192  <midichan>0</midichan>
193  <midicc>-3</midicc>
194  <label>Phaser</label>
195  <alignment>left</alignment>
196  <font>Arial</font>
197  <fontsize>10</fontsize>
198  <precision>3</precision>
199  <color>
200   <r>0</r>
201   <g>0</g>
202   <b>0</b>
203  </color>
204  <bgcolor mode="background">
205   <r>255</r>
206   <g>255</g>
207   <b>255</b>
208  </bgcolor>
209  <bordermode>border</bordermode>
210  <borderradius>5</borderradius>
211  <borderwidth>1</borderwidth>
212 </bsbObject>
213 <bsbObject version="2" type="BSBLabel">
214  <objectName/>
215  <x>6</x>
216  <y>15</y>
217  <width>225</width>
218  <height>102</height>
219  <uuid>{87b86b69-2ccf-49f8-a740-12da6b43bbc1}</uuid>
220  <visible>true</visible>
221  <midichan>0</midichan>
222  <midicc>-3</midicc>
223  <label>LFO</label>
224  <alignment>left</alignment>
225  <font>Arial</font>
226  <fontsize>10</fontsize>
227  <precision>3</precision>
228  <color>
229   <r>0</r>
230   <g>0</g>
231   <b>0</b>
232  </color>
233  <bgcolor mode="background">
234   <r>255</r>
235   <g>255</g>
236   <b>255</b>
237  </bgcolor>
238  <bordermode>border</bordermode>
239  <borderradius>5</borderradius>
240  <borderwidth>1</borderwidth>
241 </bsbObject>
242 <bsbObject version="2" type="BSBLabel">
243  <objectName/>
244  <x>238</x>
245  <y>15</y>
246  <width>159</width>
247  <height>102</height>
248  <uuid>{5fc6ec37-76f4-4ed4-bd1b-61859b587c8f}</uuid>
249  <visible>true</visible>
250  <midichan>0</midichan>
251  <midicc>-3</midicc>
252  <label>Hard Freeverb</label>
253  <alignment>left</alignment>
254  <font>Arial</font>
255  <fontsize>10</fontsize>
256  <precision>3</precision>
257  <color>
258   <r>0</r>
259   <g>0</g>
260   <b>0</b>
261  </color>
262  <bgcolor mode="background">
263   <r>255</r>
264   <g>255</g>
265   <b>255</b>
266  </bgcolor>
267  <bordermode>border</bordermode>
268  <borderradius>5</borderradius>
269  <borderwidth>1</borderwidth>
270 </bsbObject>
271 <bsbObject version="2" type="BSBDropdown">
272  <objectName>LfoWave</objectName>
273  <x>14</x>
274  <y>70</y>
275  <width>112</width>
276  <height>24</height>
277  <uuid>{3dd45672-e874-4f17-af99-0d7f46ee1043}</uuid>
278  <visible>true</visible>
279  <midichan>0</midichan>
280  <midicc>-3</midicc>
281  <bsbDropdownItemList>
282   <bsbDropdownItem>
283    <name>Sine</name>
284    <value>0</value>
285    <stringvalue/>
286   </bsbDropdownItem>
287   <bsbDropdownItem>
288    <name>Saw Down</name>
289    <value>1</value>
290    <stringvalue/>
291   </bsbDropdownItem>
292   <bsbDropdownItem>
293    <name>Saw Up</name>
294    <value>2</value>
295    <stringvalue/>
296   </bsbDropdownItem>
297   <bsbDropdownItem>
298    <name>Triangle</name>
299    <value>3</value>
300    <stringvalue/>
301   </bsbDropdownItem>
302  </bsbDropdownItemList>
303  <selectedIndex>3</selectedIndex>
304  <randomizable group="0">false</randomizable>
305 </bsbObject>
306 <bsbObject version="2" type="BSBLabel">
307  <objectName/>
308  <x>180</x>
309  <y>83</y>
310  <width>41</width>
311  <height>24</height>
312  <uuid>{726f5238-9d67-4c2a-a3e1-56b428488266}</uuid>
313  <visible>true</visible>
314  <midichan>0</midichan>
315  <midicc>-3</midicc>
316  <label>Depth</label>
317  <alignment>left</alignment>
318  <font>Arial</font>
319  <fontsize>10</fontsize>
320  <precision>3</precision>
321  <color>
322   <r>0</r>
323   <g>0</g>
324   <b>0</b>
325  </color>
326  <bgcolor mode="nobackground">
327   <r>255</r>
328   <g>255</g>
329   <b>255</b>
330  </bgcolor>
331  <bordermode>noborder</bordermode>
332  <borderradius>1</borderradius>
333  <borderwidth>1</borderwidth>
334 </bsbObject>
335 <bsbObject version="2" type="BSBLabel">
336  <objectName/>
337  <x>135</x>
338  <y>83</y>
339  <width>41</width>
340  <height>24</height>
341  <uuid>{c91e5dc1-52a8-4f32-989e-58a3fb112d44}</uuid>
342  <visible>true</visible>
343  <midichan>0</midichan>
344  <midicc>-3</midicc>
345  <label>Freq</label>
346  <alignment>left</alignment>
347  <font>Arial</font>
348  <fontsize>10</fontsize>
349  <precision>3</precision>
350  <color>
351   <r>0</r>
352   <g>0</g>
353   <b>0</b>
354  </color>
355  <bgcolor mode="nobackground">
356   <r>255</r>
357   <g>255</g>
358   <b>255</b>
359  </bgcolor>
360  <bordermode>noborder</bordermode>
361  <borderradius>1</borderradius>
362  <borderwidth>1</borderwidth>
363 </bsbObject>
364 <bsbObject version="2" type="BSBKnob">
365  <objectName>LfoDepth</objectName>
366  <x>178</x>
367  <y>37</y>
368  <width>40</width>
369  <height>43</height>
370  <uuid>{55d4da74-c0fa-4bea-abe5-ae64d7232af5}</uuid>
371  <visible>true</visible>
372  <midichan>0</midichan>
373  <midicc>-3</midicc>
374  <minimum>0.00000000</minimum>
375  <maximum>1.00000000</maximum>
376  <value>0.93000001</value>
377  <mode>lin</mode>
378  <mouseControl act="jump">continuous</mouseControl>
379  <resolution>0.01000000</resolution>
380  <randomizable group="0">false</randomizable>
381 </bsbObject>
382 <bsbObject version="2" type="BSBKnob">
383  <objectName>LfoFreq</objectName>
384  <x>135</x>
385  <y>37</y>
386  <width>40</width>
387  <height>43</height>
388  <uuid>{2c434385-4be7-4f8f-bef3-0e0b3892bfad}</uuid>
389  <visible>true</visible>
390  <midichan>0</midichan>
391  <midicc>-3</midicc>
392  <minimum>0.00100000</minimum>
393  <maximum>20.00000000</maximum>
394  <value>18.20009041</value>
395  <mode>lin</mode>
396  <mouseControl act="jump">continuous</mouseControl>
397  <resolution>0.01000000</resolution>
398  <randomizable group="0">false</randomizable>
399 </bsbObject>
400 <bsbObject version="2" type="BSBLabel">
401  <objectName/>
402  <x>342</x>
403  <y>83</y>
404  <width>41</width>
405  <height>24</height>
406  <uuid>{fc151be8-3cbc-433e-b501-19855883065e}</uuid>
407  <visible>true</visible>
408  <midichan>0</midichan>
409  <midicc>-3</midicc>
410  <label>Color</label>
411  <alignment>left</alignment>
412  <font>Arial</font>
413  <fontsize>10</fontsize>
414  <precision>3</precision>
415  <color>
416   <r>0</r>
417   <g>0</g>
418   <b>0</b>
419  </color>
420  <bgcolor mode="nobackground">
421   <r>255</r>
422   <g>255</g>
423   <b>255</b>
424  </bgcolor>
425  <bordermode>noborder</bordermode>
426  <borderradius>1</borderradius>
427  <borderwidth>1</borderwidth>
428 </bsbObject>
429 <bsbObject version="2" type="BSBLabel">
430  <objectName/>
431  <x>297</x>
432  <y>83</y>
433  <width>41</width>
434  <height>24</height>
435  <uuid>{9100d64e-fe82-4c38-b24e-881d33134bb2}</uuid>
436  <visible>true</visible>
437  <midichan>0</midichan>
438  <midicc>-3</midicc>
439  <label>Size</label>
440  <alignment>left</alignment>
441  <font>Arial</font>
442  <fontsize>10</fontsize>
443  <precision>3</precision>
444  <color>
445   <r>0</r>
446   <g>0</g>
447   <b>0</b>
448  </color>
449  <bgcolor mode="nobackground">
450   <r>255</r>
451   <g>255</g>
452   <b>255</b>
453  </bgcolor>
454  <bordermode>noborder</bordermode>
455  <borderradius>1</borderradius>
456  <borderwidth>1</borderwidth>
457 </bsbObject>
458 <bsbObject version="2" type="BSBLabel">
459  <objectName/>
460  <x>257</x>
461  <y>83</y>
462  <width>41</width>
463  <height>24</height>
464  <uuid>{52b7f52b-ea05-4ba3-9913-037b8357bc12}</uuid>
465  <visible>true</visible>
466  <midichan>0</midichan>
467  <midicc>-3</midicc>
468  <label>d/w</label>
469  <alignment>left</alignment>
470  <font>Arial</font>
471  <fontsize>10</fontsize>
472  <precision>3</precision>
473  <color>
474   <r>0</r>
475   <g>0</g>
476   <b>0</b>
477  </color>
478  <bgcolor mode="nobackground">
479   <r>255</r>
480   <g>255</g>
481   <b>255</b>
482  </bgcolor>
483  <bordermode>noborder</bordermode>
484  <borderradius>1</borderradius>
485  <borderwidth>1</borderwidth>
486 </bsbObject>
487 <bsbObject version="2" type="BSBKnob">
488  <objectName>RevColor</objectName>
489  <x>340</x>
490  <y>37</y>
491  <width>40</width>
492  <height>43</height>
493  <uuid>{c4e6f6b1-59cf-4eb6-8d93-4aa0c46f6ca3}</uuid>
494  <visible>true</visible>
495  <midichan>0</midichan>
496  <midicc>-3</midicc>
497  <minimum>0.00000000</minimum>
498  <maximum>1.00000000</maximum>
499  <value>0.98000002</value>
500  <mode>lin</mode>
501  <mouseControl act="jump">continuous</mouseControl>
502  <resolution>0.01000000</resolution>
503  <randomizable group="0">false</randomizable>
504 </bsbObject>
505 <bsbObject version="2" type="BSBKnob">
506  <objectName>RevSize</objectName>
507  <x>296</x>
508  <y>37</y>
509  <width>40</width>
510  <height>43</height>
511  <uuid>{874550d5-aa2c-4eaa-b0fd-0aec3075a0c4}</uuid>
512  <visible>true</visible>
513  <midichan>0</midichan>
514  <midicc>-3</midicc>
515  <minimum>0.05000000</minimum>
516  <maximum>0.99000000</maximum>
517  <value>0.92420000</value>
518  <mode>lin</mode>
519  <mouseControl act="jump">continuous</mouseControl>
520  <resolution>0.01000000</resolution>
521  <randomizable group="0">false</randomizable>
522 </bsbObject>
523 <bsbObject version="2" type="BSBKnob">
524  <objectName>RevWet</objectName>
525  <x>252</x>
526  <y>37</y>
527  <width>40</width>
528  <height>43</height>
529  <uuid>{d5658549-3527-409e-a69c-eb98c38a8092}</uuid>
530  <visible>true</visible>
531  <midichan>0</midichan>
532  <midicc>-3</midicc>
533  <minimum>0.00000000</minimum>
534  <maximum>1.00000000</maximum>
535  <value>0.94000000</value>
536  <mode>lin</mode>
537  <mouseControl act="jump">continuous</mouseControl>
538  <resolution>0.01000000</resolution>
539  <randomizable group="0">false</randomizable>
540 </bsbObject>
541 <bsbObject version="2" type="BSBLabel">
542  <objectName/>
543  <x>60</x>
544  <y>263</y>
545  <width>41</width>
546  <height>24</height>
547  <uuid>{35c15a8b-a512-4d9e-b7c5-57e566276fc7}</uuid>
548  <visible>true</visible>
549  <midichan>0</midichan>
550  <midicc>-3</midicc>
551  <label>Order</label>
552  <alignment>left</alignment>
553  <font>Arial</font>
554  <fontsize>10</fontsize>
555  <precision>3</precision>
556  <color>
557   <r>0</r>
558   <g>0</g>
559   <b>0</b>
560  </color>
561  <bgcolor mode="nobackground">
562   <r>255</r>
563   <g>255</g>
564   <b>255</b>
565  </bgcolor>
566  <bordermode>noborder</bordermode>
567  <borderradius>1</borderradius>
568  <borderwidth>1</borderwidth>
569 </bsbObject>
570 <bsbObject version="2" type="BSBLabel">
571  <objectName/>
572  <x>128</x>
573  <y>269</y>
574  <width>41</width>
575  <height>24</height>
576  <uuid>{ccc15056-4707-4134-8c7f-0c92e81b4fbf}</uuid>
577  <visible>true</visible>
578  <midichan>0</midichan>
579  <midicc>-3</midicc>
580  <label>Sep</label>
581  <alignment>left</alignment>
582  <font>Arial</font>
583  <fontsize>10</fontsize>
584  <precision>3</precision>
585  <color>
586   <r>0</r>
587   <g>0</g>
588   <b>0</b>
589  </color>
590  <bgcolor mode="nobackground">
591   <r>255</r>
592   <g>255</g>
593   <b>255</b>
594  </bgcolor>
595  <bordermode>noborder</bordermode>
596  <borderradius>1</borderradius>
597  <borderwidth>1</borderwidth>
598 </bsbObject>
599 <bsbObject version="2" type="BSBLabel">
600  <objectName/>
601  <x>126</x>
602  <y>202</y>
603  <width>41</width>
604  <height>24</height>
605  <uuid>{153be116-2470-4657-bc01-f125c50262ed}</uuid>
606  <visible>true</visible>
607  <midichan>0</midichan>
608  <midicc>-3</midicc>
609  <label>Q</label>
610  <alignment>center</alignment>
611  <font>Arial</font>
612  <fontsize>10</fontsize>
613  <precision>3</precision>
614  <color>
615   <r>0</r>
616   <g>0</g>
617   <b>0</b>
618  </color>
619  <bgcolor mode="nobackground">
620   <r>255</r>
621   <g>255</g>
622   <b>255</b>
623  </bgcolor>
624  <bordermode>noborder</bordermode>
625  <borderradius>1</borderradius>
626  <borderwidth>1</borderwidth>
627 </bsbObject>
628 <bsbObject version="2" type="BSBLabel">
629  <objectName/>
630  <x>83</x>
631  <y>202</y>
632  <width>41</width>
633  <height>24</height>
634  <uuid>{4b078edb-bad8-400f-8f3f-b7773ae24415}</uuid>
635  <visible>true</visible>
636  <midichan>0</midichan>
637  <midicc>-3</midicc>
638  <label>Fdbk</label>
639  <alignment>left</alignment>
640  <font>Arial</font>
641  <fontsize>10</fontsize>
642  <precision>3</precision>
643  <color>
644   <r>0</r>
645   <g>0</g>
646   <b>0</b>
647  </color>
648  <bgcolor mode="nobackground">
649   <r>255</r>
650   <g>255</g>
651   <b>255</b>
652  </bgcolor>
653  <bordermode>noborder</bordermode>
654  <borderradius>1</borderradius>
655  <borderwidth>1</borderwidth>
656 </bsbObject>
657 <bsbObject version="2" type="BSBLabel">
658  <objectName/>
659  <x>35</x>
660  <y>202</y>
661  <width>41</width>
662  <height>24</height>
663  <uuid>{059d7a58-e93e-4f19-bbc1-39c3c883b98f}</uuid>
664  <visible>true</visible>
665  <midichan>0</midichan>
666  <midicc>-3</midicc>
667  <label>Freq</label>
668  <alignment>left</alignment>
669  <font>Arial</font>
670  <fontsize>10</fontsize>
671  <precision>3</precision>
672  <color>
673   <r>0</r>
674   <g>0</g>
675   <b>0</b>
676  </color>
677  <bgcolor mode="nobackground">
678   <r>255</r>
679   <g>255</g>
680   <b>255</b>
681  </bgcolor>
682  <bordermode>noborder</bordermode>
683  <borderradius>1</borderradius>
684  <borderwidth>1</borderwidth>
685 </bsbObject>
686 <bsbObject version="2" type="BSBScrollNumber">
687  <objectName>PhStages</objectName>
688  <x>62</x>
689  <y>241</y>
690  <width>37</width>
691  <height>24</height>
692  <uuid>{95465008-7833-49b2-a298-3991593482bc}</uuid>
693  <visible>true</visible>
694  <midichan>0</midichan>
695  <midicc>-3</midicc>
696  <alignment>left</alignment>
697  <font>Arial</font>
698  <fontsize>18</fontsize>
699  <color>
700   <r>0</r>
701   <g>0</g>
702   <b>0</b>
703  </color>
704  <bgcolor mode="background">
705   <r>255</r>
706   <g>255</g>
707   <b>255</b>
708  </bgcolor>
709  <value>16.00000000</value>
710  <resolution>1.00000000</resolution>
711  <minimum>1.00000000</minimum>
712  <maximum>16.00000000</maximum>
713  <bordermode>border</bordermode>
714  <borderradius>1</borderradius>
715  <borderwidth>1</borderwidth>
716  <randomizable group="0">false</randomizable>
717  <mouseControl act=""/>
718 </bsbObject>
719 <bsbObject version="2" type="BSBKnob">
720  <objectName>PhSep</objectName>
721  <x>126</x>
722  <y>227</y>
723  <width>40</width>
724  <height>43</height>
725  <uuid>{d2011f69-e261-4299-a5a5-aa2cd78f210f}</uuid>
726  <visible>true</visible>
727  <midichan>0</midichan>
728  <midicc>-3</midicc>
729  <minimum>0.25000000</minimum>
730  <maximum>4.00000000</maximum>
731  <value>3.54999995</value>
732  <mode>lin</mode>
733  <mouseControl act="jump">continuous</mouseControl>
734  <resolution>0.01000000</resolution>
735  <randomizable group="0">false</randomizable>
736 </bsbObject>
737 <bsbObject version="2" type="BSBKnob">
738  <objectName>PhQ</objectName>
739  <x>126</x>
740  <y>156</y>
741  <width>40</width>
742  <height>43</height>
743  <uuid>{83b17987-41d6-4f70-9c25-6943e9f35d59}</uuid>
744  <visible>true</visible>
745  <midichan>0</midichan>
746  <midicc>-3</midicc>
747  <minimum>0.25000000</minimum>
748  <maximum>4.00000000</maximum>
749  <value>3.81250000</value>
750  <mode>lin</mode>
751  <mouseControl act="jump">continuous</mouseControl>
752  <resolution>0.01000000</resolution>
753  <randomizable group="0">false</randomizable>
754 </bsbObject>
755 <bsbObject version="2" type="BSBKnob">
756  <objectName>PhFdbk</objectName>
757  <x>82</x>
758  <y>156</y>
759  <width>40</width>
760  <height>43</height>
761  <uuid>{c67fe76f-be50-46fa-8e13-21164d40b28f}</uuid>
762  <visible>true</visible>
763  <midichan>0</midichan>
764  <midicc>-3</midicc>
765  <minimum>-0.99000000</minimum>
766  <maximum>0.95000000</maximum>
767  <value>0.89179999</value>
768  <mode>lin</mode>
769  <mouseControl act="jump">continuous</mouseControl>
770  <resolution>0.01000000</resolution>
771  <randomizable group="0">false</randomizable>
772 </bsbObject>
773 <bsbObject version="2" type="BSBKnob">
774  <objectName>PhFreq</objectName>
775  <x>38</x>
776  <y>156</y>
777  <width>40</width>
778  <height>43</height>
779  <uuid>{7781cd16-eaab-49e7-bf6f-95f7f9981766}</uuid>
780  <visible>true</visible>
781  <midichan>0</midichan>
782  <midicc>-3</midicc>
783  <minimum>200.00000000</minimum>
784  <maximum>8000.00000000</maximum>
785  <value>7376.00000000</value>
786  <mode>lin</mode>
787  <mouseControl act="jump">continuous</mouseControl>
788  <resolution>0.01000000</resolution>
789  <randomizable group="0">false</randomizable>
790 </bsbObject>
791 <bsbObject version="2" type="BSBLabel">
792  <objectName/>
793  <x>209</x>
794  <y>123</y>
795  <width>190</width>
796  <height>183</height>
797  <uuid>{49e3af03-7eca-401a-9592-aaa23125258a}</uuid>
798  <visible>true</visible>
799  <midichan>0</midichan>
800  <midicc>-3</midicc>
801  <label>Phaser</label>
802  <alignment>left</alignment>
803  <font>Arial</font>
804  <fontsize>10</fontsize>
805  <precision>3</precision>
806  <color>
807   <r>0</r>
808   <g>0</g>
809   <b>0</b>
810  </color>
811  <bgcolor mode="background">
812   <r>255</r>
813   <g>255</g>
814   <b>255</b>
815  </bgcolor>
816  <bordermode>border</bordermode>
817  <borderradius>5</borderradius>
818  <borderwidth>1</borderwidth>
819 </bsbObject>
820 <bsbObject version="2" type="BSBController">
821  <objectName>Vcf1</objectName>
822  <x>232</x>
823  <y>147</y>
824  <width>145</width>
825  <height>150</height>
826  <uuid>{54d46c69-3b11-4f33-934f-e487e18fb8d5}</uuid>
827  <visible>true</visible>
828  <midichan>0</midichan>
829  <midicc>-3</midicc>
830  <objectName2>Vcf2</objectName2>
831  <xMin>100.00000000</xMin>
832  <xMax>10000.00000000</xMax>
833  <yMin>0.00000000</yMin>
834  <yMax>2.00000000</yMax>
835  <xValue>7883.44824219</xValue>
836  <yValue>0.31999999</yValue>
837  <type>crosshair</type>
838  <pointsize>1</pointsize>
839  <fadeSpeed>0.00000000</fadeSpeed>
840  <mouseControl act="press">jump</mouseControl>
841  <color>
842   <r>255</r>
843   <g>85</g>
844   <b>0</b>
845  </color>
846  <randomizable mode="both" group="0">false</randomizable>
847  <bgcolor>
848   <r>0</r>
849   <g>0</g>
850   <b>0</b>
851  </bgcolor>
852 </bsbObject>
853 <bsbObject version="2" type="BSBLabel">
854  <objectName/>
855  <x>14</x>
856  <y>47</y>
857  <width>41</width>
858  <height>24</height>
859  <uuid>{c97db846-5e62-45a4-b830-22a562d3695c}</uuid>
860  <visible>true</visible>
861  <midichan>0</midichan>
862  <midicc>-3</midicc>
863  <label>Shape</label>
864  <alignment>left</alignment>
865  <font>Arial</font>
866  <fontsize>10</fontsize>
867  <precision>3</precision>
868  <color>
869   <r>0</r>
870   <g>0</g>
871   <b>0</b>
872  </color>
873  <bgcolor mode="nobackground">
874   <r>255</r>
875   <g>255</g>
876   <b>255</b>
877  </bgcolor>
878  <bordermode>noborder</bordermode>
879  <borderradius>1</borderradius>
880  <borderwidth>1</borderwidth>
881 </bsbObject>
882</bsbPanel>
883<bsbPresets>
884<preset name="Maxed out" number="1" >
885<value id="{3dd45672-e874-4f17-af99-0d7f46ee1043}" mode="1" >3.00000000</value>
886<value id="{55d4da74-c0fa-4bea-abe5-ae64d7232af5}" mode="1" >0.93000001</value>
887<value id="{2c434385-4be7-4f8f-bef3-0e0b3892bfad}" mode="1" >18.20009041</value>
888<value id="{c4e6f6b1-59cf-4eb6-8d93-4aa0c46f6ca3}" mode="1" >0.98000002</value>
889<value id="{874550d5-aa2c-4eaa-b0fd-0aec3075a0c4}" mode="1" >0.92420000</value>
890<value id="{d5658549-3527-409e-a69c-eb98c38a8092}" mode="1" >0.94000000</value>
891<value id="{95465008-7833-49b2-a298-3991593482bc}" mode="1" >16.00000000</value>
892<value id="{d2011f69-e261-4299-a5a5-aa2cd78f210f}" mode="1" >3.54999995</value>
893<value id="{83b17987-41d6-4f70-9c25-6943e9f35d59}" mode="1" >3.81250000</value>
894<value id="{c67fe76f-be50-46fa-8e13-21164d40b28f}" mode="1" >0.89179999</value>
895<value id="{7781cd16-eaab-49e7-bf6f-95f7f9981766}" mode="1" >7376.00000000</value>
896<value id="{54d46c69-3b11-4f33-934f-e487e18fb8d5}" mode="1" >7883.44824219</value>
897<value id="{54d46c69-3b11-4f33-934f-e487e18fb8d5}" mode="2" >0.31999999</value>
898</preset>
899<preset name="Min" number="2" >
900<value id="{3dd45672-e874-4f17-af99-0d7f46ee1043}" mode="1" >0.00000000</value>
901<value id="{55d4da74-c0fa-4bea-abe5-ae64d7232af5}" mode="1" >0.56000000</value>
902<value id="{2c434385-4be7-4f8f-bef3-0e0b3892bfad}" mode="1" >2.00090003</value>
903<value id="{c4e6f6b1-59cf-4eb6-8d93-4aa0c46f6ca3}" mode="1" >0.14000000</value>
904<value id="{874550d5-aa2c-4eaa-b0fd-0aec3075a0c4}" mode="1" >0.20039999</value>
905<value id="{d5658549-3527-409e-a69c-eb98c38a8092}" mode="1" >0.19000000</value>
906<value id="{95465008-7833-49b2-a298-3991593482bc}" mode="1" >1.00000000</value>
907<value id="{d2011f69-e261-4299-a5a5-aa2cd78f210f}" mode="1" >0.77499998</value>
908<value id="{83b17987-41d6-4f70-9c25-6943e9f35d59}" mode="1" >0.77499998</value>
909<value id="{c67fe76f-be50-46fa-8e13-21164d40b28f}" mode="1" >-0.05880000</value>
910<value id="{7781cd16-eaab-49e7-bf6f-95f7f9981766}" mode="1" >1292.00000000</value>
911<value id="{54d46c69-3b11-4f33-934f-e487e18fb8d5}" mode="1" >1533.79309082</value>
912<value id="{54d46c69-3b11-4f33-934f-e487e18fb8d5}" mode="2" >1.79999995</value>
913</preset>
914</bsbPresets>
915<MacGUI>
916ioView background {0, 0, 0}
917ioText {5, 123} {197, 183} label 0.000000 0.00100 "" left "Arial" 10 {0, 0, 0} {65280, 65280, 65280} nobackground noborder Phaser
918ioText {6, 15} {225, 102} label 0.000000 0.00100 "" left "Arial" 10 {0, 0, 0} {65280, 65280, 65280} nobackground noborder LFO
919ioText {238, 15} {159, 102} label 0.000000 0.00100 "" left "Arial" 10 {0, 0, 0} {65280, 65280, 65280} nobackground noborder Hard Freeverb
920ioMenu {14, 70} {112, 24} 3 303 "Sine,Saw Down,Saw Up,Triangle" LfoWave
921ioText {180, 83} {41, 24} label 0.000000 0.00100 "" left "Arial" 10 {0, 0, 0} {63232, 62720, 61952} nobackground noborder Depth
922ioText {135, 83} {41, 24} label 0.000000 0.00100 "" left "Arial" 10 {0, 0, 0} {63232, 62720, 61952} nobackground noborder Freq
923ioKnob {178, 37} {40, 43} 1.000000 0.000000 0.010000 0.930000 LfoDepth
924ioKnob {135, 37} {40, 43} 20.000000 0.001000 0.010000 18.200090 LfoFreq
925ioText {342, 83} {41, 24} label 0.000000 0.00100 "" left "Arial" 10 {0, 0, 0} {63232, 62720, 61952} nobackground noborder Color
926ioText {297, 83} {41, 24} label 0.000000 0.00100 "" left "Arial" 10 {0, 0, 0} {63232, 62720, 61952} nobackground noborder Size
927ioText {257, 83} {41, 24} label 0.000000 0.00100 "" left "Arial" 10 {0, 0, 0} {63232, 62720, 61952} nobackground noborder d/w
928ioKnob {340, 37} {40, 43} 1.000000 0.000000 0.010000 0.980000 RevColor
929ioKnob {296, 37} {40, 43} 0.990000 0.050000 0.010000 0.924200 RevSize
930ioKnob {252, 37} {40, 43} 1.000000 0.000000 0.010000 0.940000 RevWet
931ioText {60, 263} {41, 24} label 0.000000 0.00100 "" left "Arial" 10 {0, 0, 0} {63232, 62720, 61952} nobackground noborder Order
932ioText {128, 269} {41, 24} label 0.000000 0.00100 "" left "Arial" 10 {0, 0, 0} {63232, 62720, 61952} nobackground noborder Sep
933ioText {126, 202} {41, 24} label 0.000000 0.00100 "" center "Arial" 10 {0, 0, 0} {63232, 62720, 61952} nobackground noborder Q
934ioText {83, 202} {41, 24} label 0.000000 0.00100 "" left "Arial" 10 {0, 0, 0} {63232, 62720, 61952} nobackground noborder Fdbk
935ioText {35, 202} {41, 24} label 0.000000 0.00100 "" left "Arial" 10 {0, 0, 0} {63232, 62720, 61952} nobackground noborder Freq
936ioText {62, 241} {37, 24} scroll 16.000000 1.000000 "PhStages" left "Arial" 18 {0, 0, 0} {65280, 65280, 65280} background noborder
937ioKnob {126, 227} {40, 43} 4.000000 0.250000 0.010000 3.550000 PhSep
938ioKnob {126, 156} {40, 43} 4.000000 0.250000 0.010000 3.812500 PhQ
939ioKnob {82, 156} {40, 43} 0.950000 -0.990000 0.010000 0.891800 PhFdbk
940ioKnob {38, 156} {40, 43} 8000.000000 200.000000 0.010000 7376.000000 PhFreq
941ioText {209, 123} {190, 183} label 0.000000 0.00100 "" left "Arial" 10 {0, 0, 0} {65280, 65280, 65280} nobackground noborder Phaser
942ioMeter {232, 147} {145, 150} {65280, 21760, 0} "Vcf1" 7883.448242 "Vcf2" 0.320000 crosshair 1 0 mouse
943ioText {14, 47} {41, 24} label 0.000000 0.00100 "" left "Arial" 10 {0, 0, 0} {63232, 62720, 61952} nobackground noborder Shape
944</MacGUI>
945<EventPanel name="Theme 1" tempo="90.00000000" loop="8.00000000" x="586" y="279" width="680" height="492" visible="true" loopStart="2" loopEnd="8">
946;type      ;inst      ;start      ;dur      ;note      ;veloc
947i 1 0 1.25 57 100
948i 1 1 1.5 47 100
949i 1 2 1 35 100
950i 1 3 0.75 58 100
951i 1 4 1.75 51 100
952i 1 5 0.5 36 100
953i 1 6 2 52 100
954
955
956         </EventPanel>
957<EventPanel name="Drone" tempo="60.00000000" loop="8.00000000" x="52" y="415" width="655" height="346" visible="true" loopStart="0" loopEnd="0">i 1 0 15 32 100 </EventPanel>
958