home *** CD-ROM | disk | FTP | other *** search
/ Nebula / nebula.bin / Audio / Score / PatAPan2.score < prev    next >
Text File  |  1993-08-08  |  49KB  |  2,103 lines

  1. /*
  2.     Pat-A-Pan II
  3.  
  4.     A Burgundian carol, as found in the Oxford Book of Carols,
  5.     in three verses.
  6.  
  7.     This score is based on PatAPan.score, written by myself, that used the
  8.     Pluck synthPatch.  This score has been modified to use a few new
  9.     "instruments", in order to illustrate the modifications possible to
  10.     my scores.  They are intended, really, as frameworks for experimentation.
  11.  
  12.     The first verse uses an instrument I call a "glass xylophone": 2 Fm1i
  13.     synthPatches, the second entering just a bit after the first to give
  14.     the sound depth.  All four parts of the first verse are played with
  15.     a "glass xylophone".
  16.     
  17.     The second verse features the tenor part with the melody.  This part is
  18.     rendered with an ordinary Pluck synthPatch.  The soprano and alto parts
  19.     are played "on" a glass xylophone, as in the first verse.  The bass part
  20.     features a new instrument, the "muted electric rubberband".  This twangy
  21.     instrument is based on the DBFm1vi synthPatch, using the bassoon ("BN")
  22.     wavetable.  It uses the same amplitude and index envelopes as the
  23.     glass xylophone.
  24.  
  25.     Finally, the third verse is again rendered by a glass xylophone in the
  26.     top two parts.  The bottom two parts are unmuted "electric rubberbands".
  27.     This is a combination of the first Fm1i synthPatch that is present in
  28.     the glass xylophone, with the second Fm1i being replaced by the DBFm1vi
  29.     synthPatch featured in the second verse as the bass part.  This
  30.     juxaposition of synthPatches gives the electric rubberband more "zing"
  31.     than its muted version.
  32.  
  33.     Rendered by Christopher Kane; April 26, 1992.
  34.     If you have any questions about this score, or suggestions, or scores
  35.     you have written, my e-mail address is: kane@nic.gac.edu
  36.     With the unbundling of the MusicKit in NeXT OS 3.0, I will probably
  37.     cease to do much with the MusicKit, however.
  38. */
  39.  
  40. info tempo:150, headroom:-0.2;
  41. noteTagRange = 1 to 12;
  42.  
  43. envelope ampFun = [(0.0, 1.0), (0.001, 0.5), (2.0, 0.0)];
  44. envelope indexFun = [(0.0, 4.0), (0.001, 1.0), (2.0, 0.0)];
  45.  
  46. part sop1; sop1 synthPatchCount:1, synthPatch:"Fm1i";
  47. part sop2; sop2 synthPatchCount:1, synthPatch:"Fm1i";
  48. part alto1; alto1 synthPatchCount:1, synthPatch:"Fm1i";
  49. part alto2; alto2 synthPatchCount:1, synthPatch:"Fm1i";
  50. part ten1; ten1 synthPatchCount:1, synthPatch:"Fm1i";
  51. part ten2; ten2 synthPatchCount:1, synthPatch:"Fm1i";
  52. part ten3; ten3 synthPatchCount:1, synthPatch:"DBFm1vi";
  53. part bass1; bass1 synthPatchCount:1, synthPatch:"Fm1i";
  54. part bass2; bass2 synthPatchCount:1, synthPatch:"Fm1i";
  55. part bass3; bass3 synthPatchCount:1, synthPatch:"DBFm1vi";
  56. part tenPluck; tenPluck synthPatchCount:1, synthPatch:"Pluck";
  57.  
  58. var start = 0.01;
  59. var whole = 4.0;
  60. var half = whole / 2;
  61. var quart = whole / 4;
  62. var eigth = whole / 8;
  63. var sixt = whole / 16; 
  64. var breath = whole / 32;
  65.  
  66. var offset = 0.035;
  67. var factor = 0.992;
  68.  
  69. BEGIN;
  70.  
  71. sop1 (noteUpdate) ampEnv:ampFun, m1Ind0:0.0, m1Ind1:1.50, m1IndEnv:indexFun, m1Ratio:2.0, bearing:-18.0;
  72. sop2 (noteUpdate) ampEnv:ampFun, m1Ind0:0.0, m1Ind1:1.30, m1IndEnv:indexFun, m1Ratio:2.001, bearing:-18.0;
  73. alto1 (noteUpdate) ampEnv:ampFun, m1Ind0:0.0, m1Ind1:1.50, m1IndEnv:indexFun, m1Ratio:2.0, bearing:-6.0;
  74. alto2 (noteUpdate) ampEnv:ampFun, m1Ind0:0.0, m1Ind1:1.30, m1IndEnv:indexFun, m1Ratio:2.001, bearing:-6.0;
  75. ten1 (noteUpdate) ampEnv:ampFun, m1Ind0:0.0, m1Ind1:1.50, m1IndEnv:indexFun, m1Ratio:2.0, bearing:6.0;
  76. ten2 (noteUpdate) ampEnv:ampFun, m1Ind0:0.0, m1Ind1:1.30, m1IndEnv:indexFun, m1Ratio:2.001, bearing:6.0;
  77. ten3 (noteUpdate) waveform:"OB", ampEnv:ampFun, m1Ind0:0.0, m1Ind1:1.0, m1IndEnv:indexFun, m1Ratio:2.0, bearing:6.0;
  78. bass1 (noteUpdate) ampEnv:ampFun, m1Ind0:0.0, m1Ind1:1.50, m1IndEnv:indexFun, m1Ratio:2.0, bearing:18.0;
  79. bass2 (noteUpdate) ampEnv:ampFun, m1Ind0:0.0, m1Ind1:1.30, m1IndEnv:indexFun, m1Ratio:2.001, bearing:18.0;
  80. bass3 (noteUpdate) waveform:"BN", ampEnv:ampFun, m1Ind0:0.0, m1Ind1:1.0, m1IndEnv:indexFun, m1Ratio:2.0, bearing:18.0;
  81. tenPluck (noteUpdate) sustain:0.97, decay:20, bright:0.2, bearing:6.0;
  82.  
  83. t start;
  84.  
  85. /*---------------------------------*/
  86. sop1 (noteOn 1) freq:g4, amp:0.35;
  87. alto1 (noteOn 2) freq:g4, amp:0.35;
  88. t +offset;
  89. sop2 (noteOn 1) freq:g4*factor, amp:0.35;
  90. alto2(noteOn 2) freq:g4*factor, amp:0.35;
  91. t +quart;
  92.  
  93. sop1 (noteOn 1) freq:g4;
  94. alto1 (noteOn 2) freq:g4;
  95. ten1 (noteOn 3) freq:d3, amp:0.4;
  96. bass1 (noteOn 4) freq:g2, amp:0.4;
  97. t +offset;
  98. sop2 (noteOn 1) freq:g4*factor;
  99. alto2 (noteOn 2) freq:g4*factor;
  100. ten2 (noteOn 3) freq:d3*factor, amp:0.4;
  101. bass2 (noteOn 4) freq:g2*factor, amp:0.4;
  102. t +eigth;
  103.  
  104. ten1 (noteOn 3) freq:d3;
  105. bass1 (noteOn 4) freq:g2;
  106. t +offset;
  107. ten2 (noteOn 3) freq:d3*factor;
  108. bass2 (noteOn 4) freq:g2*factor;
  109. t +eigth;
  110.  
  111. /*---------------------------------*/
  112. sop1 (noteOn 1) freq:d5;
  113. alto1 (noteOn 2) freq:bf4;
  114. ten1 (noteOn 3) freq:d3;
  115. bass1 (noteOn 4) freq:g2;
  116. t +offset;
  117. sop2 (noteOn 1) freq:d5*factor;
  118. alto2 (noteOn 2) freq:bf4*factor;
  119. ten2 (noteOn 3) freq:d3*factor;
  120. bass2 (noteOn 4) freq:g2*factor;
  121. t +quart;
  122.  
  123. sop1 (noteOn 1) freq:d5;
  124. alto1 (noteOn 2) freq:bf4;
  125. ten1 (noteOn 3) freq:d3;
  126. bass1 (noteOn 4) freq:g2;
  127. t +offset;
  128. sop2 (noteOn 1) freq:d5*factor;
  129. alto2 (noteOn 2) freq:bf4*factor;
  130. ten2 (noteOn 3) freq:d3*factor;
  131. bass2 (noteOn 4) freq:g2*factor;
  132. t +eigth;
  133.  
  134. ten1 (noteOn 3) freq:d3;
  135. bass1 (noteOn 4) freq:g2;
  136. t +offset;
  137. ten2 (noteOn 3) freq:d3*factor;
  138. bass2 (noteOn 4) freq:g2*factor;
  139. t +eigth;
  140.  
  141. sop1 (noteOn 1) freq:c5;
  142. alto1 (noteOn 2) freq:a4;
  143. ten1 (noteOn 3) freq:d3;
  144. bass1 (noteOn 4) freq:g2;
  145. t +offset;
  146. sop2 (noteOn 1) freq:c5*factor;
  147. alto2 (noteOn 2) freq:a4*factor;
  148. ten2 (noteOn 3) freq:d3*factor;
  149. bass2 (noteOn 4) freq:g2*factor;
  150. t +quart;
  151.  
  152. sop1 (noteOn 1) freq:d5;
  153. alto1 (noteOn 2) freq:fs4;
  154. ten1 (noteOn 3) freq:d3;
  155. bass1 (noteOn 4) freq:g2;
  156. t +offset;
  157. sop2 (noteOn 1) freq:d5*factor;
  158. alto2 (noteOn 2) freq:fs4*factor;
  159. ten2 (noteOn 3) freq:d3*factor;
  160. bass2 (noteOn 4) freq:g2*factor;
  161. t +eigth;
  162.  
  163. ten1 (noteOn 3) freq:d3;
  164. bass1 (noteOn 4) freq:g2;
  165. t +offset;
  166. ten2 (noteOn 3) freq:d3*factor;
  167. bass2 (noteOn 4) freq:g2*factor;
  168. t +eigth;
  169.  
  170. /*---------------------------------*/
  171. sop1 (noteOn 1) freq:bf4;
  172. alto1 (noteOn 2) freq:g4;
  173. ten1 (noteOn 3) freq:d3;
  174. bass1 (noteOn 4) freq:g2;
  175. t +offset;
  176. sop2 (noteOn 1) freq:bf4*factor;
  177. alto2 (noteOn 2) freq:g4*factor;
  178. ten2 (noteOn 3) freq:d3*factor;
  179. bass2 (noteOn 4) freq:g2*factor;
  180. t +quart;
  181.  
  182. sop1 (noteOn 1) freq:a4;
  183. alto1 (noteOn 2) freq:fs4;
  184. ten1 (noteOn 3) freq:d3;
  185. bass1 (noteOn 4) freq:g2;
  186. t +offset;
  187. sop2 (noteOn 1) freq:a4*factor;
  188. alto2 (noteOn 2) freq:fs4*factor;
  189. ten2 (noteOn 3) freq:d3*factor;
  190. bass2 (noteOn 4) freq:g2*factor;
  191. t +eigth;
  192.  
  193. sop1 (noteOn 1) freq:bf4;
  194. alto1 (noteOn 2) freq:fs4;
  195. ten1 (noteOn 3) freq:d3;
  196. bass1 (noteOn 4) freq:g2;
  197. t +offset;
  198. sop2 (noteOn 1) freq:bf4*factor;
  199. alto2 (noteOn 2) freq:fs4*factor;
  200. ten2 (noteOn 3) freq:d3*factor;
  201. bass2 (noteOn 4) freq:g2*factor;
  202. t +eigth;
  203.  
  204. sop1 (noteOn 1) freq:c5;
  205. alto1 (noteOn 2) freq:e4;
  206. ten1 (noteOn 3) freq:d3;
  207. bass1 (noteOn 4) freq:g2;
  208. t +offset;
  209. sop2 (noteOn 1) freq:c5*factor;
  210. alto2 (noteOn 2) freq:e4*factor;
  211. ten2 (noteOn 3) freq:d3*factor;
  212. bass2 (noteOn 4) freq:g2*factor;
  213. t +quart;
  214.  
  215. sop1 (noteOn 1) freq:a4;
  216. alto1 (noteOn 2) freq:fs4;
  217. ten1 (noteOn 3) freq:d3;
  218. bass1 (noteOn 4) freq:g2;
  219. t +offset;
  220. sop2 (noteOn 1) freq:a4*factor;
  221. alto2 (noteOn 2) freq:fs4*factor;
  222. ten2 (noteOn 3) freq:d3*factor;
  223. bass2 (noteOn 4) freq:g2*factor;
  224. t +eigth;
  225.  
  226. ten1 (noteOn 3) freq:d3;
  227. bass1 (noteOn 4) freq:g2;
  228. t +offset;
  229. ten2 (noteOn 3) freq:d3*factor;
  230. bass2 (noteOn 4) freq:g2*factor;
  231. t +eigth;
  232.  
  233. /*---------------------------------*/
  234. sop1 (noteOn 1) freq:d5;
  235. alto1 (noteOn 2) freq:d4;
  236. ten1 (noteOn 3) freq:d3;
  237. bass1 (noteOn 4) freq:g2;
  238. t +offset;
  239. sop2 (noteOn 1) freq:d5*factor;
  240. alto2 (noteOn 2) freq:d4*factor;
  241. ten2 (noteOn 3) freq:d3*factor;
  242. bass2 (noteOn 4) freq:g2*factor;
  243. t +quart;
  244.  
  245. ten1 (noteOn 3) freq:d3;
  246. bass1 (noteOn 4) freq:g2;
  247. t +offset;
  248. ten2 (noteOn 3) freq:d3*factor;
  249. bass2 (noteOn 4) freq:g2*factor;
  250. t +eigth;
  251.  
  252. ten1 (noteOn 3) freq:d3;
  253. bass1 (noteOn 4) freq:g2;
  254. t +offset;
  255. ten2 (noteOn 3) freq:d3*factor;
  256. bass2 (noteOn 4) freq:g2*factor;
  257. t +eigth;
  258.  
  259. sop1 (noteOn 1) freq:bf4;
  260. alto1 (noteOn 2) freq:g4;
  261. ten1 (noteOn 3) freq:d3;
  262. bass1 (noteOn 4) freq:g2;
  263. t +offset;
  264. sop2 (noteOn 1) freq:bf4*factor;
  265. alto2 (noteOn 2) freq:g4*factor;
  266. ten2 (noteOn 3) freq:d3*factor;
  267. bass2 (noteOn 4) freq:g2*factor;
  268. t +quart;
  269.  
  270. ten1 (noteOn 3) freq:d3;
  271. bass1 (noteOn 4) freq:g2;
  272. t +offset;
  273. ten2 (noteOn 3) freq:d3*factor;
  274. bass2 (noteOn 4) freq:g2*factor;
  275. t +eigth;
  276.  
  277. ten1 (noteOn 3) freq:d3;
  278. bass1 (noteOn 4) freq:g2;
  279. t +offset;
  280. ten2 (noteOn 3) freq:d3*factor;
  281. bass2 (noteOn 4) freq:g2*factor;
  282. t +eigth;
  283.  
  284. /*---------------------------------*/
  285. sop1 (noteOn 1) freq:a4;
  286. alto1 (noteOn 2) freq:fs4;
  287. ten1 (noteOn 3) freq:d3;
  288. bass1 (noteOn 4) freq:g2;
  289. t +offset;
  290. sop2 (noteOn 1) freq:a4*factor;
  291. alto2 (noteOn 2) freq:fs4*factor;
  292. ten2 (noteOn 3) freq:d3*factor;
  293. bass2 (noteOn 4) freq:g2*factor;
  294. t +quart;
  295.  
  296. ten1 (noteOn 3) freq:d3;
  297. bass1 (noteOn 4) freq:g2;
  298. t +offset;
  299. ten2 (noteOn 3) freq:d3*factor;
  300. bass2 (noteOn 4) freq:g2*factor;
  301. t +eigth;
  302.  
  303. ten1 (noteOn 3) freq:d3;
  304. bass1 (noteOn 4) freq:g2;
  305. t +offset;
  306. ten2 (noteOn 3) freq:d3*factor;
  307. bass2 (noteOn 4) freq:g2*factor;
  308. t +eigth;
  309.  
  310. sop1 (noteOn 1) freq:a4;
  311. alto1 (noteOn 2) freq:fs4;
  312. ten1 (noteOn 3) freq:d3;
  313. bass1 (noteOn 4) freq:g2;
  314. t +offset;
  315. sop2 (noteOn 1) freq:a4*factor;
  316. alto2 (noteOn 2) freq:fs4*factor;
  317. ten2 (noteOn 3) freq:d3*factor;
  318. bass2 (noteOn 4) freq:g2*factor;
  319. t +quart;
  320.  
  321. sop1 (noteOn 1) freq:bf4;
  322. alto1 (noteOn 2) freq:g4;
  323. ten1 (noteOn 3) freq:d3;
  324. bass1 (noteOn 4) freq:g2;
  325. t +offset;
  326. sop2 (noteOn 1) freq:bf4*factor;
  327. alto2 (noteOn 2) freq:g4*factor;
  328. ten2 (noteOn 3) freq:d3*factor;
  329. bass2 (noteOn 4) freq:g2*factor;
  330. t +eigth;
  331.  
  332. ten1 (noteOn 3) freq:d3;
  333. bass1 (noteOn 4) freq:g2;
  334. t +offset;
  335. ten2 (noteOn 3) freq:d3*factor;
  336. bass2 (noteOn 4) freq:g2*factor;
  337. t +eigth;
  338.  
  339. /*---------------------------------*/
  340. sop1 (noteOn 1) freq:a4;
  341. alto1 (noteOn 2) freq:fs4;
  342. ten1 (noteOn 3) freq:d3;
  343. bass1 (noteOn 4) freq:g2;
  344. t +offset;
  345. sop2 (noteOn 1) freq:a4*factor;
  346. alto2 (noteOn 2) freq:fs4*factor;
  347. ten2 (noteOn 3) freq:d3*factor;
  348. bass2 (noteOn 4) freq:g2*factor;
  349. t +quart;
  350.  
  351. sop1 (noteOn 1) freq:fs4;
  352. alto1 (noteOn 2) freq:d4;
  353. ten1 (noteOn 3) freq:d3;
  354. bass1 (noteOn 4) freq:g2;
  355. t +offset;
  356. sop2 (noteOn 1) freq:fs4*factor;
  357. alto2 (noteOn 2) freq:d4*factor;
  358. ten2 (noteOn 3) freq:d3*factor;
  359. bass2 (noteOn 4) freq:g2*factor;
  360. t +eigth;
  361.  
  362. ten1 (noteOn 3) freq:d3;
  363. bass1 (noteOn 4) freq:g2;
  364. t +offset;
  365. ten2 (noteOn 3) freq:d3*factor;
  366. bass2 (noteOn 4) freq:g2*factor;
  367. t +eigth;
  368.  
  369. sop1 (noteOn 1) freq:g4;
  370. alto1 (noteOn 2) freq:e4;
  371. ten1 (noteOn 3) freq:d3;
  372. bass1 (noteOn 4) freq:g2;
  373. t +offset;
  374. sop2 (noteOn 1) freq:g4*factor;
  375. alto2 (noteOn 2) freq:e4*factor;
  376. ten2 (noteOn 3) freq:d3*factor;
  377. bass2 (noteOn 4) freq:g2*factor;
  378. t +quart;
  379.  
  380. sop1 (noteOn 1) freq:a4;
  381. alto1 (noteOn 2) freq:fs4;
  382. ten1 (noteOn 3) freq:d3;
  383. bass1 (noteOn 4) freq:g2;
  384. t +offset;
  385. sop2 (noteOn 1) freq:a4*factor;
  386. alto2 (noteOn 2) freq:fs4*factor;
  387. ten2 (noteOn 3) freq:d3*factor;
  388. bass2 (noteOn 4) freq:g2*factor;
  389. t +eigth;
  390.  
  391. ten1 (noteOn 3) freq:d3;
  392. bass1 (noteOn 4) freq:g2;
  393. t +offset;
  394. ten2 (noteOn 3) freq:d3*factor;
  395. bass2 (noteOn 4) freq:g2*factor;
  396. t +eigth;
  397.  
  398. /*---------------------------------*/
  399. sop1 (noteOn 1) freq:bf4;
  400. alto1 (noteOn 2) freq:g4;
  401. ten1 (noteOn 3) freq:d3;
  402. bass1 (noteOn 4) freq:g2;
  403. t +offset;
  404. sop2 (noteOn 1) freq:bf4*factor;
  405. alto2 (noteOn 2) freq:g4*factor;
  406. ten2 (noteOn 3) freq:d3*factor;
  407. bass2 (noteOn 4) freq:g2*factor;
  408. t +quart;
  409.  
  410. ten1 (noteOn 3) freq:d4;
  411. bass1 (noteOn 4) freq:g3;
  412. t +offset;
  413. ten2 (noteOn 3) freq:d4*factor;
  414. bass2 (noteOn 4) freq:g3*factor;
  415. t +eigth;
  416.  
  417. ten1 (noteOn 3) freq:d4;
  418. bass1 (noteOn 4) freq:g3;
  419. t +offset;
  420. ten2 (noteOn 3) freq:d4*factor;
  421. bass2 (noteOn 4) freq:g3*factor;
  422. t +eigth;
  423.  
  424. sop1 (noteOn 1) freq:g4;
  425. alto1 (noteOn 2) freq:g4;
  426. ten1 (noteOn 3) freq:d4;
  427. bass1 (noteOn 4) freq:g3;
  428. t +offset;
  429. sop2 (noteOn 1) freq:g4*factor;
  430. alto2 (noteOn 2) freq:g4*factor;
  431. ten2 (noteOn 3) freq:d4*factor;
  432. bass2 (noteOn 4) freq:g3*factor;
  433. t +eigth;
  434.  
  435. sop1 (noteOn 1) freq:a4;
  436. alto1 (noteOn 2) freq:a4;
  437. t +offset;
  438. sop2 (noteOn 1) freq:a4*factor;
  439. alto2 (noteOn 2) freq:a4*factor;
  440. t +eigth;
  441.  
  442. sop1 (noteOn 1) freq:bf4;
  443. alto1 (noteOn 2) freq:g4;
  444. ten1 (noteOn 3) freq:d4;
  445. bass1 (noteOn 4) freq:g3;
  446. t +offset;
  447. sop2 (noteOn 1) freq:bf4*factor;
  448. alto2 (noteOn 2) freq:g4*factor;
  449. ten2 (noteOn 3) freq:d4*factor;
  450. bass2 (noteOn 4) freq:g3*factor;
  451. t +eigth;
  452.  
  453. sop1 (noteOn 1) freq:c5;
  454. alto1 (noteOn 2) freq:a4;
  455. ten1 (noteOn 3) freq:d4;
  456. bass1 (noteOn 4) freq:g3;
  457. t +offset;
  458. sop2 (noteOn 1) freq:c5*factor;
  459. alto2 (noteOn 2) freq:a4*factor;
  460. ten2 (noteOn 3) freq:d4*factor;
  461. bass2 (noteOn 4) freq:g3*factor;
  462. t +eigth;
  463.  
  464. /*---------------------------------*/
  465. sop1 (noteOn 1) freq:d5;
  466. alto1 (noteOn 2) freq:bf4;
  467. ten1 (noteOn 3) freq:d4;
  468. bass1 (noteOn 4) freq:g3;
  469. t +offset;
  470. sop2 (noteOn 1) freq:d5*factor;
  471. alto2 (noteOn 2) freq:bf4*factor;
  472. ten2 (noteOn 3) freq:d4*factor;
  473. bass2 (noteOn 4) freq:g3*factor;
  474. t +quart;
  475.  
  476. ten1 (noteOn 3) freq:d4;
  477. bass1 (noteOn 4) freq:g3;
  478. t +offset;
  479. ten2 (noteOn 3) freq:d4*factor;
  480. bass2 (noteOn 4) freq:g3*factor;
  481. t +eigth;
  482.  
  483. ten1 (noteOn 3) freq:d4;
  484. bass1 (noteOn 4) freq:g3;
  485. t +offset;
  486. ten2 (noteOn 3) freq:d4*factor;
  487. bass2 (noteOn 4) freq:g3*factor;
  488. t +eigth;
  489.  
  490. sop1 (noteOn 1) freq:c5;
  491. alto1 (noteOn 2) freq:a4;
  492. ten1 (noteOn 3) freq:f4;
  493. bass1 (noteOn 4) freq:f3;
  494. t +offset;
  495. sop2 (noteOn 1) freq:c5*factor;
  496. alto2 (noteOn 2) freq:a4*factor;
  497. ten2 (noteOn 3) freq:f4*factor;
  498. bass2 (noteOn 4) freq:f3*factor;
  499. t +eigth;
  500.  
  501. sop1 (noteOn 1) freq:d5;
  502. alto1 (noteOn 2) freq:bf4;
  503. t +offset;
  504. sop2 (noteOn 1) freq:d5*factor;
  505. alto2 (noteOn 2) freq:bf4*factor;
  506. t +eigth;
  507.  
  508. sop1 (noteOn 1) freq:c5;
  509. alto1 (noteOn 2) freq:a4;
  510. ten1 (noteOn 3) freq:d4;
  511. bass1 (noteOn 4) freq:g3;
  512. t +offset;
  513. sop2 (noteOn 1) freq:c5*factor;
  514. alto2 (noteOn 2) freq:a4*factor;
  515. ten2 (noteOn 3) freq:d4*factor;
  516. bass2 (noteOn 4) freq:g3*factor;
  517. t +eigth;
  518.  
  519. sop1 (noteOn 1) freq:bf4;
  520. alto1 (noteOn 2) freq:g4;
  521. ten1 (noteOn 3) freq:d4;
  522. bass1 (noteOn 4) freq:g3;
  523. t +offset;
  524. sop2 (noteOn 1) freq:bf4*factor;
  525. alto2 (noteOn 2) freq:g4*factor;
  526. ten2 (noteOn 3) freq:d4*factor;
  527. bass2 (noteOn 4) freq:g3*factor;
  528. t +eigth;
  529.  
  530. /*---------------------------------*/
  531. sop1 (noteOn 1) freq:a4;
  532. alto1 (noteOn 2) freq:fs4;
  533. ten1 (noteOn 3) freq:d4;
  534. bass1 (noteOn 4) freq:d3;
  535. t +offset;
  536. sop2 (noteOn 1) freq:a4*factor;
  537. alto2 (noteOn 2) freq:fs4*factor;
  538. ten2 (noteOn 3) freq:d4*factor;
  539. bass2 (noteOn 4) freq:d3*factor;
  540. t +quart;
  541.  
  542. ten1 (noteOn 3) freq:a3;
  543. bass1 (noteOn 4) freq:d3;
  544. t +offset;
  545. ten2 (noteOn 3) freq:a3*factor;
  546. bass2 (noteOn 4) freq:d3*factor;
  547. t +eigth;
  548.  
  549. ten1 (noteOn 3) freq:a3;
  550. bass1 (noteOn 4) freq:d3;
  551. t +offset;
  552. ten2 (noteOn 3) freq:a3*factor;
  553. bass2 (noteOn 4) freq:d3*factor;
  554. t +eigth;
  555.  
  556. sop1 (noteOn 1) freq:a4;
  557. alto1 (noteOn 2) freq:fs4;
  558. ten1 (noteOn 3) freq:a3;
  559. bass1 (noteOn 4) freq:d3;
  560. t +offset;
  561. sop2 (noteOn 1) freq:a4*factor;
  562. alto2 (noteOn 2) freq:fs4*factor;
  563. ten2 (noteOn 3) freq:a3*factor;
  564. bass2 (noteOn 4) freq:d3*factor;
  565. t +quart;
  566.  
  567. sop1 (noteOn 1) freq:bf4;
  568. alto1 (noteOn 2) freq:g4;
  569. ten1 (noteOn 3) freq:g3;
  570. bass1 (noteOn 4) freq:c3;
  571. t +offset;
  572. sop2 (noteOn 1) freq:bf4*factor;
  573. alto2 (noteOn 2) freq:g4*factor;
  574. ten2 (noteOn 3) freq:g3*factor;
  575. bass2 (noteOn 4) freq:c3*factor;
  576. t +eigth;
  577.  
  578. ten1 (noteOn 3) freq:g3;
  579. bass1 (noteOn 4) freq:c3;
  580. t +offset;
  581. ten2 (noteOn 3) freq:g3*factor;
  582. bass2 (noteOn 4) freq:c3*factor;
  583. t +eigth;
  584.  
  585. /*---------------------------------*/
  586. sop1 (noteOn 1) freq:a4;
  587. alto1 (noteOn 2) freq:fs4;
  588. ten1 (noteOn 3) freq:a3;
  589. bass1 (noteOn 4) freq:d3;
  590. t +offset;
  591. sop2 (noteOn 1) freq:a4*factor;
  592. alto2 (noteOn 2) freq:fs4*factor;
  593. ten2 (noteOn 3) freq:a3*factor;
  594. bass2 (noteOn 4) freq:d3*factor;
  595. t +quart;
  596.  
  597. sop1 (noteOn 1) freq:fs4;
  598. alto1 (noteOn 2) freq:d4;
  599. ten1 (noteOn 3) freq:a3;
  600. bass1 (noteOn 4) freq:d3;
  601. t +offset;
  602. sop2 (noteOn 1) freq:fs4*factor;
  603. alto2 (noteOn 2) freq:d4*factor;
  604. ten2 (noteOn 3) freq:a3*factor;
  605. bass2 (noteOn 4) freq:d3*factor;
  606. t +eigth;
  607.  
  608. ten1 (noteOn 3) freq:a3;
  609. bass1 (noteOn 4) freq:d3;
  610. t +offset;
  611. ten2 (noteOn 3) freq:a3*factor;
  612. bass2 (noteOn 4) freq:d3*factor;
  613. t +eigth;
  614.  
  615. sop1 (noteOn 1) freq:g4;
  616. alto1 (noteOn 2) freq:e4;
  617. ten1 (noteOn 3) freq:g3;
  618. bass1 (noteOn 4) freq:c3;
  619. t +offset;
  620. sop2 (noteOn 1) freq:g4*factor;
  621. alto2 (noteOn 2) freq:e4*factor;
  622. ten2 (noteOn 3) freq:g3*factor;
  623. bass2 (noteOn 4) freq:c3*factor;
  624. t +quart;
  625.  
  626. sop1 (noteOn 1) freq:a4;
  627. alto1 (noteOn 2) freq:fs4;
  628. ten1 (noteOn 3) freq:d3;
  629. bass1 (noteOn 4) freq:a2;
  630. t +offset;
  631. sop2 (noteOn 1) freq:a4*factor;
  632. alto2 (noteOn 2) freq:fs4*factor;
  633. ten2 (noteOn 3) freq:d3*factor;
  634. bass2 (noteOn 4) freq:a2*factor;
  635. t +eigth;
  636.  
  637. ten1 (noteOn 3) freq:d3;
  638. bass1 (noteOn 4) freq:a2;
  639. t +offset;
  640. ten2 (noteOn 3) freq:d3*factor;
  641. bass2 (noteOn 4) freq:a2*factor;
  642. t +eigth;
  643.  
  644. /*---------------------------------*/
  645. sop1 (noteOn 1) freq:bf4;
  646. alto1 (noteOn 2) freq:g4;
  647. ten1 (noteOn 3) freq:d3;
  648. bass1 (noteOn 4) freq:g2;
  649. t +offset;
  650. sop2 (noteOn 1) freq:bf4*factor;
  651. alto2 (noteOn 2) freq:g4*factor;
  652. ten2 (noteOn 3) freq:d3*factor;
  653. bass2 (noteOn 4) freq:g2*factor;
  654. t +quart;
  655.  
  656. sop1 (noteOn 1) freq:a4;
  657. alto1 (noteOn 2) freq:fs4;
  658. ten1 (noteOn 3) freq:d4;
  659. bass1 (noteOn 4) freq:g3;
  660. t +offset;
  661. sop2 (noteOn 1) freq:a4*factor;
  662. alto2 (noteOn 2) freq:fs4*factor;
  663. ten2 (noteOn 3) freq:d4*factor;
  664. bass2 (noteOn 4) freq:g3*factor;
  665. t +eigth;
  666.  
  667. sop1 (noteOn 1) freq:bf4;
  668. alto1 (noteOn 2) freq:g4;
  669. ten1 (noteOn 3) freq:d4;
  670. bass1 (noteOn 4) freq:g3;
  671. t +offset;
  672. sop2 (noteOn 1) freq:bf4*factor;
  673. alto2 (noteOn 2) freq:g4*factor;
  674. ten2 (noteOn 3) freq:d4*factor;
  675. bass2 (noteOn 4) freq:g3*factor;
  676. t +eigth;
  677.  
  678. sop1 (noteOn 1) freq:c5;
  679. alto1 (noteOn 2) freq:a4;
  680. ten1 (noteOn 3) freq:c4;
  681. bass1 (noteOn 4) freq:f3;
  682. t +offset;
  683. sop2 (noteOn 1) freq:c5*factor;
  684. alto2 (noteOn 2) freq:a4*factor;
  685. ten2 (noteOn 3) freq:c4*factor;
  686. bass2 (noteOn 4) freq:f3*factor;
  687. t +quart;
  688.  
  689. sop1 (noteOn 1) freq:bf4;
  690. alto1 (noteOn 2) freq:g4;
  691. ten1 (noteOn 3) freq:c4;
  692. bass1 (noteOn 4) freq:f3;
  693. t +offset;
  694. sop2 (noteOn 1) freq:bf4*factor;
  695. alto2 (noteOn 2) freq:g4*factor;
  696. ten2 (noteOn 3) freq:c4*factor;
  697. bass2 (noteOn 4) freq:f3*factor;
  698. t +eigth;
  699.  
  700. sop1 (noteOn 1) freq:a4;
  701. alto1 (noteOn 2) freq:a4;
  702. ten1 (noteOn 3) freq:c4;
  703. bass1 (noteOn 4) freq:f3;
  704. t +offset;
  705. sop2 (noteOn 1) freq:a4*factor;
  706. alto2 (noteOn 2) freq:a4*factor;
  707. ten2 (noteOn 3) freq:c4*factor;
  708. bass2 (noteOn 4) freq:f3*factor;
  709. t +eigth;
  710.  
  711. /*---------------------------------*/
  712. sop1 (noteOn 1) freq:d5;
  713. alto1 (noteOn 2) freq:bf4;
  714. ten1 (noteOn 3) freq:g3;
  715. bass1 (noteOn 4) freq:d3;
  716. t +offset;
  717. sop2 (noteOn 1) freq:d5*factor;
  718. alto2 (noteOn 2) freq:bf4*factor;
  719. ten2 (noteOn 3) freq:g3*factor;
  720. bass2 (noteOn 4) freq:d3*factor;
  721. t +quart;
  722.  
  723. alto1 (noteOn 2) freq:a4;
  724. ten1 (noteOn 3) freq:g3;
  725. bass1 (noteOn 4) freq:d3;
  726. t +offset;
  727. alto2 (noteOn 2) freq:a4*factor;
  728. ten2 (noteOn 3) freq:g3*factor;
  729. bass2 (noteOn 4) freq:d3*factor;
  730. t +eigth;
  731.  
  732. alto1 (noteOn 2) freq:g4;
  733. ten1 (noteOn 3) freq:g3;
  734. bass1 (noteOn 4) freq:d3;
  735. t +offset;
  736. alto2 (noteOn 2) freq:g4*factor;
  737. ten2 (noteOn 3) freq:g3*factor;
  738. bass2 (noteOn 4) freq:d3*factor;
  739. t +eigth;
  740.  
  741. sop1 (noteOn 1) freq:a4;
  742. alto1 (noteOn 2) freq:fs4;
  743. ten1 (noteOn 3) freq:a3;
  744. bass1 (noteOn 4) freq:d3;
  745. t +offset;
  746. sop2 (noteOn 1) freq:a4*factor;
  747. alto2 (noteOn 2) freq:fs4*factor;
  748. ten2 (noteOn 3) freq:a3*factor;
  749. bass2 (noteOn 4) freq:d3*factor;
  750. t +quart;
  751.  
  752. alto1 (noteOn 2) freq:e4;
  753. ten1 (noteOn 3) freq:a3;
  754. bass1 (noteOn 4) freq:d3;
  755. t +offset;
  756. alto2 (noteOn 2) freq:e4*factor;
  757. ten2 (noteOn 3) freq:a3*factor;
  758. bass2 (noteOn 4) freq:d3*factor;
  759. t +quart;
  760.  
  761. /*---------------------------------*/
  762. sop1 (noteOn 1) freq:g4;
  763. alto1 (noteOn 2) freq:d4;
  764. ten1 (noteOn 3) freq:bf3;
  765. bass1 (noteOn 4) freq:g2;
  766. t +offset;
  767. sop2 (noteOn 1) freq:g4*factor;
  768. alto2 (noteOn 2) freq:d4*factor;
  769. ten2 (noteOn 3) freq:bf3*factor;
  770. bass2 (noteOn 4) freq:g2*factor;
  771. t +half+quart;
  772.  
  773. sop1 (noteOff 1);
  774. alto1 (noteOff 2);
  775. ten1 (noteOff 3);
  776. bass1 (noteOff 4);
  777. sop2 (noteOff 1);
  778. alto2 (noteOff 2);
  779. ten2 (noteOff 3);
  780. bass2 (noteOff 4);
  781. t +breath;
  782.  
  783. /*====================================================*/
  784.  
  785. /*---------------------------------*/
  786. tenPluck (noteOn 3) freq:g3, amp:0.7;
  787. t +quart;
  788.  
  789. tenPluck (noteOn 3) freq:g3;
  790. sop1 (noteOn 1) freq:ef5, amp:0.2;
  791. alto1 (noteOn 2) freq:c5, amp:0.2;
  792. bass3 (noteOn 4) freq:g3, amp:0.5;
  793. t +offset;
  794. sop2 (noteOn 1) freq:d5*factor, amp:0.2;
  795. alto2 (noteOn 2) freq:bf4*factor, amp:0.2;
  796. t +eigth;
  797.  
  798. sop1 (noteOn 1) freq:ef5;
  799. alto1 (noteOn 2) freq:c5;
  800. bass3 (noteOn 4) freq:g3;
  801. t +offset;
  802. sop2 (noteOn 1) freq:ef5*factor;
  803. alto2 (noteOn 2) freq:c5*factor;
  804. t +eigth;
  805.  
  806. /*---------------------------------*/
  807. tenPluck (noteOn 3) freq:d4;
  808. sop1 (noteOn 1) freq:d5;
  809. alto1 (noteOn 2) freq:bf4;
  810. bass3 (noteOn 4) freq:g3;
  811. t +offset;
  812. sop2 (noteOn 1) freq:d5*factor;
  813. alto2 (noteOn 2) freq:bf4*factor;
  814. t +quart;
  815.  
  816. tenPluck (noteOn 3) freq:d4;
  817. sop1 (noteOn 1) freq:c5;
  818. alto1 (noteOn 2) freq:a4;
  819. bass3 (noteOn 4) freq:g3;
  820. t +offset;
  821. sop2 (noteOn 1) freq:c5*factor;
  822. alto2 (noteOn 2) freq:a4*factor;
  823. t +eigth;
  824.  
  825. sop1 (noteOn 1) freq:bf4;
  826. alto1 (noteOn 2) freq:g4;
  827. bass3 (noteOn 4) freq:g3;
  828. t +offset;
  829. sop2 (noteOn 1) freq:bf4*factor;
  830. alto2 (noteOn 2) freq:g4*factor;
  831. t +eigth;
  832.  
  833. tenPluck (noteOn 3) freq:c4;
  834. sop1 (noteOn 1) freq:c5;
  835. alto1 (noteOn 2) freq:a4;
  836. bass3 (noteOn 4) freq:f3;
  837. t +offset;
  838. sop2 (noteOn 1) freq:c5*factor;
  839. alto2 (noteOn 2) freq:a4*factor;
  840. t +quart;
  841.  
  842. tenPluck (noteOn 3) freq:d4;
  843. sop1 (noteOn 1) freq:bf4;
  844. alto1 (noteOn 2) freq:g4;
  845. bass3 (noteOn 4) freq:d3;
  846. t +offset;
  847. sop2 (noteOn 1) freq:bf4*factor;
  848. alto2 (noteOn 2) freq:g4*factor;
  849. t +eigth;
  850.  
  851. sop1 (noteOn 1) freq:a4;
  852. alto1 (noteOn 2) freq:fs4;
  853. bass3 (noteOn 4) freq:d3;
  854. t +offset;
  855. sop2 (noteOn 1) freq:a4*factor;
  856. alto2 (noteOn 2) freq:fs4*factor;
  857. t +eigth;
  858.  
  859. /*---------------------------------*/
  860. tenPluck (noteOn 3) freq:bf3;
  861. sop1 (noteOn 1) freq:bf4;
  862. alto1 (noteOn 2) freq:g4;
  863. bass3 (noteOn 4) freq:g3;
  864. t +offset;
  865. sop2 (noteOn 1) freq:bf4*factor;
  866. alto2 (noteOn 2) freq:g4*factor;
  867. t +quart;
  868.  
  869. tenPluck (noteOn 3) freq:a3;
  870. sop1 (noteOn 1) freq:c5;
  871. alto1 (noteOn 2) freq:g4;
  872. bass3 (noteOn 4) freq:g2;
  873. t +offset;
  874. sop2 (noteOn 1) freq:c5*factor;
  875. alto2 (noteOn 2) freq:g4*factor;
  876. t +eigth;
  877.  
  878. tenPluck (noteOn 3) freq:bf3;
  879. sop1 (noteOn 1) freq:d5;
  880. alto1 (noteOn 2) freq:g4;
  881. bass3 (noteOn 4) freq:g2;
  882. t +offset;
  883. sop2 (noteOn 1) freq:d5*factor;
  884. alto2 (noteOn 2) freq:g4*factor;
  885. t +eigth;
  886.  
  887. tenPluck (noteOn 3) freq:c4;
  888. sop1 (noteOn 1) freq:ef5;
  889. alto1 (noteOn 2) freq:g4;
  890. bass3 (noteOn 4) freq:g2;
  891. t +offset;
  892. sop2 (noteOn 1) freq:ef5*factor;
  893. alto2 (noteOn 2) freq:g4*factor;
  894. t +quart;
  895.  
  896. tenPluck (noteOn 3) freq:a3;
  897. sop1 (noteOn 1) freq:d5;
  898. alto1 (noteOn 2) freq:g4;
  899. bass3 (noteOn 4) freq:g2;
  900. t +offset;
  901. sop2 (noteOn 1) freq:d5*factor;
  902. alto2 (noteOn 2) freq:g4*factor;
  903. t +eigth;
  904.  
  905. sop1 (noteOn 1) freq:c5;
  906. alto1 (noteOn 2) freq:g4;
  907. bass3 (noteOn 4) freq:g2;
  908. t +offset;
  909. sop2 (noteOn 1) freq:c5*factor;
  910. alto2 (noteOn 2) freq:g4*factor;
  911. t +eigth;
  912.  
  913. /*---------------------------------*/
  914. tenPluck (noteOn 3) freq:d4;
  915. sop1 (noteOn 1) freq:bf4;
  916. alto1 (noteOn 2) freq:g4;
  917. bass3 (noteOn 4) freq:g2;
  918. t +offset;
  919. sop2 (noteOn 1) freq:bf4*factor;
  920. alto2 (noteOn 2) freq:g4*factor;
  921. t +quart;
  922.  
  923. sop1 (noteOn 1) freq:bf4;
  924. alto1 (noteOn 2) freq:g4;
  925. bass3 (noteOn 4) freq:g2;
  926. t +offset;
  927. sop2 (noteOn 1) freq:bf4*factor;
  928. alto2 (noteOn 2) freq:g4*factor;
  929. t +eigth;
  930.  
  931. sop1 (noteOn 1) freq:c5;
  932. alto1 (noteOn 2) freq:a4;
  933. bass3 (noteOn 4) freq:g2;
  934. t +offset;
  935. sop2 (noteOn 1) freq:c5*factor;
  936. alto2 (noteOn 2) freq:a4*factor;
  937. t +eigth;
  938.  
  939. tenPluck (noteOn 3) freq:bf3;
  940. sop1 (noteOn 1) freq:d5;
  941. alto1 (noteOn 2) freq:bf4;
  942. bass3 (noteOn 4) freq:g2;
  943. t +offset;
  944. sop2 (noteOn 1) freq:d5*factor;
  945. alto2 (noteOn 2) freq:bf4*factor;
  946. t +quart;
  947.  
  948. sop1 (noteOn 1) freq:d5;
  949. alto1 (noteOn 2) freq:g4;
  950. bass3 (noteOn 4) freq:g2;
  951. t +offset;
  952. sop2 (noteOn 1) freq:d5*factor;
  953. alto2 (noteOn 2) freq:g4*factor;
  954. t +eigth;
  955.  
  956. sop1 (noteOn 1) freq:e5;
  957. alto1 (noteOn 2) freq:g4;
  958. bass3 (noteOn 4) freq:g2;
  959. t +offset;
  960. sop2 (noteOn 1) freq:e5*factor;
  961. alto2 (noteOn 2) freq:g4*factor;
  962. t +eigth;
  963.  
  964. /*---------------------------------*/
  965. tenPluck (noteOn 3) freq:a3;
  966. sop1 (noteOn 1) freq:fs5;
  967. alto1 (noteOn 2) freq:a4;
  968. bass3 (noteOn 4) freq:d3;
  969. t +offset;
  970. sop2 (noteOn 1) freq:fs5*factor;
  971. alto2 (noteOn 2) freq:a4*factor;
  972. t +quart;
  973.  
  974. sop1 (noteOn 1) freq:d5;
  975. alto1 (noteOn 2) freq:fs4;
  976. bass3 (noteOn 4) freq:d3;
  977. t +offset;
  978. sop2 (noteOn 1) freq:d5*factor;
  979. alto2 (noteOn 2) freq:fs4*factor;
  980. t +eigth;
  981.  
  982. sop1 (noteOn 1) freq:ef5;
  983. alto1 (noteOn 2) freq:g4;
  984. bass3 (noteOn 4) freq:d3;
  985. t +offset;
  986. sop2 (noteOn 1) freq:ef5*factor;
  987. alto2 (noteOn 2) freq:g4*factor;
  988. t +eigth;
  989.  
  990. tenPluck (noteOn 3) freq:a3;
  991. sop1 (noteOn 1) freq:d5;
  992. alto1 (noteOn 2) freq:fs4;
  993. bass3 (noteOn 4) freq:d3;
  994. t +offset;
  995. sop2 (noteOn 1) freq:d5*factor;
  996. alto2 (noteOn 2) freq:fs4*factor;
  997. t +quart;
  998.  
  999. tenPluck (noteOn 3) freq:bf3;
  1000. sop1 (noteOn 1) freq:d5;
  1001. alto1 (noteOn 2) freq:g4;
  1002. bass3 (noteOn 4) freq:g2;
  1003. t +offset;
  1004. sop2 (noteOn 1) freq:d5*factor;
  1005. alto2 (noteOn 2) freq:g4*factor;
  1006. t +eigth;
  1007.  
  1008. sop1 (noteOn 1) freq:ef5;
  1009. alto1 (noteOn 2) freq:g4;
  1010. bass3 (noteOn 4) freq:g2;
  1011. t +offset;
  1012. sop2 (noteOn 1) freq:ef5*factor;
  1013. alto2 (noteOn 2) freq:g4*factor;
  1014. t +eigth;
  1015.  
  1016. /*---------------------------------*/
  1017. tenPluck (noteOn 3) freq:a3;
  1018. sop1 (noteOn 1) freq:d5;
  1019. alto1 (noteOn 2) freq:fs4;
  1020. bass3 (noteOn 4) freq:d3;
  1021. t +offset;
  1022. sop2 (noteOn 1) freq:d5*factor;
  1023. alto2 (noteOn 2) freq:fs4*factor;
  1024. t +quart;
  1025.  
  1026. tenPluck (noteOn 3) freq:fs3;
  1027. sop1 (noteOn 1) freq:c5;
  1028. alto1 (noteOn 2) freq:a4;
  1029. bass3 (noteOn 4) freq:d3;
  1030. t +offset;
  1031. sop2 (noteOn 1) freq:c5*factor;
  1032. alto2 (noteOn 2) freq:a4*factor;
  1033. t +eigth;
  1034.  
  1035. sop1 (noteOn 1) freq:d5;
  1036. alto1 (noteOn 2) freq:bf4;
  1037. bass3 (noteOn 4) freq:d3;
  1038. t +offset;
  1039. sop2 (noteOn 1) freq:d5*factor;
  1040. alto2 (noteOn 2) freq:bf4*factor;
  1041. t +eigth;
  1042.  
  1043. tenPluck (noteOn 3) freq:g3;
  1044. sop1 (noteOn 1) freq:bf4;
  1045. alto1 (noteOn 2) freq:g4;
  1046. bass3 (noteOn 4) freq:e3;
  1047. t +offset;
  1048. sop2 (noteOn 1) freq:bf4*factor;
  1049. alto2 (noteOn 2) freq:g4*factor;
  1050. t +quart;
  1051.  
  1052. tenPluck (noteOn 3) freq:a3;
  1053. sop1 (noteOn 1) freq:a4;
  1054. alto1 (noteOn 2) freq:fs4;
  1055. bass3 (noteOn 4) freq:fs3;
  1056. t +offset;
  1057. sop2 (noteOn 1) freq:a4*factor;
  1058. alto2 (noteOn 2) freq:fs4*factor;
  1059. t +eigth;
  1060.  
  1061. sop1 (noteOn 1) freq:bf4;
  1062. alto1 (noteOn 2) freq:e4;
  1063. bass3 (noteOn 4) freq:fs3;
  1064. t +offset;
  1065. sop2 (noteOn 1) freq:bf4*factor;
  1066. alto2 (noteOn 2) freq:e4*factor;
  1067. t +eigth;
  1068.  
  1069. /*---------------------------------*/
  1070. tenPluck (noteOn 3) freq:bf3;
  1071. sop1 (noteOn 1) freq:g4;
  1072. alto1 (noteOn 2) freq:d4;
  1073. bass3 (noteOn 4) freq:g3;
  1074. t +offset;
  1075. sop2 (noteOn 1) freq:g4*factor;
  1076. alto2 (noteOn 2) freq:d4*factor;
  1077. t +quart;
  1078.  
  1079. sop1 (noteOn 1) freq:d5;
  1080. alto1 (noteOn 2) freq:bf4;
  1081. bass3 (noteOn 4) freq:g2;
  1082. t +offset;
  1083. sop2 (noteOn 1) freq:d5*factor;
  1084. alto2 (noteOn 2) freq:bf4*factor;
  1085. t +eigth;
  1086.  
  1087. sop1 (noteOn 1) freq:ef5;
  1088. alto1 (noteOn 2) freq:c5;
  1089. bass3 (noteOn 4) freq:g2;
  1090. t +offset;
  1091. sop2 (noteOn 1) freq:ef5*factor;
  1092. alto2 (noteOn 2) freq:c5*factor;
  1093. t +eigth;
  1094.  
  1095. tenPluck (noteOn 3) freq:g3;
  1096. sop1 (noteOn 1) freq:d5;
  1097. alto1 (noteOn 2) freq:bf4;
  1098. bass3 (noteOn 4) freq:g2;
  1099. t +offset;
  1100. sop2 (noteOn 1) freq:d5*factor;
  1101. alto2 (noteOn 2) freq:bf4*factor;
  1102. t +eigth;
  1103.  
  1104. tenPluck (noteOn 3) freq:a3;
  1105. t +offset;
  1106. t +eigth;
  1107.  
  1108. tenPluck (noteOn 3) freq:bf3;
  1109. sop1 (noteOn 1) freq:d5;
  1110. alto1 (noteOn 2) freq:a4;
  1111. bass3 (noteOn 4) freq:g2;
  1112. t +offset;
  1113. sop2 (noteOn 1) freq:d5*factor;
  1114. alto2 (noteOn 2) freq:a4*factor;
  1115. t +eigth;
  1116.  
  1117. tenPluck (noteOn 3) freq:c4;
  1118. sop1 (noteOn 1) freq:ef5;
  1119. alto1 (noteOn 2) freq:g4;
  1120. bass3 (noteOn 4) freq:g2;
  1121. t +offset;
  1122. sop2 (noteOn 1) freq:ef5*factor;
  1123. alto2 (noteOn 2) freq:g4*factor;
  1124. t +eigth;
  1125.  
  1126. /*---------------------------------*/
  1127. tenPluck (noteOn 3) freq:d4;
  1128. sop1 (noteOn 1) freq:d5;
  1129. alto1 (noteOn 2) freq:fs4;
  1130. bass3 (noteOn 4) freq:d3;
  1131. t +offset;
  1132. sop2 (noteOn 1) freq:d5*factor;
  1133. alto2 (noteOn 2) freq:fs4*factor;
  1134. t +quart;
  1135.  
  1136. sop1 (noteOn 1) freq:c5;
  1137. alto1 (noteOn 2) freq:a4;
  1138. bass3 (noteOn 4) freq:d3;
  1139. t +offset;
  1140. sop2 (noteOn 1) freq:c5*factor;
  1141. alto2 (noteOn 2) freq:a4*factor;
  1142. t +eigth;
  1143.  
  1144. sop1 (noteOn 1) freq:bf4;
  1145. alto1 (noteOn 2) freq:g4;
  1146. bass3 (noteOn 4) freq:d3;
  1147. t +offset;
  1148. sop2 (noteOn 1) freq:bf4*factor;
  1149. alto2 (noteOn 2) freq:g4*factor;
  1150. t +eigth;
  1151.  
  1152. tenPluck (noteOn 3) freq:c4;
  1153. sop1 (noteOn 1) freq:a4;
  1154. alto1 (noteOn 2) freq:fs4;
  1155. bass3 (noteOn 4) freq:d3;
  1156. t +offset;
  1157. sop2 (noteOn 1) freq:a4*factor;
  1158. alto2 (noteOn 2) freq:fs4*factor;
  1159. t +eigth;
  1160.  
  1161. tenPluck (noteOn 3) freq:d4;
  1162. t +offset;
  1163. t +eigth;
  1164.  
  1165. tenPluck (noteOn 3) freq:c4;
  1166. sop1 (noteOn 1) freq:g4;
  1167. alto1 (noteOn 2) freq:e4;
  1168. bass3 (noteOn 4) freq:d3;
  1169. t +offset;
  1170. sop2 (noteOn 1) freq:g4*factor;
  1171. alto2 (noteOn 2) freq:e4*factor;
  1172. t +eigth;
  1173.  
  1174. tenPluck (noteOn 3) freq:bf3;
  1175. bass3 (noteOn 4) freq:d3;
  1176. t +offset;
  1177. t +eigth;
  1178.  
  1179. /*---------------------------------*/
  1180. tenPluck (noteOn 3) freq:a3;
  1181. sop1 (noteOn 1) freq:fs4;
  1182. alto1 (noteOn 2) freq:d4;
  1183. bass3 (noteOn 4) freq:d3;
  1184. t +offset;
  1185. sop2 (noteOn 1) freq:fs4*factor;
  1186. alto2 (noteOn 2) freq:d4*factor;
  1187. t +quart;
  1188.  
  1189. sop1 (noteOn 1) freq:d5;
  1190. alto1 (noteOn 2) freq:fs4;
  1191. bass3 (noteOn 4) freq:d3;
  1192. t +offset;
  1193. sop2 (noteOn 1) freq:d5*factor;
  1194. alto2 (noteOn 2) freq:fs4*factor;
  1195. t +eigth;
  1196.  
  1197. sop1 (noteOn 1) freq:ef5;
  1198. alto1 (noteOn 2) freq:g4;
  1199. bass3 (noteOn 4) freq:d3;
  1200. t +offset;
  1201. sop2 (noteOn 1) freq:ef5*factor;
  1202. alto2 (noteOn 2) freq:g4*factor;
  1203. t +eigth;
  1204.  
  1205. tenPluck (noteOn 3) freq:a3;
  1206. sop1 (noteOn 1) freq:d5;
  1207. alto1 (noteOn 2) freq:fs4;
  1208. bass3 (noteOn 4) freq:d3;
  1209. t +offset;
  1210. sop2 (noteOn 1) freq:d5*factor;
  1211. alto2 (noteOn 2) freq:fs4*factor;
  1212. t +quart;
  1213.  
  1214. tenPluck (noteOn 3) freq:bf3;
  1215. sop1 (noteOn 1) freq:bf4;
  1216. alto1 (noteOn 2) freq:d4;
  1217. bass3 (noteOn 4) freq:g3;
  1218. t +offset;
  1219. sop2 (noteOn 1) freq:bf4*factor;
  1220. alto2 (noteOn 2) freq:d4*factor;
  1221. t +eigth;
  1222.  
  1223. bass3 (noteOn 4) freq:g3;
  1224. t +offset;
  1225. t +eigth;
  1226.  
  1227. /*---------------------------------*/
  1228. tenPluck (noteOn 3) freq:a3;
  1229. sop1 (noteOn 1) freq:c5;
  1230. alto1 (noteOn 2) freq:f4;
  1231. bass3 (noteOn 4) freq:fs3;
  1232. t +offset;
  1233. sop2 (noteOn 1) freq:c5*factor;
  1234. alto2 (noteOn 2) freq:f4*factor;
  1235. t +quart;
  1236.  
  1237. tenPluck (noteOn 3) freq:fs3;
  1238. sop1 (noteOn 1) freq:c5;
  1239. alto1 (noteOn 2) freq:a4;
  1240. bass3 (noteOn 4) freq:d3;
  1241. t +offset;
  1242. sop2 (noteOn 1) freq:c5*factor;
  1243. alto2 (noteOn 2) freq:a4*factor;
  1244. t +eigth;
  1245.  
  1246. sop1 (noteOn 1) freq:d5;
  1247. alto1 (noteOn 2) freq:bf4;
  1248. bass3 (noteOn 4) freq:d3;
  1249. t +offset;
  1250. sop2 (noteOn 1) freq:d5*factor;
  1251. alto2 (noteOn 2) freq:bf4*factor;
  1252. t +eigth;
  1253.  
  1254. tenPluck (noteOn 3) freq:g3;
  1255. sop1 (noteOn 1) freq:bf4;
  1256. alto1 (noteOn 2) freq:g4;
  1257. bass3 (noteOn 4) freq:e3;
  1258. t +offset;
  1259. sop2 (noteOn 1) freq:bf4*factor;
  1260. alto2 (noteOn 2) freq:g4*factor;
  1261. t +quart;
  1262.  
  1263. tenPluck (noteOn 3) freq:a3;
  1264. sop1 (noteOn 1) freq:a4;
  1265. alto1 (noteOn 2) freq:fs4;
  1266. bass3 (noteOn 4) freq:fs3;
  1267. t +offset;
  1268. sop2 (noteOn 1) freq:a4*factor;
  1269. alto2 (noteOn 2) freq:fs4*factor;
  1270. t +eigth;
  1271.  
  1272. sop1 (noteOn 1) freq:bf4;
  1273. alto1 (noteOn 2) freq:e4;
  1274. bass3 (noteOn 4) freq:fs3;
  1275. t +offset;
  1276. sop2 (noteOn 1) freq:bf4*factor;
  1277. alto2 (noteOn 2) freq:e4*factor;
  1278. t +eigth;
  1279.  
  1280. /*---------------------------------*/
  1281. tenPluck (noteOn 3) freq:bf3;
  1282. sop1 (noteOn 1) freq:g4;
  1283. alto1 (noteOn 2) freq:d4;
  1284. bass3 (noteOn 4) freq:g3;
  1285. t +offset;
  1286. sop2 (noteOn 1) freq:g4*factor;
  1287. alto2 (noteOn 2) freq:d4*factor;
  1288. t +quart;
  1289.  
  1290. tenPluck (noteOn 3) freq:a3;
  1291. sop1 (noteOn 1) freq:c5;
  1292. alto1 (noteOn 2) freq:f4;
  1293. bass3 (noteOn 4) freq:f3;
  1294. t +offset;
  1295. sop2 (noteOn 1) freq:c5*factor;
  1296. alto2 (noteOn 2) freq:f4*factor;
  1297. t +eigth;
  1298.  
  1299. tenPluck (noteOn 3) freq:bf3;
  1300. sop1 (noteOn 1) freq:bf4;
  1301. alto1 (noteOn 2) freq:f4;
  1302. bass3 (noteOn 4) freq:f3;
  1303. t +offset;
  1304. sop2 (noteOn 1) freq:bf4*factor;
  1305. alto2 (noteOn 2) freq:f4*factor;
  1306. t +eigth;
  1307.  
  1308. tenPluck (noteOn 3) freq:c4;
  1309. sop1 (noteOn 1) freq:a4;
  1310. alto1 (noteOn 2) freq:f4;
  1311. bass3 (noteOn 4) freq:f3;
  1312. t +offset;
  1313. sop2 (noteOn 1) freq:a4*factor;
  1314. alto2 (noteOn 2) freq:f4*factor;
  1315. t +quart;
  1316.  
  1317. tenPluck (noteOn 3) freq:bf3;
  1318. sop1 (noteOn 1) freq:bf4;
  1319. alto1 (noteOn 2) freq:g4;
  1320. bass3 (noteOn 4) freq:f3;
  1321. t +offset;
  1322. sop2 (noteOn 1) freq:bf4*factor;
  1323. alto2 (noteOn 2) freq:g4*factor;
  1324. t +eigth;
  1325.  
  1326. tenPluck (noteOn 3) freq:a3;
  1327. sop1 (noteOn 1) freq:c5;
  1328. alto1 (noteOn 2) freq:a4;
  1329. bass3 (noteOn 4) freq:f3;
  1330. t +offset;
  1331. sop2 (noteOn 1) freq:c5*factor;
  1332. alto2 (noteOn 2) freq:a4*factor;
  1333. t +eigth;
  1334.  
  1335. /*---------------------------------*/
  1336. tenPluck (noteOn 3) freq:d4;
  1337. sop1 (noteOn 1) freq:d5;
  1338. alto1 (noteOn 2) freq:bf4;
  1339. bass3 (noteOn 4) freq:bf2;
  1340. t +offset;
  1341. sop2 (noteOn 1) freq:d5*factor;
  1342. alto2 (noteOn 2) freq:bf4*factor;
  1343. t +quart;
  1344.  
  1345. sop1 (noteOn 1) freq:d5;
  1346. alto1 (noteOn 2) freq:a4;
  1347. bass3 (noteOn 4) freq:bf2;
  1348. t +offset;
  1349. sop2 (noteOn 1) freq:d5*factor;
  1350. alto2 (noteOn 2) freq:a4*factor;
  1351. t +eigth;
  1352.  
  1353. sop1 (noteOn 1) freq:ef5;
  1354. alto1 (noteOn 2) freq:g4;
  1355. bass3 (noteOn 4) freq:c3;
  1356. t +offset;
  1357. sop2 (noteOn 1) freq:ef5*factor;
  1358. alto2 (noteOn 2) freq:g4*factor;
  1359. t +eigth;
  1360.  
  1361. tenPluck (noteOn 3) freq:a3;
  1362. sop1 (noteOn 1) freq:d5;
  1363. alto1 (noteOn 2) freq:fs4;
  1364. bass3 (noteOn 4) freq:d3;
  1365. t +offset;
  1366. sop2 (noteOn 1) freq:d5*factor;
  1367. alto2 (noteOn 2) freq:fs4*factor;
  1368. t +quart;
  1369.  
  1370. sop1 (noteOn 1) freq:d5;
  1371. alto1 (noteOn 2) freq:d4;
  1372. bass3 (noteOn 4) freq:fs2;
  1373. t +offset;
  1374. sop2 (noteOn 1) freq:d5*factor;
  1375. alto2 (noteOn 2) freq:d4*factor;
  1376. t +eigth;
  1377.  
  1378. sop1 (noteOn 1) freq:c5;
  1379. alto1 (noteOn 2) freq:d4;
  1380. t +offset;
  1381. sop2 (noteOn 1) freq:c5*factor;
  1382. alto2 (noteOn 2) freq:d4*factor;
  1383. t +eigth;
  1384.  
  1385. /*---------------------------------*/
  1386. tenPluck (noteOn 3) freq:g3;
  1387. sop1 (noteOn 1) freq:b4;
  1388. alto1 (noteOn 2) freq:d4;
  1389. bass3 (noteOn 4) freq:g2;
  1390. t +offset;
  1391. sop2 (noteOn 1) freq:b4*factor;
  1392. alto2 (noteOn 2) freq:d4*factor;
  1393. t +half+quart;
  1394.  
  1395. tenPluck (noteOff 3);
  1396. sop1 (noteOff 1);
  1397. alto1 (noteOff 2);
  1398. bass1 (noteOff 4);
  1399. sop2 (noteOff 1);
  1400. alto2 (noteOff 2);
  1401. t +breath;
  1402.  
  1403. /*====================================================*/
  1404.  
  1405. /*---------------------------------*/
  1406. sop1 (noteOn 1) freq:g4, amp:0.4;
  1407. alto1 (noteOn 2) freq:g4, amp:0.4;
  1408. t +offset;
  1409. sop2 (noteOn 1) freq:g4*factor, amp:0.4;
  1410. alto2(noteOn 2) freq:g4*factor, amp:0.4;
  1411. t +quart;
  1412.  
  1413. sop1 (noteOn 1) freq:g4;
  1414. alto1 (noteOn 2) freq:g4;
  1415. ten1 (noteOn 3) freq:d3, amp:0.3;
  1416. bass1 (noteOn 4) freq:g2, amp:0.3;
  1417. t +offset;
  1418. sop2 (noteOn 1) freq:g4*factor;
  1419. alto2 (noteOn 2) freq:g4*factor;
  1420. ten3 (noteOn 3) freq:d3*factor, amp:0.25;
  1421. bass3 (noteOn 4) freq:g2*factor, amp:0.25;
  1422. t +eigth;
  1423.  
  1424. ten1 (noteOn 3) freq:d3;
  1425. bass1 (noteOn 4) freq:g2;
  1426. t +offset;
  1427. ten3 (noteOn 3) freq:d3*factor;
  1428. bass3 (noteOn 4) freq:g2*factor;
  1429. t +eigth;
  1430.  
  1431. /*---------------------------------*/
  1432. sop1 (noteOn 1) freq:d5;
  1433. alto1 (noteOn 2) freq:bf4;
  1434. ten1 (noteOn 3) freq:d3;
  1435. bass1 (noteOn 4) freq:g2;
  1436. t +offset;
  1437. sop2 (noteOn 1) freq:d5*factor;
  1438. alto2 (noteOn 2) freq:bf4*factor;
  1439. ten3 (noteOn 3) freq:d3*factor;
  1440. bass3 (noteOn 4) freq:g2*factor;
  1441. t +quart;
  1442.  
  1443. sop1 (noteOn 1) freq:d5;
  1444. alto1 (noteOn 2) freq:bf4;
  1445. ten1 (noteOn 3) freq:d3;
  1446. bass1 (noteOn 4) freq:g2;
  1447. t +offset;
  1448. sop2 (noteOn 1) freq:d5*factor;
  1449. alto2 (noteOn 2) freq:bf4*factor;
  1450. ten3 (noteOn 3) freq:d3*factor;
  1451. bass3 (noteOn 4) freq:g2*factor;
  1452. t +eigth;
  1453.  
  1454. ten1 (noteOn 3) freq:d3;
  1455. bass1 (noteOn 4) freq:g2;
  1456. t +offset;
  1457. ten3 (noteOn 3) freq:d3*factor;
  1458. bass3 (noteOn 4) freq:g2*factor;
  1459. t +eigth;
  1460.  
  1461. sop1 (noteOn 1) freq:c5;
  1462. alto1 (noteOn 2) freq:a4;
  1463. ten1 (noteOn 3) freq:d3;
  1464. bass1 (noteOn 4) freq:g2;
  1465. t +offset;
  1466. sop2 (noteOn 1) freq:c5*factor;
  1467. alto2 (noteOn 2) freq:a4*factor;
  1468. ten3 (noteOn 3) freq:d3*factor;
  1469. bass3 (noteOn 4) freq:g2*factor;
  1470. t +quart;
  1471.  
  1472. sop1 (noteOn 1) freq:d5;
  1473. alto1 (noteOn 2) freq:fs4;
  1474. ten1 (noteOn 3) freq:d3;
  1475. bass1 (noteOn 4) freq:g2;
  1476. t +offset;
  1477. sop2 (noteOn 1) freq:d5*factor;
  1478. alto2 (noteOn 2) freq:fs4*factor;
  1479. ten3 (noteOn 3) freq:d3*factor;
  1480. bass3 (noteOn 4) freq:g2*factor;
  1481. t +eigth;
  1482.  
  1483. ten1 (noteOn 3) freq:d3;
  1484. bass1 (noteOn 4) freq:g2;
  1485. t +offset;
  1486. ten3 (noteOn 3) freq:d3*factor;
  1487. bass3 (noteOn 4) freq:g2*factor;
  1488. t +eigth;
  1489.  
  1490. /*---------------------------------*/
  1491. sop1 (noteOn 1) freq:bf4;
  1492. alto1 (noteOn 2) freq:g4;
  1493. ten1 (noteOn 3) freq:d3;
  1494. bass1 (noteOn 4) freq:g2;
  1495. t +offset;
  1496. sop2 (noteOn 1) freq:bf4*factor;
  1497. alto2 (noteOn 2) freq:g4*factor;
  1498. ten3 (noteOn 3) freq:d3*factor;
  1499. bass3 (noteOn 4) freq:g2*factor;
  1500. t +quart;
  1501.  
  1502. sop1 (noteOn 1) freq:a4;
  1503. alto1 (noteOn 2) freq:fs4;
  1504. ten1 (noteOn 3) freq:d3;
  1505. bass1 (noteOn 4) freq:g2;
  1506. t +offset;
  1507. sop2 (noteOn 1) freq:a4*factor;
  1508. alto2 (noteOn 2) freq:fs4*factor;
  1509. ten3 (noteOn 3) freq:d3*factor;
  1510. bass3 (noteOn 4) freq:g2*factor;
  1511. t +eigth;
  1512.  
  1513. sop1 (noteOn 1) freq:bf4;
  1514. alto1 (noteOn 2) freq:fs4;
  1515. ten1 (noteOn 3) freq:d3;
  1516. bass1 (noteOn 4) freq:g2;
  1517. t +offset;
  1518. sop2 (noteOn 1) freq:bf4*factor;
  1519. alto2 (noteOn 2) freq:fs4*factor;
  1520. ten3 (noteOn 3) freq:d3*factor;
  1521. bass3 (noteOn 4) freq:g2*factor;
  1522. t +eigth;
  1523.  
  1524. sop1 (noteOn 1) freq:c5;
  1525. alto1 (noteOn 2) freq:e4;
  1526. ten1 (noteOn 3) freq:d3;
  1527. bass1 (noteOn 4) freq:g2;
  1528. t +offset;
  1529. sop2 (noteOn 1) freq:c5*factor;
  1530. alto2 (noteOn 2) freq:e4*factor;
  1531. ten3 (noteOn 3) freq:d3*factor;
  1532. bass3 (noteOn 4) freq:g2*factor;
  1533. t +quart;
  1534.  
  1535. sop1 (noteOn 1) freq:a4;
  1536. alto1 (noteOn 2) freq:fs4;
  1537. ten1 (noteOn 3) freq:d3;
  1538. bass1 (noteOn 4) freq:g2;
  1539. t +offset;
  1540. sop2 (noteOn 1) freq:a4*factor;
  1541. alto2 (noteOn 2) freq:fs4*factor;
  1542. ten3 (noteOn 3) freq:d3*factor;
  1543. bass3 (noteOn 4) freq:g2*factor;
  1544. t +eigth;
  1545.  
  1546. ten1 (noteOn 3) freq:d3;
  1547. bass1 (noteOn 4) freq:g2;
  1548. t +offset;
  1549. ten3 (noteOn 3) freq:d3*factor;
  1550. bass3 (noteOn 4) freq:g2*factor;
  1551. t +eigth;
  1552.  
  1553. /*---------------------------------*/
  1554. sop1 (noteOn 1) freq:d5;
  1555. alto1 (noteOn 2) freq:d4;
  1556. ten1 (noteOn 3) freq:d3;
  1557. bass1 (noteOn 4) freq:g2;
  1558. t +offset;
  1559. sop2 (noteOn 1) freq:d5*factor;
  1560. alto2 (noteOn 2) freq:d4*factor;
  1561. ten3 (noteOn 3) freq:d3*factor;
  1562. bass3 (noteOn 4) freq:g2*factor;
  1563. t +quart;
  1564.  
  1565. ten1 (noteOn 3) freq:d3;
  1566. bass1 (noteOn 4) freq:g2;
  1567. t +offset;
  1568. ten3 (noteOn 3) freq:d3*factor;
  1569. bass3 (noteOn 4) freq:g2*factor;
  1570. t +eigth;
  1571.  
  1572. ten1 (noteOn 3) freq:d3;
  1573. bass1 (noteOn 4) freq:g2;
  1574. t +offset;
  1575. ten3 (noteOn 3) freq:d3*factor;
  1576. bass3 (noteOn 4) freq:g2*factor;
  1577. t +eigth;
  1578.  
  1579. sop1 (noteOn 1) freq:bf4;
  1580. alto1 (noteOn 2) freq:g4;
  1581. ten1 (noteOn 3) freq:d3;
  1582. bass1 (noteOn 4) freq:g2;
  1583. t +offset;
  1584. sop2 (noteOn 1) freq:bf4*factor;
  1585. alto2 (noteOn 2) freq:g4*factor;
  1586. ten3 (noteOn 3) freq:d3*factor;
  1587. bass3 (noteOn 4) freq:g2*factor;
  1588. t +quart;
  1589.  
  1590. ten1 (noteOn 3) freq:d3;
  1591. bass1 (noteOn 4) freq:g2;
  1592. t +offset;
  1593. ten3 (noteOn 3) freq:d3*factor;
  1594. bass3 (noteOn 4) freq:g2*factor;
  1595. t +eigth;
  1596.  
  1597. ten1 (noteOn 3) freq:d3;
  1598. bass1 (noteOn 4) freq:g2;
  1599. t +offset;
  1600. ten3 (noteOn 3) freq:d3*factor;
  1601. bass3 (noteOn 4) freq:g2*factor;
  1602. t +eigth;
  1603.  
  1604. /*---------------------------------*/
  1605. sop1 (noteOn 1) freq:a4;
  1606. alto1 (noteOn 2) freq:fs4;
  1607. ten1 (noteOn 3) freq:d3;
  1608. bass1 (noteOn 4) freq:g2;
  1609. t +offset;
  1610. sop2 (noteOn 1) freq:a4*factor;
  1611. alto2 (noteOn 2) freq:fs4*factor;
  1612. ten3 (noteOn 3) freq:d3*factor;
  1613. bass3 (noteOn 4) freq:g2*factor;
  1614. t +quart;
  1615.  
  1616. ten1 (noteOn 3) freq:d3;
  1617. bass1 (noteOn 4) freq:g2;
  1618. t +offset;
  1619. ten3 (noteOn 3) freq:d3*factor;
  1620. bass3 (noteOn 4) freq:g2*factor;
  1621. t +eigth;
  1622.  
  1623. ten1 (noteOn 3) freq:d3;
  1624. bass1 (noteOn 4) freq:g2;
  1625. t +offset;
  1626. ten3 (noteOn 3) freq:d3*factor;
  1627. bass3 (noteOn 4) freq:g2*factor;
  1628. t +eigth;
  1629.  
  1630. sop1 (noteOn 1) freq:a4;
  1631. alto1 (noteOn 2) freq:fs4;
  1632. ten1 (noteOn 3) freq:d3;
  1633. bass1 (noteOn 4) freq:g2;
  1634. t +offset;
  1635. sop2 (noteOn 1) freq:a4*factor;
  1636. alto2 (noteOn 2) freq:fs4*factor;
  1637. ten3 (noteOn 3) freq:d3*factor;
  1638. bass3 (noteOn 4) freq:g2*factor;
  1639. t +quart;
  1640.  
  1641. sop1 (noteOn 1) freq:bf4;
  1642. alto1 (noteOn 2) freq:g4;
  1643. ten1 (noteOn 3) freq:d3;
  1644. bass1 (noteOn 4) freq:g2;
  1645. t +offset;
  1646. sop2 (noteOn 1) freq:bf4*factor;
  1647. alto2 (noteOn 2) freq:g4*factor;
  1648. ten3 (noteOn 3) freq:d3*factor;
  1649. bass3 (noteOn 4) freq:g2*factor;
  1650. t +eigth;
  1651.  
  1652. ten1 (noteOn 3) freq:d3;
  1653. bass1 (noteOn 4) freq:g2;
  1654. t +offset;
  1655. ten3 (noteOn 3) freq:d3*factor;
  1656. bass3 (noteOn 4) freq:g2*factor;
  1657. t +eigth;
  1658.  
  1659. /*---------------------------------*/
  1660. sop1 (noteOn 1) freq:a4;
  1661. alto1 (noteOn 2) freq:fs4;
  1662. ten1 (noteOn 3) freq:d3;
  1663. bass1 (noteOn 4) freq:g2;
  1664. t +offset;
  1665. sop2 (noteOn 1) freq:a4*factor;
  1666. alto2 (noteOn 2) freq:fs4*factor;
  1667. ten3 (noteOn 3) freq:d3*factor;
  1668. bass3 (noteOn 4) freq:g2*factor;
  1669. t +quart;
  1670.  
  1671. sop1 (noteOn 1) freq:fs4;
  1672. alto1 (noteOn 2) freq:d4;
  1673. ten1 (noteOn 3) freq:d3;
  1674. bass1 (noteOn 4) freq:g2;
  1675. t +offset;
  1676. sop2 (noteOn 1) freq:fs4*factor;
  1677. alto2 (noteOn 2) freq:d4*factor;
  1678. ten3 (noteOn 3) freq:d3*factor;
  1679. bass3 (noteOn 4) freq:g2*factor;
  1680. t +eigth;
  1681.  
  1682. ten1 (noteOn 3) freq:d3;
  1683. bass1 (noteOn 4) freq:g2;
  1684. t +offset;
  1685. ten3 (noteOn 3) freq:d3*factor;
  1686. bass3 (noteOn 4) freq:g2*factor;
  1687. t +eigth;
  1688.  
  1689. sop1 (noteOn 1) freq:g4;
  1690. alto1 (noteOn 2) freq:e4;
  1691. ten1 (noteOn 3) freq:d3;
  1692. bass1 (noteOn 4) freq:g2;
  1693. t +offset;
  1694. sop2 (noteOn 1) freq:g4*factor;
  1695. alto2 (noteOn 2) freq:e4*factor;
  1696. ten3 (noteOn 3) freq:d3*factor;
  1697. bass3 (noteOn 4) freq:g2*factor;
  1698. t +quart;
  1699.  
  1700. sop1 (noteOn 1) freq:a4;
  1701. alto1 (noteOn 2) freq:fs4;
  1702. ten1 (noteOn 3) freq:d3;
  1703. bass1 (noteOn 4) freq:g2;
  1704. t +offset;
  1705. sop2 (noteOn 1) freq:a4*factor;
  1706. alto2 (noteOn 2) freq:fs4*factor;
  1707. ten3 (noteOn 3) freq:d3*factor;
  1708. bass3 (noteOn 4) freq:g2*factor;
  1709. t +eigth;
  1710.  
  1711. ten1 (noteOn 3) freq:d3;
  1712. bass1 (noteOn 4) freq:g2;
  1713. t +offset;
  1714. ten3 (noteOn 3) freq:d3*factor;
  1715. bass3 (noteOn 4) freq:g2*factor;
  1716. t +eigth;
  1717.  
  1718. /*---------------------------------*/
  1719. sop1 (noteOn 1) freq:bf4;
  1720. alto1 (noteOn 2) freq:g4;
  1721. ten1 (noteOn 3) freq:d3;
  1722. bass1 (noteOn 4) freq:g2;
  1723. t +offset;
  1724. sop2 (noteOn 1) freq:bf4*factor;
  1725. alto2 (noteOn 2) freq:g4*factor;
  1726. ten3 (noteOn 3) freq:d3*factor;
  1727. bass3 (noteOn 4) freq:g2*factor;
  1728. t +quart;
  1729.  
  1730. ten1 (noteOn 3) freq:d4;
  1731. bass1 (noteOn 4) freq:g3;
  1732. t +offset;
  1733. ten3 (noteOn 3) freq:d4*factor;
  1734. bass3 (noteOn 4) freq:g3*factor;
  1735. t +eigth;
  1736.  
  1737. ten1 (noteOn 3) freq:d4;
  1738. bass1 (noteOn 4) freq:g3;
  1739. t +offset;
  1740. ten3 (noteOn 3) freq:d4*factor;
  1741. bass3 (noteOn 4) freq:g3*factor;
  1742. t +eigth;
  1743.  
  1744. sop1 (noteOn 1) freq:g4;
  1745. alto1 (noteOn 2) freq:g4;
  1746. ten1 (noteOn 3) freq:d4;
  1747. bass1 (noteOn 4) freq:g3;
  1748. t +offset;
  1749. sop2 (noteOn 1) freq:g4*factor;
  1750. alto2 (noteOn 2) freq:g4*factor;
  1751. ten3 (noteOn 3) freq:d4*factor;
  1752. bass3 (noteOn 4) freq:g3*factor;
  1753. t +eigth;
  1754.  
  1755. sop1 (noteOn 1) freq:a4;
  1756. alto1 (noteOn 2) freq:a4;
  1757. t +offset;
  1758. sop2 (noteOn 1) freq:a4*factor;
  1759. alto2 (noteOn 2) freq:a4*factor;
  1760. t +eigth;
  1761.  
  1762. sop1 (noteOn 1) freq:bf4;
  1763. alto1 (noteOn 2) freq:g4;
  1764. ten1 (noteOn 3) freq:d4;
  1765. bass1 (noteOn 4) freq:g3;
  1766. t +offset;
  1767. sop2 (noteOn 1) freq:bf4*factor;
  1768. alto2 (noteOn 2) freq:g4*factor;
  1769. ten3 (noteOn 3) freq:d4*factor;
  1770. bass3 (noteOn 4) freq:g3*factor;
  1771. t +eigth;
  1772.  
  1773. sop1 (noteOn 1) freq:c5;
  1774. alto1 (noteOn 2) freq:a4;
  1775. ten1 (noteOn 3) freq:d4;
  1776. bass1 (noteOn 4) freq:g3;
  1777. t +offset;
  1778. sop2 (noteOn 1) freq:c5*factor;
  1779. alto2 (noteOn 2) freq:a4*factor;
  1780. ten3 (noteOn 3) freq:d4*factor;
  1781. bass3 (noteOn 4) freq:g3*factor;
  1782. t +eigth;
  1783.  
  1784. /*---------------------------------*/
  1785. sop1 (noteOn 1) freq:d5;
  1786. alto1 (noteOn 2) freq:bf4;
  1787. ten1 (noteOn 3) freq:d4;
  1788. bass1 (noteOn 4) freq:g3;
  1789. t +offset;
  1790. sop2 (noteOn 1) freq:d5*factor;
  1791. alto2 (noteOn 2) freq:bf4*factor;
  1792. ten3 (noteOn 3) freq:d4*factor;
  1793. bass3 (noteOn 4) freq:g3*factor;
  1794. t +quart;
  1795.  
  1796. ten1 (noteOn 3) freq:d4;
  1797. bass1 (noteOn 4) freq:g3;
  1798. t +offset;
  1799. ten3 (noteOn 3) freq:d4*factor;
  1800. bass3 (noteOn 4) freq:g3*factor;
  1801. t +eigth;
  1802.  
  1803. ten1 (noteOn 3) freq:d4;
  1804. bass1 (noteOn 4) freq:g3;
  1805. t +offset;
  1806. ten3 (noteOn 3) freq:d4*factor;
  1807. bass3 (noteOn 4) freq:g3*factor;
  1808. t +eigth;
  1809.  
  1810. sop1 (noteOn 1) freq:c5;
  1811. alto1 (noteOn 2) freq:a4;
  1812. ten1 (noteOn 3) freq:f4;
  1813. bass1 (noteOn 4) freq:f3;
  1814. t +offset;
  1815. sop2 (noteOn 1) freq:c5*factor;
  1816. alto2 (noteOn 2) freq:a4*factor;
  1817. ten3 (noteOn 3) freq:f4*factor;
  1818. bass3 (noteOn 4) freq:f3*factor;
  1819. t +eigth;
  1820.  
  1821. sop1 (noteOn 1) freq:d5;
  1822. alto1 (noteOn 2) freq:bf4;
  1823. t +offset;
  1824. sop2 (noteOn 1) freq:d5*factor;
  1825. alto2 (noteOn 2) freq:bf4*factor;
  1826. t +eigth;
  1827.  
  1828. sop1 (noteOn 1) freq:c5;
  1829. alto1 (noteOn 2) freq:a4;
  1830. ten1 (noteOn 3) freq:d4;
  1831. bass1 (noteOn 4) freq:g3;
  1832. t +offset;
  1833. sop2 (noteOn 1) freq:c5*factor;
  1834. alto2 (noteOn 2) freq:a4*factor;
  1835. ten3 (noteOn 3) freq:d4*factor;
  1836. bass3 (noteOn 4) freq:g3*factor;
  1837. t +eigth;
  1838.  
  1839. sop1 (noteOn 1) freq:bf4;
  1840. alto1 (noteOn 2) freq:g4;
  1841. ten1 (noteOn 3) freq:d4;
  1842. bass1 (noteOn 4) freq:g3;
  1843. t +offset;
  1844. sop2 (noteOn 1) freq:bf4*factor;
  1845. alto2 (noteOn 2) freq:g4*factor;
  1846. ten3 (noteOn 3) freq:d4*factor;
  1847. bass3 (noteOn 4) freq:g3*factor;
  1848. t +eigth;
  1849.  
  1850. /*---------------------------------*/
  1851. sop1 (noteOn 1) freq:a4;
  1852. alto1 (noteOn 2) freq:fs4;
  1853. ten1 (noteOn 3) freq:d4;
  1854. bass1 (noteOn 4) freq:d3;
  1855. t +offset;
  1856. sop2 (noteOn 1) freq:a4*factor;
  1857. alto2 (noteOn 2) freq:fs4*factor;
  1858. ten3 (noteOn 3) freq:d4*factor;
  1859. bass3 (noteOn 4) freq:d3*factor;
  1860. t +quart;
  1861.  
  1862. ten1 (noteOn 3) freq:a3;
  1863. bass1 (noteOn 4) freq:d3;
  1864. t +offset;
  1865. ten3 (noteOn 3) freq:a3*factor;
  1866. bass3 (noteOn 4) freq:d3*factor;
  1867. t +eigth;
  1868.  
  1869. ten1 (noteOn 3) freq:a3;
  1870. bass1 (noteOn 4) freq:d3;
  1871. t +offset;
  1872. ten3 (noteOn 3) freq:a3*factor;
  1873. bass3 (noteOn 4) freq:d3*factor;
  1874. t +eigth;
  1875.  
  1876. sop1 (noteOn 1) freq:a4;
  1877. alto1 (noteOn 2) freq:fs4;
  1878. ten1 (noteOn 3) freq:a3;
  1879. bass1 (noteOn 4) freq:d3;
  1880. t +offset;
  1881. sop2 (noteOn 1) freq:a4*factor;
  1882. alto2 (noteOn 2) freq:fs4*factor;
  1883. ten3 (noteOn 3) freq:a3*factor;
  1884. bass3 (noteOn 4) freq:d3*factor;
  1885. t +quart;
  1886.  
  1887. sop1 (noteOn 1) freq:bf4;
  1888. alto1 (noteOn 2) freq:g4;
  1889. ten1 (noteOn 3) freq:g3;
  1890. bass1 (noteOn 4) freq:c3;
  1891. t +offset;
  1892. sop2 (noteOn 1) freq:bf4*factor;
  1893. alto2 (noteOn 2) freq:g4*factor;
  1894. ten3 (noteOn 3) freq:g3*factor;
  1895. bass3 (noteOn 4) freq:c3*factor;
  1896. t +eigth;
  1897.  
  1898. ten1 (noteOn 3) freq:g3;
  1899. bass1 (noteOn 4) freq:c3;
  1900. t +offset;
  1901. ten3 (noteOn 3) freq:g3*factor;
  1902. bass3 (noteOn 4) freq:c3*factor;
  1903. t +eigth;
  1904.  
  1905. /*---------------------------------*/
  1906. sop1 (noteOn 1) freq:a4;
  1907. alto1 (noteOn 2) freq:fs4;
  1908. ten1 (noteOn 3) freq:a3;
  1909. bass1 (noteOn 4) freq:d3;
  1910. t +offset;
  1911. sop2 (noteOn 1) freq:a4*factor;
  1912. alto2 (noteOn 2) freq:fs4*factor;
  1913. ten3 (noteOn 3) freq:a3*factor;
  1914. bass3 (noteOn 4) freq:d3*factor;
  1915. t +quart;
  1916.  
  1917. sop1 (noteOn 1) freq:fs4;
  1918. alto1 (noteOn 2) freq:d4;
  1919. ten1 (noteOn 3) freq:a3;
  1920. bass1 (noteOn 4) freq:d3;
  1921. t +offset;
  1922. sop2 (noteOn 1) freq:fs4*factor;
  1923. alto2 (noteOn 2) freq:d4*factor;
  1924. ten3 (noteOn 3) freq:a3*factor;
  1925. bass3 (noteOn 4) freq:d3*factor;
  1926. t +eigth;
  1927.  
  1928. ten1 (noteOn 3) freq:a3;
  1929. bass1 (noteOn 4) freq:d3;
  1930. t +offset;
  1931. ten3 (noteOn 3) freq:a3*factor;
  1932. bass3 (noteOn 4) freq:d3*factor;
  1933. t +eigth;
  1934.  
  1935. sop1 (noteOn 1) freq:g4;
  1936. alto1 (noteOn 2) freq:e4;
  1937. ten1 (noteOn 3) freq:g3;
  1938. bass1 (noteOn 4) freq:c3;
  1939. t +offset;
  1940. sop2 (noteOn 1) freq:g4*factor;
  1941. alto2 (noteOn 2) freq:e4*factor;
  1942. ten3 (noteOn 3) freq:g3*factor;
  1943. bass3 (noteOn 4) freq:c3*factor;
  1944. t +quart;
  1945.  
  1946. sop1 (noteOn 1) freq:a4;
  1947. alto1 (noteOn 2) freq:fs4;
  1948. ten1 (noteOn 3) freq:d3;
  1949. bass1 (noteOn 4) freq:a2;
  1950. t +offset;
  1951. sop2 (noteOn 1) freq:a4*factor;
  1952. alto2 (noteOn 2) freq:fs4*factor;
  1953. ten3 (noteOn 3) freq:d3*factor;
  1954. bass3 (noteOn 4) freq:a2*factor;
  1955. t +eigth;
  1956.  
  1957. ten1 (noteOn 3) freq:d3;
  1958. bass1 (noteOn 4) freq:a2;
  1959. t +offset;
  1960. ten3 (noteOn 3) freq:d3*factor;
  1961. bass3 (noteOn 4) freq:a2*factor;
  1962. t +eigth;
  1963.  
  1964. /*---------------------------------*/
  1965. sop1 (noteOn 1) freq:bf4;
  1966. alto1 (noteOn 2) freq:g4;
  1967. ten1 (noteOn 3) freq:d3;
  1968. bass1 (noteOn 4) freq:g2;
  1969. t +offset;
  1970. sop2 (noteOn 1) freq:bf4*factor;
  1971. alto2 (noteOn 2) freq:g4*factor;
  1972. ten3 (noteOn 3) freq:d3*factor;
  1973. bass3 (noteOn 4) freq:g2*factor;
  1974. t +quart;
  1975.  
  1976. sop1 (noteOn 1) freq:a4;
  1977. alto1 (noteOn 2) freq:fs4;
  1978. ten1 (noteOn 3) freq:d4;
  1979. bass1 (noteOn 4) freq:g3;
  1980. t +offset;
  1981. sop2 (noteOn 1) freq:a4*factor;
  1982. alto2 (noteOn 2) freq:fs4*factor;
  1983. ten3 (noteOn 3) freq:d4*factor;
  1984. bass3 (noteOn 4) freq:g3*factor;
  1985. t +eigth;
  1986.  
  1987. sop1 (noteOn 1) freq:bf4;
  1988. alto1 (noteOn 2) freq:g4;
  1989. ten1 (noteOn 3) freq:d4;
  1990. bass1 (noteOn 4) freq:g3;
  1991. t +offset;
  1992. sop2 (noteOn 1) freq:bf4*factor;
  1993. alto2 (noteOn 2) freq:g4*factor;
  1994. ten3 (noteOn 3) freq:d4*factor;
  1995. bass3 (noteOn 4) freq:g3*factor;
  1996. t +eigth;
  1997.  
  1998. sop1 (noteOn 1) freq:c5;
  1999. alto1 (noteOn 2) freq:a4;
  2000. ten1 (noteOn 3) freq:c4;
  2001. bass1 (noteOn 4) freq:f3;
  2002. t +offset;
  2003. sop2 (noteOn 1) freq:c5*factor;
  2004. alto2 (noteOn 2) freq:a4*factor;
  2005. ten3 (noteOn 3) freq:c4*factor;
  2006. bass3 (noteOn 4) freq:f3*factor;
  2007. t +quart;
  2008.  
  2009. sop1 (noteOn 1) freq:bf4;
  2010. alto1 (noteOn 2) freq:g4;
  2011. ten1 (noteOn 3) freq:c4;
  2012. bass1 (noteOn 4) freq:f3;
  2013. t +offset;
  2014. sop2 (noteOn 1) freq:bf4*factor;
  2015. alto2 (noteOn 2) freq:g4*factor;
  2016. ten3 (noteOn 3) freq:c4*factor;
  2017. bass3 (noteOn 4) freq:f3*factor;
  2018. t +eigth;
  2019.  
  2020. sop1 (noteOn 1) freq:a4;
  2021. alto1 (noteOn 2) freq:a4;
  2022. ten1 (noteOn 3) freq:c4;
  2023. bass1 (noteOn 4) freq:f3;
  2024. t +offset;
  2025. sop2 (noteOn 1) freq:a4*factor;
  2026. alto2 (noteOn 2) freq:a4*factor;
  2027. ten3 (noteOn 3) freq:c4*factor;
  2028. bass3 (noteOn 4) freq:f3*factor;
  2029. t +eigth;
  2030.  
  2031. /*---------------------------------*/
  2032. sop1 (noteOn 1) freq:d5;
  2033. alto1 (noteOn 2) freq:bf4;
  2034. ten1 (noteOn 3) freq:g3;
  2035. bass1 (noteOn 4) freq:d3;
  2036. t +offset;
  2037. sop2 (noteOn 1) freq:d5*factor;
  2038. alto2 (noteOn 2) freq:bf4*factor;
  2039. ten3 (noteOn 3) freq:g3*factor;
  2040. bass3 (noteOn 4) freq:d3*factor;
  2041. t +quart;
  2042.  
  2043. alto1 (noteOn 2) freq:a4;
  2044. ten1 (noteOn 3) freq:g3;
  2045. bass1 (noteOn 4) freq:d3;
  2046. t +offset;
  2047. alto2 (noteOn 2) freq:a4*factor;
  2048. ten3 (noteOn 3) freq:g3*factor;
  2049. bass3 (noteOn 4) freq:d3*factor;
  2050. t +eigth;
  2051.  
  2052. alto1 (noteOn 2) freq:g4;
  2053. ten1 (noteOn 3) freq:g3;
  2054. bass1 (noteOn 4) freq:d3;
  2055. t +offset;
  2056. alto2 (noteOn 2) freq:g4*factor;
  2057. ten3 (noteOn 3) freq:g3*factor;
  2058. bass3 (noteOn 4) freq:d3*factor;
  2059. t +eigth;
  2060.  
  2061. sop1 (noteOn 1) freq:a4;
  2062. alto1 (noteOn 2) freq:fs4;
  2063. ten1 (noteOn 3) freq:a3;
  2064. bass1 (noteOn 4) freq:d3;
  2065. t +offset;
  2066. sop2 (noteOn 1) freq:a4*factor;
  2067. alto2 (noteOn 2) freq:fs4*factor;
  2068. ten3 (noteOn 3) freq:a3*factor;
  2069. bass3 (noteOn 4) freq:d3*factor;
  2070. t +quart;
  2071.  
  2072. alto1 (noteOn 2) freq:e4;
  2073. ten1 (noteOn 3) freq:a3;
  2074. bass1 (noteOn 4) freq:d3;
  2075. t +offset;
  2076. alto2 (noteOn 2) freq:e4*factor;
  2077. ten3 (noteOn 3) freq:a3*factor;
  2078. bass3 (noteOn 4) freq:d3*factor;
  2079. t +quart;
  2080.  
  2081. /*---------------------------------*/
  2082. sop1 (noteOn 1) freq:g4;
  2083. alto1 (noteOn 2) freq:d4;
  2084. ten1 (noteOn 3) freq:bf3, amp:0.2;
  2085. bass1 (noteOn 4) freq:g2, amp:0.2;
  2086. t +offset;
  2087. sop2 (noteOn 1) freq:g4*factor;
  2088. alto2 (noteOn 2) freq:d4*factor;
  2089. ten3 (noteOn 3) freq:bf3*factor, amp:0.2;
  2090. bass3 (noteOn 4) freq:g2*factor, amp:0.2;
  2091. t +whole;
  2092.  
  2093. sop1 (noteOff 1);
  2094. alto1 (noteOff 2);
  2095. ten1 (noteOff 3);
  2096. bass1 (noteOff 4);
  2097. sop2 (noteOff 1);
  2098. alto2 (noteOff 2);
  2099. ten3 (noteOff 3);
  2100. bass3 (noteOff 4);
  2101.  
  2102. END;
  2103.