diff options
author | Richard <q@1bpm.net> | 2025-04-13 18:48:02 +0100 |
---|---|---|
committer | Richard <q@1bpm.net> | 2025-04-13 18:48:02 +0100 |
commit | 9fbf91db06a6d4f4b5cd8bb45389a731bb86bf22 (patch) | |
tree | 291bd79ce340e67affa755a8a6b4f6a83cce93ea /site/app/partialemergence | |
download | apps.csound.1bpm.net-9fbf91db06a6d4f4b5cd8bb45389a731bb86bf22.tar.gz apps.csound.1bpm.net-9fbf91db06a6d4f4b5cd8bb45389a731bb86bf22.tar.bz2 apps.csound.1bpm.net-9fbf91db06a6d4f4b5cd8bb45389a731bb86bf22.zip |
initial
Diffstat (limited to 'site/app/partialemergence')
825 files changed, 8264 insertions, 0 deletions
diff --git a/site/app/partialemergence/effects_global.inc b/site/app/partialemergence/effects_global.inc new file mode 100644 index 0000000..c765743 --- /dev/null +++ b/site/app/partialemergence/effects_global.inc @@ -0,0 +1,150 @@ +#ifndef INC_GLOBALEFFECTS_INSTR
+#define INC_GLOBALEFFECTS_INSTR ##
+/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
+
+ Partial Emergence
+ by Richard Knight 2022
+
+ Installation submission for the International Csound Conference 2022
+
+ Global effects
+
+* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
+
+
+/*
+ Reverb
+*/
+instr global_reverb1
+ aL, aR bus_read "reverb1"
+ aL, aR freeverb aL, aR, 0.8, 0.6
+ bus_mix("master", aL, aR)
+endin
+
+
+/*
+ Delay 1
+*/
+instr global_delay1
+ aL, aR bus_read "delay1"
+ ;aL *= abs(oscil(1, 1))
+ ;aR *= abs(oscil(1, 1))
+ kfeedback = abs:k(oscil:k(0.5, 4)) + 0.2
+
+ aLdlr delayr 0.8
+ kdeltime = abs(oscil(0.02, 0.04)) + 0.1
+ aLdel deltapi kdeltime + 0.002
+ delayw aL + (aLdel * kfeedback)
+ aRdlr delayr 0.8
+ aRdel deltapi kdeltime + 0.001
+ delayw aR + (aRdel * kfeedback)
+ bus_mix("master", aLdel, aRdel)
+endin
+
+
+/*
+ Delay 2
+*/
+instr global_delay2
+ aL, aR bus_read "delay2"
+ ifreq1 = 0.25
+ kfdbkL = abs(oscil(0.8, 1.63))
+ kfdbkR = abs(oscil(0.8, 1.67))
+
+ atimeL = abs(oscil(0.2, ifreq1)) + 0.01
+ atimeR = abs(oscil(0.2, ifreq1)) + 0.01
+
+ aLdlr delayr 1
+ aLdel deltapi atimeL
+ aLdel butterhp aLdel, 130
+ delayw aL + (aLdel * kfdbkL)
+
+ aRdlr delayr 1
+ aRdel deltapi atimeR
+ aRdel butterhp aRdel, 130
+ delayw aR + (aRdel * kfdbkR)
+
+ bus_mix("master", aLdel, aRdel)
+endin
+
+
+
+/*
+ Cyclical PVS sampler
+*/
+instr global_pvsamp1
+ aL, aR bus_read "pvsamp1"
+ ir = 512
+ iscales[] fillarray 0.25, 0.5, 1, 2, 4
+ ksampling init 1
+ ktime = timeinsts()
+ ksamplestarttime init 0
+ kplaystarttime init 0
+ imaxlength = 6
+ ksamplelength init random(2, imaxlength)
+ kplaylength init random(2, imaxlength)
+ krevsend init random(0, 0.4)
+ kdotune init (random(0, 1) > 0.8) ? 1 : 0
+ kdohpf init round(random(0, 1))
+ khpfreq init random(100, 2000)
+ kreadrate init random(0.005, 0.3)
+ kscale init iscales[round(random(0, lenarray(iscales) - 1))]
+
+ if (ksampling == 1) then
+ fL1 pvsanal aL, ir, ir/4, ir, 1
+ fR1 pvsanal aR, ir, ir/4, ir, 1
+
+ ibufL, ktL pvsbuffer fL1, imaxlength
+ ibufR, ktR pvsbuffer fR1, imaxlength
+
+ if (ktime - ksamplestarttime >= ksamplelength) then
+ ksampling = 0
+ kplaylength = random:k(2, imaxlength*0.9)
+ kplaystarttime = ktime
+ kdohpf = round:k(random:k(0, 1))
+ khpfreq = random:k(100, 2000)
+ kdotune = (random:k(0, 1) > 0.8) ? 1 : 0
+ krevsend = random:k(0, 0.6)
+ kreadrate = random:k(0.005, 0.3)
+ if (random:k(0, 1) >= 0.7) then
+ kscale = iscales[round:k(random:k(0, lenarray(iscales) - 1))]
+ endif
+ endif
+ endif
+
+ if (ksampling == 0 && ktime - kplaystarttime >= kplaylength) then
+ ksampling = 1
+ ksamplestarttime = ktime
+ ksamplelength = random:k(2, imaxlength)
+ endif
+
+ ktime = abs:k(oscil:k(1, kreadrate))
+
+ kplaylengthp = port(kplaylength, 0.1)
+ fL2 pvsbufread ktime*kplaylengthp, ibufL
+ fR2 pvsbufread ktime*kplaylengthp, ibufR
+
+ kscalep = port(kscale, 0.1)
+ fL3 pvscale fL2, kscalep
+ fR3 pvscale fR2, kscalep
+
+ aL pvsynth fL3
+ aR pvsynth fR3
+
+ if (kdotune == 1) then
+ aL, aR mel_tune_portamento aL*0.8, aR*0.8, gifnSine, 16, 1024, 4
+ endif
+
+ if (kdohpf == 1) then
+ aL butterhp aL, khpfreq
+ aR butterhp aR, khpfreq
+ endif
+
+ bus_mix("reverb1", aL*krevsend, aR*krevsend)
+ bus_mix("master", aL, aR)
+endin
+
+
+
+
+#end
diff --git a/site/app/partialemergence/index.html b/site/app/partialemergence/index.html new file mode 100644 index 0000000..5b7cedd --- /dev/null +++ b/site/app/partialemergence/index.html @@ -0,0 +1,39 @@ +<html> + <head> + <script type="text/javascript" src="/code/jquery.js"></script> + <script type="text/javascript" src="../base/base.js"></script> + <script type="text/javascript"> + + $(function(){ + + window.app = new CSApplication({ + manualSoundCollections: true, + csdUrl: "partialemergence.csd", + onPlay: function () { + $("#loading").hide(); + }, + files: [ + "progressions/progression1.fnmlmel","progressions/progression2.fnmlmel","progressions/progression3.fnmlmel","sounds/Kalimba/60.0.mp3","sounds/Kalimba/60.1.mp3","sounds/Kalimba/60.2.mp3","sounds/Kalimba/60.3.mp3","sounds/Kalimba/62.0.mp3","sounds/Kalimba/62.1.mp3","sounds/Kalimba/62.2.mp3","sounds/Kalimba/62.3.mp3","sounds/Kalimba/64.0.mp3","sounds/Kalimba/64.1.mp3","sounds/Kalimba/64.2.mp3","sounds/Kalimba/64.3.mp3","sounds/Kalimba/65.0.mp3","sounds/Kalimba/65.1.mp3","sounds/Kalimba/65.2.mp3","sounds/Kalimba/65.3.mp3","sounds/Kalimba/65.4.mp3","sounds/Kalimba/67.0.mp3","sounds/Kalimba/67.1.mp3","sounds/Kalimba/67.2.mp3","sounds/Kalimba/67.3.mp3","sounds/Kalimba/67.4.mp3","sounds/Kalimba/69.0.mp3","sounds/Kalimba/69.1.mp3","sounds/Kalimba/69.2.mp3","sounds/Kalimba/69.3.mp3","sounds/Kalimba/69.4.mp3","sounds/Kalimba/71.0.mp3","sounds/Kalimba/71.1.mp3","sounds/Kalimba/71.2.mp3","sounds/Kalimba/71.3.mp3","sounds/Kalimba/71.4.mp3","sounds/Kalimba/72.0.mp3","sounds/Kalimba/72.1.mp3","sounds/Kalimba/72.2.mp3","sounds/Kalimba/72.3.mp3","sounds/Kalimba/74.0.mp3","sounds/Kalimba/74.1.mp3","sounds/Kalimba/74.2.mp3","sounds/Kalimba/74.3.mp3","sounds/Kalimba/76.0.mp3","sounds/Kalimba/76.1.mp3","sounds/Kalimba/76.2.mp3","sounds/Kalimba/76.3.mp3","sounds/Kalimba/77.0.mp3","sounds/Kalimba/77.1.mp3","sounds/Kalimba/77.2.mp3","sounds/Kalimba/77.3.mp3","sounds/Kalimba/77.4.mp3","sounds/Kalimba/79.0.mp3","sounds/Kalimba/79.1.mp3","sounds/Kalimba/79.2.mp3","sounds/Kalimba/79.3.mp3","sounds/Kalimba/81.0.mp3","sounds/Kalimba/81.1.mp3","sounds/Kalimba/81.2.mp3","sounds/Kalimba/81.3.mp3","sounds/Kalimba/81.4.mp3","sounds/Kalimba/83.0.mp3","sounds/Kalimba/83.1.mp3","sounds/Kalimba/83.2.mp3","sounds/Kalimba/83.3.mp3","sounds/Kalimba/83.4.mp3","sounds/Kalimba/84.0.mp3","sounds/Kalimba/84.1.mp3","sounds/Kalimba/84.2.mp3","sounds/Kalimba/84.3.mp3","sounds/Kalimba/86.0.mp3","sounds/Kalimba/86.1.mp3","sounds/Kalimba/86.2.mp3","sounds/Kalimba/86.3.mp3","sounds/Kalimba/88.0.mp3","sounds/Kalimba/88.1.mp3","sounds/Kalimba/88.2.mp3","sounds/MusicBox/68.0.mp3","sounds/MusicBox/68.1.mp3","sounds/MusicBox/68.2.mp3","sounds/MusicBox/68.3.mp3","sounds/MusicBox/68.4.mp3","sounds/MusicBox/68.5.mp3","sounds/MusicBox/70.0.mp3","sounds/MusicBox/70.1.mp3","sounds/MusicBox/70.2.mp3","sounds/MusicBox/70.3.mp3","sounds/MusicBox/70.4.mp3","sounds/MusicBox/72.0.mp3","sounds/MusicBox/72.1.mp3","sounds/MusicBox/72.2.mp3","sounds/MusicBox/72.3.mp3","sounds/MusicBox/73.0.mp3","sounds/MusicBox/73.1.mp3","sounds/MusicBox/73.2.mp3","sounds/MusicBox/75.0.mp3","sounds/MusicBox/75.1.mp3","sounds/MusicBox/75.2.mp3","sounds/MusicBox/77.0.mp3","sounds/MusicBox/77.1.mp3","sounds/MusicBox/77.2.mp3","sounds/MusicBox/77.3.mp3","sounds/MusicBox/79.0.mp3","sounds/MusicBox/79.1.mp3","sounds/MusicBox/79.2.mp3","sounds/MusicBox/79.3.mp3","sounds/MusicBox/80.0.mp3","sounds/MusicBox/80.1.mp3","sounds/MusicBox/80.2.mp3","sounds/MusicBox/80.3.mp3","sounds/MusicBox/82.0.mp3","sounds/MusicBox/82.1.mp3","sounds/MusicBox/82.2.mp3","sounds/MusicBox/82.3.mp3","sounds/MusicBox/84.0.mp3","sounds/MusicBox/84.1.mp3","sounds/MusicBox/84.2.mp3","sounds/MusicBox/84.3.mp3","sounds/MusicBox/85.0.mp3","sounds/MusicBox/85.1.mp3","sounds/MusicBox/85.2.mp3","sounds/MusicBox/85.3.mp3","sounds/MusicBox/87.0.mp3","sounds/MusicBox/87.1.mp3","sounds/MusicBox/87.2.mp3","sounds/MusicBox/87.3.mp3","sounds/MusicBox/87.4.mp3","sounds/MusicBox/89.0.mp3","sounds/MusicBox/89.1.mp3","sounds/MusicBox/89.2.mp3","sounds/MusicBox/89.3.mp3","sounds/MusicBox/91.0.mp3","sounds/MusicBox/91.1.mp3","sounds/MusicBox/91.2.mp3","sounds/MusicBox/92.0.mp3","sounds/MusicBox/92.1.mp3","sounds/MusicBox/92.2.mp3","sounds/Water/Droplets/1.mp3","sounds/Water/Droplets/10.mp3","sounds/Water/Droplets/100.mp3","sounds/Water/Droplets/101.mp3","sounds/Water/Droplets/102.mp3","sounds/Water/Droplets/103.mp3","sounds/Water/Droplets/104.mp3","sounds/Water/Droplets/105.mp3","sounds/Water/Droplets/106.mp3","sounds/Water/Droplets/107.mp3","sounds/Water/Droplets/108.mp3","sounds/Water/Droplets/109.mp3","sounds/Water/Droplets/11.mp3","sounds/Water/Droplets/110.mp3","sounds/Water/Droplets/111.mp3","sounds/Water/Droplets/112.mp3","sounds/Water/Droplets/113.mp3","sounds/Water/Droplets/114.mp3","sounds/Water/Droplets/115.mp3","sounds/Water/Droplets/116.mp3","sounds/Water/Droplets/117.mp3","sounds/Water/Droplets/118.mp3","sounds/Water/Droplets/119.mp3","sounds/Water/Droplets/12.mp3","sounds/Water/Droplets/120.mp3","sounds/Water/Droplets/121.mp3","sounds/Water/Droplets/122.mp3","sounds/Water/Droplets/123.mp3","sounds/Water/Droplets/124.mp3","sounds/Water/Droplets/125.mp3","sounds/Water/Droplets/126.mp3","sounds/Water/Droplets/127.mp3","sounds/Water/Droplets/128.mp3","sounds/Water/Droplets/129.mp3","sounds/Water/Droplets/13.mp3","sounds/Water/Droplets/130.mp3","sounds/Water/Droplets/131.mp3","sounds/Water/Droplets/132.mp3","sounds/Water/Droplets/133.mp3","sounds/Water/Droplets/134.mp3","sounds/Water/Droplets/135.mp3","sounds/Water/Droplets/136.mp3","sounds/Water/Droplets/137.mp3","sounds/Water/Droplets/138.mp3","sounds/Water/Droplets/139.mp3","sounds/Water/Droplets/14.mp3","sounds/Water/Droplets/140.mp3","sounds/Water/Droplets/141.mp3","sounds/Water/Droplets/142.mp3","sounds/Water/Droplets/143.mp3","sounds/Water/Droplets/144.mp3","sounds/Water/Droplets/145.mp3","sounds/Water/Droplets/146.mp3","sounds/Water/Droplets/147.mp3","sounds/Water/Droplets/148.mp3","sounds/Water/Droplets/149.mp3","sounds/Water/Droplets/15.mp3","sounds/Water/Droplets/150.mp3","sounds/Water/Droplets/151.mp3","sounds/Water/Droplets/152.mp3","sounds/Water/Droplets/153.mp3","sounds/Water/Droplets/154.mp3","sounds/Water/Droplets/155.mp3","sounds/Water/Droplets/156.mp3","sounds/Water/Droplets/157.mp3","sounds/Water/Droplets/158.mp3","sounds/Water/Droplets/159.mp3","sounds/Water/Droplets/16.mp3","sounds/Water/Droplets/160.mp3","sounds/Water/Droplets/161.mp3","sounds/Water/Droplets/162.mp3","sounds/Water/Droplets/163.mp3","sounds/Water/Droplets/164.mp3","sounds/Water/Droplets/165.mp3","sounds/Water/Droplets/166.mp3","sounds/Water/Droplets/167.mp3","sounds/Water/Droplets/168.mp3","sounds/Water/Droplets/169.mp3","sounds/Water/Droplets/17.mp3","sounds/Water/Droplets/170.mp3","sounds/Water/Droplets/171.mp3","sounds/Water/Droplets/172.mp3","sounds/Water/Droplets/173.mp3","sounds/Water/Droplets/174.mp3","sounds/Water/Droplets/175.mp3","sounds/Water/Droplets/176.mp3","sounds/Water/Droplets/177.mp3","sounds/Water/Droplets/178.mp3","sounds/Water/Droplets/179.mp3","sounds/Water/Droplets/18.mp3","sounds/Water/Droplets/180.mp3","sounds/Water/Droplets/181.mp3","sounds/Water/Droplets/182.mp3","sounds/Water/Droplets/183.mp3","sounds/Water/Droplets/184.mp3","sounds/Water/Droplets/185.mp3","sounds/Water/Droplets/186.mp3","sounds/Water/Droplets/187.mp3","sounds/Water/Droplets/188.mp3","sounds/Water/Droplets/189.mp3","sounds/Water/Droplets/19.mp3","sounds/Water/Droplets/190.mp3","sounds/Water/Droplets/191.mp3","sounds/Water/Droplets/192.mp3","sounds/Water/Droplets/193.mp3","sounds/Water/Droplets/194.mp3","sounds/Water/Droplets/195.mp3","sounds/Water/Droplets/196.mp3","sounds/Water/Droplets/197.mp3","sounds/Water/Droplets/198.mp3","sounds/Water/Droplets/199.mp3","sounds/Water/Droplets/2.mp3","sounds/Water/Droplets/20.mp3","sounds/Water/Droplets/200.mp3","sounds/Water/Droplets/201.mp3","sounds/Water/Droplets/202.mp3","sounds/Water/Droplets/203.mp3","sounds/Water/Droplets/204.mp3","sounds/Water/Droplets/205.mp3","sounds/Water/Droplets/206.mp3","sounds/Water/Droplets/207.mp3","sounds/Water/Droplets/208.mp3","sounds/Water/Droplets/209.mp3","sounds/Water/Droplets/21.mp3","sounds/Water/Droplets/210.mp3","sounds/Water/Droplets/211.mp3","sounds/Water/Droplets/212.mp3","sounds/Water/Droplets/213.mp3","sounds/Water/Droplets/214.mp3","sounds/Water/Droplets/215.mp3","sounds/Water/Droplets/216.mp3","sounds/Water/Droplets/217.mp3","sounds/Water/Droplets/218.mp3","sounds/Water/Droplets/219.mp3","sounds/Water/Droplets/22.mp3","sounds/Water/Droplets/220.mp3","sounds/Water/Droplets/221.mp3","sounds/Water/Droplets/222.mp3","sounds/Water/Droplets/223.mp3","sounds/Water/Droplets/224.mp3","sounds/Water/Droplets/225.mp3","sounds/Water/Droplets/226.mp3","sounds/Water/Droplets/227.mp3","sounds/Water/Droplets/228.mp3","sounds/Water/Droplets/229.mp3","sounds/Water/Droplets/23.mp3","sounds/Water/Droplets/230.mp3","sounds/Water/Droplets/231.mp3","sounds/Water/Droplets/232.mp3","sounds/Water/Droplets/233.mp3","sounds/Water/Droplets/234.mp3","sounds/Water/Droplets/235.mp3","sounds/Water/Droplets/236.mp3","sounds/Water/Droplets/237.mp3","sounds/Water/Droplets/238.mp3","sounds/Water/Droplets/239.mp3","sounds/Water/Droplets/24.mp3","sounds/Water/Droplets/240.mp3","sounds/Water/Droplets/241.mp3","sounds/Water/Droplets/242.mp3","sounds/Water/Droplets/243.mp3","sounds/Water/Droplets/244.mp3","sounds/Water/Droplets/245.mp3","sounds/Water/Droplets/246.mp3","sounds/Water/Droplets/247.mp3","sounds/Water/Droplets/248.mp3","sounds/Water/Droplets/249.mp3","sounds/Water/Droplets/25.mp3","sounds/Water/Droplets/250.mp3","sounds/Water/Droplets/251.mp3","sounds/Water/Droplets/252.mp3","sounds/Water/Droplets/253.mp3","sounds/Water/Droplets/254.mp3","sounds/Water/Droplets/255.mp3","sounds/Water/Droplets/256.mp3","sounds/Water/Droplets/257.mp3","sounds/Water/Droplets/258.mp3","sounds/Water/Droplets/259.mp3","sounds/Water/Droplets/26.mp3","sounds/Water/Droplets/260.mp3","sounds/Water/Droplets/261.mp3","sounds/Water/Droplets/262.mp3","sounds/Water/Droplets/263.mp3","sounds/Water/Droplets/264.mp3","sounds/Water/Droplets/265.mp3","sounds/Water/Droplets/266.mp3","sounds/Water/Droplets/267.mp3","sounds/Water/Droplets/268.mp3","sounds/Water/Droplets/269.mp3","sounds/Water/Droplets/27.mp3","sounds/Water/Droplets/270.mp3","sounds/Water/Droplets/271.mp3","sounds/Water/Droplets/272.mp3","sounds/Water/Droplets/273.mp3","sounds/Water/Droplets/274.mp3","sounds/Water/Droplets/275.mp3","sounds/Water/Droplets/276.mp3","sounds/Water/Droplets/277.mp3","sounds/Water/Droplets/278.mp3","sounds/Water/Droplets/279.mp3","sounds/Water/Droplets/28.mp3","sounds/Water/Droplets/280.mp3","sounds/Water/Droplets/281.mp3","sounds/Water/Droplets/282.mp3","sounds/Water/Droplets/283.mp3","sounds/Water/Droplets/284.mp3","sounds/Water/Droplets/285.mp3","sounds/Water/Droplets/286.mp3","sounds/Water/Droplets/287.mp3","sounds/Water/Droplets/288.mp3","sounds/Water/Droplets/289.mp3","sounds/Water/Droplets/29.mp3","sounds/Water/Droplets/290.mp3","sounds/Water/Droplets/291.mp3","sounds/Water/Droplets/292.mp3","sounds/Water/Droplets/293.mp3","sounds/Water/Droplets/294.mp3","sounds/Water/Droplets/295.mp3","sounds/Water/Droplets/296.mp3","sounds/Water/Droplets/297.mp3","sounds/Water/Droplets/298.mp3","sounds/Water/Droplets/299.mp3","sounds/Water/Droplets/3.mp3","sounds/Water/Droplets/30.mp3","sounds/Water/Droplets/300.mp3","sounds/Water/Droplets/301.mp3","sounds/Water/Droplets/302.mp3","sounds/Water/Droplets/303.mp3","sounds/Water/Droplets/304.mp3","sounds/Water/Droplets/305.mp3","sounds/Water/Droplets/306.mp3","sounds/Water/Droplets/307.mp3","sounds/Water/Droplets/308.mp3","sounds/Water/Droplets/309.mp3","sounds/Water/Droplets/31.mp3","sounds/Water/Droplets/310.mp3","sounds/Water/Droplets/311.mp3","sounds/Water/Droplets/312.mp3","sounds/Water/Droplets/313.mp3","sounds/Water/Droplets/314.mp3","sounds/Water/Droplets/315.mp3","sounds/Water/Droplets/316.mp3","sounds/Water/Droplets/317.mp3","sounds/Water/Droplets/318.mp3","sounds/Water/Droplets/319.mp3","sounds/Water/Droplets/32.mp3","sounds/Water/Droplets/320.mp3","sounds/Water/Droplets/321.mp3","sounds/Water/Droplets/322.mp3","sounds/Water/Droplets/323.mp3","sounds/Water/Droplets/324.mp3","sounds/Water/Droplets/325.mp3","sounds/Water/Droplets/326.mp3","sounds/Water/Droplets/327.mp3","sounds/Water/Droplets/328.mp3","sounds/Water/Droplets/329.mp3","sounds/Water/Droplets/33.mp3","sounds/Water/Droplets/330.mp3","sounds/Water/Droplets/331.mp3","sounds/Water/Droplets/332.mp3","sounds/Water/Droplets/333.mp3","sounds/Water/Droplets/334.mp3","sounds/Water/Droplets/335.mp3","sounds/Water/Droplets/336.mp3","sounds/Water/Droplets/337.mp3","sounds/Water/Droplets/338.mp3","sounds/Water/Droplets/339.mp3","sounds/Water/Droplets/34.mp3","sounds/Water/Droplets/340.mp3","sounds/Water/Droplets/341.mp3","sounds/Water/Droplets/342.mp3","sounds/Water/Droplets/343.mp3","sounds/Water/Droplets/344.mp3","sounds/Water/Droplets/345.mp3","sounds/Water/Droplets/346.mp3","sounds/Water/Droplets/347.mp3","sounds/Water/Droplets/348.mp3","sounds/Water/Droplets/349.mp3","sounds/Water/Droplets/35.mp3","sounds/Water/Droplets/350.mp3","sounds/Water/Droplets/351.mp3","sounds/Water/Droplets/352.mp3","sounds/Water/Droplets/353.mp3","sounds/Water/Droplets/354.mp3","sounds/Water/Droplets/355.mp3","sounds/Water/Droplets/356.mp3","sounds/Water/Droplets/357.mp3","sounds/Water/Droplets/358.mp3","sounds/Water/Droplets/359.mp3","sounds/Water/Droplets/36.mp3","sounds/Water/Droplets/360.mp3","sounds/Water/Droplets/361.mp3","sounds/Water/Droplets/362.mp3","sounds/Water/Droplets/363.mp3","sounds/Water/Droplets/364.mp3","sounds/Water/Droplets/365.mp3","sounds/Water/Droplets/366.mp3","sounds/Water/Droplets/367.mp3","sounds/Water/Droplets/368.mp3","sounds/Water/Droplets/369.mp3","sounds/Water/Droplets/37.mp3","sounds/Water/Droplets/370.mp3","sounds/Water/Droplets/371.mp3","sounds/Water/Droplets/372.mp3","sounds/Water/Droplets/373.mp3","sounds/Water/Droplets/374.mp3","sounds/Water/Droplets/375.mp3","sounds/Water/Droplets/376.mp3","sounds/Water/Droplets/377.mp3","sounds/Water/Droplets/378.mp3","sounds/Water/Droplets/379.mp3","sounds/Water/Droplets/38.mp3","sounds/Water/Droplets/380.mp3","sounds/Water/Droplets/381.mp3","sounds/Water/Droplets/382.mp3","sounds/Water/Droplets/383.mp3","sounds/Water/Droplets/384.mp3","sounds/Water/Droplets/385.mp3","sounds/Water/Droplets/386.mp3","sounds/Water/Droplets/387.mp3","sounds/Water/Droplets/388.mp3","sounds/Water/Droplets/389.mp3","sounds/Water/Droplets/39.mp3","sounds/Water/Droplets/390.mp3","sounds/Water/Droplets/391.mp3","sounds/Water/Droplets/392.mp3","sounds/Water/Droplets/393.mp3","sounds/Water/Droplets/394.mp3","sounds/Water/Droplets/395.mp3","sounds/Water/Droplets/396.mp3","sounds/Water/Droplets/397.mp3","sounds/Water/Droplets/398.mp3","sounds/Water/Droplets/399.mp3","sounds/Water/Droplets/4.mp3","sounds/Water/Droplets/40.mp3","sounds/Water/Droplets/400.mp3","sounds/Water/Droplets/401.mp3","sounds/Water/Droplets/402.mp3","sounds/Water/Droplets/403.mp3","sounds/Water/Droplets/404.mp3","sounds/Water/Droplets/405.mp3","sounds/Water/Droplets/406.mp3","sounds/Water/Droplets/407.mp3","sounds/Water/Droplets/408.mp3","sounds/Water/Droplets/409.mp3","sounds/Water/Droplets/41.mp3","sounds/Water/Droplets/410.mp3","sounds/Water/Droplets/411.mp3","sounds/Water/Droplets/412.mp3","sounds/Water/Droplets/413.mp3","sounds/Water/Droplets/414.mp3","sounds/Water/Droplets/415.mp3","sounds/Water/Droplets/416.mp3","sounds/Water/Droplets/417.mp3","sounds/Water/Droplets/418.mp3","sounds/Water/Droplets/419.mp3","sounds/Water/Droplets/42.mp3","sounds/Water/Droplets/420.mp3","sounds/Water/Droplets/421.mp3","sounds/Water/Droplets/422.mp3","sounds/Water/Droplets/423.mp3","sounds/Water/Droplets/424.mp3","sounds/Water/Droplets/425.mp3","sounds/Water/Droplets/426.mp3","sounds/Water/Droplets/427.mp3","sounds/Water/Droplets/428.mp3","sounds/Water/Droplets/429.mp3","sounds/Water/Droplets/43.mp3","sounds/Water/Droplets/430.mp3","sounds/Water/Droplets/431.mp3","sounds/Water/Droplets/432.mp3","sounds/Water/Droplets/433.mp3","sounds/Water/Droplets/434.mp3","sounds/Water/Droplets/435.mp3","sounds/Water/Droplets/436.mp3","sounds/Water/Droplets/437.mp3","sounds/Water/Droplets/438.mp3","sounds/Water/Droplets/439.mp3","sounds/Water/Droplets/44.mp3","sounds/Water/Droplets/440.mp3","sounds/Water/Droplets/441.mp3","sounds/Water/Droplets/442.mp3","sounds/Water/Droplets/443.mp3","sounds/Water/Droplets/444.mp3","sounds/Water/Droplets/445.mp3","sounds/Water/Droplets/446.mp3","sounds/Water/Droplets/447.mp3","sounds/Water/Droplets/448.mp3","sounds/Water/Droplets/449.mp3","sounds/Water/Droplets/45.mp3","sounds/Water/Droplets/450.mp3","sounds/Water/Droplets/451.mp3","sounds/Water/Droplets/452.mp3","sounds/Water/Droplets/453.mp3","sounds/Water/Droplets/454.mp3","sounds/Water/Droplets/455.mp3","sounds/Water/Droplets/456.mp3","sounds/Water/Droplets/457.mp3","sounds/Water/Droplets/458.mp3","sounds/Water/Droplets/459.mp3","sounds/Water/Droplets/46.mp3","sounds/Water/Droplets/460.mp3","sounds/Water/Droplets/461.mp3","sounds/Water/Droplets/462.mp3","sounds/Water/Droplets/463.mp3","sounds/Water/Droplets/464.mp3","sounds/Water/Droplets/465.mp3","sounds/Water/Droplets/466.mp3","sounds/Water/Droplets/467.mp3","sounds/Water/Droplets/468.mp3","sounds/Water/Droplets/469.mp3","sounds/Water/Droplets/47.mp3","sounds/Water/Droplets/470.mp3","sounds/Water/Droplets/471.mp3","sounds/Water/Droplets/472.mp3","sounds/Water/Droplets/473.mp3","sounds/Water/Droplets/474.mp3","sounds/Water/Droplets/475.mp3","sounds/Water/Droplets/476.mp3","sounds/Water/Droplets/477.mp3","sounds/Water/Droplets/478.mp3","sounds/Water/Droplets/479.mp3","sounds/Water/Droplets/48.mp3","sounds/Water/Droplets/480.mp3","sounds/Water/Droplets/481.mp3","sounds/Water/Droplets/482.mp3","sounds/Water/Droplets/483.mp3","sounds/Water/Droplets/484.mp3","sounds/Water/Droplets/485.mp3","sounds/Water/Droplets/486.mp3","sounds/Water/Droplets/487.mp3","sounds/Water/Droplets/488.mp3","sounds/Water/Droplets/489.mp3","sounds/Water/Droplets/49.mp3","sounds/Water/Droplets/490.mp3","sounds/Water/Droplets/491.mp3","sounds/Water/Droplets/492.mp3","sounds/Water/Droplets/493.mp3","sounds/Water/Droplets/494.mp3","sounds/Water/Droplets/495.mp3","sounds/Water/Droplets/496.mp3","sounds/Water/Droplets/497.mp3","sounds/Water/Droplets/498.mp3","sounds/Water/Droplets/499.mp3","sounds/Water/Droplets/5.mp3","sounds/Water/Droplets/50.mp3","sounds/Water/Droplets/500.mp3","sounds/Water/Droplets/501.mp3","sounds/Water/Droplets/502.mp3","sounds/Water/Droplets/503.mp3","sounds/Water/Droplets/504.mp3","sounds/Water/Droplets/505.mp3","sounds/Water/Droplets/506.mp3","sounds/Water/Droplets/507.mp3","sounds/Water/Droplets/508.mp3","sounds/Water/Droplets/509.mp3","sounds/Water/Droplets/51.mp3","sounds/Water/Droplets/510.mp3","sounds/Water/Droplets/511.mp3","sounds/Water/Droplets/512.mp3","sounds/Water/Droplets/513.mp3","sounds/Water/Droplets/514.mp3","sounds/Water/Droplets/515.mp3","sounds/Water/Droplets/516.mp3","sounds/Water/Droplets/517.mp3","sounds/Water/Droplets/518.mp3","sounds/Water/Droplets/519.mp3","sounds/Water/Droplets/52.mp3","sounds/Water/Droplets/520.mp3","sounds/Water/Droplets/521.mp3","sounds/Water/Droplets/522.mp3","sounds/Water/Droplets/523.mp3","sounds/Water/Droplets/524.mp3","sounds/Water/Droplets/525.mp3","sounds/Water/Droplets/526.mp3","sounds/Water/Droplets/527.mp3","sounds/Water/Droplets/528.mp3","sounds/Water/Droplets/529.mp3","sounds/Water/Droplets/53.mp3","sounds/Water/Droplets/530.mp3","sounds/Water/Droplets/531.mp3","sounds/Water/Droplets/532.mp3","sounds/Water/Droplets/533.mp3","sounds/Water/Droplets/534.mp3","sounds/Water/Droplets/535.mp3","sounds/Water/Droplets/536.mp3","sounds/Water/Droplets/537.mp3","sounds/Water/Droplets/538.mp3","sounds/Water/Droplets/539.mp3","sounds/Water/Droplets/54.mp3","sounds/Water/Droplets/540.mp3","sounds/Water/Droplets/541.mp3","sounds/Water/Droplets/542.mp3","sounds/Water/Droplets/543.mp3","sounds/Water/Droplets/545.mp3","sounds/Water/Droplets/546.mp3","sounds/Water/Droplets/547.mp3","sounds/Water/Droplets/548.mp3","sounds/Water/Droplets/549.mp3","sounds/Water/Droplets/55.mp3","sounds/Water/Droplets/550.mp3","sounds/Water/Droplets/551.mp3","sounds/Water/Droplets/552.mp3","sounds/Water/Droplets/553.mp3","sounds/Water/Droplets/554.mp3","sounds/Water/Droplets/555.mp3","sounds/Water/Droplets/556.mp3","sounds/Water/Droplets/557.mp3","sounds/Water/Droplets/558.mp3","sounds/Water/Droplets/559.mp3","sounds/Water/Droplets/56.mp3","sounds/Water/Droplets/560.mp3","sounds/Water/Droplets/561.mp3","sounds/Water/Droplets/562.mp3","sounds/Water/Droplets/563.mp3","sounds/Water/Droplets/564.mp3","sounds/Water/Droplets/565.mp3","sounds/Water/Droplets/566.mp3","sounds/Water/Droplets/567.mp3","sounds/Water/Droplets/568.mp3","sounds/Water/Droplets/569.mp3","sounds/Water/Droplets/57.mp3","sounds/Water/Droplets/570.mp3","sounds/Water/Droplets/571.mp3","sounds/Water/Droplets/572.mp3","sounds/Water/Droplets/573.mp3","sounds/Water/Droplets/574.mp3","sounds/Water/Droplets/575.mp3","sounds/Water/Droplets/576.mp3","sounds/Water/Droplets/577.mp3","sounds/Water/Droplets/578.mp3","sounds/Water/Droplets/579.mp3","sounds/Water/Droplets/58.mp3","sounds/Water/Droplets/59.mp3","sounds/Water/Droplets/6.mp3","sounds/Water/Droplets/60.mp3","sounds/Water/Droplets/61.mp3","sounds/Water/Droplets/62.mp3","sounds/Water/Droplets/63.mp3","sounds/Water/Droplets/64.mp3","sounds/Water/Droplets/65.mp3","sounds/Water/Droplets/66.mp3","sounds/Water/Droplets/67.mp3","sounds/Water/Droplets/68.mp3","sounds/Water/Droplets/69.mp3","sounds/Water/Droplets/7.mp3","sounds/Water/Droplets/70.mp3","sounds/Water/Droplets/71.mp3","sounds/Water/Droplets/72.mp3","sounds/Water/Droplets/73.mp3","sounds/Water/Droplets/74.mp3","sounds/Water/Droplets/75.mp3","sounds/Water/Droplets/76.mp3","sounds/Water/Droplets/77.mp3","sounds/Water/Droplets/78.mp3","sounds/Water/Droplets/79.mp3","sounds/Water/Droplets/8.mp3","sounds/Water/Droplets/80.mp3","sounds/Water/Droplets/81.mp3","sounds/Water/Droplets/82.mp3","sounds/Water/Droplets/83.mp3","sounds/Water/Droplets/84.mp3","sounds/Water/Droplets/85.mp3","sounds/Water/Droplets/86.mp3","sounds/Water/Droplets/87.mp3","sounds/Water/Droplets/88.mp3","sounds/Water/Droplets/89.mp3","sounds/Water/Droplets/9.mp3","sounds/Water/Droplets/90.mp3","sounds/Water/Droplets/91.mp3","sounds/Water/Droplets/92.mp3","sounds/Water/Droplets/93.mp3","sounds/Water/Droplets/94.mp3","sounds/Water/Droplets/95.mp3","sounds/Water/Droplets/96.mp3","sounds/Water/Droplets/97.mp3","sounds/Water/Droplets/98.mp3","sounds/Water/Droplets/99.mp3","sounds/Water/Paddling/1.mp3","sounds/Water/Paddling/10.mp3","sounds/Water/Paddling/100.mp3","sounds/Water/Paddling/11.mp3","sounds/Water/Paddling/12.mp3","sounds/Water/Paddling/13.mp3","sounds/Water/Paddling/14.mp3","sounds/Water/Paddling/15.mp3","sounds/Water/Paddling/16.mp3","sounds/Water/Paddling/17.mp3","sounds/Water/Paddling/18.mp3","sounds/Water/Paddling/19.mp3","sounds/Water/Paddling/2.mp3","sounds/Water/Paddling/20.mp3","sounds/Water/Paddling/21.mp3","sounds/Water/Paddling/22.mp3","sounds/Water/Paddling/23.mp3","sounds/Water/Paddling/24.mp3","sounds/Water/Paddling/25.mp3","sounds/Water/Paddling/26.mp3","sounds/Water/Paddling/27.mp3","sounds/Water/Paddling/28.mp3","sounds/Water/Paddling/29.mp3","sounds/Water/Paddling/3.mp3","sounds/Water/Paddling/30.mp3","sounds/Water/Paddling/31.mp3","sounds/Water/Paddling/32.mp3","sounds/Water/Paddling/33.mp3","sounds/Water/Paddling/34.mp3","sounds/Water/Paddling/35.mp3","sounds/Water/Paddling/36.mp3","sounds/Water/Paddling/37.mp3","sounds/Water/Paddling/38.mp3","sounds/Water/Paddling/39.mp3","sounds/Water/Paddling/4.mp3","sounds/Water/Paddling/40.mp3","sounds/Water/Paddling/41.mp3","sounds/Water/Paddling/42.mp3","sounds/Water/Paddling/43.mp3","sounds/Water/Paddling/44.mp3","sounds/Water/Paddling/45.mp3","sounds/Water/Paddling/46.mp3","sounds/Water/Paddling/47.mp3","sounds/Water/Paddling/48.mp3","sounds/Water/Paddling/49.mp3","sounds/Water/Paddling/5.mp3","sounds/Water/Paddling/50.mp3","sounds/Water/Paddling/51.mp3","sounds/Water/Paddling/52.mp3","sounds/Water/Paddling/53.mp3","sounds/Water/Paddling/54.mp3","sounds/Water/Paddling/55.mp3","sounds/Water/Paddling/56.mp3","sounds/Water/Paddling/57.mp3","sounds/Water/Paddling/58.mp3","sounds/Water/Paddling/59.mp3","sounds/Water/Paddling/6.mp3","sounds/Water/Paddling/60.mp3","sounds/Water/Paddling/61.mp3","sounds/Water/Paddling/62.mp3","sounds/Water/Paddling/63.mp3","sounds/Water/Paddling/64.mp3","sounds/Water/Paddling/65.mp3","sounds/Water/Paddling/66.mp3","sounds/Water/Paddling/67.mp3","sounds/Water/Paddling/68.mp3","sounds/Water/Paddling/69.mp3","sounds/Water/Paddling/7.mp3","sounds/Water/Paddling/70.mp3","sounds/Water/Paddling/71.mp3","sounds/Water/Paddling/72.mp3","sounds/Water/Paddling/73.mp3","sounds/Water/Paddling/74.mp3","sounds/Water/Paddling/75.mp3","sounds/Water/Paddling/76.mp3","sounds/Water/Paddling/77.mp3","sounds/Water/Paddling/78.mp3","sounds/Water/Paddling/79.mp3","sounds/Water/Paddling/8.mp3","sounds/Water/Paddling/80.mp3","sounds/Water/Paddling/81.mp3","sounds/Water/Paddling/82.mp3","sounds/Water/Paddling/83.mp3","sounds/Water/Paddling/84.mp3","sounds/Water/Paddling/85.mp3","sounds/Water/Paddling/86.mp3","sounds/Water/Paddling/87.mp3","sounds/Water/Paddling/88.mp3","sounds/Water/Paddling/89.mp3","sounds/Water/Paddling/9.mp3","sounds/Water/Paddling/90.mp3","sounds/Water/Paddling/91.mp3","sounds/Water/Paddling/92.mp3","sounds/Water/Paddling/93.mp3","sounds/Water/Paddling/94.mp3","sounds/Water/Paddling/95.mp3","sounds/Water/Paddling/96.mp3","sounds/Water/Paddling/97.mp3","sounds/Water/Paddling/98.mp3","sounds/Water/Paddling/99.mp3" + ] + }); + + $("#begin").click(function() { + $("#begin").hide(); + $("#loading").show(); + app.play(); + }); + }); + </script> + </head> + <body> + <div id="loading"> + <h3>Loading</h3> + </div> + <div id="begin"> + <div id="begininner"> + <h3>Partial Emergence</h3> + <h2>Press to begin</h2> + </div> + </div> + </body> +</html> diff --git a/site/app/partialemergence/instruments_hybrid.inc b/site/app/partialemergence/instruments_hybrid.inc new file mode 100644 index 0000000..1d9f77f --- /dev/null +++ b/site/app/partialemergence/instruments_hybrid.inc @@ -0,0 +1,254 @@ +#ifndef INC_HYBRID_INSTR
+#define INC_HYBRID_INSTR ##
+
+#include "/instruments_water.inc"
+#include "/instruments_idiophone.inc"
+#include "/array_tools.udo"
+#include "/wavetables.udo"
+#include "/soundxdb.udo"
+#include "/sequencing_melodic.udo"
+
+; reson
+instr note_hybrid1
+ inote = p4
+
+ ifreq = cpsmidinn(inote)
+ ifileid = arr_random(gisnd_waterdrop)
+
+ ifn = gisounddb[ifileid][0]
+ idur = gisounddb[ifileid][2]
+
+ ipitch = random(0.8, 1.6)
+
+ itdur = (idur / ipitch) + random(0.2, 0.5)
+ p3 = itdur
+ ;aL, aR loscil 1, ipitch, ifn, 1
+ atime line 0, p3, idur*0.9
+ aL, aR mincer atime, 1, ipitch, ifn, 0, 128 ; 1024
+ aLr resony aL, ifreq, 2, random(8, 16), 10
+ aRr resony aL, ifreq, 2, random(8, 16), 10
+
+ aLr pareq aLr, ifreq, 0.4, 0.7
+ aRr pareq aRr, ifreq, 0.4, 0.7
+
+ aL balance aLr, aL
+ aR balance aRr, aR
+ aL dcblock aL
+ aR dcblock aR
+
+ kamp linseg 1, itdur*0.9, 1, itdur*0.1, 0
+
+ iamp = random(0.7, 1)
+ ipan = random(0, 1)
+ aL *= kamp * iamp * ipan
+ aR *= kamp * iamp * (1-ipan)
+ bus_mix("pvsamp1", aL*random(0, 0.3), aR*random(0, 0.3))
+ bus_mix("reverb1", aL*0.1, aR*0.1)
+ bus_mix("delay2", aL*random(0, 0.01), aR*random(0, 0.01))
+ bus_mix("master", aL, aR)
+endin
+
+
+instr phrase_hybrid1
+ if (random(0, 1) > 0.5) then
+ ifreqstart = random(1, 10)
+ ifreqend = random(1, 10)
+ else
+ ifreqstart = random(1, 10)
+ ifreqend = random(1, 10)
+ endif
+ kfreq linseg ifreqstart, p3, ifreqend
+
+ kamp init 1
+ ktrig metro kfreq
+ if (ktrig == 1) then
+ knote = min:k(mel_randomnote:k() + (round:k(random:k(-2, 2)) * 12), 127)
+ if (random:k(0, 1) >= 0.5) then
+ schedulek("note_idiophone1", random:k(0, 0.1), 0.1, knote, kamp*2)
+ else
+ schedulek("note_hybrid1", random:k(0, 0.1), 0.1, knote)
+ endif
+ endif
+endin
+
+
+/*
+ Chord changing from idiophone to drops
+
+ p4 one note (0 = play one note, 1 = play chord)
+*/
+instr phrase_hybrid2
+ ionenote = p4
+
+ if (ionenote == 1) then
+ knote init mel_randomnote() + (round(random(-2, 4)) * 12)
+ endif
+
+ if (random(0, 1) > 0.5) then
+ ifreqstart = random(10, 30)
+ ifreqend = random(2, 10)
+ else
+ ifreqstart = random(2, 10)
+ ifreqend = random(10, 30)
+ endif
+ kfreq linseg ifreqstart, p3, ifreqend
+
+ kamp linseg 0, p3*0.1, 1, p3*0.8, 1, p3*0.1, 0
+ ktransition line 1, p3, 0
+
+ ktrig metro kfreq
+ if (ktrig == 1) then
+ if (random:k(0, 1) >= ktransition) then
+ if (ionenote != 1) then
+ knote = mel_randomnote:k() + (round:k(random:k(-2, 4)) * 12)
+ endif
+ schedulek("note_idiophone1", random:k(0, 0.1), 0.1, min:k(knote, 127), kamp*2)
+ else
+ schedulek("note_drop1", random:k(0, 0.1), 0.1)
+ endif
+ endif
+endin
+
+
+opcode portchord_drop, aa, iio
+ ifreqmult, ireadmode, index xin
+
+ ifileid = arr_random(gisnd_waterdrop)
+ ifftsize = 16
+
+ ifn = gisounddb[ifileid][0]
+ ichannels = gisounddb[ifileid][1]
+ idur = gisounddb[ifileid][2]
+ irmsnorm = gisounddb[ifileid][3]
+
+ kampb table index, gimel_amps
+ kfreq table index, gimel_freqs
+
+ kamp portk kampb, (i(gkseq_beattime) * gimel_portamento_beatratio) ; fade out when change
+
+ kpitch = line(random(0.8, 1.2), p3, random(0.8, 1.2))
+
+ istart = random(0.05, 0.2)
+ iend = random(istart+0.1, 0.8)
+ atime = abs(oscil(iend - istart, random(0.001, 0.1), gifnSine, random(0, 1))) + istart
+
+ klfo = oscil:k(random(0.0001, 0.009), random(1, 5)) + 1
+ kfreq *= klfo
+
+ aL init 0
+ aR init 0
+ if (kamp != 0) then
+ if (ireadmode == 0) then
+ aLm, aRm mincer atime*idur, kamp, kpitch, ifn, 0, ifftsize
+ else
+ aLm, aRm sndwarpst kamp, atime*idur, kpitch, ifn, 0, 4410, 441, 8, gifnHalfSine, 1
+ endif
+ aL resony aLm, kfreq*ifreqmult, 2, random(8, 16), 10
+ aR resony aRm, kfreq*ifreqmult, 2, random(8, 16), 10
+ aL balance aL, aLm
+ aR balance aR, aRm
+ aL butterhp aL, 210
+ aR butterhp aR, 210
+ endif
+ ipan = random(0, 1)
+
+ ;aL *= (1 - irmsnorm) * 0.5 * ipan
+ ;aR *= (1 - irmsnorm) * 0.5 * (1-ipan)
+
+ ; recursion for all chord parts
+ if (index + 1 < ftlen(gimel_amps)) then
+ aLx, aRx portchord_drop ifreqmult, ireadmode, index + 1
+ aL += aLx
+ aR += aRx
+ endif
+ xout aL, aR
+endop
+
+
+
+instr phrase_hybridstretch1
+ kamp linsegr 1, p3, 1, 1, 0
+ kampx3 init 0.2
+ kreverb1 init 0
+ kreverb2 init 0
+ kreverb3 init 0
+ aL1, aR1 portchord_drop 0.5, 1
+ ;aL2, aR2 portchord_drop 1, 1
+ aL3, aR3 portchord_drop 4, 1
+ k3amp = abs:k(oscil:k(1, 0.1))
+
+ ;aL = (aL1 + aL2 + (aL3 * port(k3amp, 1))) * kamp
+ ;aR = (aR1 + aR2 + (aR3 * port(k3amp, 1))) * kamp
+
+ aL = (aL1 + (aL3 * port(k3amp, 1))) * kamp
+ aR = (aR1 + (aR3 * port(k3amp, 1))) * kamp
+
+ kchangemetro = metro(0.2)
+ if (kchangemetro == 1) then
+ if (random:k(0, 1) > 0.2) then
+ kampx3 = random:k(0.2, 1)
+ endif
+ if (random:k(0, 1) > 0.5) then
+ kreverb1 = random:k(0, 0.4)
+ endif
+ if (random:k(0, 1) > 0.5) then
+ kreverb2 = random:k(0, 0.4)
+ endif
+ if (random:k(0, 1) > 0.5) then
+ kreverb3 = random:k(0, 0.4)
+ endif
+ endif
+
+ aL pareq aL, 1000, 0.4, 0.7
+ aR pareq aR, 1000, 0.4, 0.7
+
+ bus_mix("reverb1", aL1*kreverb1, aR1*kreverb1)
+ ;bus_mix("reverb1", aL2*kreverb2, aR2*kreverb2)
+ bus_mix("reverb1", aL3*kreverb3, aR3*kreverb3)
+ bus_mix("master", aL, aR)
+endin
+
+
+/*
+; pvsmorph
+instr note_hybrid1x
+ inote = p4
+
+ ifileidBox, ipitchBox sounddb_mel_nearestnote gicol_idiophone, inote
+ ifileidWater = arr_random(gisnd_waterdrop)
+
+ ifnBox = gisounddb[ifileidBox][0]
+ idurBox = gisounddb[ifileidBox][2]
+ ifnWater = gisounddb[ifileidWater][0]
+ idurWater = gisounddb[ifileidWater][2]
+
+ ipitchWater = random(0.8, 1)
+
+ p3 = min((idurWater / ipitchWater), (idurBox / ipitchBox))
+
+ aboxL, aboxR loscil 1, ipitchBox, ifnBox, 1
+ awaterL, awaterR loscil 1, ipitchWater, ifnWater, 1
+
+ ir = 1024
+ fboxL pvsanal aboxL, ir, ir/4, ir, 1
+ fboxR pvsanal aboxR, ir, ir/4, ir, 1
+ fwaterL pvsanal awaterL, ir, ir/4, ir, 1
+ fwaterR pvsanal awaterR, ir, ir/4, ir, 1
+ fL pvsmorph fboxL, fwaterL, 1, 0
+ fR pvsmorph fboxR, fwaterR, 1, 0
+ aL pvsynth fL
+ aR pvsynth fR
+
+ kamp linseg 1, p3*0.9, 1, p3*0.1, 0
+
+ iamp = 5
+
+ aL *= kamp * iamp
+ aR *= kamp * iamp
+ bus_mix("pvsamp1", aL*random(0, 0.1), aR*random(0, 0.1))
+ bus_mix("reverb1", aL*random(0, 0.1), aR*random(0, 0.1))
+ bus_mix("master", aL, aR)
+endin
+*/
+
+#end
diff --git a/site/app/partialemergence/instruments_idiophone.inc b/site/app/partialemergence/instruments_idiophone.inc new file mode 100644 index 0000000..f939ad9 --- /dev/null +++ b/site/app/partialemergence/instruments_idiophone.inc @@ -0,0 +1,707 @@ +#ifndef INC_MUSICBOX_INSTR
+#define INC_MUSICBOX_INSTR ##
+/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
+
+ Partial Emergence
+ by Richard Knight 2022
+
+ Installation submission for the International Csound Conference 2022
+
+ Idiophone instruments
+
+* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
+
+#include "/soundxdb.udo"
+#include "/array_tools.udo"
+#include "/sequencing_melodic.udo"
+#include "/sequencing_melodic_portamento.udo"
+#include "/bussing.udo"
+#include "/frequency_tools.udo"
+#include "/instrument_portchord.udo"
+#include "/instrument_gchord1.udo"
+#include "/wavetables.udo"
+
+
+; sound collections
+gicol_musicbox sounddb_getcollectionid "MusicBox"
+gicol_kalimba sounddb_getcollectionid "Kalimba"
+gicol_idiophone = gicol_musicbox
+gicol_idiophone_other = gicol_kalimba
+
+opcode idiophone_change, 0, 0
+ if (random(0, 1) >= 0.5) then
+ gicol_idiophone = gicol_musicbox
+ gicol_idiophone_other = gicol_kalimba
+ else
+ gicol_idiophone = gicol_kalimba
+ gicol_idiophone_other = gicol_musicbox
+ endif
+endop
+
+/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
+
+ Sample playback initiation instruments
+
+* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
+
+
+instr note_idiophone_randtime
+ ifileid, ipitchratio sounddb_mel_nearestnote gicol_idiophone, mel_randomnote()
+ ifn = gisounddb[ifileid][0]
+ idur = gisounddb[ifileid][2]
+ ;p3 = random(4, 8)
+
+ ipitch = round(random(1, 2)) * ipitchratio
+ ktime init random(0, idur)
+ aL, aR mincer a(port(ktime, 0.001, random(0, idur))), 1, ipitch, ifn, 0, 256 ;64
+
+ if (random:k(0, 1) > 0.1) then
+ ktime = random:k(0, idur)
+ endif
+
+
+ kamp linseg 1, p3*0.8, 1, p3*0.2, 0
+ aL *= kamp
+ aR *= kamp
+
+ if (random(0, 1) > 0.8) then
+ bus_mix("delay1", aL*random(0, 0.3), aR*random(0, 0.3))
+ endif
+
+ bus_mix("reverb1", aL*random(0.2, 0.8), aR*random(0.2, 0.8))
+
+ if (random(0, 1) > 0.5) then
+ bus_mix("pvsamp1", aL*0.6, aR*0.6)
+ endif
+
+ bus_mix("master", aL, aR)
+endin
+
+
+/*
+ Idiophone chord
+
+ p4 one note (0 = play one note, 1 = play chord)
+*/
+instr phrase_idiophone1
+ ionenote = p4
+
+ if (ionenote == 1) then
+ knote init mel_randomnote() + (round(random(-2, 4)) * 12)
+ endif
+
+ if (random(0, 1) > 0.5) then
+ ifreqstart = random(10, 30)
+ ifreqend = random(2, 15)
+ else
+ ifreqstart = random(2, 10)
+ ifreqend = random(10, 30)
+ endif
+ kfreq linseg ifreqstart, p3, ifreqend
+ kamp linseg 0, p3*0.1, 1, p3*0.8, 1, p3*0.1, 0
+
+ ktrig metro kfreq
+ if (ktrig == 1) then
+ if (ionenote != 1) then
+ knote = mel_randomnote:k() + (round:k(random:k(-2, 4)) * 12)
+ endif
+ schedulek("note_idiophone1", random:k(0, 0.1), 0.1, min:k(knote, 127), kamp*2)
+ endif
+endin
+
+
+/*
+ Idiophone chord using portamento note frequencies
+
+ p4 one note (0 = play one note, 1 = play chord)
+*/
+instr phrase_idiophone2
+ ionenote = p4
+ ilen = mel_length() * random(1, 10)
+ p3 = ilen
+
+ if (ionenote == 1) then
+ itlen = table:i(0, gimel_current_notes)
+ index = round(random(1, itlen-1))
+ kindex init index
+ knote init table(index, gimel_current_notes)
+ knoteaugment init (round(random(-2, 4)) * 12)
+ endif
+
+ kfreq linseg random(20, 60), ilen, random(2, 10)
+
+ kamp linseg 1, p3, 0
+ if (random(0, 1) > 0.5) then
+ kamp = 1-kamp
+ endif
+
+ ktrig metro kfreq
+ if (ktrig == 1) then
+ if (ionenote != 1) then
+ klen = table:k(0, gimel_current_notes)
+ kindex = round:k(random:k(1, klen-1))
+ knote = table:k(kindex, gimel_current_notes)
+ knoteaugment = (round:k(random:k(-2, 4)) * 12)
+ endif
+
+ kportfreq = table:k(kindex-1, gimel_freqs)
+ kportamp = table:k(kindex-1, gimel_amps)
+
+ if (kportfreq != cpsmidinn:k(knote)) then
+ kscale = cpsmidinn:k(knote) / kportfreq
+ else
+ kscale = 1
+ endif
+ schedulek("note_idiophone2", random:k(0, 0.1), 1, min:k(knote+knoteaugment, 127), kamp*kportamp, kscale)
+ endif
+endin
+
+
+/*
+ Stretch idiophone chord
+
+ p4 mode (0 = flipflop loop, 1 = linear loop)
+*/
+instr phrase_idiophone_stretch1
+ imode = p4
+ ilen = p3
+ index = 1
+ inoteaugment = min((round(random(-1, 4)) * 12), 127)
+ while (index < table:i(0, gimel_current_notes)) do
+ inote = table(index, gimel_current_notes)
+ schedule("note_idiophonestretch1", 0, ilen, inote + inoteaugment, imode)
+ index += 1
+ od
+ turnoff
+endin
+
+
+/*
+ Stretch idiophone box chord
+
+ p4 mode (0 = flipflop loop, 1 = linear loop)
+*/
+instr phrase_idiophone_stretch2
+ imode = p4
+ ilen = p3
+ index = 1
+ while (index < table:i(0, gimel_current_notes)) do
+ inote = table(index, gimel_current_notes)
+ schedule("note_idiophonestretch2", 0, ilen, inote, imode, 0, 1) ; no low pass, out to note_idiophonestretch2 bus, mincer read
+ schedule("note_idiophonestretch2", 0, ilen, inote-12, imode, 1, 0) ; low pass, master out, sndwarp read
+ index += 1
+ od
+ turnoff
+endin
+
+
+instr phrase_idiophone_stretch3
+ ksendDelay1 init 0
+ ksendReverb1 init 0.3
+ ksendPV1 init 0
+ kampx4 init 0
+ kamp linsegr 0, 0.5, 1, p3-0.5, 1, 1, 0
+
+ ; cpu saving: first arg 0 = sndwarp, 1 = mincer
+ aL1, aR1 portchord_sound gicol_idiophone, 0, 0.5, 512
+ aL2, aR2 portchord_sound gicol_idiophone, 0, 1, 1024
+ aL3, aR3 portchord_sound gicol_idiophone, 0, 2, 512
+
+ aL = (aL3 * portk(kampx4, 2) + (aL1 + aL2)) * kamp
+ aR = (aR3 * portk(kampx4, 2) + (aR1 + aR2)) * kamp
+
+ kchangemetro = metro(0.2)
+ if (kchangemetro == 1) then
+ if (random:k(0, 1) > 0.6) then
+ ksendDelay1 = random:k(0, 0.8)
+ endif
+
+ if (random:k(0, 1) > 0.6) then
+ ksendReverb1 = random:k(0.3, 0.8)
+ endif
+
+ if (random:k(0, 1) > 0.6) then
+ ksendPV1 = random:k(0, 0.8)
+ endif
+
+ if (random:k(0, 1) > 0.6) then
+ kampx4 = random:k(0, 1.5)
+ endif
+ endif
+
+ ksendDelay1p = port(ksendDelay1, 1)
+ ksendReverb1p = port(ksendReverb1, 1)
+ ksendPV1p = port(ksendPV1, 1)
+
+ bus_mix("delay1", aL*ksendDelay1p, aR*ksendDelay1p)
+ bus_mix("reverb1", aL*ksendReverb1p, aR*ksendReverb1p)
+ bus_mix("pvsamp1", aL*ksendPV1p, aR*ksendPV1p)
+ bus_mix("master", aL, aR)
+endin
+
+
+instr phrase_idiophone_stretch4
+ iamp = 0.5
+ klpf1 init 22050
+ klpf2 init 22050
+
+ ichangechance = random(0.1, 0.6)
+ icompressmode = 2 ; 0 = none ; 1 = harshwall ; 2 = normal
+ aL1, aR1 fnmi_gchord1 gicol_idiophone, 1, 3, icompressmode, ichangechance, 2, 0 ; 1 is mincer
+ aL2, aR2 fnmi_gchord1 gicol_idiophone, 1, 3, icompressmode, ichangechance, 1, 0
+
+ klpf1p port klpf1, 3
+ klpf2p port klpf2, 3
+ aL1 butterlp aL1, klpf1p
+ aR1 butterlp aR1, klpf1p
+ aL2 butterlp aL2, klpf2p
+ aR2 butterlp aR2, klpf2p
+ kchangemetro = metro(0.2)
+ if (kchangemetro == 1) then
+ if (random:k(0, 1) > 0.6) then
+ klpf1 = random:k(400, 22050)
+ endif
+
+ if (random:k(0, 1) > 0.6) then
+ klpf2 = random:k(400, 22050)
+ endif
+ endif
+
+ aL = (aL1 + aL2) * iamp
+ aR = (aR1 + aR2) * iamp
+
+
+ bus_mix("master", aL, aR)
+ bus_mix("reverb1", aL*0.4, aR*0.4)
+ bus_mix("pvsamp1", aL*0.1, aR*0.1)
+endin
+
+
+/*
+ Play a short glissando, possibly ascending or descending
+*/
+instr phrase_idiophone_gliss1
+ iamp = p4
+ ilen = table:i(0, gimel_current_notes)
+ itime = 0
+ imultreal = 1
+ imaxmult = 6
+ iascending = round(random(0, 1))
+ if (iascending == 1) then
+ iincrement = 1
+ istartindex = 1
+ imult = 1
+ else
+ iincrement = -1
+ istartindex = ilen
+ imult = imaxmult
+ endif
+
+ while (imultreal <= imaxmult) do
+ indexreal = 1
+ index = istartindex
+ while (indexreal < ilen) do
+ inote = (table:i(index, gimel_current_notes)-12)+(12*imult)
+ if (inote >= 127 || inote <= 0) then
+ goto complete
+ endif
+ schedule("note_idiophone1", itime, 0.1, inote, iamp, gicol_idiophone_other)
+ itime += random(0.05, 0.1)
+ indexreal += 1
+ index += iincrement
+ od
+ imult += iincrement
+ imultreal += 1
+ od
+complete:
+ turnoff
+endin
+
+
+/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
+
+ Transition instruments
+
+* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
+
+
+instr transition_idiophone_randtime
+ iriseratio = p4
+ kamp expseg 0.00001, p3*iriseratio, 1, p3*(1-iriseratio), 0.00001
+ ifileid, ipitchratio sounddb_mel_nearestnote gicol_idiophone_other, mel_randomnote()
+ ifn = gisounddb[ifileid][0]
+ idur = gisounddb[ifileid][2]
+
+ ipitch = round(random(1, 2)) * ipitchratio
+ ktime init random(0, idur)
+ aL, aR mincer a(port(ktime, 0.001, random(0, idur))), 1, ipitch, ifn, 0, 256 ;64
+
+ if (random:k(0, 1) > 0.1) then
+ ktime = random:k(0, idur)
+ endif
+
+ aL *= kamp * 3
+ aR *= kamp * 3
+
+ if (random(0, 1) > 0.8) then
+ bus_mix("delay1", aL*random(0, 0.3), aR*random(0, 0.3))
+ endif
+
+ bus_mix("reverb1", aL*random(0.4, 0.8), aR*random(0.4, 0.8))
+
+ if (random(0, 1) > 0.5) then
+ bus_mix("pvsamp1", aL*0.6, aR*0.6)
+ endif
+
+ bus_mix("master", aL, aR)
+endin
+
+
+instr transition_idiophone_gliss1
+ iriseratio = p4
+ kamp expseg 0.00001, p3*iriseratio, 1, p3*(1-iriseratio), 0.00001
+ kmetro metro 20
+ kmult init 0
+ kincrement init 1
+ kindex init 1
+
+ if (kmetro == 1) then
+ knote = min:k((table:k(kindex, gimel_current_notes))+(12*kmult), 127)
+ schedulek("note_idiophone1", random:k(0, 0.1), 0.1, knote, kamp*3.5, gicol_idiophone_other)
+
+ kmaxnotes = table:k(0, gimel_current_notes)
+ if ((kindex < kmaxnotes - 1 && kincrement == 1) || (kindex > 1 && kincrement == -1)) then
+ kindex += kincrement
+ else
+ kindex = (kincrement == 1) ? 1 : kmaxnotes - 1
+ kmult += kincrement
+ if (kmult >= 4) then
+ kmult = 4
+ kincrement = -1
+ elseif (kmult < 0) then
+ kmult = 0
+ kincrement = 1
+ endif
+ endif
+
+ endif
+endin
+
+
+instr transition_idiophone_stretch1
+ iriseratio = p4
+ kamp expseg 0.00001, p3*iriseratio, 1, p3*(1-iriseratio), 0.00001
+
+ inotestart = mel_randomnote()
+ inoteend = mel_randomnote()
+
+ if (random(0, 1) >= 0.5) then
+ inotestart += 12
+ endif
+
+ if (random(0, 1) >= 0.5) then
+ inoteend += 12
+ endif
+
+
+ ifileid, ipitchratio sounddb_mel_nearestnote gicol_idiophone_other, inotestart
+ ifn = gisounddb[ifileid][0]
+ idur = gisounddb[ifileid][2]
+
+ istart = random(0.01, 0.1)
+ iend = random(istart+0.05, 0.3)
+ atime = abs(oscil(iend-istart, random(0.001, 0.1), gifnSine, random(0, 1)))
+ atime *= idur
+ apitchratio line ipitchratio, p3, (ipitchratio * (cpsmidinn(inoteend) / cpsmidinn(inotestart)))
+
+ isndwarpadjust = (ftsr(ifn) / sr) ; adjustment for sndwarp required
+ aL, aR sndwarpst kamp, atime, apitchratio*isndwarpadjust, ifn, istart, 4096, 128, 2, gifnHalfSine, 1
+
+ bus_mix("reverb1", aL*random(0, 0.8), aR*random(0, 0.8))
+ bus_mix("pvsamp1", aL*random(0, 0.2), aR*random(0, 0.2))
+ bus_mix("master", aL*1.7, aR*1.7)
+endin
+
+
+/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
+
+ Sample playback note instruments
+
+* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
+
+
+/*
+ Play idiophone note with stochastic transforms and sends
+
+ p4 midi note number
+ p5 amplitude (0 to 1)
+ p6 optional collection, defaults to gicol_idiophone
+*/
+instr note_idiophone1
+ inote = p4
+ iamp = p5 * 0.2
+ icollection = (p6 == 0) ? gicol_idiophone : p6
+ iamp *= random(0.6, 1)
+ ifileid, ipitchratio sounddb_mel_nearestnote icollection, inote
+
+ if (active:i(p1) < 50 && (abs(ipitchratio) > 1.8 || random(0, 1) > 0.8)) then
+ iloscilratio = 1
+ idopvs = 1
+ else
+ iloscilratio = ipitchratio
+ idopvs = 0
+ endif
+
+ ifn = gisounddb[ifileid][0]
+ idur = gisounddb[ifileid][2]
+ p3 = idur / iloscilratio
+ kamp linseg iamp, p3*0.6, iamp, p3*0.4, 0
+ ;ktime line random(0, 0.2), p3, p3
+ ;aL, aR sndwarpst kamp, ktime, iloscilratio, isound[0], 0, 441*random(1, 100), 44*random(1, 10), 4, gifnHalfSine, 1
+ aL, aR loscil kamp, iloscilratio, ifn, 1
+
+ if (idopvs == 1) then
+ if (random(0, 1) > 0.75) then
+ ipitchratio *= pow(2, int(random(1, 4)))
+ endif
+ ir = 512
+ fL1 pvsanal aL, ir, ir/2, ir, 1
+ fR1 pvsanal aR, ir, ir/2, ir, 1
+ fL2 pvscale fL1, ipitchratio
+ fR2 pvscale fR1, ipitchratio
+ aL pvsynth fL2
+ aR pvsynth fR2
+ endif
+
+ ipan = random(0, 1)
+ aL *= ipan
+ aR *= (1-ipan)
+
+ if (random(0, 1) > 0.6) then
+ aL pareq aL, random(100, 4000), random(0.3, 1.1), 0.7
+ aR pareq aR, random(100, 4000), random(0.3, 1.1), 0.7
+ endif
+
+ if (random(0, 1) > 0.9) then
+ bus_mix("delay1", aL*random(0.1, 0.4), aR*random(0.1, 0.4))
+ endif
+
+ if (random(0, 1) > 0.8) then
+ ;krenv linseg 0, p3*0.1, 1, p3*0.8, 1, p3*0.1, 0
+ bus_mix("reverb1", aL*random(0.1, 0.7), aR*random(0.1, 0.7))
+ endif
+
+ if (random(0, 1) > 0.5) then
+ bus_mix("pvsamp1", aL*random(0.5, 0.8), aR*random(0.5, 0.8))
+ endif
+
+ bus_mix("master", aL, aR)
+
+endin
+
+
+
+
+/*
+ Play idiophone note with stochastic transforms and sends
+
+ p4 midi note number
+ p5 amplitude (0 to 1)
+ p6 pitchscale: amount to scale pitch by (for portamento augmentation)
+*/
+instr note_idiophone2
+ inote = p4
+ iamp = p5 * 0.2
+ ipitchscale = p6
+
+ iamp *= random(0.6, 1)
+ kamp linseg iamp, p3*0.6, iamp, p3*0.4, 0
+ ifileid, ipitchratio sounddb_mel_nearestnote gicol_idiophone, inote
+
+ kpitchratio init ipitchratio * ipitchscale
+
+ kpitchenv = abs:k(oscil:k(random(0.001, 0.01), random(0.1, 4), gifnSine, random(0, 1))) + 1
+ kpitchratio += kpitchenv
+
+ if (kpitchratio > 1.8 || random(0, 1) > 0.8) then
+ kloscilratio init 1
+ idopvs = 1
+ else
+ kloscilratio = kpitchratio
+ idopvs = 0
+ endif
+
+ ifn = gisounddb[ifileid][0]
+ idur = gisounddb[ifileid][2]
+
+ p3 = idur
+ ;ktime line random(0, 0.2), p3, p3
+ ;aL, aR sndwarpst kamp, ktime, iloscilratio, isound[0], 0, 441*random(1, 100), 44*random(1, 10), 4, gifnHalfSine, 1
+ aL, aR loscil kamp, kloscilratio, ifn, 1
+
+ if (idopvs == 1) then
+ if (random(0, 1) > 0.5) then
+ kpitchratio *= pow(2, int(random(1, 4)))
+ endif
+ ir = 512
+ fL1 pvsanal aL, ir, ir/4, ir, 1
+ fR1 pvsanal aR, ir, ir/4, ir, 1
+ fL2 pvscale fL1, kpitchratio
+ fR2 pvscale fR1, kpitchratio
+ aL pvsynth fL2
+ aR pvsynth fR2
+ endif
+
+ ipan random 0, 1
+ aL *= ipan
+ aR *= (1-ipan)
+
+ if (random(0, 1) > 0.8) then
+ kdenv linseg 0, p3*0.1, 1, p3*0.8, 1, p3*0.1, 0
+ bus_mix("delay1", aL*kdenv, aR*kdenv)
+ endif
+
+ if (random(0, 1) > 0.8) then
+ krenv linseg 0, p3*0.1, 1, p3*0.8, 1, p3*0.1, 0
+ bus_mix("reverb1", aL*krenv, aR*krenv)
+ endif
+
+ if (random(0, 1) > 0.5) then
+ bus_mix("pvsamp1", aL, aR)
+ endif
+
+ bus_mix("master", aL, aR)
+
+endin
+
+
+
+/*
+ Play held/stretched idiophone note with stochastic transforms and sends
+
+ p4 midi note number
+ p5 mode (0 = forwards and reverse, 1 = linear forwards)
+*/
+instr note_idiophonestretch1
+ inote = p4
+ imode = p5
+ iamp = 0.6
+ kamp linseg 0, p3*0.2, iamp, p3*0.6, iamp, p3*0.2, 0
+ ifileid, ipitchratio sounddb_mel_nearestnote gicol_idiophone, inote
+ ifn = gisounddb[ifileid][0]
+ idur = gisounddb[ifileid][2]
+ ipitchratio *= (ftsr(ifn) / sr) ; adjustment for sndwarp required
+
+ if (imode == 0) then
+ istart = random(0, 0.3)
+ iend = random(istart+0.1, 0.5)
+ atime = abs(oscil(iend-istart, random(0.001, 0.1), gifnSine, random(0, 1)))
+ else
+ istart = 0
+ iend = random(0.1, 0.99)
+ atime = (phasor(random(10, 40)) * (iend-istart))
+ endif
+
+
+ if (random(0, 1) > 0.5) then
+ alfo = oscil(random(0.0001, 0.0009), random(4, 10)) + 1
+ apitchratio = ipitchratio * alfo
+ else
+ apitchratio init ipitchratio
+ endif
+
+ atime *= idur
+
+ aL, aR sndwarpst kamp, atime, apitchratio, ifn, istart, 441*random(1, 100), 44*random(1, 10), 8, gifnHalfSine, 1
+
+ aL butterhp aL, 150
+ aR butterhp aR, 150
+
+ if (random(0, 1) > 0.5) then
+ atemp = aL
+ aL = aR
+ aR = atemp
+ endif
+
+ if (random(0, 1) > 0.2) then
+ krenv linseg 0, p3*0.1, 1, p3*0.8, 1, p3*0.1, 0
+ bus_mix("reverb1", aL*krenv, aR*krenv)
+ endif
+
+ if (random(0, 1) > 0.5) then
+ bus_mix("pvsamp1", aL, aR)
+ endif
+
+ bus_mix("master", aL, aR)
+endin
+
+
+
+
+instr note_idiophonestretch2
+ inote = p4
+ imode = p5
+ ilpmode = p6
+ ireadmode = p7 ; 0 = sndwarp, 1 = mincer
+ iamp = 0.4
+ kamp linseg 0, p3*0.2, iamp, p3*0.6, iamp, p3*0.2, 0
+ ifileid, ipitchratio sounddb_mel_nearestnote gicol_idiophone, inote
+ ifn = gisounddb[ifileid][0]
+ idur = gisounddb[ifileid][2]
+
+ if (imode == 0) then
+ istart = random(0.05, 0.2)
+ iend = random(istart+0.1, 0.8)
+ atime = abs(oscil(iend-istart, random(0.001, 0.1), gifnSine, random(0, 1)))
+ else
+ istart = 0
+ iend = random(0.1, 0.99)
+ atime = (phasor(random(10, 40)) * (iend-istart))
+ endif
+
+ if (random(0, 1) > 0.4) then
+ alfo = oscil(random(0.0001, 0.001), random(4, 10)) + 1
+ apitchratio = ipitchratio * alfo
+ else
+ apitchratio init 1
+ endif
+
+ atime *= idur
+
+ if (ireadmode == 0) then
+ isndwarpadjust = (ftsr(ifn) / sr) ; adjustment for sndwarp required
+ aL, aR sndwarpst kamp, atime, apitchratio*isndwarpadjust, ifn, istart, 4096, 128, 2, gifnHalfSine, 1
+ else
+ aL, aR mincer atime+istart, kamp, k(apitchratio), ifn, 0, 512
+ endif
+
+ ipan = random(0, 1)
+ aL *= (1-ipan)
+ aR *= (ipan)
+
+ aLh butterhp aL, 150
+ aRh butterhp aR, 150
+
+
+ if (random(0, 1) > 0.8) then
+ krenv linseg 0, p3*0.1, 1, p3*0.8, 1, p3*0.1, 0
+ bus_mix("reverb1", aLh*krenv, aRh*krenv)
+ endif
+
+ if (random(0, 1) > 0.7) then
+ bus_mix("pvsamp1", aLh, aRh)
+ endif
+
+ if (ilpmode == 0) then
+ bus_mix("note_idiophonestretch2", aLh, aRh)
+ elseif (ilpmode == 1) then
+ aL butterlp aL, 500
+ aR butterlp aR, 500
+ bus_mix("master", aL*0.8, aR*0.8)
+ endif
+endin
+
+
+
+
+#end
diff --git a/site/app/partialemergence/instruments_synthesis.inc b/site/app/partialemergence/instruments_synthesis.inc new file mode 100644 index 0000000..9053c11 --- /dev/null +++ b/site/app/partialemergence/instruments_synthesis.inc @@ -0,0 +1,108 @@ +#ifndef INC_SYNTHESIS_INSTR
+#define INC_SYNTHESIS_INSTR ##
+/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
+
+ Partial Emergence
+ by Richard Knight 2022
+
+ Installation submission for the International Csound Conference 2022
+
+ Synthesis instruments
+
+* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
+
+
+/*
+ Bass note 1
+*/
+instr note_bass1
+ index = (p4 == -1) ? random(0, 2) : p4
+ kfreq table index, gimel_freqs
+ kfreq *= 0.25
+ kamp table index, gimel_amps
+ kenv linseg 0, p3*0.01, 1, p3*0.99, 1
+ kamp *= kenv * 0.19
+
+ aphs1 phasor kfreq/2
+ aphs2 phasor kfreq/2
+ koda = abs(oscil(random(0, 2), random(0, 1)))
+ a1 tablei aphs1, gifnSine, 1, 0, 1
+
+ av1L = abs:a(oscil:a(3, 0.1))
+ aL tablei (aphs2+a1)+av1L+koda, gifnSine, 1, 0, 1
+ av1R = abs:a(oscil:a(4, 0.05))
+ aR tablei (aphs2+a1)+av1R+koda, gifnSine, 1, 0, 1
+ kfi linseg 0, p3*0.2, 1, p3*0.8, 1
+
+ ilpfreq = random(100, 1000)
+ aL butterlp aL, ilpfreq
+ aR butterlp aR, ilpfreq
+
+ if (random(0, 1) > 0.4) then
+ kamp *= abs:k(oscil:k(0.9, random(0.01, 0.1))) + 0.1
+ endif
+
+ bus_mix("reverb1", aL*kamp*0.7, aR*kamp*0.7)
+ bus_mix("master", aL*kamp, aR*kamp)
+endin
+
+
+
+
+opcode fmsxosc, a, k
+ kfreq xin
+ ifn = gifnSine
+ kfreqoffset = abs:k(oscil:k(1, 0.001))
+
+ aoda = abs:a(oscil:a(random(0.01, 1), random(0.001, 1)))
+ aphs1 phasor kfreq
+ aphs2 phasor kfreq + kfreqoffset
+ a1 tablei aphs1, ifn, 1, 0, 1
+ a2 tablei aphs2, ifn, 1, 0, 1
+ av = abs:a(oscil:a(0.1, 0.01, gifnSine, random(0, 1)))
+ aa1 tablei (aphs1+a1)+av+aoda, gifnSine, 1, 0, 1
+ aa2 tablei (aphs2+a2)+av+aoda, gifnSine, 1, 0, 1
+
+ adelt = abs:a(oscil:a(50, 0.005))
+ aa1 vdelay aa1, adelt, 50
+ xout (aa1 + aa2)
+endop
+
+
+instr note_bass2
+ index = p4 + 1
+ ifreq = cpsmidinn(tab_i(index, gimel_current_notes))
+
+ ifreq *= 0.125
+
+
+ if (random(0, 1) < 0.5) then
+ ifreq *= 0.5
+ endif
+
+ aL fmsxosc ifreq
+ aR fmsxosc ifreq
+
+ kamp = abs:k(oscil:k(1, random(0.005, 0.01), gifnSine, random(0, 0.5)))
+ klpf = abs:k(oscil:k(6000, random(0.009, 0.05), gifnSine, 0.2)) + 100
+
+ aL = butterlp(aL*kamp, klpf)
+ aR = butterlp(aR*kamp, klpf)
+
+ aL pareq aL, 100, 0.1, 0.7
+ aR pareq aR, 100, 0.1, 0.7
+
+ kenv linseg 0, p3*0.1, 1, p3*0.9, 0
+
+ if (random(0, 1) > 0.4) then
+ kenv *= abs:k(oscil:k(0.9, random(0.01, 0.1))) + 0.1
+ endif
+
+ aL *= 0.19 * kenv
+ aR *= 0.19 * kenv
+
+ bus_mix("master", aL, aR)
+endin
+
+
+#end
diff --git a/site/app/partialemergence/instruments_water.inc b/site/app/partialemergence/instruments_water.inc new file mode 100644 index 0000000..bf38576 --- /dev/null +++ b/site/app/partialemergence/instruments_water.inc @@ -0,0 +1,240 @@ +#ifndef INC_WATER_INSTR
+#define INC_WATER_INSTR ##
+/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
+
+ Partial Emergence
+ by Richard Knight 2022
+
+ Installation submission for the International Csound Conference 2022
+
+ Water instruments
+
+* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
+
+#include "/soundxdb.udo"
+#include "/array_tools.udo"
+#include "/sequencing_melodic.udo"
+#include "/sequencing_melodic_portamento.udo"
+#include "/bussing.udo"
+#include "/frequency_tools.udo"
+#include "/wavetables.udo"
+
+; sound collections
+gisnd_waterpaddling[] sounddb_getcollection "Water.Paddling"
+gisnd_waterdrop[] sounddb_getcollection "Water.Droplet"
+
+
+instr play_waterpaddling1
+ ifileid = arr_random(gisnd_waterpaddling)
+ ifn = gisounddb[ifileid][0]
+ idur = gisounddb[ifileid][2]
+
+ kfreqshift init -100
+ ipitch = random(0.5, 1.2)
+ ktime init random(0, idur)
+ aL, aR mincer a(port(ktime, 0.1, random(0, idur))), 1, ipitch, ifn, 0, pow(2, round(random(4, 7))) ;64
+
+ aL, aR freqshift1 aL, aR, port(kfreqshift, 0.2)
+
+ if (random:k(0, 1) > 0.2) then
+ ktime = random:k(0, idur)
+ endif
+
+ if (random:k(0, 1) > 0.2) then
+ kfreqshift = random(-1000, -100)
+ endif
+
+ kamp linseg 1, p3*0.8, 1, p3*0.2, 0
+ aL *= kamp * 1.8
+ aR *= kamp * 1.8
+
+ if (random(0, 1) > 0.8) then
+ bus_mix("delay1", aL*random(0, 0.3), aR*random(0, 0.3))
+ endif
+
+ if (random(0, 1) > 0.3) then
+ bus_mix("reverb1", aL*random(0.2, 0.8), aR*random(0.2, 0.8))
+ endif
+
+ if (random(0, 1) > 0.5) then
+ bus_mix("pvsamp1", aL*0.6, aR*0.6)
+ endif
+
+ bus_mix("master", aL, aR)
+endin
+
+
+instr _phrase_waterbubbler1_item
+ ipitch = p4
+ iamp = p5
+ ioutmain = p6
+ ifileid = arr_random(gisnd_waterdrop)
+ ifn = gisounddb[ifileid][0]
+ idur = gisounddb[ifileid][2]
+ p3 = idur / ipitch
+ kamp linseg 1, p3*0.8, 1, p3*0.2, 0
+ kamp *= iamp
+ aL, aR loscil kamp, ipitch, ifn, 1
+ aL, aR freqshift1 aL, aR, random(-1000, -400)
+ ipan = random(0, 1)
+
+ if (random(0, 1) > 0.5) then
+ aLr resony aL, table:k(0, gimel_freqs)*2, 4, 16, 10
+ aRr resony aL, table:k(0, gimel_freqs)*2, 4, 16, 10
+ aL balance aLr, aL
+ aR balance aRr, aR
+ aL dcblock aL
+ aR dcblock aR
+ endif
+
+
+ if (random(0, 1) > 0.8) then
+ bus_mix("delay1", aL*0.2, aR*0.2)
+ endif
+
+ if (random(0, 1) > 0.8) then
+ bus_mix("reverb1", aL*0.5, aR*0.5)
+ endif
+
+ if (random(0, 1) > 0.8) then
+ bus_mix("pvsamp1", aL, aR)
+ endif
+
+ Schannel = (ioutmain == 1) ? "main" : "phrase_waterbubbler"
+ bus_mix(Schannel, aL*(1-ipan), aR*ipan)
+endin
+
+
+instr phrase_waterbubbler1
+ ioutmain = p4
+ kamp linseg 0, p3*0.1, 1, p3*0.8, 1, p3*0.1, 0
+ iamp = random(0.25, 0.5)
+ kamp *= iamp
+ kfreq = abs:k(oscil:k(30, 0.01)) + 10
+ kmetro metro kfreq
+ if (kmetro == 1) then
+ schedulek("_phrase_waterbubbler1_item", random:k(0, 0.2), 1, random:k(0.8, 1.2), random:k(0.5, 1)*kamp, ioutmain)
+ endif
+endin
+
+
+instr note_drop1
+ ifileid = arr_random(gisnd_waterdrop)
+ ifn = gisounddb[ifileid][0]
+ idur = gisounddb[ifileid][2]
+ ipitch = random(0.6, 1.3)
+ p3 = idur / ipitch
+ aL, aR loscil 1, ipitch, ifn, 1
+ kamp linseg 1, p3*0.9, 1, p3*0.1, 0
+ iamp = random(0.7, 1)
+ ipan = random(0, 1)
+ aL *= kamp * iamp * ipan
+ aR *= kamp * iamp * (1-ipan)
+ bus_mix("pvsamp1", aL*random(0, 0.3), aR*random(0, 0.3))
+ bus_mix("reverb1", aL*random(0, 0.2), aR*random(0, 0.2))
+ bus_mix("master", aL, aR)
+endin
+
+
+instr _phrase_droproll1_item
+ ifileid = arr_random(gisnd_waterdrop)
+ ifn = gisounddb[ifileid][0]
+ idur = gisounddb[ifileid][2]
+ ipitch = random(0.1, 1.3)
+ p3 = idur / ipitch
+ aL, aR loscil 1, ipitch, ifn, 1
+ kamp linseg 1, p3*0.9, 1, p3*0.1, 0
+ ipan = random(0, 1)
+ aL *= kamp * ipan
+ aR *= kamp * (1-ipan)
+ bus_mix("droproll1_item", aL, aR)
+ bus_mix("pvsamp1", aL*random(0, 0.5), aR*random(0, 0.5))
+endin
+
+instr phrase_droproll1
+ iamp = p4
+ ifreq1 = random(0.00001, 20)
+ kmetrofreq expseg ifreq1, p3, 19.99 - ifreq1
+ klpf linseg random(4000, 22050), p3, random(4000, 22050)
+ kamp linseg 0, p3*0.3, 1, p3*0.4, 1, p3*0.3, 0
+ kmetro metro kmetrofreq
+ if (kmetro == 1) then
+ schedulek("_phrase_droproll1_item", random:k(0, 0.2), 1)
+ endif
+
+ aL, aR bus_read "droproll1_item"
+ aL butterlp aL, klpf
+ aR butterlp aR, klpf
+ aL *= kamp * 0.7 * iamp
+ aR *= kamp * 0.7 * iamp
+ bus_mix("reverb1", aL*0.2, aR*0.2)
+ bus_mix("master", aL, aR)
+endin
+
+
+instr transition_droplets1
+ iriseratio = p4
+ kamp expseg 0.00001, p3*iriseratio, 1, p3*(1-iriseratio), 0.00001
+ kmetro metro 30
+ if (kmetro == 1) then
+ schedulek("_phrase_droproll1_item", random:k(0, 0.2), 1)
+ endif
+
+ aL, aR bus_read "droproll1_item"
+ aL *= kamp * 2.5
+ aR *= kamp * 2.5
+ bus_mix("reverb1", aL*0.43, aR*0.43)
+ bus_mix("master", aL, aR)
+endin
+
+
+instr transition_waterbubbler1
+ ioutmain = p4
+ iriseratio = p4
+ kamp expseg 0.00001, p3*iriseratio, 1, p3*(1-iriseratio), 0.00001
+ kfreq = abs:k(oscil:k(30, 0.01)) + 10
+ kmetro metro kfreq
+ if (kmetro == 1) then
+ schedulek("_phrase_waterbubbler1_item", random:k(0, 0.2), 1, random:k(0.8, 1.2), random:k(0.5, 1)*kamp, 1)
+ endif
+endin
+
+
+instr phrase_dropstretch1
+ ireadpitch = p4
+ ido_reson = p5
+ ifades = p6
+ iresonfreqratio = p7
+ ifileid = arr_random(gisnd_waterdrop)
+ ifn = gisounddb[ifileid][0]
+ idur = gisounddb[ifileid][2]
+ istart = random(0, idur*0.2)
+ iend = random(idur*0.4, idur*0.8) ; 0.3, 0.4
+ atime = abs:a(oscil:a(iend-istart, random(0.001, 0.1), gifnSine, random(0, 1)))
+ kenv = abs:k(oscil:k(0.8, random(0.01, 0.1), gifnSine, random(0, 1))) + 0.2
+
+ aL, aR sndwarpst 1, atime, ireadpitch, ifn, istart, 441*random(1, 10), 44*random(1, 10), 8, gifnHalfSine, 1
+
+ if (ifades == 1) then
+ kamp linseg 0, p3*0.25, 1, p3*0.5, 1, p3*0.25, 0
+ else
+ kamp linsegr 1, p3, 1, 2, 0
+ endif
+ aL *= kamp * kenv
+ aR *= kamp * kenv
+
+ if (ido_reson == 1) then
+ aLr resony aL, table:k(0, gimel_freqs)*2*iresonfreqratio, 2, 16, 10
+ aRr resony aR, table:k(1, gimel_freqs)*2*iresonfreqratio, 2, 16, 10 ; *4*
+ aL balance butterhp(aLr, 50), aL
+ aR balance butterhp(aRr, 50), aR
+ endif
+
+ aL pareq aL, 1000, 0.4, 0.75
+ aR pareq aR, 1000, 0.4, 0.75
+
+ bus_mix("master", aL, aR)
+endin
+
+
+#end
diff --git a/site/app/partialemergence/partialemergence.csd b/site/app/partialemergence/partialemergence.csd new file mode 100644 index 0000000..5be063c --- /dev/null +++ b/site/app/partialemergence/partialemergence.csd @@ -0,0 +1,238 @@ +<CsoundSynthesizer>
+<CsOptions>
+-odac
+-m0
+-d
+</CsOptions>
+<CsLicence>
+Creative Commons Attribution-NonCommercial-ShareAlike (CC BY-NC-SA)
+</CsLicence>
+<CsShortLicence>
+2
+</CsShortLicence>
+<CsInstruments>
+/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
+
+ Partial Emergence: Web port
+ by Richard Knight 2022, 2025
+
+ Installation submission for the International Csound Conference 2022
+
+* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
+
+sr = 44100
+ksmps = 128
+nchnls = 2
+0dbfs = 2.5
+seed 0
+
+; set DEBUG to enable lag detection and linear progression
+;#define DEBUG ##
+
+; initial progression; macro used by sequencing_melodic_persistence.udo
+#define MEL_INITPATH #/progression1.fnmlmel#
+
+; SONICS includes
+#include "/soundexport.xdb" ; sound database extract
+#include "/soundxdb.udo"
+#include "/array_tools.udo"
+#include "/sequencing.udo"
+#include "/sequencing_melodic.udo"
+#include "/sequencing_melodic_portamento.udo"
+#include "/sequencing_melodic_persistence.pe.udo"
+#include "/bussing.udo"
+#include "/instrument_sineblips.udo"
+#ifdef DEBUG
+#include "/lagdetect.udo"
+#endif
+
+; installation specific includes
+#include "/effects_global.inc"
+#include "/instruments_water.inc"
+#include "/instruments_idiophone.inc"
+#include "/instruments_hybrid.inc"
+#include "/instruments_synthesis.inc"
+#include "/sequence_sections.inc"
+
+
+/*
+ Sections:
+ Array index of dimension 1 corresponds to "sequencer_s%d" instrument, where %d is the index
+
+ Array index of dimension 2:
+ 0 duration minimum
+ 1 duration maximum
+ 2 follow section A
+ 3 follow section A/B chance ratio (0 = always A, 1 = always B)
+ 4 action section 2
+*/
+gisections[][] init 18, 5
+
+#ifdef DEBUG
+gisections fillarray\ ; test linear progression
+ 60, 90, 1, 0.3, 1 ,\ ; 0 idiophone single notes
+ 60, 90, 2, 0.3, 2 ,\ ; 1 idiophone chords, alternate mel sections with stretch chords
+ 60, 90, 3, 0.5, 3 ,\ ; 2 bass, idiophone single notes
+ 60, 90, 4, 0.2, 4 ,\ ; 3 bass, idiophone chords
+ 60, 90, 5, 0.3, 5 ,\ ; 4 resonated drop stretch and idiophone notes/stretch
+ 60, 90, 6, 0.3, 6 ,\ ; 5 resonated drop stretch
+ 60, 90, 7, 0.5, 7 ,\ ; 6 tuned drops, stretch chords
+ 60, 90, 8, 0.7, 8 ,\ ; 7 tuned drops, stretch chords more prominent
+ 60, 90, 9, 0.7, 9 ,\ ; 8 drop stretch
+ 60, 90, 10, 0.5, 10,\ ; 9 low portamento chords
+ 60, 90, 11, 0.5, 11,\ ; 10 glitch chord, sines, drops
+ 60, 90, 12, 0.5, 12,\ ; 11 water drops, low minimal chords, resonated drops, stretch water
+ 60, 90, 13, 0.5, 13,\ ; 12 minimal, resonated drops
+ 60, 90, 14, 0.5, 14,\ ; 13 reson drops buildup
+ 60, 90, 15, 0.5, 15,\ ; 14 low drop resonated portamento chords
+ 60, 90, 16, 0.2, 16,\ ; 15 water to idiophone
+ 60, 90, 17, 0.5, 17,\ ; 16 idiophone/drop resonated chords, slower
+ 30, 60, 0, 0.5, 0 ; 17 water paddling hits, resonated drop stretch
+
+#else
+gisections fillarray\ ; live progression
+ 43 ,95 ,1 ,0.2 ,2 ,\ ; 0 idiophone single notes
+ 63 ,125 ,2 ,0.3 ,12 ,\ ; 1 idiophone chords, alternate mel sections with stretch chords
+ 42 ,110 ,3 ,0.2 ,4 ,\ ; 2 bass, idiophone single notes
+ 76 ,134 ,4 ,0.2 ,5 ,\ ; 3 bass, idiophone chords
+ 61 ,92 ,5 ,0.15 ,13 ,\ ; 4 resonated drop stretch and idiophone notes/stretch
+ 57 ,93 ,11 ,0.2 ,6 ,\ ; 5 resonated drop stretch
+ 47 ,105 ,5 ,0.8 ,7 ,\ ; 6 tuned drops, stretch chords
+ 61 ,101 ,14 ,0.7 ,8 ,\ ; 7 tuned drops, stretch chords more prominent
+ 67 ,105 ,5 ,0.8 ,9 ,\ ; 8 drop stretch
+ 53 ,113 ,13 ,0.4 ,1 ,\ ; 9 low portamento chords
+ 65 ,124 ,15 ,0.3 ,0 ,\ ; 10 glitch chord, sines, drops
+ 58 ,113 ,8 ,0.5 ,12 ,\ ; 11 water drops, low minimal chords, resonated drops, stretch water
+ 81 ,153 ,15 ,0.5 ,14 ,\ ; 12 minimal, resonated drops
+ 69 ,112 ,17 ,0.8 ,10 ,\ ; 13 reson drops buildup
+ 62 ,103 ,3 ,0.4 ,9 ,\ ; 14 low drop resonated portamento chords
+ 54 ,101 ,16 ,0.2 ,5 ,\ ; 15 water to idiophone
+ 71 ,116 ,17 ,0.4 ,4 ,\ ; 16 idiophone/drop resonated chords, slower
+ 33 ,66 ,6 ,0.5 ,7 ; 17 water paddling hits, resonated drop stretch
+#endif
+
+; initial section
+ginitsection = 0
+
+
+; possible melodic progressions
+gSprogressions[] fillarray "progression1.fnmlmel", "progression2.fnmlmel", "progression3.fnmlmel"
+gicurrentprogression init 0
+
+
+/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
+
+ Control instruments
+
+* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
+
+
+/*
+ Call all performance instruments accordingly
+*/
+instr boot
+ gkseq_tempo init 100
+ SbootInstrs[] fillarray "audio_output", "sequencer_main", "global_delay1", "global_delay2", "global_reverb1", "global_pvsamp1"
+ index = 0
+ while (index < lenarray(SbootInstrs)) do
+ schedule(SbootInstrs[index], 0, -1)
+ index += 1
+ od
+ gimel_portamento_beatratio = 4
+ turnoff
+endin
+
+
+
+/*
+ Master output mastering/processing
+*/
+instr audio_output
+ ; gkmastervolume
+ aL, aR bus_read "master"
+ iexcite = 1
+ aL += (exciter(aL, 3000, 20000, 10, 10)*iexcite)
+ aR += (exciter(aR, 3000, 20000, 10, 10)*iexcite)
+ bus_masterout(aL, aR)
+endin
+
+
+/*
+ Set random melodic progression
+*/
+instr set_progression
+ index = int(random(0, lenarray(gSprogressions)))
+
+ ; only set if it differs from current
+ if (index != gicurrentprogression) then
+ gicurrentprogression = index
+ Sprogression = gSprogressions[index]
+ prints sprintf("Progression change: %s\n", Sprogression)
+ subinstrinit "mel_loadstate_fs", strcat("/", Sprogression)
+ endif
+ turnoff
+endin
+
+
+
+/*
+ Main section sequencer
+*/
+instr sequencer_main
+
+ ; set up initial instrument at init time
+ initduration = random(gisections[ginitsection][0], gisections[ginitsection][1])
+ ksection init ginitsection
+ ksectiontime init initduration
+ schedule(sprintf("sequencer_s%d", ginitsection), 0, initduration)
+ prints sprintf("Section %d\n", ginitsection)
+
+ ; react to section changes at k-rate
+ kabstime timeinsts
+ klaststarttime init 0
+
+ ; if current section time is up, schedule next
+ if (kabstime - klaststarttime >= ksectiontime) then
+
+ ; determine next section based on follow action threshold
+ kchance = random:k(0, 1)
+ if (kchance <= gisections[ksection][3]) then
+ ksection = gisections[ksection][4]
+ else
+ ksection = gisections[ksection][2]
+ endif
+
+ ; get duration between specified min and max
+ ksectiontime = random:k(gisections[ksection][0], gisections[ksection][1]) + random:k(0.5, 1)
+
+ ; schedule section subsequencer and print status
+ schedulek sprintfk("sequencer_s%d", ksection), 0, ksectiontime
+ printf "Section %d\n", ksection+random:k(1, 4), ksection
+
+ ; set a new chord progression if relevant
+ if (random:k(0, 1) >= 0.5) then
+ schedulek("set_progression", 0, 1)
+ endif
+
+ if (random:k(0, 1) > 0.5) then
+ seq_settempo(random:k(20, 100))
+ endif
+
+ klaststarttime = kabstime
+ endif
+
+#ifdef DEBUG
+ ; write lag detection report for debugging
+ if (lagdetect:k() == 1) then
+ fprintks "lagreport.txt", "Lag in section %d at %f\n", ksection, kabstime - klaststarttime
+ endif
+#endif
+
+endin
+
+</CsInstruments>
+<CsScore>
+f0 z
+i"boot" 0.5 1 ; delay to account for initial melodic progression load
+</CsScore>
+</CsoundSynthesizer>
\ No newline at end of file diff --git a/site/app/partialemergence/progression1.fnmlmel b/site/app/partialemergence/progression1.fnmlmel new file mode 100644 index 0000000..7ca446d --- /dev/null +++ b/site/app/partialemergence/progression1.fnmlmel @@ -0,0 +1,499 @@ +======= TABLE 181 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 181
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+34.000000
+32.000000
+33.000000
+3.000000
+35.000000
+26.000000
+60.000000
+30.000000
+40.000000
+37.000000
+21.000000
+45.000000
+0.000000
+---------END OF TABLE---------------
+======= TABLE 182 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 182
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+62.000000
+64.000000
+63.000000
+62.000000
+65.000000
+64.000000
+55.000000
+61.000000
+59.000000
+60.000000
+51.000000
+61.000000
+0.000000
+---------END OF TABLE---------------
+======= TABLE 183 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 183
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+16.000000
+16.000000
+16.000000
+16.000000
+16.000000
+16.000000
+5.000000
+6.000000
+5.000000
+6.000000
+7.000000
+6.000000
+0.000000
+---------END OF TABLE---------------
+======= TABLE 184 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 184
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+1.000000
+1.000000
+1.000000
+1.000000
+1.000000
+1.000000
+1.000000
+1.000000
+1.000000
+1.000000
+0.000000
+0.000000
+0.000000
+---------END OF TABLE---------------
+======= TABLE 185 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 185
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+1.000000
+2.000000
+3.000000
+1.000000
+3.000000
+0.000000
+0.000000
+1.000000
+1.000000
+0.000000
+1.000000
+1.000000
+0.000000
+---------END OF TABLE---------------
+======= TABLE 186 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 186
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+0.300030
+0.250025
+0.271427
+0.264326
+0.278528
+0.185719
+0.497453
+0.837786
+0.111774
+0.788161
+0.979394
+0.297689
+0.000000
+---------END OF TABLE---------------
+======= TABLE 187 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 187
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+1.000000
+1.000000
+1.000000
+1.000000
+1.000000
+1.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+---------END OF TABLE---------------
+======= TABLE 188 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 188
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+---------END OF TABLE---------------
+======= TABLE 189 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 189
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+0.988438
+0.803298
+0.267835
+0.115002
+0.595937
+0.194793
+0.411357
+0.076671
+0.079459
+0.619064
+0.151164
+0.298788
+0.000000
+---------END OF TABLE---------------
+======= TABLE 190 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 190
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+0.557413
+0.136986
+0.224130
+0.863673
+0.276111
+0.312208
+0.743491
+0.531141
+0.294368
+0.661400
+0.132212
+0.595441
+0.000000
+---------END OF TABLE---------------
+======= TABLE 191 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 191
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+0.537405
+0.751374
+0.839415
+0.150858
+0.332917
+0.607242
+0.670816
+0.179500
+0.587496
+0.202448
+0.185102
+0.186244
+0.000000
+---------END OF TABLE---------------
+======= TABLE 192 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 192
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+0.575499
+0.750085
+0.812289
+0.618174
+0.608552
+0.745880
+0.431868
+0.373672
+0.769305
+0.505552
+0.333007
+0.579707
+0.000000
+---------END OF TABLE---------------
+======= TABLE 180 size: 4 values ======
+flen: 4
+lenmask: 3
+lobits: 22
+lomask: 4194303
+lodiv: 0.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 4
+nchnls: 1
+fno: 180
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+3.000000
+4.000000
+0.000000
+0.000000
+0.000000
+---------END OF TABLE---------------
diff --git a/site/app/partialemergence/progression2.fnmlmel b/site/app/partialemergence/progression2.fnmlmel new file mode 100644 index 0000000..f923471 --- /dev/null +++ b/site/app/partialemergence/progression2.fnmlmel @@ -0,0 +1,499 @@ +======= TABLE 181 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 181
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+28.000000
+22.000000
+38.000000
+3.000000
+26.000000
+22.000000
+60.000000
+30.000000
+40.000000
+37.000000
+21.000000
+45.000000
+0.000000
+---------END OF TABLE---------------
+======= TABLE 182 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 182
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+62.000000
+60.000000
+64.000000
+59.000000
+60.000000
+62.000000
+55.000000
+61.000000
+59.000000
+60.000000
+51.000000
+61.000000
+0.000000
+---------END OF TABLE---------------
+======= TABLE 183 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 183
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+16.000000
+16.000000
+16.000000
+16.000000
+16.000000
+16.000000
+5.000000
+6.000000
+5.000000
+6.000000
+7.000000
+6.000000
+0.000000
+---------END OF TABLE---------------
+======= TABLE 184 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 184
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+1.000000
+1.000000
+1.000000
+1.000000
+1.000000
+1.000000
+1.000000
+1.000000
+1.000000
+1.000000
+0.000000
+0.000000
+0.000000
+---------END OF TABLE---------------
+======= TABLE 185 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 185
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+3.000000
+3.000000
+2.000000
+0.000000
+3.000000
+2.000000
+0.000000
+1.000000
+1.000000
+0.000000
+1.000000
+1.000000
+0.000000
+---------END OF TABLE---------------
+======= TABLE 186 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 186
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+0.207121
+0.235724
+0.335734
+0.221422
+0.328533
+0.350035
+0.497453
+0.837786
+0.111774
+0.788161
+0.979394
+0.297689
+0.000000
+---------END OF TABLE---------------
+======= TABLE 187 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 187
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+1.000000
+1.000000
+1.000000
+1.000000
+1.000000
+1.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+---------END OF TABLE---------------
+======= TABLE 188 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 188
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+---------END OF TABLE---------------
+======= TABLE 189 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 189
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+0.988438
+0.803298
+0.267835
+0.115002
+0.595937
+0.194793
+0.411357
+0.076671
+0.079459
+0.619064
+0.151164
+0.298788
+0.000000
+---------END OF TABLE---------------
+======= TABLE 190 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 190
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+0.557413
+0.136986
+0.224130
+0.863673
+0.276111
+0.312208
+0.743491
+0.531141
+0.294368
+0.661400
+0.132212
+0.595441
+0.000000
+---------END OF TABLE---------------
+======= TABLE 191 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 191
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+0.537405
+0.751374
+0.839415
+0.150858
+0.332917
+0.607242
+0.670816
+0.179500
+0.587496
+0.202448
+0.185102
+0.186244
+0.000000
+---------END OF TABLE---------------
+======= TABLE 192 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 192
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+0.575499
+0.750085
+0.812289
+0.618174
+0.608552
+0.745880
+0.431868
+0.373672
+0.769305
+0.505552
+0.333007
+0.579707
+0.000000
+---------END OF TABLE---------------
+======= TABLE 180 size: 4 values ======
+flen: 4
+lenmask: 3
+lobits: 22
+lomask: 4194303
+lodiv: 0.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 4
+nchnls: 1
+fno: 180
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+3.000000
+4.000000
+0.000000
+0.000000
+0.000000
+---------END OF TABLE---------------
diff --git a/site/app/partialemergence/progression3.fnmlmel b/site/app/partialemergence/progression3.fnmlmel new file mode 100644 index 0000000..13c3fb9 --- /dev/null +++ b/site/app/partialemergence/progression3.fnmlmel @@ -0,0 +1,499 @@ +======= TABLE 181 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 181
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+32.000000
+55.000000
+22.000000
+38.000000
+4.000000
+65.000000
+70.000000
+38.000000
+20.000000
+49.000000
+39.000000
+3.000000
+0.000000
+---------END OF TABLE---------------
+======= TABLE 182 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 182
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+62.000000
+60.000000
+61.000000
+62.000000
+68.000000
+60.000000
+49.000000
+65.000000
+48.000000
+70.000000
+56.000000
+67.000000
+0.000000
+---------END OF TABLE---------------
+======= TABLE 183 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 183
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+16.000000
+16.000000
+16.000000
+16.000000
+6.000000
+7.000000
+7.000000
+5.000000
+4.000000
+4.000000
+6.000000
+7.000000
+0.000000
+---------END OF TABLE---------------
+======= TABLE 184 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 184
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+1.000000
+1.000000
+2.000000
+3.000000
+1.000000
+0.000000
+0.000000
+1.000000
+0.000000
+0.000000
+1.000000
+0.000000
+0.000000
+---------END OF TABLE---------------
+======= TABLE 185 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 185
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+1.000000
+2.000000
+1.000000
+1.000000
+1.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+---------END OF TABLE---------------
+======= TABLE 186 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 186
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+0.307554
+0.357136
+0.707171
+0.728573
+0.084509
+0.169596
+0.885151
+0.288933
+0.202831
+0.941209
+0.984722
+0.862226
+0.000000
+---------END OF TABLE---------------
+======= TABLE 187 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 187
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+1.000000
+1.000000
+1.000000
+1.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+---------END OF TABLE---------------
+======= TABLE 188 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 188
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+0.000000
+---------END OF TABLE---------------
+======= TABLE 189 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 189
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+0.637370
+0.477515
+0.610804
+0.255917
+0.000580
+0.741288
+0.816668
+0.482911
+0.573710
+0.074436
+0.383590
+0.574237
+0.000000
+---------END OF TABLE---------------
+======= TABLE 190 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 190
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+0.434636
+0.374966
+0.983574
+0.458653
+0.134855
+0.340593
+0.568193
+0.225512
+0.393867
+0.265349
+0.197277
+0.143899
+0.000000
+---------END OF TABLE---------------
+======= TABLE 191 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 191
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+0.725425
+0.528734
+0.681142
+0.693358
+0.639010
+0.240893
+0.587257
+0.530698
+0.638681
+0.089535
+0.930179
+0.320513
+0.000000
+---------END OF TABLE---------------
+======= TABLE 192 size: 12 values ======
+flen: 12
+lenmask: -1
+lobits: 0
+lomask: 0
+lodiv: 1.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 12
+nchnls: 1
+fno: 192
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+0.427121
+0.874527
+0.221614
+0.615462
+0.492275
+0.271279
+0.723552
+0.246397
+0.027398
+0.670098
+0.345080
+0.875814
+0.000000
+---------END OF TABLE---------------
+======= TABLE 180 size: 4 values ======
+flen: 4
+lenmask: 3
+lobits: 22
+lomask: 4194303
+lodiv: 0.000000
+cvtbas: 0.000000
+cpscvt: 0.000000
+loopmode1: 0
+loopmode2: 0
+begin1: 0
+end1: 0
+begin2: 0
+end2: 0
+soundend: 0
+flenfrms: 4
+nchnls: 1
+fno: 180
+gen01args.gen01: 0.000000
+gen01args.ifilno: 0.000000
+gen01args.iskptim: 0.000000
+gen01args.iformat: 0.000000
+gen01args.channel: 0.000000
+gen01args.sample_rate: 44100.000000
+---------END OF HEADER--------------
+0.000000
+1.000000
+0.000000
+0.000000
+0.000000
+---------END OF TABLE---------------
diff --git a/site/app/partialemergence/sequence_sections.inc b/site/app/partialemergence/sequence_sections.inc new file mode 100644 index 0000000..b281a04 --- /dev/null +++ b/site/app/partialemergence/sequence_sections.inc @@ -0,0 +1,439 @@ +#ifndef INC_SECTION_SEQ
+#define INC_SECTION_SEQ ##
+/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
+
+ Partial Emergence
+ by Richard Knight 2022
+
+ Installation submission for the International Csound Conference 2022
+
+ Section subsequencers
+
+* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
+
+#include "/bussing.udo"
+#include "/instruments_water.inc"
+#include "/instruments_idiophone.inc"
+#include "/instruments_synthesis.inc"
+
+
+/*
+ Pause the melodic progression for the duration of the calling instrumnet
+*/
+opcode pause_melprogression, 0, 0
+ gkmel_pause = 1
+ if (lastcycle() == 1) then
+ gkmel_pause = 0
+ endif
+endop
+
+
+/*
+ Call an instrument for outward transition; p4 is passed as the rise ratio of total duration
+*/
+opcode transition_out, 0, S
+ Sinstrument xin
+ iduration = random(4, min(12, p3*0.5))
+ iriseratio = random(0.5, 0.9)
+ schedule(Sinstrument, p3 - (iduration * iriseratio), iduration, iriseratio)
+endop
+
+
+/*
+ Call an instrument for inward transition; p4 is passed as short duration for an almost immediate attack
+*/
+opcode transition_in, 0, S
+ Sinstrument xin
+ iduration = random(3, min(10, p3*0.25))
+ schedule(Sinstrument, 0, iduration, 0.03)
+endop
+
+
+instr sequencer_s0
+ transition_in("transition_idiophone_randtime")
+ imaxlen = p3
+ itime = 0
+ while (itime < imaxlen) do
+ idur = random(5, 10)
+ idur = (idur + itime > imaxlen) ? imaxlen - itime : idur
+ schedule("phrase_idiophone1", itime, idur, 1)
+ itime += random(idur*0.6, idur*0.8)
+ od
+ transition_out("transition_idiophone_stretch1")
+endin
+
+
+instr sequencer_s1
+ schedule("phrase_idiophone_stretch1", 0, i(gkseq_beattime) * i(gkmel_section_change_due), 0)
+ schedule("phrase_idiophone1", 0, i(gkseq_beattime) * i(gkmel_section_change_due), 1)
+
+ kdo init 0
+ if (gkmel_section_change == 1) then
+ klen = mel_length:k()
+ schedulek("phrase_idiophone_stretch1", 0, klen*random:k(1, 1.5), 0)
+
+ if (kdo == 0) then
+ schedulek("phrase_idiophone1", 0, klen*random:k(1, 1.3), 0) ; chords
+ kdo = 1
+ else
+ kdo = 0
+ endif
+ endif
+ transition_out("transition_idiophone_randtime")
+endin
+
+
+instr sequencer_s2
+
+ schedule("note_bass1", 0, p3, 0)
+ schedule("phrase_idiophone1", 0, i(gkseq_beattime) * i(gkmel_section_change_due), 1)
+
+ if (gkmel_section_change == 1) then
+ klen = mel_length:k()
+ schedulek("phrase_idiophone1", 0, klen, 1) ; single note only
+ schedulek("phrase_idiophone_stretch1", 0, klen*1.3, 0)
+ endif
+
+ if (lastcycle:k() == 1) then
+ turnoff2("note_bass1", 0, 1)
+ endif
+
+endin
+
+
+instr sequencer_s3
+ schedule("note_bass1", 0, p3, 0)
+ schedule("phrase_idiophone_stretch1", 0, i(gkseq_beattime) * i(gkmel_section_change_due), 1)
+
+ if (gkmel_section_change == 1) then
+ klen = mel_length:k()
+ schedulek("phrase_idiophone1", 0, klen, 0) ; chords
+ schedulek("phrase_idiophone_stretch1", 0, klen*0.8, 1)
+ endif
+
+ if (lastcycle:k() == 1) then
+ turnoff2("note_bass1", 0, 1)
+ endif
+
+endin
+
+
+instr sequencer_s4
+ idiophone_change()
+ schedule("phrase_dropstretch1", 0, i(gkseq_beattime) * 2 * i(gkmel_section_change_due), random(0.5, 1.5), 1, 1, 0.5)
+ if (gkmel_section_change == 1) then
+ klen = mel_length:k()
+ schedulek("phrase_idiophone1", 0, klen, 1) ; single note only
+ schedulek("phrase_idiophone_stretch1", 0, klen*1.3, 1)
+ endif
+ transition_out("transition_waterbubbler1")
+endin
+
+
+instr sequencer_s5
+ imaxlen = p3
+ itime = 0
+ while (itime < imaxlen) do
+ idur = random(5, 20)
+ schedule("phrase_dropstretch1", itime, idur, random(0.5, 1.5), 1, 1, 1)
+ if (random(0, 1) > 0.5) then
+ schedule("phrase_dropstretch1", itime + random(0, 5), idur, random(0.5, 1.5), 1, 1, 2)
+ endif
+
+ if (random(0, 1) > 0.5) then ; no reson
+ schedule("phrase_dropstretch1", itime + random(0, 5), idur, random(0.5, 1.5), 0, 1, 1)
+ endif
+
+ if (random(0, 1) > 0.5) then
+ schedule("phrase_waterbubbler1", itime, idur, 1)
+ endif
+
+ if (random(0, 1) > 0.5) then
+ schedule("play_waterpaddling1", itime + random(0, 5), 1)
+ endif
+
+ itime += idur * random(0.5, 0.8)
+ od
+endin
+
+
+instr sequencer_s6
+ schedule("phrase_dropstretch1", 0, i(gkseq_beattime) * 1.5 * i(gkmel_section_change_due), random(0.5, 1.5), 0, 1, 1)
+
+ if (gkmel_section_change == 1) then
+ ;turnoff2 "phrase_idiophone_stretch2", 0, 1
+ schedulek("phrase_idiophone_stretch2", 0, mel_length:k()*1.3, 0)
+ schedulek("phrase_waterbubbler1", 0, mel_length:k(), 0)
+ endif
+
+ awL, awR bus_read "phrase_waterbubbler"
+ amL, amR bus_read "note_idiophonestretch2"
+
+ ir = 256
+ irm = 2
+ fwL pvsanal awL, ir, ir/irm, ir, 1
+ fwR pvsanal awR, ir, ir/irm, ir, 1
+ fmL pvsanal amL, ir, ir/irm, ir, 1
+ fmR pvsanal amR, ir, ir/irm, ir, 1
+ fxL pvsmorph fwL, fmL, 0, 1
+ fxR pvsmorph fwR, fmR, 0, 1
+ aL pvsynth fxL
+ aR pvsynth fxR
+ kamp linseg 0, p3*0.01, 1, p3*0.98, 1, p3*0.01, 0 ; has click at start
+ bus_mix("main", aL*kamp, aR*kamp)
+endin
+
+
+instr sequencer_s7
+ idiophone_change()
+ schedule("phrase_dropstretch1", 0, i(gkseq_beattime) * 1.5 * i(gkmel_section_change_due), random(0.5, 1.5), 1, 1, 8)
+ if (gkmel_section_change == 1) then
+ schedulek("phrase_idiophone_stretch2", 0, mel_length:k()*1.3, 0)
+ schedulek("phrase_waterbubbler1", 0, mel_length:k(), 1)
+ endif
+
+ aL, aR bus_read "note_idiophonestretch2"
+ bus_mix("delay1", aL*0.2, aR*0.2)
+ bus_mix("main", aL*0.8, aR*0.8)
+ transition_out("transition_idiophone_randtime")
+endin
+
+
+instr sequencer_s8
+ pause_melprogression()
+ imaxlen = p3
+ itime = 0
+ while (itime < imaxlen) do
+ idur = random(p3*0.1, p3*0.3)
+ idur = (idur + itime > imaxlen) ? imaxlen - itime : idur
+ schedule("phrase_dropstretch1", itime, idur, random(0.5, 1.5), 1, 1, 0.5)
+ if (random(0, 1) > 0.5) then
+ schedule("phrase_dropstretch1", itime + random(0, 5), idur, random(0.5, 1.5), 1, 1, 2)
+ endif
+
+ if (random(0, 1) > 0.5) then ; no reson
+ schedule("phrase_dropstretch1", itime + random(0, 5), idur, random(0.5, 1.5), 0, 1, 1)
+ endif
+
+ if (random(0, 1) > 0.2) then
+ schedule("play_waterpaddling1", itime + random(0, 5), random(0.5, 6))
+ if (random(0, 1) > 0.6) then
+ schedule("play_waterpaddling1", itime + random(0, 5), random(0.5, 6))
+ endif
+ endif
+ itime += idur * random(0.5, 1.2)
+ od
+ transition_out("transition_idiophone_gliss1")
+endin
+
+
+instr sequencer_s9
+ transition_in("transition_idiophone_stretch1")
+ idiophone_change()
+ gimel_portamento_beatratio = 0.4
+ imaxlen = p3
+ itime = 0
+ while (itime < imaxlen) do
+ idur = random(5, 20)
+ idur = (idur + itime > imaxlen) ? imaxlen - itime : idur
+ schedule("phrase_idiophone_stretch3", itime, idur)
+ itime += idur
+ od
+ transition_out("transition_idiophone_stretch1")
+endin
+
+
+instr sequencer_s10
+ transition_in("transition_idiophone_randtime")
+ gimel_portamento_beatratio = 0.4
+ schedule("phrase_idiophone_stretch4", 0, p3)
+ schedule("note_bass1", 0, p3, 0)
+
+ kmetrofreq = abs:k(oscil:k(5, 0.01)) + 0.1
+ knotemetro = metro(kmetrofreq)
+ if (knotemetro == 1) then
+ if (random:k(0, 1) > 0.8) then
+ kstart = random:k(0, 0.3)
+ schedulek("note_hybrid1", kstart, 1, mel_randomnote:k())
+ ;schedulek("_note_idiophone1", kstart, 0.1, mel_randomnote:k()+12, random:k(2, 7))
+ ;schedulek("note_drop1", kstart, 0.5)
+ endif
+ endif
+
+ kdroprollmetro = metro(0.1)
+ if (kdroprollmetro == 1 && random:k(0, 1) > 0.5) then
+ schedulek("fnmi_sineblips", random:k(0, 2), random:k(3, 10), "reverb1")
+ schedulek("phrase_droproll1", random:k(0, 2), random:k(3, 10), 1)
+ endif
+
+endin
+
+
+instr sequencer_s11
+ transition_in("transition_idiophone_gliss1")
+ ; resonated droplets
+ kmetrofreq = abs:k(oscil:k(3, 0.01)) + 0.1
+ knotemetro = metro(kmetrofreq)
+ if (knotemetro == 1) then
+ if (random:k(0, 1) > 0.5) then
+ schedulek("note_hybrid1", random:k(0, 0.3), 1, mel_randomnote:k())
+ if (random:k(0, 1) > 0.5) then
+ schedulek("note_hybrid1", random:k(0.3, 1), 1, mel_randomnote:k()+12)
+ endif
+ endif
+ endif
+
+ ; water droplets
+ kdroprollmetro = metro(0.2)
+ if (kdroprollmetro == 1 && random:k(0, 1) > 0.5) then
+ schedulek("phrase_droproll1", random:k(0, 2), random:k(3, 10), 0.2)
+ endif
+
+ ; subtle notes
+ if (gkmel_section_change == 1) then
+ schedulek("note_idiophonestretch1", random:k(0, 2), random:k(4, 12), mel_randomnote:k()-12, 0)
+ schedulek("note_idiophonestretch1", random:k(0, 2), random:k(4, 12), mel_randomnote:k()-12, 0)
+ if (random:k(0, 1) > 0.5) then
+ schedulek("note_idiophonestretch1", random:k(0, 2), random:k(4, 12), mel_randomnote:k()-12, 0)
+ schedulek("note_idiophonestretch1", random:k(0, 2), random:k(4, 12), mel_randomnote:k()-12, 0)
+ endif
+
+ ; paddling stretch
+ schedulek("play_waterpaddling1", random:k(0, 2), random:k(3, 15))
+
+ ; bass note
+ if (random:k(0, 1) > 0.4) then
+ klen = mel_length:k()
+ schedulek("note_bass2", random:k(0, 3), random:k(klen, klen*1.5), 0)
+ endif
+ endif
+endin
+
+
+instr sequencer_s12
+ kmetrofreq = abs:k(oscil:k(3, 0.01)) + 0.1
+ knotemetro = metro(kmetrofreq)
+ if (knotemetro == 1) then
+ if (random:k(0, 1) > 0.5) then
+ schedulek("note_hybrid1", random:k(0, 0.3), 1, mel_randomnote:k()-12)
+ endif
+ if (random:k(0, 1) > 0.5) then
+ schedulek("note_hybrid1", random:k(0.3, 1), 1, mel_randomnote:k())
+ endif
+ if (random:k(0, 1) > 0.5) then
+ kstart = random:k(0.3, 1)
+ schedulek("note_hybrid1", kstart, 1, mel_randomnote:k()+24)
+ if (random:k(0, 1) > 0.5) then
+ schedulek("note_drop1", kstart, 1)
+ endif
+ endif
+ if (random:k(0, 1) > 0.9) then
+ schedulek("phrase_dropstretch1", random:k(0, 3), random:k(4, 7), 2, round:k(random:k(0, 1)), 1, 2)
+ schedulek("note_bass2", random:k(0, 3), random:k(4, 5), 0)
+ endif
+ endif
+ schedule("phrase_droproll1", 0, 1, 2.4)
+endin
+
+
+instr sequencer_s13
+ if (random(0, 1) >= 0.5) then
+ pause_melprogression()
+ endif
+ idiophone_change()
+ iplayidiophone = round(random(0, 1))
+ kmetrofreq expseg 0.3, p3, 20
+ knotemetro = metro(kmetrofreq)
+ if (knotemetro == 1) then
+ if (random:k(0, 1) > 0.5) then
+ schedulek("note_hybrid1", random:k(0, 0.3), 1, mel_randomnote:k()+12)
+ if (iplayidiophone == 1 && active:k("note_idiophonestretch1") == 0) then
+ schedulek("note_idiophonestretch1", random:k(0, 2), random:k(1, 3), mel_randomnote:k()-12, 0)
+ endif
+ endif
+ if (random:k(0, 1) > 0.5) then
+ schedulek("note_hybrid1", random:k(0.3, 1), 1, mel_randomnote:k())
+ endif
+ if (random:k(0, 1) > 0.5) then
+ kstart = random:k(0.3, 1)
+ schedulek("note_hybrid1", kstart, 1, mel_randomnote:k()-12)
+ if (random:k(0, 1) > 0.5) then
+ schedulek("note_drop1", kstart, 1)
+ endif
+ endif
+ endif
+ schedule("phrase_droproll1", 0, 1.3, 2.4)
+endin
+
+
+instr sequencer_s14
+ gimel_portamento_beatratio = 0.2
+ imaxlen = p3
+ iplaydrops = round(random(0, 1))
+ itime = 0
+ while (itime < imaxlen) do
+ idur = random(5, 20)
+ idur = (idur + itime > imaxlen) ? imaxlen - itime : idur
+ schedule("phrase_hybridstretch1", itime, idur)
+ if (iplaydrops == 1) then
+ schedule("phrase_droproll1", itime, idur, 0.4)
+ endif
+ itime += idur
+ od
+
+ ; play one music box glissando just before the next mel section change
+ kglissset init 0
+ if (kglissset == 0 && gkmel_section_change == 1) then
+ schedulek("phrase_idiophone_gliss1", mel_length:k()-0.5, 1, 3)
+ kglissset = 1
+ endif
+
+ ; water transition out
+ transition_out("transition_droplets1")
+endin
+
+
+instr sequencer_s15
+ transition_in("transition_idiophone_gliss1")
+ idiophone_change()
+ pause_melprogression()
+
+ ;schedule("phrase_idiophone1", 0, p3, 0)
+ schedule("phrase_hybrid2", 0, p3, 0)
+ transition_out("transition_waterbubbler1")
+endin
+
+
+instr sequencer_s16
+ idiophone_change()
+ imaxlen = p3
+ itime = 0
+ while (itime < imaxlen) do
+ idur = random(5, 20)
+ idur = (idur + itime > imaxlen) ? imaxlen - itime : idur
+ schedule("phrase_hybrid1", itime, idur)
+ itime += idur
+ od
+ transition_out("transition_idiophone_gliss1")
+endin
+
+
+instr sequencer_s17
+ pause_melprogression()
+ imaxlen = p3
+ itime = 0
+ while (itime < imaxlen) do
+ schedule("note_idiophone_randtime", itime+random(0, 1), random(2, 5))
+ schedule("note_idiophone_randtime", itime+random(0, 4), random(2, 5))
+ schedule("play_waterpaddling1", itime+random(0, 1), random(1, 2))
+ itime += random(5, 20)
+ od
+
+ schedule("phrase_dropstretch1", 0, p3, 1, 1, 1, 1)
+ schedule("phrase_dropstretch1", 0, p3, 2, 1, 1, 0.5)
+ transition_out("transition_droplets1")
+endin
+
+
+
+#end
diff --git a/site/app/partialemergence/sequencing_melodic_persistence.pe.udo b/site/app/partialemergence/sequencing_melodic_persistence.pe.udo new file mode 100644 index 0000000..a75b2d4 --- /dev/null +++ b/site/app/partialemergence/sequencing_melodic_persistence.pe.udo @@ -0,0 +1,54 @@ +#ifndef UDO_MELSEQUENCINGPERSIST
+#define UDO_MELSEQUENCINGPERSIST ##
+/*
+ Melodic sequencer persistence: saving/loading from files and database
+ Slim excerpt for Partial Emergence
+
+ This file is part of the SONICS UDO collection by Richard Knight 2021, 2022, 2025
+ License: GPL-2.0-or-later
+ http://1bpm.net
+*/
+
+#include "/sequencing_melodic.udo"
+#include "/array_tools.udo"
+
+/*
+ Load state from file
+
+ p4 path to load from
+*/
+instr mel_loadstate_fs
+ Spath = p4
+ isize = -1
+ iline = 0
+
+ ftload Spath, 1,\
+ gimel_chords, gimel_notes,
+ gimel_lengths, gimel_action1,\
+ gimel_action2, gimel_actionthreshold,\
+ gimel_active, gimel_importance,\
+ gimel_mod1, gimel_mod2,\
+ gimel_mod3, gimel_mod4,\
+ gimel_state
+
+ gkmel_futures_refresh_trig = 1
+ turnoff
+endin
+
+
+
+; if MEL_INITPATH is set, load the specified progression data accordingly
+#ifdef MEL_HASINIT
+instr _mel_persistence_init
+#ifdef MEL_INITPATH
+ subinstrinit "mel_loadstate_fs", "$MEL_INITPATH"
+#end
+ alwayson "_mel_manager"
+ turnoff
+endin
+schedule "_mel_persistence_init", 0, 60
+
+; end MEL_HASINIT
+#end
+
+#end
diff --git a/site/app/partialemergence/soundexport.xdb b/site/app/partialemergence/soundexport.xdb new file mode 100644 index 0000000..8f45260 --- /dev/null +++ b/site/app/partialemergence/soundexport.xdb @@ -0,0 +1,4538 @@ +; SONICS DB extract 1.0, exported from database on/at 2022-10-05 22:43:39.470067+01
+#define XDB_SET ##
+#define XDB_MINNOTE #0#
+gSxdb_collections[] fillarray "Water.Droplet", "Water.Paddling", "MusicBox", "Kalimba"
+gixdb_collectionsfn[] fillarray ftgen(0,0,-578,-2,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577), ftgen(0,0,-100,-2,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677), ftgen(0,0,-60,-2,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737), ftgen(0,0,-74,-2,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811)
+gisounddb[][] init 812, 4
+gisounddb[0][0] ftgen 0,0,0,1,"sounds/Water/Droplets/392.mp3",0,0,0
+gisounddb[1][0] ftgen 0,0,0,1,"sounds/Water/Droplets/378.mp3",0,0,0
+gisounddb[2][0] ftgen 0,0,0,1,"sounds/Water/Droplets/45.mp3",0,0,0
+gisounddb[3][0] ftgen 0,0,0,1,"sounds/Water/Droplets/130.mp3",0,0,0
+gisounddb[4][0] ftgen 0,0,0,1,"sounds/Water/Droplets/344.mp3",0,0,0
+gisounddb[5][0] ftgen 0,0,0,1,"sounds/Water/Droplets/576.mp3",0,0,0
+gisounddb[6][0] ftgen 0,0,0,1,"sounds/Water/Droplets/60.mp3",0,0,0
+gisounddb[7][0] ftgen 0,0,0,1,"sounds/Water/Droplets/491.mp3",0,0,0
+gisounddb[8][0] ftgen 0,0,0,1,"sounds/Water/Droplets/59.mp3",0,0,0
+gisounddb[9][0] ftgen 0,0,0,1,"sounds/Water/Droplets/530.mp3",0,0,0
+gisounddb[10][0] ftgen 0,0,0,1,"sounds/Water/Droplets/160.mp3",0,0,0
+gisounddb[11][0] ftgen 0,0,0,1,"sounds/Water/Droplets/466.mp3",0,0,0
+gisounddb[12][0] ftgen 0,0,0,1,"sounds/Water/Droplets/178.mp3",0,0,0
+gisounddb[13][0] ftgen 0,0,0,1,"sounds/Water/Droplets/258.mp3",0,0,0
+gisounddb[14][0] ftgen 0,0,0,1,"sounds/Water/Droplets/81.mp3",0,0,0
+gisounddb[15][0] ftgen 0,0,0,1,"sounds/Water/Droplets/217.mp3",0,0,0
+gisounddb[16][0] ftgen 0,0,0,1,"sounds/Water/Droplets/488.mp3",0,0,0
+gisounddb[17][0] ftgen 0,0,0,1,"sounds/Water/Droplets/38.mp3",0,0,0
+gisounddb[18][0] ftgen 0,0,0,1,"sounds/Water/Droplets/309.mp3",0,0,0
+gisounddb[19][0] ftgen 0,0,0,1,"sounds/Water/Droplets/182.mp3",0,0,0
+gisounddb[20][0] ftgen 0,0,0,1,"sounds/Water/Droplets/543.mp3",0,0,0
+gisounddb[21][0] ftgen 0,0,0,1,"sounds/Water/Droplets/5.mp3",0,0,0
+gisounddb[22][0] ftgen 0,0,0,1,"sounds/Water/Droplets/482.mp3",0,0,0
+gisounddb[23][0] ftgen 0,0,0,1,"sounds/Water/Droplets/358.mp3",0,0,0
+gisounddb[24][0] ftgen 0,0,0,1,"sounds/Water/Droplets/454.mp3",0,0,0
+gisounddb[25][0] ftgen 0,0,0,1,"sounds/Water/Droplets/260.mp3",0,0,0
+gisounddb[26][0] ftgen 0,0,0,1,"sounds/Water/Droplets/298.mp3",0,0,0
+gisounddb[27][0] ftgen 0,0,0,1,"sounds/Water/Droplets/180.mp3",0,0,0
+gisounddb[28][0] ftgen 0,0,0,1,"sounds/Water/Droplets/502.mp3",0,0,0
+gisounddb[29][0] ftgen 0,0,0,1,"sounds/Water/Droplets/512.mp3",0,0,0
+gisounddb[30][0] ftgen 0,0,0,1,"sounds/Water/Droplets/479.mp3",0,0,0
+gisounddb[31][0] ftgen 0,0,0,1,"sounds/Water/Droplets/532.mp3",0,0,0
+gisounddb[32][0] ftgen 0,0,0,1,"sounds/Water/Droplets/85.mp3",0,0,0
+gisounddb[33][0] ftgen 0,0,0,1,"sounds/Water/Droplets/289.mp3",0,0,0
+gisounddb[34][0] ftgen 0,0,0,1,"sounds/Water/Droplets/413.mp3",0,0,0
+gisounddb[35][0] ftgen 0,0,0,1,"sounds/Water/Droplets/453.mp3",0,0,0
+gisounddb[36][0] ftgen 0,0,0,1,"sounds/Water/Droplets/75.mp3",0,0,0
+gisounddb[37][0] ftgen 0,0,0,1,"sounds/Water/Droplets/88.mp3",0,0,0
+gisounddb[38][0] ftgen 0,0,0,1,"sounds/Water/Droplets/77.mp3",0,0,0
+gisounddb[39][0] ftgen 0,0,0,1,"sounds/Water/Droplets/157.mp3",0,0,0
+gisounddb[40][0] ftgen 0,0,0,1,"sounds/Water/Droplets/245.mp3",0,0,0
+gisounddb[41][0] ftgen 0,0,0,1,"sounds/Water/Droplets/474.mp3",0,0,0
+gisounddb[42][0] ftgen 0,0,0,1,"sounds/Water/Droplets/404.mp3",0,0,0
+gisounddb[43][0] ftgen 0,0,0,1,"sounds/Water/Droplets/343.mp3",0,0,0
+gisounddb[44][0] ftgen 0,0,0,1,"sounds/Water/Droplets/239.mp3",0,0,0
+gisounddb[45][0] ftgen 0,0,0,1,"sounds/Water/Droplets/381.mp3",0,0,0
+gisounddb[46][0] ftgen 0,0,0,1,"sounds/Water/Droplets/251.mp3",0,0,0
+gisounddb[47][0] ftgen 0,0,0,1,"sounds/Water/Droplets/569.mp3",0,0,0
+gisounddb[48][0] ftgen 0,0,0,1,"sounds/Water/Droplets/475.mp3",0,0,0
+gisounddb[49][0] ftgen 0,0,0,1,"sounds/Water/Droplets/462.mp3",0,0,0
+gisounddb[50][0] ftgen 0,0,0,1,"sounds/Water/Droplets/290.mp3",0,0,0
+gisounddb[51][0] ftgen 0,0,0,1,"sounds/Water/Droplets/70.mp3",0,0,0
+gisounddb[52][0] ftgen 0,0,0,1,"sounds/Water/Droplets/224.mp3",0,0,0
+gisounddb[53][0] ftgen 0,0,0,1,"sounds/Water/Droplets/164.mp3",0,0,0
+gisounddb[54][0] ftgen 0,0,0,1,"sounds/Water/Droplets/274.mp3",0,0,0
+gisounddb[55][0] ftgen 0,0,0,1,"sounds/Water/Droplets/105.mp3",0,0,0
+gisounddb[56][0] ftgen 0,0,0,1,"sounds/Water/Droplets/531.mp3",0,0,0
+gisounddb[57][0] ftgen 0,0,0,1,"sounds/Water/Droplets/39.mp3",0,0,0
+gisounddb[58][0] ftgen 0,0,0,1,"sounds/Water/Droplets/135.mp3",0,0,0
+gisounddb[59][0] ftgen 0,0,0,1,"sounds/Water/Droplets/281.mp3",0,0,0
+gisounddb[60][0] ftgen 0,0,0,1,"sounds/Water/Droplets/494.mp3",0,0,0
+gisounddb[61][0] ftgen 0,0,0,1,"sounds/Water/Droplets/147.mp3",0,0,0
+gisounddb[62][0] ftgen 0,0,0,1,"sounds/Water/Droplets/561.mp3",0,0,0
+gisounddb[63][0] ftgen 0,0,0,1,"sounds/Water/Droplets/461.mp3",0,0,0
+gisounddb[64][0] ftgen 0,0,0,1,"sounds/Water/Droplets/430.mp3",0,0,0
+gisounddb[65][0] ftgen 0,0,0,1,"sounds/Water/Droplets/328.mp3",0,0,0
+gisounddb[66][0] ftgen 0,0,0,1,"sounds/Water/Droplets/331.mp3",0,0,0
+gisounddb[67][0] ftgen 0,0,0,1,"sounds/Water/Droplets/316.mp3",0,0,0
+gisounddb[68][0] ftgen 0,0,0,1,"sounds/Water/Droplets/141.mp3",0,0,0
+gisounddb[69][0] ftgen 0,0,0,1,"sounds/Water/Droplets/124.mp3",0,0,0
+gisounddb[70][0] ftgen 0,0,0,1,"sounds/Water/Droplets/556.mp3",0,0,0
+gisounddb[71][0] ftgen 0,0,0,1,"sounds/Water/Droplets/510.mp3",0,0,0
+gisounddb[72][0] ftgen 0,0,0,1,"sounds/Water/Droplets/449.mp3",0,0,0
+gisounddb[73][0] ftgen 0,0,0,1,"sounds/Water/Droplets/138.mp3",0,0,0
+gisounddb[74][0] ftgen 0,0,0,1,"sounds/Water/Droplets/62.mp3",0,0,0
+gisounddb[75][0] ftgen 0,0,0,1,"sounds/Water/Droplets/192.mp3",0,0,0
+gisounddb[76][0] ftgen 0,0,0,1,"sounds/Water/Droplets/361.mp3",0,0,0
+gisounddb[77][0] ftgen 0,0,0,1,"sounds/Water/Droplets/21.mp3",0,0,0
+gisounddb[78][0] ftgen 0,0,0,1,"sounds/Water/Droplets/40.mp3",0,0,0
+gisounddb[79][0] ftgen 0,0,0,1,"sounds/Water/Droplets/205.mp3",0,0,0
+gisounddb[80][0] ftgen 0,0,0,1,"sounds/Water/Droplets/301.mp3",0,0,0
+gisounddb[81][0] ftgen 0,0,0,1,"sounds/Water/Droplets/315.mp3",0,0,0
+gisounddb[82][0] ftgen 0,0,0,1,"sounds/Water/Droplets/393.mp3",0,0,0
+gisounddb[83][0] ftgen 0,0,0,1,"sounds/Water/Droplets/417.mp3",0,0,0
+gisounddb[84][0] ftgen 0,0,0,1,"sounds/Water/Droplets/348.mp3",0,0,0
+gisounddb[85][0] ftgen 0,0,0,1,"sounds/Water/Droplets/42.mp3",0,0,0
+gisounddb[86][0] ftgen 0,0,0,1,"sounds/Water/Droplets/256.mp3",0,0,0
+gisounddb[87][0] ftgen 0,0,0,1,"sounds/Water/Droplets/533.mp3",0,0,0
+gisounddb[88][0] ftgen 0,0,0,1,"sounds/Water/Droplets/410.mp3",0,0,0
+gisounddb[89][0] ftgen 0,0,0,1,"sounds/Water/Droplets/226.mp3",0,0,0
+gisounddb[90][0] ftgen 0,0,0,1,"sounds/Water/Droplets/435.mp3",0,0,0
+gisounddb[91][0] ftgen 0,0,0,1,"sounds/Water/Droplets/299.mp3",0,0,0
+gisounddb[92][0] ftgen 0,0,0,1,"sounds/Water/Droplets/98.mp3",0,0,0
+gisounddb[93][0] ftgen 0,0,0,1,"sounds/Water/Droplets/139.mp3",0,0,0
+gisounddb[94][0] ftgen 0,0,0,1,"sounds/Water/Droplets/397.mp3",0,0,0
+gisounddb[95][0] ftgen 0,0,0,1,"sounds/Water/Droplets/95.mp3",0,0,0
+gisounddb[96][0] ftgen 0,0,0,1,"sounds/Water/Droplets/396.mp3",0,0,0
+gisounddb[97][0] ftgen 0,0,0,1,"sounds/Water/Droplets/560.mp3",0,0,0
+gisounddb[98][0] ftgen 0,0,0,1,"sounds/Water/Droplets/399.mp3",0,0,0
+gisounddb[99][0] ftgen 0,0,0,1,"sounds/Water/Droplets/233.mp3",0,0,0
+gisounddb[100][0] ftgen 0,0,0,1,"sounds/Water/Droplets/559.mp3",0,0,0
+gisounddb[101][0] ftgen 0,0,0,1,"sounds/Water/Droplets/552.mp3",0,0,0
+gisounddb[102][0] ftgen 0,0,0,1,"sounds/Water/Droplets/511.mp3",0,0,0
+gisounddb[103][0] ftgen 0,0,0,1,"sounds/Water/Droplets/74.mp3",0,0,0
+gisounddb[104][0] ftgen 0,0,0,1,"sounds/Water/Droplets/174.mp3",0,0,0
+gisounddb[105][0] ftgen 0,0,0,1,"sounds/Water/Droplets/460.mp3",0,0,0
+gisounddb[106][0] ftgen 0,0,0,1,"sounds/Water/Droplets/171.mp3",0,0,0
+gisounddb[107][0] ftgen 0,0,0,1,"sounds/Water/Droplets/149.mp3",0,0,0
+gisounddb[108][0] ftgen 0,0,0,1,"sounds/Water/Droplets/203.mp3",0,0,0
+gisounddb[109][0] ftgen 0,0,0,1,"sounds/Water/Droplets/504.mp3",0,0,0
+gisounddb[110][0] ftgen 0,0,0,1,"sounds/Water/Droplets/323.mp3",0,0,0
+gisounddb[111][0] ftgen 0,0,0,1,"sounds/Water/Droplets/423.mp3",0,0,0
+gisounddb[112][0] ftgen 0,0,0,1,"sounds/Water/Droplets/210.mp3",0,0,0
+gisounddb[113][0] ftgen 0,0,0,1,"sounds/Water/Droplets/431.mp3",0,0,0
+gisounddb[114][0] ftgen 0,0,0,1,"sounds/Water/Droplets/30.mp3",0,0,0
+gisounddb[115][0] ftgen 0,0,0,1,"sounds/Water/Droplets/295.mp3",0,0,0
+gisounddb[116][0] ftgen 0,0,0,1,"sounds/Water/Droplets/406.mp3",0,0,0
+gisounddb[117][0] ftgen 0,0,0,1,"sounds/Water/Droplets/100.mp3",0,0,0
+gisounddb[118][0] ftgen 0,0,0,1,"sounds/Water/Droplets/579.mp3",0,0,0
+gisounddb[119][0] ftgen 0,0,0,1,"sounds/Water/Droplets/505.mp3",0,0,0
+gisounddb[120][0] ftgen 0,0,0,1,"sounds/Water/Droplets/329.mp3",0,0,0
+gisounddb[121][0] ftgen 0,0,0,1,"sounds/Water/Droplets/162.mp3",0,0,0
+gisounddb[122][0] ftgen 0,0,0,1,"sounds/Water/Droplets/534.mp3",0,0,0
+gisounddb[123][0] ftgen 0,0,0,1,"sounds/Water/Droplets/12.mp3",0,0,0
+gisounddb[124][0] ftgen 0,0,0,1,"sounds/Water/Droplets/44.mp3",0,0,0
+gisounddb[125][0] ftgen 0,0,0,1,"sounds/Water/Droplets/548.mp3",0,0,0
+gisounddb[126][0] ftgen 0,0,0,1,"sounds/Water/Droplets/527.mp3",0,0,0
+gisounddb[127][0] ftgen 0,0,0,1,"sounds/Water/Droplets/473.mp3",0,0,0
+gisounddb[128][0] ftgen 0,0,0,1,"sounds/Water/Droplets/314.mp3",0,0,0
+gisounddb[129][0] ftgen 0,0,0,1,"sounds/Water/Droplets/8.mp3",0,0,0
+gisounddb[130][0] ftgen 0,0,0,1,"sounds/Water/Droplets/103.mp3",0,0,0
+gisounddb[131][0] ftgen 0,0,0,1,"sounds/Water/Droplets/46.mp3",0,0,0
+gisounddb[132][0] ftgen 0,0,0,1,"sounds/Water/Droplets/520.mp3",0,0,0
+gisounddb[133][0] ftgen 0,0,0,1,"sounds/Water/Droplets/109.mp3",0,0,0
+gisounddb[134][0] ftgen 0,0,0,1,"sounds/Water/Droplets/550.mp3",0,0,0
+gisounddb[135][0] ftgen 0,0,0,1,"sounds/Water/Droplets/300.mp3",0,0,0
+gisounddb[136][0] ftgen 0,0,0,1,"sounds/Water/Droplets/367.mp3",0,0,0
+gisounddb[137][0] ftgen 0,0,0,1,"sounds/Water/Droplets/456.mp3",0,0,0
+gisounddb[138][0] ftgen 0,0,0,1,"sounds/Water/Droplets/145.mp3",0,0,0
+gisounddb[139][0] ftgen 0,0,0,1,"sounds/Water/Droplets/365.mp3",0,0,0
+gisounddb[140][0] ftgen 0,0,0,1,"sounds/Water/Droplets/34.mp3",0,0,0
+gisounddb[141][0] ftgen 0,0,0,1,"sounds/Water/Droplets/407.mp3",0,0,0
+gisounddb[142][0] ftgen 0,0,0,1,"sounds/Water/Droplets/271.mp3",0,0,0
+gisounddb[143][0] ftgen 0,0,0,1,"sounds/Water/Droplets/305.mp3",0,0,0
+gisounddb[144][0] ftgen 0,0,0,1,"sounds/Water/Droplets/272.mp3",0,0,0
+gisounddb[145][0] ftgen 0,0,0,1,"sounds/Water/Droplets/332.mp3",0,0,0
+gisounddb[146][0] ftgen 0,0,0,1,"sounds/Water/Droplets/287.mp3",0,0,0
+gisounddb[147][0] ftgen 0,0,0,1,"sounds/Water/Droplets/93.mp3",0,0,0
+gisounddb[148][0] ftgen 0,0,0,1,"sounds/Water/Droplets/486.mp3",0,0,0
+gisounddb[149][0] ftgen 0,0,0,1,"sounds/Water/Droplets/498.mp3",0,0,0
+gisounddb[150][0] ftgen 0,0,0,1,"sounds/Water/Droplets/432.mp3",0,0,0
+gisounddb[151][0] ftgen 0,0,0,1,"sounds/Water/Droplets/61.mp3",0,0,0
+gisounddb[152][0] ftgen 0,0,0,1,"sounds/Water/Droplets/427.mp3",0,0,0
+gisounddb[153][0] ftgen 0,0,0,1,"sounds/Water/Droplets/390.mp3",0,0,0
+gisounddb[154][0] ftgen 0,0,0,1,"sounds/Water/Droplets/320.mp3",0,0,0
+gisounddb[155][0] ftgen 0,0,0,1,"sounds/Water/Droplets/403.mp3",0,0,0
+gisounddb[156][0] ftgen 0,0,0,1,"sounds/Water/Droplets/67.mp3",0,0,0
+gisounddb[157][0] ftgen 0,0,0,1,"sounds/Water/Droplets/517.mp3",0,0,0
+gisounddb[158][0] ftgen 0,0,0,1,"sounds/Water/Droplets/472.mp3",0,0,0
+gisounddb[159][0] ftgen 0,0,0,1,"sounds/Water/Droplets/49.mp3",0,0,0
+gisounddb[160][0] ftgen 0,0,0,1,"sounds/Water/Droplets/408.mp3",0,0,0
+gisounddb[161][0] ftgen 0,0,0,1,"sounds/Water/Droplets/373.mp3",0,0,0
+gisounddb[162][0] ftgen 0,0,0,1,"sounds/Water/Droplets/132.mp3",0,0,0
+gisounddb[163][0] ftgen 0,0,0,1,"sounds/Water/Droplets/359.mp3",0,0,0
+gisounddb[164][0] ftgen 0,0,0,1,"sounds/Water/Droplets/55.mp3",0,0,0
+gisounddb[165][0] ftgen 0,0,0,1,"sounds/Water/Droplets/28.mp3",0,0,0
+gisounddb[166][0] ftgen 0,0,0,1,"sounds/Water/Droplets/318.mp3",0,0,0
+gisounddb[167][0] ftgen 0,0,0,1,"sounds/Water/Droplets/311.mp3",0,0,0
+gisounddb[168][0] ftgen 0,0,0,1,"sounds/Water/Droplets/525.mp3",0,0,0
+gisounddb[169][0] ftgen 0,0,0,1,"sounds/Water/Droplets/163.mp3",0,0,0
+gisounddb[170][0] ftgen 0,0,0,1,"sounds/Water/Droplets/288.mp3",0,0,0
+gisounddb[171][0] ftgen 0,0,0,1,"sounds/Water/Droplets/202.mp3",0,0,0
+gisounddb[172][0] ftgen 0,0,0,1,"sounds/Water/Droplets/23.mp3",0,0,0
+gisounddb[173][0] ftgen 0,0,0,1,"sounds/Water/Droplets/375.mp3",0,0,0
+gisounddb[174][0] ftgen 0,0,0,1,"sounds/Water/Droplets/72.mp3",0,0,0
+gisounddb[175][0] ftgen 0,0,0,1,"sounds/Water/Droplets/321.mp3",0,0,0
+gisounddb[176][0] ftgen 0,0,0,1,"sounds/Water/Droplets/128.mp3",0,0,0
+gisounddb[177][0] ftgen 0,0,0,1,"sounds/Water/Droplets/380.mp3",0,0,0
+gisounddb[178][0] ftgen 0,0,0,1,"sounds/Water/Droplets/366.mp3",0,0,0
+gisounddb[179][0] ftgen 0,0,0,1,"sounds/Water/Droplets/1.mp3",0,0,0
+gisounddb[180][0] ftgen 0,0,0,1,"sounds/Water/Droplets/235.mp3",0,0,0
+gisounddb[181][0] ftgen 0,0,0,1,"sounds/Water/Droplets/450.mp3",0,0,0
+gisounddb[182][0] ftgen 0,0,0,1,"sounds/Water/Droplets/27.mp3",0,0,0
+gisounddb[183][0] ftgen 0,0,0,1,"sounds/Water/Droplets/468.mp3",0,0,0
+gisounddb[184][0] ftgen 0,0,0,1,"sounds/Water/Droplets/58.mp3",0,0,0
+gisounddb[185][0] ftgen 0,0,0,1,"sounds/Water/Droplets/499.mp3",0,0,0
+gisounddb[186][0] ftgen 0,0,0,1,"sounds/Water/Droplets/223.mp3",0,0,0
+gisounddb[187][0] ftgen 0,0,0,1,"sounds/Water/Droplets/440.mp3",0,0,0
+gisounddb[188][0] ftgen 0,0,0,1,"sounds/Water/Droplets/546.mp3",0,0,0
+gisounddb[189][0] ftgen 0,0,0,1,"sounds/Water/Droplets/416.mp3",0,0,0
+gisounddb[190][0] ftgen 0,0,0,1,"sounds/Water/Droplets/26.mp3",0,0,0
+gisounddb[191][0] ftgen 0,0,0,1,"sounds/Water/Droplets/483.mp3",0,0,0
+gisounddb[192][0] ftgen 0,0,0,1,"sounds/Water/Droplets/199.mp3",0,0,0
+gisounddb[193][0] ftgen 0,0,0,1,"sounds/Water/Droplets/292.mp3",0,0,0
+gisounddb[194][0] ftgen 0,0,0,1,"sounds/Water/Droplets/503.mp3",0,0,0
+gisounddb[195][0] ftgen 0,0,0,1,"sounds/Water/Droplets/345.mp3",0,0,0
+gisounddb[196][0] ftgen 0,0,0,1,"sounds/Water/Droplets/363.mp3",0,0,0
+gisounddb[197][0] ftgen 0,0,0,1,"sounds/Water/Droplets/259.mp3",0,0,0
+gisounddb[198][0] ftgen 0,0,0,1,"sounds/Water/Droplets/470.mp3",0,0,0
+gisounddb[199][0] ftgen 0,0,0,1,"sounds/Water/Droplets/169.mp3",0,0,0
+gisounddb[200][0] ftgen 0,0,0,1,"sounds/Water/Droplets/36.mp3",0,0,0
+gisounddb[201][0] ftgen 0,0,0,1,"sounds/Water/Droplets/153.mp3",0,0,0
+gisounddb[202][0] ftgen 0,0,0,1,"sounds/Water/Droplets/18.mp3",0,0,0
+gisounddb[203][0] ftgen 0,0,0,1,"sounds/Water/Droplets/131.mp3",0,0,0
+gisounddb[204][0] ftgen 0,0,0,1,"sounds/Water/Droplets/519.mp3",0,0,0
+gisounddb[205][0] ftgen 0,0,0,1,"sounds/Water/Droplets/201.mp3",0,0,0
+gisounddb[206][0] ftgen 0,0,0,1,"sounds/Water/Droplets/465.mp3",0,0,0
+gisounddb[207][0] ftgen 0,0,0,1,"sounds/Water/Droplets/170.mp3",0,0,0
+gisounddb[208][0] ftgen 0,0,0,1,"sounds/Water/Droplets/134.mp3",0,0,0
+gisounddb[209][0] ftgen 0,0,0,1,"sounds/Water/Droplets/189.mp3",0,0,0
+gisounddb[210][0] ftgen 0,0,0,1,"sounds/Water/Droplets/90.mp3",0,0,0
+gisounddb[211][0] ftgen 0,0,0,1,"sounds/Water/Droplets/536.mp3",0,0,0
+gisounddb[212][0] ftgen 0,0,0,1,"sounds/Water/Droplets/492.mp3",0,0,0
+gisounddb[213][0] ftgen 0,0,0,1,"sounds/Water/Droplets/448.mp3",0,0,0
+gisounddb[214][0] ftgen 0,0,0,1,"sounds/Water/Droplets/451.mp3",0,0,0
+gisounddb[215][0] ftgen 0,0,0,1,"sounds/Water/Droplets/280.mp3",0,0,0
+gisounddb[216][0] ftgen 0,0,0,1,"sounds/Water/Droplets/337.mp3",0,0,0
+gisounddb[217][0] ftgen 0,0,0,1,"sounds/Water/Droplets/463.mp3",0,0,0
+gisounddb[218][0] ftgen 0,0,0,1,"sounds/Water/Droplets/32.mp3",0,0,0
+gisounddb[219][0] ftgen 0,0,0,1,"sounds/Water/Droplets/563.mp3",0,0,0
+gisounddb[220][0] ftgen 0,0,0,1,"sounds/Water/Droplets/497.mp3",0,0,0
+gisounddb[221][0] ftgen 0,0,0,1,"sounds/Water/Droplets/553.mp3",0,0,0
+gisounddb[222][0] ftgen 0,0,0,1,"sounds/Water/Droplets/368.mp3",0,0,0
+gisounddb[223][0] ftgen 0,0,0,1,"sounds/Water/Droplets/458.mp3",0,0,0
+gisounddb[224][0] ftgen 0,0,0,1,"sounds/Water/Droplets/490.mp3",0,0,0
+gisounddb[225][0] ftgen 0,0,0,1,"sounds/Water/Droplets/99.mp3",0,0,0
+gisounddb[226][0] ftgen 0,0,0,1,"sounds/Water/Droplets/71.mp3",0,0,0
+gisounddb[227][0] ftgen 0,0,0,1,"sounds/Water/Droplets/441.mp3",0,0,0
+gisounddb[228][0] ftgen 0,0,0,1,"sounds/Water/Droplets/480.mp3",0,0,0
+gisounddb[229][0] ftgen 0,0,0,1,"sounds/Water/Droplets/264.mp3",0,0,0
+gisounddb[230][0] ftgen 0,0,0,1,"sounds/Water/Droplets/190.mp3",0,0,0
+gisounddb[231][0] ftgen 0,0,0,1,"sounds/Water/Droplets/507.mp3",0,0,0
+gisounddb[232][0] ftgen 0,0,0,1,"sounds/Water/Droplets/225.mp3",0,0,0
+gisounddb[233][0] ftgen 0,0,0,1,"sounds/Water/Droplets/175.mp3",0,0,0
+gisounddb[234][0] ftgen 0,0,0,1,"sounds/Water/Droplets/437.mp3",0,0,0
+gisounddb[235][0] ftgen 0,0,0,1,"sounds/Water/Droplets/572.mp3",0,0,0
+gisounddb[236][0] ftgen 0,0,0,1,"sounds/Water/Droplets/515.mp3",0,0,0
+gisounddb[237][0] ftgen 0,0,0,1,"sounds/Water/Droplets/144.mp3",0,0,0
+gisounddb[238][0] ftgen 0,0,0,1,"sounds/Water/Droplets/538.mp3",0,0,0
+gisounddb[239][0] ftgen 0,0,0,1,"sounds/Water/Droplets/476.mp3",0,0,0
+gisounddb[240][0] ftgen 0,0,0,1,"sounds/Water/Droplets/268.mp3",0,0,0
+gisounddb[241][0] ftgen 0,0,0,1,"sounds/Water/Droplets/326.mp3",0,0,0
+gisounddb[242][0] ftgen 0,0,0,1,"sounds/Water/Droplets/539.mp3",0,0,0
+gisounddb[243][0] ftgen 0,0,0,1,"sounds/Water/Droplets/121.mp3",0,0,0
+gisounddb[244][0] ftgen 0,0,0,1,"sounds/Water/Droplets/129.mp3",0,0,0
+gisounddb[245][0] ftgen 0,0,0,1,"sounds/Water/Droplets/185.mp3",0,0,0
+gisounddb[246][0] ftgen 0,0,0,1,"sounds/Water/Droplets/113.mp3",0,0,0
+gisounddb[247][0] ftgen 0,0,0,1,"sounds/Water/Droplets/57.mp3",0,0,0
+gisounddb[248][0] ftgen 0,0,0,1,"sounds/Water/Droplets/230.mp3",0,0,0
+gisounddb[249][0] ftgen 0,0,0,1,"sounds/Water/Droplets/566.mp3",0,0,0
+gisounddb[250][0] ftgen 0,0,0,1,"sounds/Water/Droplets/429.mp3",0,0,0
+gisounddb[251][0] ftgen 0,0,0,1,"sounds/Water/Droplets/342.mp3",0,0,0
+gisounddb[252][0] ftgen 0,0,0,1,"sounds/Water/Droplets/325.mp3",0,0,0
+gisounddb[253][0] ftgen 0,0,0,1,"sounds/Water/Droplets/521.mp3",0,0,0
+gisounddb[254][0] ftgen 0,0,0,1,"sounds/Water/Droplets/426.mp3",0,0,0
+gisounddb[255][0] ftgen 0,0,0,1,"sounds/Water/Droplets/484.mp3",0,0,0
+gisounddb[256][0] ftgen 0,0,0,1,"sounds/Water/Droplets/322.mp3",0,0,0
+gisounddb[257][0] ftgen 0,0,0,1,"sounds/Water/Droplets/333.mp3",0,0,0
+gisounddb[258][0] ftgen 0,0,0,1,"sounds/Water/Droplets/388.mp3",0,0,0
+gisounddb[259][0] ftgen 0,0,0,1,"sounds/Water/Droplets/335.mp3",0,0,0
+gisounddb[260][0] ftgen 0,0,0,1,"sounds/Water/Droplets/247.mp3",0,0,0
+gisounddb[261][0] ftgen 0,0,0,1,"sounds/Water/Droplets/565.mp3",0,0,0
+gisounddb[262][0] ftgen 0,0,0,1,"sounds/Water/Droplets/547.mp3",0,0,0
+gisounddb[263][0] ftgen 0,0,0,1,"sounds/Water/Droplets/3.mp3",0,0,0
+gisounddb[264][0] ftgen 0,0,0,1,"sounds/Water/Droplets/419.mp3",0,0,0
+gisounddb[265][0] ftgen 0,0,0,1,"sounds/Water/Droplets/159.mp3",0,0,0
+gisounddb[266][0] ftgen 0,0,0,1,"sounds/Water/Droplets/53.mp3",0,0,0
+gisounddb[267][0] ftgen 0,0,0,1,"sounds/Water/Droplets/253.mp3",0,0,0
+gisounddb[268][0] ftgen 0,0,0,1,"sounds/Water/Droplets/535.mp3",0,0,0
+gisounddb[269][0] ftgen 0,0,0,1,"sounds/Water/Droplets/443.mp3",0,0,0
+gisounddb[270][0] ftgen 0,0,0,1,"sounds/Water/Droplets/286.mp3",0,0,0
+gisounddb[271][0] ftgen 0,0,0,1,"sounds/Water/Droplets/291.mp3",0,0,0
+gisounddb[272][0] ftgen 0,0,0,1,"sounds/Water/Droplets/518.mp3",0,0,0
+gisounddb[273][0] ftgen 0,0,0,1,"sounds/Water/Droplets/516.mp3",0,0,0
+gisounddb[274][0] ftgen 0,0,0,1,"sounds/Water/Droplets/421.mp3",0,0,0
+gisounddb[275][0] ftgen 0,0,0,1,"sounds/Water/Droplets/4.mp3",0,0,0
+gisounddb[276][0] ftgen 0,0,0,1,"sounds/Water/Droplets/349.mp3",0,0,0
+gisounddb[277][0] ftgen 0,0,0,1,"sounds/Water/Droplets/493.mp3",0,0,0
+gisounddb[278][0] ftgen 0,0,0,1,"sounds/Water/Droplets/369.mp3",0,0,0
+gisounddb[279][0] ftgen 0,0,0,1,"sounds/Water/Droplets/467.mp3",0,0,0
+gisounddb[280][0] ftgen 0,0,0,1,"sounds/Water/Droplets/96.mp3",0,0,0
+gisounddb[281][0] ftgen 0,0,0,1,"sounds/Water/Droplets/389.mp3",0,0,0
+gisounddb[282][0] ftgen 0,0,0,1,"sounds/Water/Droplets/571.mp3",0,0,0
+gisounddb[283][0] ftgen 0,0,0,1,"sounds/Water/Droplets/76.mp3",0,0,0
+gisounddb[284][0] ftgen 0,0,0,1,"sounds/Water/Droplets/433.mp3",0,0,0
+gisounddb[285][0] ftgen 0,0,0,1,"sounds/Water/Droplets/165.mp3",0,0,0
+gisounddb[286][0] ftgen 0,0,0,1,"sounds/Water/Droplets/391.mp3",0,0,0
+gisounddb[287][0] ftgen 0,0,0,1,"sounds/Water/Droplets/415.mp3",0,0,0
+gisounddb[288][0] ftgen 0,0,0,1,"sounds/Water/Droplets/69.mp3",0,0,0
+gisounddb[289][0] ftgen 0,0,0,1,"sounds/Water/Droplets/216.mp3",0,0,0
+gisounddb[290][0] ftgen 0,0,0,1,"sounds/Water/Droplets/54.mp3",0,0,0
+gisounddb[291][0] ftgen 0,0,0,1,"sounds/Water/Droplets/150.mp3",0,0,0
+gisounddb[292][0] ftgen 0,0,0,1,"sounds/Water/Droplets/254.mp3",0,0,0
+gisounddb[293][0] ftgen 0,0,0,1,"sounds/Water/Droplets/354.mp3",0,0,0
+gisounddb[294][0] ftgen 0,0,0,1,"sounds/Water/Droplets/122.mp3",0,0,0
+gisounddb[295][0] ftgen 0,0,0,1,"sounds/Water/Droplets/266.mp3",0,0,0
+gisounddb[296][0] ftgen 0,0,0,1,"sounds/Water/Droplets/11.mp3",0,0,0
+gisounddb[297][0] ftgen 0,0,0,1,"sounds/Water/Droplets/166.mp3",0,0,0
+gisounddb[298][0] ftgen 0,0,0,1,"sounds/Water/Droplets/142.mp3",0,0,0
+gisounddb[299][0] ftgen 0,0,0,1,"sounds/Water/Droplets/351.mp3",0,0,0
+gisounddb[300][0] ftgen 0,0,0,1,"sounds/Water/Droplets/151.mp3",0,0,0
+gisounddb[301][0] ftgen 0,0,0,1,"sounds/Water/Droplets/355.mp3",0,0,0
+gisounddb[302][0] ftgen 0,0,0,1,"sounds/Water/Droplets/79.mp3",0,0,0
+gisounddb[303][0] ftgen 0,0,0,1,"sounds/Water/Droplets/193.mp3",0,0,0
+gisounddb[304][0] ftgen 0,0,0,1,"sounds/Water/Droplets/385.mp3",0,0,0
+gisounddb[305][0] ftgen 0,0,0,1,"sounds/Water/Droplets/78.mp3",0,0,0
+gisounddb[306][0] ftgen 0,0,0,1,"sounds/Water/Droplets/200.mp3",0,0,0
+gisounddb[307][0] ftgen 0,0,0,1,"sounds/Water/Droplets/401.mp3",0,0,0
+gisounddb[308][0] ftgen 0,0,0,1,"sounds/Water/Droplets/487.mp3",0,0,0
+gisounddb[309][0] ftgen 0,0,0,1,"sounds/Water/Droplets/250.mp3",0,0,0
+gisounddb[310][0] ftgen 0,0,0,1,"sounds/Water/Droplets/196.mp3",0,0,0
+gisounddb[311][0] ftgen 0,0,0,1,"sounds/Water/Droplets/237.mp3",0,0,0
+gisounddb[312][0] ftgen 0,0,0,1,"sounds/Water/Droplets/568.mp3",0,0,0
+gisounddb[313][0] ftgen 0,0,0,1,"sounds/Water/Droplets/352.mp3",0,0,0
+gisounddb[314][0] ftgen 0,0,0,1,"sounds/Water/Droplets/452.mp3",0,0,0
+gisounddb[315][0] ftgen 0,0,0,1,"sounds/Water/Droplets/434.mp3",0,0,0
+gisounddb[316][0] ftgen 0,0,0,1,"sounds/Water/Droplets/25.mp3",0,0,0
+gisounddb[317][0] ftgen 0,0,0,1,"sounds/Water/Droplets/382.mp3",0,0,0
+gisounddb[318][0] ftgen 0,0,0,1,"sounds/Water/Droplets/425.mp3",0,0,0
+gisounddb[319][0] ftgen 0,0,0,1,"sounds/Water/Droplets/146.mp3",0,0,0
+gisounddb[320][0] ftgen 0,0,0,1,"sounds/Water/Droplets/181.mp3",0,0,0
+gisounddb[321][0] ftgen 0,0,0,1,"sounds/Water/Droplets/383.mp3",0,0,0
+gisounddb[322][0] ftgen 0,0,0,1,"sounds/Water/Droplets/66.mp3",0,0,0
+gisounddb[323][0] ftgen 0,0,0,1,"sounds/Water/Droplets/554.mp3",0,0,0
+gisounddb[324][0] ftgen 0,0,0,1,"sounds/Water/Droplets/176.mp3",0,0,0
+gisounddb[325][0] ftgen 0,0,0,1,"sounds/Water/Droplets/47.mp3",0,0,0
+gisounddb[326][0] ftgen 0,0,0,1,"sounds/Water/Droplets/48.mp3",0,0,0
+gisounddb[327][0] ftgen 0,0,0,1,"sounds/Water/Droplets/478.mp3",0,0,0
+gisounddb[328][0] ftgen 0,0,0,1,"sounds/Water/Droplets/68.mp3",0,0,0
+gisounddb[329][0] ftgen 0,0,0,1,"sounds/Water/Droplets/92.mp3",0,0,0
+gisounddb[330][0] ftgen 0,0,0,1,"sounds/Water/Droplets/402.mp3",0,0,0
+gisounddb[331][0] ftgen 0,0,0,1,"sounds/Water/Droplets/411.mp3",0,0,0
+gisounddb[332][0] ftgen 0,0,0,1,"sounds/Water/Droplets/308.mp3",0,0,0
+gisounddb[333][0] ftgen 0,0,0,1,"sounds/Water/Droplets/481.mp3",0,0,0
+gisounddb[334][0] ftgen 0,0,0,1,"sounds/Water/Droplets/119.mp3",0,0,0
+gisounddb[335][0] ftgen 0,0,0,1,"sounds/Water/Droplets/249.mp3",0,0,0
+gisounddb[336][0] ftgen 0,0,0,1,"sounds/Water/Droplets/152.mp3",0,0,0
+gisounddb[337][0] ftgen 0,0,0,1,"sounds/Water/Droplets/262.mp3",0,0,0
+gisounddb[338][0] ftgen 0,0,0,1,"sounds/Water/Droplets/278.mp3",0,0,0
+gisounddb[339][0] ftgen 0,0,0,1,"sounds/Water/Droplets/33.mp3",0,0,0
+gisounddb[340][0] ftgen 0,0,0,1,"sounds/Water/Droplets/106.mp3",0,0,0
+gisounddb[341][0] ftgen 0,0,0,1,"sounds/Water/Droplets/136.mp3",0,0,0
+gisounddb[342][0] ftgen 0,0,0,1,"sounds/Water/Droplets/41.mp3",0,0,0
+gisounddb[343][0] ftgen 0,0,0,1,"sounds/Water/Droplets/362.mp3",0,0,0
+gisounddb[344][0] ftgen 0,0,0,1,"sounds/Water/Droplets/444.mp3",0,0,0
+gisounddb[345][0] ftgen 0,0,0,1,"sounds/Water/Droplets/310.mp3",0,0,0
+gisounddb[346][0] ftgen 0,0,0,1,"sounds/Water/Droplets/35.mp3",0,0,0
+gisounddb[347][0] ftgen 0,0,0,1,"sounds/Water/Droplets/102.mp3",0,0,0
+gisounddb[348][0] ftgen 0,0,0,1,"sounds/Water/Droplets/16.mp3",0,0,0
+gisounddb[349][0] ftgen 0,0,0,1,"sounds/Water/Droplets/276.mp3",0,0,0
+gisounddb[350][0] ftgen 0,0,0,1,"sounds/Water/Droplets/10.mp3",0,0,0
+gisounddb[351][0] ftgen 0,0,0,1,"sounds/Water/Droplets/265.mp3",0,0,0
+gisounddb[352][0] ftgen 0,0,0,1,"sounds/Water/Droplets/293.mp3",0,0,0
+gisounddb[353][0] ftgen 0,0,0,1,"sounds/Water/Droplets/108.mp3",0,0,0
+gisounddb[354][0] ftgen 0,0,0,1,"sounds/Water/Droplets/418.mp3",0,0,0
+gisounddb[355][0] ftgen 0,0,0,1,"sounds/Water/Droplets/384.mp3",0,0,0
+gisounddb[356][0] ftgen 0,0,0,1,"sounds/Water/Droplets/398.mp3",0,0,0
+gisounddb[357][0] ftgen 0,0,0,1,"sounds/Water/Droplets/364.mp3",0,0,0
+gisounddb[358][0] ftgen 0,0,0,1,"sounds/Water/Droplets/80.mp3",0,0,0
+gisounddb[359][0] ftgen 0,0,0,1,"sounds/Water/Droplets/341.mp3",0,0,0
+gisounddb[360][0] ftgen 0,0,0,1,"sounds/Water/Droplets/117.mp3",0,0,0
+gisounddb[361][0] ftgen 0,0,0,1,"sounds/Water/Droplets/179.mp3",0,0,0
+gisounddb[362][0] ftgen 0,0,0,1,"sounds/Water/Droplets/221.mp3",0,0,0
+gisounddb[363][0] ftgen 0,0,0,1,"sounds/Water/Droplets/89.mp3",0,0,0
+gisounddb[364][0] ftgen 0,0,0,1,"sounds/Water/Droplets/257.mp3",0,0,0
+gisounddb[365][0] ftgen 0,0,0,1,"sounds/Water/Droplets/51.mp3",0,0,0
+gisounddb[366][0] ftgen 0,0,0,1,"sounds/Water/Droplets/65.mp3",0,0,0
+gisounddb[367][0] ftgen 0,0,0,1,"sounds/Water/Droplets/177.mp3",0,0,0
+gisounddb[368][0] ftgen 0,0,0,1,"sounds/Water/Droplets/357.mp3",0,0,0
+gisounddb[369][0] ftgen 0,0,0,1,"sounds/Water/Droplets/29.mp3",0,0,0
+gisounddb[370][0] ftgen 0,0,0,1,"sounds/Water/Droplets/557.mp3",0,0,0
+gisounddb[371][0] ftgen 0,0,0,1,"sounds/Water/Droplets/372.mp3",0,0,0
+gisounddb[372][0] ftgen 0,0,0,1,"sounds/Water/Droplets/246.mp3",0,0,0
+gisounddb[373][0] ftgen 0,0,0,1,"sounds/Water/Droplets/405.mp3",0,0,0
+gisounddb[374][0] ftgen 0,0,0,1,"sounds/Water/Droplets/336.mp3",0,0,0
+gisounddb[375][0] ftgen 0,0,0,1,"sounds/Water/Droplets/573.mp3",0,0,0
+gisounddb[376][0] ftgen 0,0,0,1,"sounds/Water/Droplets/2.mp3",0,0,0
+gisounddb[377][0] ftgen 0,0,0,1,"sounds/Water/Droplets/158.mp3",0,0,0
+gisounddb[378][0] ftgen 0,0,0,1,"sounds/Water/Droplets/312.mp3",0,0,0
+gisounddb[379][0] ftgen 0,0,0,1,"sounds/Water/Droplets/167.mp3",0,0,0
+gisounddb[380][0] ftgen 0,0,0,1,"sounds/Water/Droplets/508.mp3",0,0,0
+gisounddb[381][0] ftgen 0,0,0,1,"sounds/Water/Droplets/133.mp3",0,0,0
+gisounddb[382][0] ftgen 0,0,0,1,"sounds/Water/Droplets/252.mp3",0,0,0
+gisounddb[383][0] ftgen 0,0,0,1,"sounds/Water/Droplets/211.mp3",0,0,0
+gisounddb[384][0] ftgen 0,0,0,1,"sounds/Water/Droplets/294.mp3",0,0,0
+gisounddb[385][0] ftgen 0,0,0,1,"sounds/Water/Droplets/360.mp3",0,0,0
+gisounddb[386][0] ftgen 0,0,0,1,"sounds/Water/Droplets/116.mp3",0,0,0
+gisounddb[387][0] ftgen 0,0,0,1,"sounds/Water/Droplets/338.mp3",0,0,0
+gisounddb[388][0] ftgen 0,0,0,1,"sounds/Water/Droplets/232.mp3",0,0,0
+gisounddb[389][0] ftgen 0,0,0,1,"sounds/Water/Droplets/43.mp3",0,0,0
+gisounddb[390][0] ftgen 0,0,0,1,"sounds/Water/Droplets/567.mp3",0,0,0
+gisounddb[391][0] ftgen 0,0,0,1,"sounds/Water/Droplets/446.mp3",0,0,0
+gisounddb[392][0] ftgen 0,0,0,1,"sounds/Water/Droplets/86.mp3",0,0,0
+gisounddb[393][0] ftgen 0,0,0,1,"sounds/Water/Droplets/414.mp3",0,0,0
+gisounddb[394][0] ftgen 0,0,0,1,"sounds/Water/Droplets/307.mp3",0,0,0
+gisounddb[395][0] ftgen 0,0,0,1,"sounds/Water/Droplets/334.mp3",0,0,0
+gisounddb[396][0] ftgen 0,0,0,1,"sounds/Water/Droplets/350.mp3",0,0,0
+gisounddb[397][0] ftgen 0,0,0,1,"sounds/Water/Droplets/297.mp3",0,0,0
+gisounddb[398][0] ftgen 0,0,0,1,"sounds/Water/Droplets/155.mp3",0,0,0
+gisounddb[399][0] ftgen 0,0,0,1,"sounds/Water/Droplets/15.mp3",0,0,0
+gisounddb[400][0] ftgen 0,0,0,1,"sounds/Water/Droplets/575.mp3",0,0,0
+gisounddb[401][0] ftgen 0,0,0,1,"sounds/Water/Droplets/83.mp3",0,0,0
+gisounddb[402][0] ftgen 0,0,0,1,"sounds/Water/Droplets/140.mp3",0,0,0
+gisounddb[403][0] ftgen 0,0,0,1,"sounds/Water/Droplets/428.mp3",0,0,0
+gisounddb[404][0] ftgen 0,0,0,1,"sounds/Water/Droplets/172.mp3",0,0,0
+gisounddb[405][0] ftgen 0,0,0,1,"sounds/Water/Droplets/436.mp3",0,0,0
+gisounddb[406][0] ftgen 0,0,0,1,"sounds/Water/Droplets/577.mp3",0,0,0
+gisounddb[407][0] ftgen 0,0,0,1,"sounds/Water/Droplets/222.mp3",0,0,0
+gisounddb[408][0] ftgen 0,0,0,1,"sounds/Water/Droplets/212.mp3",0,0,0
+gisounddb[409][0] ftgen 0,0,0,1,"sounds/Water/Droplets/219.mp3",0,0,0
+gisounddb[410][0] ftgen 0,0,0,1,"sounds/Water/Droplets/379.mp3",0,0,0
+gisounddb[411][0] ftgen 0,0,0,1,"sounds/Water/Droplets/578.mp3",0,0,0
+gisounddb[412][0] ftgen 0,0,0,1,"sounds/Water/Droplets/275.mp3",0,0,0
+gisounddb[413][0] ftgen 0,0,0,1,"sounds/Water/Droplets/273.mp3",0,0,0
+gisounddb[414][0] ftgen 0,0,0,1,"sounds/Water/Droplets/570.mp3",0,0,0
+gisounddb[415][0] ftgen 0,0,0,1,"sounds/Water/Droplets/347.mp3",0,0,0
+gisounddb[416][0] ftgen 0,0,0,1,"sounds/Water/Droplets/395.mp3",0,0,0
+gisounddb[417][0] ftgen 0,0,0,1,"sounds/Water/Droplets/87.mp3",0,0,0
+gisounddb[418][0] ftgen 0,0,0,1,"sounds/Water/Droplets/13.mp3",0,0,0
+gisounddb[419][0] ftgen 0,0,0,1,"sounds/Water/Droplets/207.mp3",0,0,0
+gisounddb[420][0] ftgen 0,0,0,1,"sounds/Water/Droplets/206.mp3",0,0,0
+gisounddb[421][0] ftgen 0,0,0,1,"sounds/Water/Droplets/306.mp3",0,0,0
+gisounddb[422][0] ftgen 0,0,0,1,"sounds/Water/Droplets/522.mp3",0,0,0
+gisounddb[423][0] ftgen 0,0,0,1,"sounds/Water/Droplets/313.mp3",0,0,0
+gisounddb[424][0] ftgen 0,0,0,1,"sounds/Water/Droplets/19.mp3",0,0,0
+gisounddb[425][0] ftgen 0,0,0,1,"sounds/Water/Droplets/445.mp3",0,0,0
+gisounddb[426][0] ftgen 0,0,0,1,"sounds/Water/Droplets/6.mp3",0,0,0
+gisounddb[427][0] ftgen 0,0,0,1,"sounds/Water/Droplets/509.mp3",0,0,0
+gisounddb[428][0] ftgen 0,0,0,1,"sounds/Water/Droplets/227.mp3",0,0,0
+gisounddb[429][0] ftgen 0,0,0,1,"sounds/Water/Droplets/386.mp3",0,0,0
+gisounddb[430][0] ftgen 0,0,0,1,"sounds/Water/Droplets/213.mp3",0,0,0
+gisounddb[431][0] ftgen 0,0,0,1,"sounds/Water/Droplets/243.mp3",0,0,0
+gisounddb[432][0] ftgen 0,0,0,1,"sounds/Water/Droplets/82.mp3",0,0,0
+gisounddb[433][0] ftgen 0,0,0,1,"sounds/Water/Droplets/524.mp3",0,0,0
+gisounddb[434][0] ftgen 0,0,0,1,"sounds/Water/Droplets/209.mp3",0,0,0
+gisounddb[435][0] ftgen 0,0,0,1,"sounds/Water/Droplets/317.mp3",0,0,0
+gisounddb[436][0] ftgen 0,0,0,1,"sounds/Water/Droplets/489.mp3",0,0,0
+gisounddb[437][0] ftgen 0,0,0,1,"sounds/Water/Droplets/371.mp3",0,0,0
+gisounddb[438][0] ftgen 0,0,0,1,"sounds/Water/Droplets/523.mp3",0,0,0
+gisounddb[439][0] ftgen 0,0,0,1,"sounds/Water/Droplets/118.mp3",0,0,0
+gisounddb[440][0] ftgen 0,0,0,1,"sounds/Water/Droplets/455.mp3",0,0,0
+gisounddb[441][0] ftgen 0,0,0,1,"sounds/Water/Droplets/229.mp3",0,0,0
+gisounddb[442][0] ftgen 0,0,0,1,"sounds/Water/Droplets/459.mp3",0,0,0
+gisounddb[443][0] ftgen 0,0,0,1,"sounds/Water/Droplets/123.mp3",0,0,0
+gisounddb[444][0] ftgen 0,0,0,1,"sounds/Water/Droplets/387.mp3",0,0,0
+gisounddb[445][0] ftgen 0,0,0,1,"sounds/Water/Droplets/120.mp3",0,0,0
+gisounddb[446][0] ftgen 0,0,0,1,"sounds/Water/Droplets/14.mp3",0,0,0
+gisounddb[447][0] ftgen 0,0,0,1,"sounds/Water/Droplets/255.mp3",0,0,0
+gisounddb[448][0] ftgen 0,0,0,1,"sounds/Water/Droplets/101.mp3",0,0,0
+gisounddb[449][0] ftgen 0,0,0,1,"sounds/Water/Droplets/477.mp3",0,0,0
+gisounddb[450][0] ftgen 0,0,0,1,"sounds/Water/Droplets/412.mp3",0,0,0
+gisounddb[451][0] ftgen 0,0,0,1,"sounds/Water/Droplets/114.mp3",0,0,0
+gisounddb[452][0] ftgen 0,0,0,1,"sounds/Water/Droplets/282.mp3",0,0,0
+gisounddb[453][0] ftgen 0,0,0,1,"sounds/Water/Droplets/346.mp3",0,0,0
+gisounddb[454][0] ftgen 0,0,0,1,"sounds/Water/Droplets/188.mp3",0,0,0
+gisounddb[455][0] ftgen 0,0,0,1,"sounds/Water/Droplets/112.mp3",0,0,0
+gisounddb[456][0] ftgen 0,0,0,1,"sounds/Water/Droplets/283.mp3",0,0,0
+gisounddb[457][0] ftgen 0,0,0,1,"sounds/Water/Droplets/236.mp3",0,0,0
+gisounddb[458][0] ftgen 0,0,0,1,"sounds/Water/Droplets/22.mp3",0,0,0
+gisounddb[459][0] ftgen 0,0,0,1,"sounds/Water/Droplets/52.mp3",0,0,0
+gisounddb[460][0] ftgen 0,0,0,1,"sounds/Water/Droplets/91.mp3",0,0,0
+gisounddb[461][0] ftgen 0,0,0,1,"sounds/Water/Droplets/234.mp3",0,0,0
+gisounddb[462][0] ftgen 0,0,0,1,"sounds/Water/Droplets/244.mp3",0,0,0
+gisounddb[463][0] ftgen 0,0,0,1,"sounds/Water/Droplets/339.mp3",0,0,0
+gisounddb[464][0] ftgen 0,0,0,1,"sounds/Water/Droplets/439.mp3",0,0,0
+gisounddb[465][0] ftgen 0,0,0,1,"sounds/Water/Droplets/541.mp3",0,0,0
+gisounddb[466][0] ftgen 0,0,0,1,"sounds/Water/Droplets/284.mp3",0,0,0
+gisounddb[467][0] ftgen 0,0,0,1,"sounds/Water/Droplets/214.mp3",0,0,0
+gisounddb[468][0] ftgen 0,0,0,1,"sounds/Water/Droplets/241.mp3",0,0,0
+gisounddb[469][0] ftgen 0,0,0,1,"sounds/Water/Droplets/356.mp3",0,0,0
+gisounddb[470][0] ftgen 0,0,0,1,"sounds/Water/Droplets/168.mp3",0,0,0
+gisounddb[471][0] ftgen 0,0,0,1,"sounds/Water/Droplets/56.mp3",0,0,0
+gisounddb[472][0] ftgen 0,0,0,1,"sounds/Water/Droplets/220.mp3",0,0,0
+gisounddb[473][0] ftgen 0,0,0,1,"sounds/Water/Droplets/94.mp3",0,0,0
+gisounddb[474][0] ftgen 0,0,0,1,"sounds/Water/Droplets/374.mp3",0,0,0
+gisounddb[475][0] ftgen 0,0,0,1,"sounds/Water/Droplets/409.mp3",0,0,0
+gisounddb[476][0] ftgen 0,0,0,1,"sounds/Water/Droplets/183.mp3",0,0,0
+gisounddb[477][0] ftgen 0,0,0,1,"sounds/Water/Droplets/558.mp3",0,0,0
+gisounddb[478][0] ftgen 0,0,0,1,"sounds/Water/Droplets/471.mp3",0,0,0
+gisounddb[479][0] ftgen 0,0,0,1,"sounds/Water/Droplets/424.mp3",0,0,0
+gisounddb[480][0] ftgen 0,0,0,1,"sounds/Water/Droplets/191.mp3",0,0,0
+gisounddb[481][0] ftgen 0,0,0,1,"sounds/Water/Droplets/238.mp3",0,0,0
+gisounddb[482][0] ftgen 0,0,0,1,"sounds/Water/Droplets/496.mp3",0,0,0
+gisounddb[483][0] ftgen 0,0,0,1,"sounds/Water/Droplets/562.mp3",0,0,0
+gisounddb[484][0] ftgen 0,0,0,1,"sounds/Water/Droplets/248.mp3",0,0,0
+gisounddb[485][0] ftgen 0,0,0,1,"sounds/Water/Droplets/377.mp3",0,0,0
+gisounddb[486][0] ftgen 0,0,0,1,"sounds/Water/Droplets/438.mp3",0,0,0
+gisounddb[487][0] ftgen 0,0,0,1,"sounds/Water/Droplets/302.mp3",0,0,0
+gisounddb[488][0] ftgen 0,0,0,1,"sounds/Water/Droplets/231.mp3",0,0,0
+gisounddb[489][0] ftgen 0,0,0,1,"sounds/Water/Droplets/353.mp3",0,0,0
+gisounddb[490][0] ftgen 0,0,0,1,"sounds/Water/Droplets/542.mp3",0,0,0
+gisounddb[491][0] ftgen 0,0,0,1,"sounds/Water/Droplets/50.mp3",0,0,0
+gisounddb[492][0] ftgen 0,0,0,1,"sounds/Water/Droplets/501.mp3",0,0,0
+gisounddb[493][0] ftgen 0,0,0,1,"sounds/Water/Droplets/540.mp3",0,0,0
+gisounddb[494][0] ftgen 0,0,0,1,"sounds/Water/Droplets/267.mp3",0,0,0
+gisounddb[495][0] ftgen 0,0,0,1,"sounds/Water/Droplets/218.mp3",0,0,0
+gisounddb[496][0] ftgen 0,0,0,1,"sounds/Water/Droplets/296.mp3",0,0,0
+gisounddb[497][0] ftgen 0,0,0,1,"sounds/Water/Droplets/285.mp3",0,0,0
+gisounddb[498][0] ftgen 0,0,0,1,"sounds/Water/Droplets/64.mp3",0,0,0
+gisounddb[499][0] ftgen 0,0,0,1,"sounds/Water/Droplets/195.mp3",0,0,0
+gisounddb[500][0] ftgen 0,0,0,1,"sounds/Water/Droplets/270.mp3",0,0,0
+gisounddb[501][0] ftgen 0,0,0,1,"sounds/Water/Droplets/319.mp3",0,0,0
+gisounddb[502][0] ftgen 0,0,0,1,"sounds/Water/Droplets/500.mp3",0,0,0
+gisounddb[503][0] ftgen 0,0,0,1,"sounds/Water/Droplets/514.mp3",0,0,0
+gisounddb[504][0] ftgen 0,0,0,1,"sounds/Water/Droplets/457.mp3",0,0,0
+gisounddb[505][0] ftgen 0,0,0,1,"sounds/Water/Droplets/198.mp3",0,0,0
+gisounddb[506][0] ftgen 0,0,0,1,"sounds/Water/Droplets/564.mp3",0,0,0
+gisounddb[507][0] ftgen 0,0,0,1,"sounds/Water/Droplets/154.mp3",0,0,0
+gisounddb[508][0] ftgen 0,0,0,1,"sounds/Water/Droplets/31.mp3",0,0,0
+gisounddb[509][0] ftgen 0,0,0,1,"sounds/Water/Droplets/394.mp3",0,0,0
+gisounddb[510][0] ftgen 0,0,0,1,"sounds/Water/Droplets/485.mp3",0,0,0
+gisounddb[511][0] ftgen 0,0,0,1,"sounds/Water/Droplets/126.mp3",0,0,0
+gisounddb[512][0] ftgen 0,0,0,1,"sounds/Water/Droplets/261.mp3",0,0,0
+gisounddb[513][0] ftgen 0,0,0,1,"sounds/Water/Droplets/107.mp3",0,0,0
+gisounddb[514][0] ftgen 0,0,0,1,"sounds/Water/Droplets/115.mp3",0,0,0
+gisounddb[515][0] ftgen 0,0,0,1,"sounds/Water/Droplets/469.mp3",0,0,0
+gisounddb[516][0] ftgen 0,0,0,1,"sounds/Water/Droplets/240.mp3",0,0,0
+gisounddb[517][0] ftgen 0,0,0,1,"sounds/Water/Droplets/549.mp3",0,0,0
+gisounddb[518][0] ftgen 0,0,0,1,"sounds/Water/Droplets/186.mp3",0,0,0
+gisounddb[519][0] ftgen 0,0,0,1,"sounds/Water/Droplets/137.mp3",0,0,0
+gisounddb[520][0] ftgen 0,0,0,1,"sounds/Water/Droplets/161.mp3",0,0,0
+gisounddb[521][0] ftgen 0,0,0,1,"sounds/Water/Droplets/400.mp3",0,0,0
+gisounddb[522][0] ftgen 0,0,0,1,"sounds/Water/Droplets/279.mp3",0,0,0
+gisounddb[523][0] ftgen 0,0,0,1,"sounds/Water/Droplets/184.mp3",0,0,0
+gisounddb[524][0] ftgen 0,0,0,1,"sounds/Water/Droplets/215.mp3",0,0,0
+gisounddb[525][0] ftgen 0,0,0,1,"sounds/Water/Droplets/330.mp3",0,0,0
+gisounddb[526][0] ftgen 0,0,0,1,"sounds/Water/Droplets/529.mp3",0,0,0
+gisounddb[527][0] ftgen 0,0,0,1,"sounds/Water/Droplets/84.mp3",0,0,0
+gisounddb[528][0] ftgen 0,0,0,1,"sounds/Water/Droplets/376.mp3",0,0,0
+gisounddb[529][0] ftgen 0,0,0,1,"sounds/Water/Droplets/111.mp3",0,0,0
+gisounddb[530][0] ftgen 0,0,0,1,"sounds/Water/Droplets/97.mp3",0,0,0
+gisounddb[531][0] ftgen 0,0,0,1,"sounds/Water/Droplets/197.mp3",0,0,0
+gisounddb[532][0] ftgen 0,0,0,1,"sounds/Water/Droplets/73.mp3",0,0,0
+gisounddb[533][0] ftgen 0,0,0,1,"sounds/Water/Droplets/125.mp3",0,0,0
+gisounddb[534][0] ftgen 0,0,0,1,"sounds/Water/Droplets/422.mp3",0,0,0
+gisounddb[535][0] ftgen 0,0,0,1,"sounds/Water/Droplets/104.mp3",0,0,0
+gisounddb[536][0] ftgen 0,0,0,1,"sounds/Water/Droplets/156.mp3",0,0,0
+gisounddb[537][0] ftgen 0,0,0,1,"sounds/Water/Droplets/208.mp3",0,0,0
+gisounddb[538][0] ftgen 0,0,0,1,"sounds/Water/Droplets/464.mp3",0,0,0
+gisounddb[539][0] ftgen 0,0,0,1,"sounds/Water/Droplets/187.mp3",0,0,0
+gisounddb[540][0] ftgen 0,0,0,1,"sounds/Water/Droplets/110.mp3",0,0,0
+gisounddb[541][0] ftgen 0,0,0,1,"sounds/Water/Droplets/148.mp3",0,0,0
+gisounddb[542][0] ftgen 0,0,0,1,"sounds/Water/Droplets/20.mp3",0,0,0
+gisounddb[543][0] ftgen 0,0,0,1,"sounds/Water/Droplets/340.mp3",0,0,0
+gisounddb[544][0] ftgen 0,0,0,1,"sounds/Water/Droplets/277.mp3",0,0,0
+gisounddb[545][0] ftgen 0,0,0,1,"sounds/Water/Droplets/370.mp3",0,0,0
+gisounddb[546][0] ftgen 0,0,0,1,"sounds/Water/Droplets/269.mp3",0,0,0
+gisounddb[547][0] ftgen 0,0,0,1,"sounds/Water/Droplets/555.mp3",0,0,0
+gisounddb[548][0] ftgen 0,0,0,1,"sounds/Water/Droplets/495.mp3",0,0,0
+gisounddb[549][0] ftgen 0,0,0,1,"sounds/Water/Droplets/228.mp3",0,0,0
+gisounddb[550][0] ftgen 0,0,0,1,"sounds/Water/Droplets/574.mp3",0,0,0
+gisounddb[551][0] ftgen 0,0,0,1,"sounds/Water/Droplets/526.mp3",0,0,0
+gisounddb[552][0] ftgen 0,0,0,1,"sounds/Water/Droplets/143.mp3",0,0,0
+gisounddb[553][0] ftgen 0,0,0,1,"sounds/Water/Droplets/537.mp3",0,0,0
+gisounddb[554][0] ftgen 0,0,0,1,"sounds/Water/Droplets/304.mp3",0,0,0
+gisounddb[555][0] ftgen 0,0,0,1,"sounds/Water/Droplets/242.mp3",0,0,0
+gisounddb[556][0] ftgen 0,0,0,1,"sounds/Water/Droplets/324.mp3",0,0,0
+gisounddb[557][0] ftgen 0,0,0,1,"sounds/Water/Droplets/442.mp3",0,0,0
+gisounddb[558][0] ftgen 0,0,0,1,"sounds/Water/Droplets/528.mp3",0,0,0
+gisounddb[559][0] ftgen 0,0,0,1,"sounds/Water/Droplets/545.mp3",0,0,0
+gisounddb[560][0] ftgen 0,0,0,1,"sounds/Water/Droplets/513.mp3",0,0,0
+gisounddb[561][0] ftgen 0,0,0,1,"sounds/Water/Droplets/447.mp3",0,0,0
+gisounddb[562][0] ftgen 0,0,0,1,"sounds/Water/Droplets/7.mp3",0,0,0
+gisounddb[563][0] ftgen 0,0,0,1,"sounds/Water/Droplets/551.mp3",0,0,0
+gisounddb[564][0] ftgen 0,0,0,1,"sounds/Water/Droplets/63.mp3",0,0,0
+gisounddb[565][0] ftgen 0,0,0,1,"sounds/Water/Droplets/506.mp3",0,0,0
+gisounddb[566][0] ftgen 0,0,0,1,"sounds/Water/Droplets/127.mp3",0,0,0
+gisounddb[567][0] ftgen 0,0,0,1,"sounds/Water/Droplets/37.mp3",0,0,0
+gisounddb[568][0] ftgen 0,0,0,1,"sounds/Water/Droplets/327.mp3",0,0,0
+gisounddb[569][0] ftgen 0,0,0,1,"sounds/Water/Droplets/9.mp3",0,0,0
+gisounddb[570][0] ftgen 0,0,0,1,"sounds/Water/Droplets/24.mp3",0,0,0
+gisounddb[571][0] ftgen 0,0,0,1,"sounds/Water/Droplets/173.mp3",0,0,0
+gisounddb[572][0] ftgen 0,0,0,1,"sounds/Water/Droplets/204.mp3",0,0,0
+gisounddb[573][0] ftgen 0,0,0,1,"sounds/Water/Droplets/263.mp3",0,0,0
+gisounddb[574][0] ftgen 0,0,0,1,"sounds/Water/Droplets/194.mp3",0,0,0
+gisounddb[575][0] ftgen 0,0,0,1,"sounds/Water/Droplets/17.mp3",0,0,0
+gisounddb[576][0] ftgen 0,0,0,1,"sounds/Water/Droplets/303.mp3",0,0,0
+gisounddb[577][0] ftgen 0,0,0,1,"sounds/Water/Droplets/420.mp3",0,0,0
+gisounddb[578][0] ftgen 0,0,0,1,"sounds/Water/Paddling/45.mp3",0,0,0
+gisounddb[579][0] ftgen 0,0,0,1,"sounds/Water/Paddling/60.mp3",0,0,0
+gisounddb[580][0] ftgen 0,0,0,1,"sounds/Water/Paddling/59.mp3",0,0,0
+gisounddb[581][0] ftgen 0,0,0,1,"sounds/Water/Paddling/81.mp3",0,0,0
+gisounddb[582][0] ftgen 0,0,0,1,"sounds/Water/Paddling/38.mp3",0,0,0
+gisounddb[583][0] ftgen 0,0,0,1,"sounds/Water/Paddling/5.mp3",0,0,0
+gisounddb[584][0] ftgen 0,0,0,1,"sounds/Water/Paddling/85.mp3",0,0,0
+gisounddb[585][0] ftgen 0,0,0,1,"sounds/Water/Paddling/75.mp3",0,0,0
+gisounddb[586][0] ftgen 0,0,0,1,"sounds/Water/Paddling/88.mp3",0,0,0
+gisounddb[587][0] ftgen 0,0,0,1,"sounds/Water/Paddling/77.mp3",0,0,0
+gisounddb[588][0] ftgen 0,0,0,1,"sounds/Water/Paddling/70.mp3",0,0,0
+gisounddb[589][0] ftgen 0,0,0,1,"sounds/Water/Paddling/39.mp3",0,0,0
+gisounddb[590][0] ftgen 0,0,0,1,"sounds/Water/Paddling/62.mp3",0,0,0
+gisounddb[591][0] ftgen 0,0,0,1,"sounds/Water/Paddling/21.mp3",0,0,0
+gisounddb[592][0] ftgen 0,0,0,1,"sounds/Water/Paddling/40.mp3",0,0,0
+gisounddb[593][0] ftgen 0,0,0,1,"sounds/Water/Paddling/42.mp3",0,0,0
+gisounddb[594][0] ftgen 0,0,0,1,"sounds/Water/Paddling/98.mp3",0,0,0
+gisounddb[595][0] ftgen 0,0,0,1,"sounds/Water/Paddling/95.mp3",0,0,0
+gisounddb[596][0] ftgen 0,0,0,1,"sounds/Water/Paddling/74.mp3",0,0,0
+gisounddb[597][0] ftgen 0,0,0,1,"sounds/Water/Paddling/30.mp3",0,0,0
+gisounddb[598][0] ftgen 0,0,0,1,"sounds/Water/Paddling/100.mp3",0,0,0
+gisounddb[599][0] ftgen 0,0,0,1,"sounds/Water/Paddling/12.mp3",0,0,0
+gisounddb[600][0] ftgen 0,0,0,1,"sounds/Water/Paddling/44.mp3",0,0,0
+gisounddb[601][0] ftgen 0,0,0,1,"sounds/Water/Paddling/8.mp3",0,0,0
+gisounddb[602][0] ftgen 0,0,0,1,"sounds/Water/Paddling/46.mp3",0,0,0
+gisounddb[603][0] ftgen 0,0,0,1,"sounds/Water/Paddling/34.mp3",0,0,0
+gisounddb[604][0] ftgen 0,0,0,1,"sounds/Water/Paddling/93.mp3",0,0,0
+gisounddb[605][0] ftgen 0,0,0,1,"sounds/Water/Paddling/61.mp3",0,0,0
+gisounddb[606][0] ftgen 0,0,0,1,"sounds/Water/Paddling/67.mp3",0,0,0
+gisounddb[607][0] ftgen 0,0,0,1,"sounds/Water/Paddling/49.mp3",0,0,0
+gisounddb[608][0] ftgen 0,0,0,1,"sounds/Water/Paddling/55.mp3",0,0,0
+gisounddb[609][0] ftgen 0,0,0,1,"sounds/Water/Paddling/28.mp3",0,0,0
+gisounddb[610][0] ftgen 0,0,0,1,"sounds/Water/Paddling/23.mp3",0,0,0
+gisounddb[611][0] ftgen 0,0,0,1,"sounds/Water/Paddling/72.mp3",0,0,0
+gisounddb[612][0] ftgen 0,0,0,1,"sounds/Water/Paddling/1.mp3",0,0,0
+gisounddb[613][0] ftgen 0,0,0,1,"sounds/Water/Paddling/27.mp3",0,0,0
+gisounddb[614][0] ftgen 0,0,0,1,"sounds/Water/Paddling/58.mp3",0,0,0
+gisounddb[615][0] ftgen 0,0,0,1,"sounds/Water/Paddling/26.mp3",0,0,0
+gisounddb[616][0] ftgen 0,0,0,1,"sounds/Water/Paddling/36.mp3",0,0,0
+gisounddb[617][0] ftgen 0,0,0,1,"sounds/Water/Paddling/18.mp3",0,0,0
+gisounddb[618][0] ftgen 0,0,0,1,"sounds/Water/Paddling/90.mp3",0,0,0
+gisounddb[619][0] ftgen 0,0,0,1,"sounds/Water/Paddling/32.mp3",0,0,0
+gisounddb[620][0] ftgen 0,0,0,1,"sounds/Water/Paddling/99.mp3",0,0,0
+gisounddb[621][0] ftgen 0,0,0,1,"sounds/Water/Paddling/71.mp3",0,0,0
+gisounddb[622][0] ftgen 0,0,0,1,"sounds/Water/Paddling/57.mp3",0,0,0
+gisounddb[623][0] ftgen 0,0,0,1,"sounds/Water/Paddling/3.mp3",0,0,0
+gisounddb[624][0] ftgen 0,0,0,1,"sounds/Water/Paddling/53.mp3",0,0,0
+gisounddb[625][0] ftgen 0,0,0,1,"sounds/Water/Paddling/4.mp3",0,0,0
+gisounddb[626][0] ftgen 0,0,0,1,"sounds/Water/Paddling/96.mp3",0,0,0
+gisounddb[627][0] ftgen 0,0,0,1,"sounds/Water/Paddling/76.mp3",0,0,0
+gisounddb[628][0] ftgen 0,0,0,1,"sounds/Water/Paddling/69.mp3",0,0,0
+gisounddb[629][0] ftgen 0,0,0,1,"sounds/Water/Paddling/54.mp3",0,0,0
+gisounddb[630][0] ftgen 0,0,0,1,"sounds/Water/Paddling/11.mp3",0,0,0
+gisounddb[631][0] ftgen 0,0,0,1,"sounds/Water/Paddling/79.mp3",0,0,0
+gisounddb[632][0] ftgen 0,0,0,1,"sounds/Water/Paddling/78.mp3",0,0,0
+gisounddb[633][0] ftgen 0,0,0,1,"sounds/Water/Paddling/25.mp3",0,0,0
+gisounddb[634][0] ftgen 0,0,0,1,"sounds/Water/Paddling/66.mp3",0,0,0
+gisounddb[635][0] ftgen 0,0,0,1,"sounds/Water/Paddling/47.mp3",0,0,0
+gisounddb[636][0] ftgen 0,0,0,1,"sounds/Water/Paddling/48.mp3",0,0,0
+gisounddb[637][0] ftgen 0,0,0,1,"sounds/Water/Paddling/68.mp3",0,0,0
+gisounddb[638][0] ftgen 0,0,0,1,"sounds/Water/Paddling/92.mp3",0,0,0
+gisounddb[639][0] ftgen 0,0,0,1,"sounds/Water/Paddling/33.mp3",0,0,0
+gisounddb[640][0] ftgen 0,0,0,1,"sounds/Water/Paddling/41.mp3",0,0,0
+gisounddb[641][0] ftgen 0,0,0,1,"sounds/Water/Paddling/35.mp3",0,0,0
+gisounddb[642][0] ftgen 0,0,0,1,"sounds/Water/Paddling/16.mp3",0,0,0
+gisounddb[643][0] ftgen 0,0,0,1,"sounds/Water/Paddling/10.mp3",0,0,0
+gisounddb[644][0] ftgen 0,0,0,1,"sounds/Water/Paddling/80.mp3",0,0,0
+gisounddb[645][0] ftgen 0,0,0,1,"sounds/Water/Paddling/89.mp3",0,0,0
+gisounddb[646][0] ftgen 0,0,0,1,"sounds/Water/Paddling/51.mp3",0,0,0
+gisounddb[647][0] ftgen 0,0,0,1,"sounds/Water/Paddling/65.mp3",0,0,0
+gisounddb[648][0] ftgen 0,0,0,1,"sounds/Water/Paddling/29.mp3",0,0,0
+gisounddb[649][0] ftgen 0,0,0,1,"sounds/Water/Paddling/2.mp3",0,0,0
+gisounddb[650][0] ftgen 0,0,0,1,"sounds/Water/Paddling/43.mp3",0,0,0
+gisounddb[651][0] ftgen 0,0,0,1,"sounds/Water/Paddling/86.mp3",0,0,0
+gisounddb[652][0] ftgen 0,0,0,1,"sounds/Water/Paddling/15.mp3",0,0,0
+gisounddb[653][0] ftgen 0,0,0,1,"sounds/Water/Paddling/83.mp3",0,0,0
+gisounddb[654][0] ftgen 0,0,0,1,"sounds/Water/Paddling/87.mp3",0,0,0
+gisounddb[655][0] ftgen 0,0,0,1,"sounds/Water/Paddling/13.mp3",0,0,0
+gisounddb[656][0] ftgen 0,0,0,1,"sounds/Water/Paddling/19.mp3",0,0,0
+gisounddb[657][0] ftgen 0,0,0,1,"sounds/Water/Paddling/6.mp3",0,0,0
+gisounddb[658][0] ftgen 0,0,0,1,"sounds/Water/Paddling/82.mp3",0,0,0
+gisounddb[659][0] ftgen 0,0,0,1,"sounds/Water/Paddling/14.mp3",0,0,0
+gisounddb[660][0] ftgen 0,0,0,1,"sounds/Water/Paddling/22.mp3",0,0,0
+gisounddb[661][0] ftgen 0,0,0,1,"sounds/Water/Paddling/52.mp3",0,0,0
+gisounddb[662][0] ftgen 0,0,0,1,"sounds/Water/Paddling/91.mp3",0,0,0
+gisounddb[663][0] ftgen 0,0,0,1,"sounds/Water/Paddling/56.mp3",0,0,0
+gisounddb[664][0] ftgen 0,0,0,1,"sounds/Water/Paddling/94.mp3",0,0,0
+gisounddb[665][0] ftgen 0,0,0,1,"sounds/Water/Paddling/50.mp3",0,0,0
+gisounddb[666][0] ftgen 0,0,0,1,"sounds/Water/Paddling/64.mp3",0,0,0
+gisounddb[667][0] ftgen 0,0,0,1,"sounds/Water/Paddling/31.mp3",0,0,0
+gisounddb[668][0] ftgen 0,0,0,1,"sounds/Water/Paddling/84.mp3",0,0,0
+gisounddb[669][0] ftgen 0,0,0,1,"sounds/Water/Paddling/97.mp3",0,0,0
+gisounddb[670][0] ftgen 0,0,0,1,"sounds/Water/Paddling/73.mp3",0,0,0
+gisounddb[671][0] ftgen 0,0,0,1,"sounds/Water/Paddling/20.mp3",0,0,0
+gisounddb[672][0] ftgen 0,0,0,1,"sounds/Water/Paddling/7.mp3",0,0,0
+gisounddb[673][0] ftgen 0,0,0,1,"sounds/Water/Paddling/63.mp3",0,0,0
+gisounddb[674][0] ftgen 0,0,0,1,"sounds/Water/Paddling/37.mp3",0,0,0
+gisounddb[675][0] ftgen 0,0,0,1,"sounds/Water/Paddling/9.mp3",0,0,0
+gisounddb[676][0] ftgen 0,0,0,1,"sounds/Water/Paddling/24.mp3",0,0,0
+gisounddb[677][0] ftgen 0,0,0,1,"sounds/Water/Paddling/17.mp3",0,0,0
+gisounddb[678][0] ftgen 0,0,0,1,"sounds/MusicBox/89.3.mp3",0,0,0
+gisounddb[679][0] ftgen 0,0,0,1,"sounds/MusicBox/73.0.mp3",0,0,0
+gisounddb[680][0] ftgen 0,0,0,1,"sounds/MusicBox/77.0.mp3",0,0,0
+gisounddb[681][0] ftgen 0,0,0,1,"sounds/MusicBox/75.2.mp3",0,0,0
+gisounddb[682][0] ftgen 0,0,0,1,"sounds/MusicBox/92.1.mp3",0,0,0
+gisounddb[683][0] ftgen 0,0,0,1,"sounds/MusicBox/75.1.mp3",0,0,0
+gisounddb[684][0] ftgen 0,0,0,1,"sounds/MusicBox/68.2.mp3",0,0,0
+gisounddb[685][0] ftgen 0,0,0,1,"sounds/MusicBox/91.2.mp3",0,0,0
+gisounddb[686][0] ftgen 0,0,0,1,"sounds/MusicBox/85.3.mp3",0,0,0
+gisounddb[687][0] ftgen 0,0,0,1,"sounds/MusicBox/80.3.mp3",0,0,0
+gisounddb[688][0] ftgen 0,0,0,1,"sounds/MusicBox/92.0.mp3",0,0,0
+gisounddb[689][0] ftgen 0,0,0,1,"sounds/MusicBox/85.0.mp3",0,0,0
+gisounddb[690][0] ftgen 0,0,0,1,"sounds/MusicBox/68.3.mp3",0,0,0
+gisounddb[691][0] ftgen 0,0,0,1,"sounds/MusicBox/68.0.mp3",0,0,0
+gisounddb[692][0] ftgen 0,0,0,1,"sounds/MusicBox/77.3.mp3",0,0,0
+gisounddb[693][0] ftgen 0,0,0,1,"sounds/MusicBox/70.4.mp3",0,0,0
+gisounddb[694][0] ftgen 0,0,0,1,"sounds/MusicBox/73.1.mp3",0,0,0
+gisounddb[695][0] ftgen 0,0,0,1,"sounds/MusicBox/85.1.mp3",0,0,0
+gisounddb[696][0] ftgen 0,0,0,1,"sounds/MusicBox/79.1.mp3",0,0,0
+gisounddb[697][0] ftgen 0,0,0,1,"sounds/MusicBox/82.2.mp3",0,0,0
+gisounddb[698][0] ftgen 0,0,0,1,"sounds/MusicBox/70.1.mp3",0,0,0
+gisounddb[699][0] ftgen 0,0,0,1,"sounds/MusicBox/87.4.mp3",0,0,0
+gisounddb[700][0] ftgen 0,0,0,1,"sounds/MusicBox/80.1.mp3",0,0,0
+gisounddb[701][0] ftgen 0,0,0,1,"sounds/MusicBox/91.0.mp3",0,0,0
+gisounddb[702][0] ftgen 0,0,0,1,"sounds/MusicBox/82.3.mp3",0,0,0
+gisounddb[703][0] ftgen 0,0,0,1,"sounds/MusicBox/72.3.mp3",0,0,0
+gisounddb[704][0] ftgen 0,0,0,1,"sounds/MusicBox/79.0.mp3",0,0,0
+gisounddb[705][0] ftgen 0,0,0,1,"sounds/MusicBox/68.1.mp3",0,0,0
+gisounddb[706][0] ftgen 0,0,0,1,"sounds/MusicBox/92.2.mp3",0,0,0
+gisounddb[707][0] ftgen 0,0,0,1,"sounds/MusicBox/89.2.mp3",0,0,0
+gisounddb[708][0] ftgen 0,0,0,1,"sounds/MusicBox/82.1.mp3",0,0,0
+gisounddb[709][0] ftgen 0,0,0,1,"sounds/MusicBox/84.2.mp3",0,0,0
+gisounddb[710][0] ftgen 0,0,0,1,"sounds/MusicBox/72.0.mp3",0,0,0
+gisounddb[711][0] ftgen 0,0,0,1,"sounds/MusicBox/82.0.mp3",0,0,0
+gisounddb[712][0] ftgen 0,0,0,1,"sounds/MusicBox/72.2.mp3",0,0,0
+gisounddb[713][0] ftgen 0,0,0,1,"sounds/MusicBox/87.3.mp3",0,0,0
+gisounddb[714][0] ftgen 0,0,0,1,"sounds/MusicBox/70.3.mp3",0,0,0
+gisounddb[715][0] ftgen 0,0,0,1,"sounds/MusicBox/73.2.mp3",0,0,0
+gisounddb[716][0] ftgen 0,0,0,1,"sounds/MusicBox/87.1.mp3",0,0,0
+gisounddb[717][0] ftgen 0,0,0,1,"sounds/MusicBox/77.2.mp3",0,0,0
+gisounddb[718][0] ftgen 0,0,0,1,"sounds/MusicBox/77.1.mp3",0,0,0
+gisounddb[719][0] ftgen 0,0,0,1,"sounds/MusicBox/72.1.mp3",0,0,0
+gisounddb[720][0] ftgen 0,0,0,1,"sounds/MusicBox/87.2.mp3",0,0,0
+gisounddb[721][0] ftgen 0,0,0,1,"sounds/MusicBox/91.1.mp3",0,0,0
+gisounddb[722][0] ftgen 0,0,0,1,"sounds/MusicBox/87.0.mp3",0,0,0
+gisounddb[723][0] ftgen 0,0,0,1,"sounds/MusicBox/70.0.mp3",0,0,0
+gisounddb[724][0] ftgen 0,0,0,1,"sounds/MusicBox/70.2.mp3",0,0,0
+gisounddb[725][0] ftgen 0,0,0,1,"sounds/MusicBox/89.0.mp3",0,0,0
+gisounddb[726][0] ftgen 0,0,0,1,"sounds/MusicBox/85.2.mp3",0,0,0
+gisounddb[727][0] ftgen 0,0,0,1,"sounds/MusicBox/79.3.mp3",0,0,0
+gisounddb[728][0] ftgen 0,0,0,1,"sounds/MusicBox/89.1.mp3",0,0,0
+gisounddb[729][0] ftgen 0,0,0,1,"sounds/MusicBox/80.2.mp3",0,0,0
+gisounddb[730][0] ftgen 0,0,0,1,"sounds/MusicBox/84.1.mp3",0,0,0
+gisounddb[731][0] ftgen 0,0,0,1,"sounds/MusicBox/68.4.mp3",0,0,0
+gisounddb[732][0] ftgen 0,0,0,1,"sounds/MusicBox/80.0.mp3",0,0,0
+gisounddb[733][0] ftgen 0,0,0,1,"sounds/MusicBox/84.0.mp3",0,0,0
+gisounddb[734][0] ftgen 0,0,0,1,"sounds/MusicBox/75.0.mp3",0,0,0
+gisounddb[735][0] ftgen 0,0,0,1,"sounds/MusicBox/79.2.mp3",0,0,0
+gisounddb[736][0] ftgen 0,0,0,1,"sounds/MusicBox/68.5.mp3",0,0,0
+gisounddb[737][0] ftgen 0,0,0,1,"sounds/MusicBox/84.3.mp3",0,0,0
+gisounddb[738][0] ftgen 0,0,0,1,"sounds/Kalimba/65.1.mp3",0,0,0
+gisounddb[739][0] ftgen 0,0,0,1,"sounds/Kalimba/77.0.mp3",0,0,0
+gisounddb[740][0] ftgen 0,0,0,1,"sounds/Kalimba/76.3.mp3",0,0,0
+gisounddb[741][0] ftgen 0,0,0,1,"sounds/Kalimba/69.3.mp3",0,0,0
+gisounddb[742][0] ftgen 0,0,0,1,"sounds/Kalimba/64.0.mp3",0,0,0
+gisounddb[743][0] ftgen 0,0,0,1,"sounds/Kalimba/60.2.mp3",0,0,0
+gisounddb[744][0] ftgen 0,0,0,1,"sounds/Kalimba/69.0.mp3",0,0,0
+gisounddb[745][0] ftgen 0,0,0,1,"sounds/Kalimba/67.0.mp3",0,0,0
+gisounddb[746][0] ftgen 0,0,0,1,"sounds/Kalimba/62.3.mp3",0,0,0
+gisounddb[747][0] ftgen 0,0,0,1,"sounds/Kalimba/65.3.mp3",0,0,0
+gisounddb[748][0] ftgen 0,0,0,1,"sounds/Kalimba/62.2.mp3",0,0,0
+gisounddb[749][0] ftgen 0,0,0,1,"sounds/Kalimba/67.4.mp3",0,0,0
+gisounddb[750][0] ftgen 0,0,0,1,"sounds/Kalimba/69.2.mp3",0,0,0
+gisounddb[751][0] ftgen 0,0,0,1,"sounds/Kalimba/74.2.mp3",0,0,0
+gisounddb[752][0] ftgen 0,0,0,1,"sounds/Kalimba/77.3.mp3",0,0,0
+gisounddb[753][0] ftgen 0,0,0,1,"sounds/Kalimba/88.1.mp3",0,0,0
+gisounddb[754][0] ftgen 0,0,0,1,"sounds/Kalimba/65.0.mp3",0,0,0
+gisounddb[755][0] ftgen 0,0,0,1,"sounds/Kalimba/86.1.mp3",0,0,0
+gisounddb[756][0] ftgen 0,0,0,1,"sounds/Kalimba/69.1.mp3",0,0,0
+gisounddb[757][0] ftgen 0,0,0,1,"sounds/Kalimba/71.1.mp3",0,0,0
+gisounddb[758][0] ftgen 0,0,0,1,"sounds/Kalimba/79.1.mp3",0,0,0
+gisounddb[759][0] ftgen 0,0,0,1,"sounds/Kalimba/64.2.mp3",0,0,0
+gisounddb[760][0] ftgen 0,0,0,1,"sounds/Kalimba/83.4.mp3",0,0,0
+gisounddb[761][0] ftgen 0,0,0,1,"sounds/Kalimba/74.1.mp3",0,0,0
+gisounddb[762][0] ftgen 0,0,0,1,"sounds/Kalimba/83.3.mp3",0,0,0
+gisounddb[763][0] ftgen 0,0,0,1,"sounds/Kalimba/83.0.mp3",0,0,0
+gisounddb[764][0] ftgen 0,0,0,1,"sounds/Kalimba/86.3.mp3",0,0,0
+gisounddb[765][0] ftgen 0,0,0,1,"sounds/Kalimba/67.2.mp3",0,0,0
+gisounddb[766][0] ftgen 0,0,0,1,"sounds/Kalimba/71.2.mp3",0,0,0
+gisounddb[767][0] ftgen 0,0,0,1,"sounds/Kalimba/81.1.mp3",0,0,0
+gisounddb[768][0] ftgen 0,0,0,1,"sounds/Kalimba/72.3.mp3",0,0,0
+gisounddb[769][0] ftgen 0,0,0,1,"sounds/Kalimba/81.2.mp3",0,0,0
+gisounddb[770][0] ftgen 0,0,0,1,"sounds/Kalimba/79.0.mp3",0,0,0
+gisounddb[771][0] ftgen 0,0,0,1,"sounds/Kalimba/69.4.mp3",0,0,0
+gisounddb[772][0] ftgen 0,0,0,1,"sounds/Kalimba/60.1.mp3",0,0,0
+gisounddb[773][0] ftgen 0,0,0,1,"sounds/Kalimba/71.4.mp3",0,0,0
+gisounddb[774][0] ftgen 0,0,0,1,"sounds/Kalimba/62.0.mp3",0,0,0
+gisounddb[775][0] ftgen 0,0,0,1,"sounds/Kalimba/81.3.mp3",0,0,0
+gisounddb[776][0] ftgen 0,0,0,1,"sounds/Kalimba/81.4.mp3",0,0,0
+gisounddb[777][0] ftgen 0,0,0,1,"sounds/Kalimba/60.0.mp3",0,0,0
+gisounddb[778][0] ftgen 0,0,0,1,"sounds/Kalimba/65.2.mp3",0,0,0
+gisounddb[779][0] ftgen 0,0,0,1,"sounds/Kalimba/84.2.mp3",0,0,0
+gisounddb[780][0] ftgen 0,0,0,1,"sounds/Kalimba/72.0.mp3",0,0,0
+gisounddb[781][0] ftgen 0,0,0,1,"sounds/Kalimba/65.4.mp3",0,0,0
+gisounddb[782][0] ftgen 0,0,0,1,"sounds/Kalimba/71.3.mp3",0,0,0
+gisounddb[783][0] ftgen 0,0,0,1,"sounds/Kalimba/86.0.mp3",0,0,0
+gisounddb[784][0] ftgen 0,0,0,1,"sounds/Kalimba/72.2.mp3",0,0,0
+gisounddb[785][0] ftgen 0,0,0,1,"sounds/Kalimba/83.1.mp3",0,0,0
+gisounddb[786][0] ftgen 0,0,0,1,"sounds/Kalimba/60.3.mp3",0,0,0
+gisounddb[787][0] ftgen 0,0,0,1,"sounds/Kalimba/74.0.mp3",0,0,0
+gisounddb[788][0] ftgen 0,0,0,1,"sounds/Kalimba/77.2.mp3",0,0,0
+gisounddb[789][0] ftgen 0,0,0,1,"sounds/Kalimba/76.2.mp3",0,0,0
+gisounddb[790][0] ftgen 0,0,0,1,"sounds/Kalimba/77.1.mp3",0,0,0
+gisounddb[791][0] ftgen 0,0,0,1,"sounds/Kalimba/72.1.mp3",0,0,0
+gisounddb[792][0] ftgen 0,0,0,1,"sounds/Kalimba/88.0.mp3",0,0,0
+gisounddb[793][0] ftgen 0,0,0,1,"sounds/Kalimba/67.3.mp3",0,0,0
+gisounddb[794][0] ftgen 0,0,0,1,"sounds/Kalimba/81.0.mp3",0,0,0
+gisounddb[795][0] ftgen 0,0,0,1,"sounds/Kalimba/77.4.mp3",0,0,0
+gisounddb[796][0] ftgen 0,0,0,1,"sounds/Kalimba/88.2.mp3",0,0,0
+gisounddb[797][0] ftgen 0,0,0,1,"sounds/Kalimba/64.3.mp3",0,0,0
+gisounddb[798][0] ftgen 0,0,0,1,"sounds/Kalimba/76.1.mp3",0,0,0
+gisounddb[799][0] ftgen 0,0,0,1,"sounds/Kalimba/79.3.mp3",0,0,0
+gisounddb[800][0] ftgen 0,0,0,1,"sounds/Kalimba/83.2.mp3",0,0,0
+gisounddb[801][0] ftgen 0,0,0,1,"sounds/Kalimba/74.3.mp3",0,0,0
+gisounddb[802][0] ftgen 0,0,0,1,"sounds/Kalimba/76.0.mp3",0,0,0
+gisounddb[803][0] ftgen 0,0,0,1,"sounds/Kalimba/64.1.mp3",0,0,0
+gisounddb[804][0] ftgen 0,0,0,1,"sounds/Kalimba/84.1.mp3",0,0,0
+gisounddb[805][0] ftgen 0,0,0,1,"sounds/Kalimba/71.0.mp3",0,0,0
+gisounddb[806][0] ftgen 0,0,0,1,"sounds/Kalimba/62.1.mp3",0,0,0
+gisounddb[807][0] ftgen 0,0,0,1,"sounds/Kalimba/84.0.mp3",0,0,0
+gisounddb[808][0] ftgen 0,0,0,1,"sounds/Kalimba/67.1.mp3",0,0,0
+gisounddb[809][0] ftgen 0,0,0,1,"sounds/Kalimba/86.2.mp3",0,0,0
+gisounddb[810][0] ftgen 0,0,0,1,"sounds/Kalimba/79.2.mp3",0,0,0
+gisounddb[811][0] ftgen 0,0,0,1,"sounds/Kalimba/84.3.mp3",0,0,0
+index = 0 ; all sounds have the same number of channels
+while (index < 812) do
+ gisounddb[index][1] = 2
+ index += 1
+od
+index = 0
+while (index < 812) do
+ gisounddb[index][2] = ftlen(gisounddb[index][0]) / ftsr(gisounddb[index][0]) / ftchnls(gisounddb[index][0])
+ index += 1
+od
+gisounddb[0][3] = 0.00598323530261935
+gisounddb[1][3] = 0.002668039965544519
+gisounddb[2][3] = 0.002173936874994305
+gisounddb[3][3] = 0.004979451786363545
+gisounddb[4][3] = 0.0024711239889592027
+gisounddb[5][3] = 0.009364649467778248
+gisounddb[6][3] = 0.009321679101233231
+gisounddb[7][3] = 0.006833442669832136
+gisounddb[8][3] = 0.015333609384416738
+gisounddb[9][3] = 0.005833896088676241
+gisounddb[10][3] = 0.017964238393301628
+gisounddb[11][3] = 0.009157451122239924
+gisounddb[12][3] = 0.003487192404087312
+gisounddb[13][3] = 0.004809457393541127
+gisounddb[14][3] = 0.005094952285650194
+gisounddb[15][3] = 0.00508577733755102
+gisounddb[16][3] = 0.0076238339167297295
+gisounddb[17][3] = 0.01795838089707388
+gisounddb[18][3] = 0.011135254736008671
+gisounddb[19][3] = 0.013576740239896034
+gisounddb[20][3] = 0.012882775747587725
+gisounddb[21][3] = 0.0059420121787073146
+gisounddb[22][3] = 0.007522192374105889
+gisounddb[23][3] = 0.0057865114329241135
+gisounddb[24][3] = 0.004896228772449702
+gisounddb[25][3] = 0.009454675438874686
+gisounddb[26][3] = 0.009391380868927095
+gisounddb[27][3] = 0.0053192959305936455
+gisounddb[28][3] = 0.006795043100277803
+gisounddb[29][3] = 0.013220310439872141
+gisounddb[30][3] = 0.00953121223501827
+gisounddb[31][3] = 0.006500520467185666
+gisounddb[32][3] = 0.004149973682657126
+gisounddb[33][3] = 0.002678230289960877
+gisounddb[34][3] = 0.005247265788906494
+gisounddb[35][3] = 0.010188623179907971
+gisounddb[36][3] = 0.009178286541640475
+gisounddb[37][3] = 0.016318420501179293
+gisounddb[38][3] = 0.01256879675958142
+gisounddb[39][3] = 0.007123462497019896
+gisounddb[40][3] = 0.005673329365537944
+gisounddb[41][3] = 0.0020958309921066216
+gisounddb[42][3] = 0.022489096500953727
+gisounddb[43][3] = 0.0037841338521460307
+gisounddb[44][3] = 0.0024439839998671806
+gisounddb[45][3] = 0.0026509068532208995
+gisounddb[46][3] = 0.0056085710629587586
+gisounddb[47][3] = 0.0069071251232015775
+gisounddb[48][3] = 0.004785694508877388
+gisounddb[49][3] = 0.004233489507239822
+gisounddb[50][3] = 0.002683329621433783
+gisounddb[51][3] = 0.007827804609944575
+gisounddb[52][3] = 0.025816241592159405
+gisounddb[53][3] = 0.0029683546694794652
+gisounddb[54][3] = 0.008134088418116862
+gisounddb[55][3] = 0.010265294033948137
+gisounddb[56][3] = 0.005998868121066853
+gisounddb[57][3] = 0.0032324407079317823
+gisounddb[58][3] = 0.007746463537985637
+gisounddb[59][3] = 0.017130889608365868
+gisounddb[60][3] = 0.004040417913444802
+gisounddb[61][3] = 0.0034585825888229426
+gisounddb[62][3] = 0.0027885762951951657
+gisounddb[63][3] = 0.007412193059269223
+gisounddb[64][3] = 0.004817398559993996
+gisounddb[65][3] = 0.005078303449460165
+gisounddb[66][3] = 0.007898223491171356
+gisounddb[67][3] = 0.005787946301415294
+gisounddb[68][3] = 0.01643200923223261
+gisounddb[69][3] = 0.036636702264993354
+gisounddb[70][3] = 0.006636171664319744
+gisounddb[71][3] = 0.0025224906132375936
+gisounddb[72][3] = 0.0011023408292128146
+gisounddb[73][3] = 0.006070147153677933
+gisounddb[74][3] = 0.010358607309924907
+gisounddb[75][3] = 0.008521140505417229
+gisounddb[76][3] = 0.0021127328705942685
+gisounddb[77][3] = 0.003421763170599867
+gisounddb[78][3] = 0.007083046927614073
+gisounddb[79][3] = 0.002761877927451458
+gisounddb[80][3] = 0.002018563452141591
+gisounddb[81][3] = 0.0012938541603163892
+gisounddb[82][3] = 0.0037284122705047097
+gisounddb[83][3] = 0.010411801355004092
+gisounddb[84][3] = 0.01822565129163906
+gisounddb[85][3] = 0.0025984440330321695
+gisounddb[86][3] = 0.0005658286192922751
+gisounddb[87][3] = 0.0023197301292877176
+gisounddb[88][3] = 0.03358426681947521
+gisounddb[89][3] = 0.002844062794448459
+gisounddb[90][3] = 0.004159188078414864
+gisounddb[91][3] = 0.003189797468311443
+gisounddb[92][3] = 0.014815426224370916
+gisounddb[93][3] = 0.060412271756305744
+gisounddb[94][3] = 0.0018136686253645334
+gisounddb[95][3] = 0.007232254007936627
+gisounddb[96][3] = 0.0030909474087781794
+gisounddb[97][3] = 0.002861206811002901
+gisounddb[98][3] = 0.005708800828403748
+gisounddb[99][3] = 0.022035508721450096
+gisounddb[100][3] = 0.001829398138682419
+gisounddb[101][3] = 0.002445558057657685
+gisounddb[102][3] = 0.024251463943510375
+gisounddb[103][3] = 0.022715191237082214
+gisounddb[104][3] = 0.0068938200373220215
+gisounddb[105][3] = 0.010789944685722424
+gisounddb[106][3] = 0.006940406118522731
+gisounddb[107][3] = 0.006150041170064181
+gisounddb[108][3] = 0.002285473205307945
+gisounddb[109][3] = 0.003735154612992439
+gisounddb[110][3] = 0.0043190643071719555
+gisounddb[111][3] = 0.0020476086348571844
+gisounddb[112][3] = 0.004792845760020963
+gisounddb[113][3] = 0.02182145995325383
+gisounddb[114][3] = 0.009611357048713437
+gisounddb[115][3] = 0.008545568548161145
+gisounddb[116][3] = 0.001688605436359166
+gisounddb[117][3] = 0.01207249390081909
+gisounddb[118][3] = 0.06865753283265262
+gisounddb[119][3] = 0.0076430362672082666
+gisounddb[120][3] = 0.0050430122271156045
+gisounddb[121][3] = 0.019320634908080756
+gisounddb[122][3] = 0.006495820743701141
+gisounddb[123][3] = 0.0014797799550832454
+gisounddb[124][3] = 0.0028317942519223882
+gisounddb[125][3] = 0.003729956822729459
+gisounddb[126][3] = 0.0007509131045442697
+gisounddb[127][3] = 0.008503605860829202
+gisounddb[128][3] = 0.002183058745146387
+gisounddb[129][3] = 0.003327499302265506
+gisounddb[130][3] = 0.005691225132593801
+gisounddb[131][3] = 0.00487905172249012
+gisounddb[132][3] = 0.005345055572348599
+gisounddb[133][3] = 0.004411896193429177
+gisounddb[134][3] = 0.001849016293139234
+gisounddb[135][3] = 0.004640987027332499
+gisounddb[136][3] = 0.008200827442153698
+gisounddb[137][3] = 0.055251142800202185
+gisounddb[138][3] = 0.00990767182421253
+gisounddb[139][3] = 0.007142321684940194
+gisounddb[140][3] = 0.00594675295341376
+gisounddb[141][3] = 0.002062395894346932
+gisounddb[142][3] = 0.0020219500175936754
+gisounddb[143][3] = 0.0009920348328842647
+gisounddb[144][3] = 0.005059905767073799
+gisounddb[145][3] = 0.010656614165477526
+gisounddb[146][3] = 0.013639574266447707
+gisounddb[147][3] = 0.015841542567489347
+gisounddb[148][3] = 0.0062590866854165435
+gisounddb[149][3] = 0.0014979876152118943
+gisounddb[150][3] = 0.01669125154721101
+gisounddb[151][3] = 0.0047706700823672505
+gisounddb[152][3] = 0.004543058054591071
+gisounddb[153][3] = 0.004105231057890772
+gisounddb[154][3] = 0.012519922714184
+gisounddb[155][3] = 0.014255669722176052
+gisounddb[156][3] = 0.0027281806470830197
+gisounddb[157][3] = 0.00812709944758494
+gisounddb[158][3] = 0.004432300895712237
+gisounddb[159][3] = 0.009049263833995833
+gisounddb[160][3] = 0.0021287096533816894
+gisounddb[161][3] = 0.008486910842014512
+gisounddb[162][3] = 0.004335152216899965
+gisounddb[163][3] = 0.03757968731802192
+gisounddb[164][3] = 0.008640543757200343
+gisounddb[165][3] = 0.001468612258801247
+gisounddb[166][3] = 0.004621122084475156
+gisounddb[167][3] = 0.00904345829322083
+gisounddb[168][3] = 0.0021288069896774143
+gisounddb[169][3] = 0.010980844413307727
+gisounddb[170][3] = 0.0021535108453186063
+gisounddb[171][3] = 0.0022694593802069945
+gisounddb[172][3] = 0.0043021781436052
+gisounddb[173][3] = 0.007761898797427649
+gisounddb[174][3] = 0.03870314380541736
+gisounddb[175][3] = 0.0031233483685294172
+gisounddb[176][3] = 0.014566904692567125
+gisounddb[177][3] = 0.006603534660042465
+gisounddb[178][3] = 0.07015759066424301
+gisounddb[179][3] = 0.008233846094509768
+gisounddb[180][3] = 0.009177647681999341
+gisounddb[181][3] = 0.010457597200182838
+gisounddb[182][3] = 0.003428084417350242
+gisounddb[183][3] = 0.0067197243708596345
+gisounddb[184][3] = 0.005760114855804054
+gisounddb[185][3] = 0.014005636992265322
+gisounddb[186][3] = 0.001835219554734648
+gisounddb[187][3] = 0.004886499632854604
+gisounddb[188][3] = 0.02613489143950982
+gisounddb[189][3] = 0.0052344488277125826
+gisounddb[190][3] = 0.0029899306144379376
+gisounddb[191][3] = 0.004363238629084851
+gisounddb[192][3] = 0.001205490924064056
+gisounddb[193][3] = 0.008139938217240496
+gisounddb[194][3] = 0.0032541442965334125
+gisounddb[195][3] = 0.0023018805448565215
+gisounddb[196][3] = 0.009094167456523155
+gisounddb[197][3] = 0.005888462142563041
+gisounddb[198][3] = 0.003414062217937766
+gisounddb[199][3] = 0.003807303739080625
+gisounddb[200][3] = 0.002874875585051657
+gisounddb[201][3] = 0.019421626045407297
+gisounddb[202][3] = 0.015239848393550899
+gisounddb[203][3] = 0.03647973522087719
+gisounddb[204][3] = 0.002693713656303577
+gisounddb[205][3] = 0.0031989595879037677
+gisounddb[206][3] = 0.01860048486759007
+gisounddb[207][3] = 0.0033399371810819973
+gisounddb[208][3] = 0.016025688086218084
+gisounddb[209][3] = 0.015647778234324426
+gisounddb[210][3] = 0.00690289107451571
+gisounddb[211][3] = 0.007314035097680522
+gisounddb[212][3] = 0.0039641280660580825
+gisounddb[213][3] = 0.0036621402041172152
+gisounddb[214][3] = 0.0054182800480234924
+gisounddb[215][3] = 0.0004398412566356115
+gisounddb[216][3] = 0.010367436529764473
+gisounddb[217][3] = 0.010765564108453855
+gisounddb[218][3] = 0.020334198557246386
+gisounddb[219][3] = 0.002405251851272759
+gisounddb[220][3] = 0.0018626969335568267
+gisounddb[221][3] = 0.003523188873595955
+gisounddb[222][3] = 0.013492574972154052
+gisounddb[223][3] = 0.006908910851355109
+gisounddb[224][3] = 0.0035275826371921064
+gisounddb[225][3] = 0.003300785861026249
+gisounddb[226][3] = 0.011075041573406467
+gisounddb[227][3] = 0.009027768387917844
+gisounddb[228][3] = 0.003675884666356387
+gisounddb[229][3] = 0.002995311210923531
+gisounddb[230][3] = 0.004821918042957278
+gisounddb[231][3] = 0.0018752836230527792
+gisounddb[232][3] = 0.004263890823485804
+gisounddb[233][3] = 0.03104358103781758
+gisounddb[234][3] = 0.0032117672484302125
+gisounddb[235][3] = 0.008217639200380723
+gisounddb[236][3] = 0.010935634189466687
+gisounddb[237][3] = 0.006651324055185712
+gisounddb[238][3] = 0.007068938777205702
+gisounddb[239][3] = 0.0093076017392413
+gisounddb[240][3] = 0.02833390790112526
+gisounddb[241][3] = 0.0054978289775754734
+gisounddb[242][3] = 0.006768304002024846
+gisounddb[243][3] = 0.015032290849820773
+gisounddb[244][3] = 0.010219539239991313
+gisounddb[245][3] = 0.003549077762557423
+gisounddb[246][3] = 0.012373385246136947
+gisounddb[247][3] = 0.005959889985853581
+gisounddb[248][3] = 0.0029277652738058236
+gisounddb[249][3] = 0.007435241396101413
+gisounddb[250][3] = 0.007937041270049003
+gisounddb[251][3] = 0.013611373359839184
+gisounddb[252][3] = 0.018132109668240356
+gisounddb[253][3] = 0.012796578444360692
+gisounddb[254][3] = 0.024961780933500474
+gisounddb[255][3] = 0.020685343012448048
+gisounddb[256][3] = 0.0035283148242205744
+gisounddb[257][3] = 0.018899018333348883
+gisounddb[258][3] = 0.004592166861663849
+gisounddb[259][3] = 0.003577863328365638
+gisounddb[260][3] = 0.012466449649080825
+gisounddb[261][3] = 0.0028711123425671876
+gisounddb[262][3] = 0.0037543733198172097
+gisounddb[263][3] = 0.00427072456908484
+gisounddb[264][3] = 0.040643440072283196
+gisounddb[265][3] = 0.005583470806455899
+gisounddb[266][3] = 0.01176382463179803
+gisounddb[267][3] = 0.01412098836015984
+gisounddb[268][3] = 0.0038268139737235637
+gisounddb[269][3] = 0.018618655164692518
+gisounddb[270][3] = 0.0025800729697975176
+gisounddb[271][3] = 0.007753463412748381
+gisounddb[272][3] = 0.005236807990122312
+gisounddb[273][3] = 0.0033866813736296345
+gisounddb[274][3] = 0.017261859683350353
+gisounddb[275][3] = 0.004702330060675523
+gisounddb[276][3] = 0.004178873742888978
+gisounddb[277][3] = 0.005075176180202787
+gisounddb[278][3] = 0.013353241993554003
+gisounddb[279][3] = 0.005479373246195612
+gisounddb[280][3] = 0.012608063536198819
+gisounddb[281][3] = 0.0023066671814749562
+gisounddb[282][3] = 0.0021409127705228244
+gisounddb[283][3] = 0.007006677543484883
+gisounddb[284][3] = 0.010786446351904408
+gisounddb[285][3] = 0.007190692852869092
+gisounddb[286][3] = 0.02107453810181772
+gisounddb[287][3] = 0.020833516115118487
+gisounddb[288][3] = 0.009604049931211634
+gisounddb[289][3] = 0.0031194462574582952
+gisounddb[290][3] = 0.008116574940565136
+gisounddb[291][3] = 0.007568055568945597
+gisounddb[292][3] = 0.0005121098081047548
+gisounddb[293][3] = 0.002561685550216632
+gisounddb[294][3] = 0.00810219161868483
+gisounddb[295][3] = 0.005872674099182651
+gisounddb[296][3] = 0.0026863253984959466
+gisounddb[297][3] = 0.010497723486759192
+gisounddb[298][3] = 0.0036628258878083518
+gisounddb[299][3] = 0.006565065175125798
+gisounddb[300][3] = 0.0034246710723901085
+gisounddb[301][3] = 0.019133179634584697
+gisounddb[302][3] = 0.002532044323001517
+gisounddb[303][3] = 0.0019817469203325566
+gisounddb[304][3] = 0.006583980167050893
+gisounddb[305][3] = 0.0023637670258209818
+gisounddb[306][3] = 0.009728104799578585
+gisounddb[307][3] = 0.03234819400184569
+gisounddb[308][3] = 0.0016695929477820103
+gisounddb[309][3] = 0.003318203445489269
+gisounddb[310][3] = 0.005799540705906394
+gisounddb[311][3] = 0.017532512955171893
+gisounddb[312][3] = 0.013752066160165343
+gisounddb[313][3] = 0.028673388677898832
+gisounddb[314][3] = 0.0028470774935582268
+gisounddb[315][3] = 0.007050363740712134
+gisounddb[316][3] = 0.051732580992585146
+gisounddb[317][3] = 0.009643771478396868
+gisounddb[318][3] = 0.019006285176226483
+gisounddb[319][3] = 0.009240375873369502
+gisounddb[320][3] = 0.056446985420349864
+gisounddb[321][3] = 0.009618616059314553
+gisounddb[322][3] = 0.006633230087699021
+gisounddb[323][3] = 0.0028466583220969005
+gisounddb[324][3] = 0.0036788804434185513
+gisounddb[325][3] = 0.003001741820694803
+gisounddb[326][3] = 0.0030197588171403927
+gisounddb[327][3] = 0.013211343313583937
+gisounddb[328][3] = 0.00350223992190978
+gisounddb[329][3] = 0.006774591894657411
+gisounddb[330][3] = 0.013476248131485959
+gisounddb[331][3] = 0.025371418248535744
+gisounddb[332][3] = 0.006876738239025802
+gisounddb[333][3] = 0.0025183810010681717
+gisounddb[334][3] = 0.01802354971187227
+gisounddb[335][3] = 0.01318169919995478
+gisounddb[336][3] = 0.014386326781593396
+gisounddb[337][3] = 0.015376011448108295
+gisounddb[338][3] = 0.0129103134203921
+gisounddb[339][3] = 0.0038409763245733767
+gisounddb[340][3] = 0.00416009377099848
+gisounddb[341][3] = 0.020399226258469426
+gisounddb[342][3] = 0.005318694273622377
+gisounddb[343][3] = 0.0014209926810174278
+gisounddb[344][3] = 0.0008714511981146084
+gisounddb[345][3] = 0.003569236157508962
+gisounddb[346][3] = 0.002780360598695706
+gisounddb[347][3] = 0.00539387573801725
+gisounddb[348][3] = 0.0058988064090616
+gisounddb[349][3] = 0.023196768252831342
+gisounddb[350][3] = 0.007481174506303454
+gisounddb[351][3] = 0.0128427238663511
+gisounddb[352][3] = 0.014979669597572444
+gisounddb[353][3] = 0.0021213565136115613
+gisounddb[354][3] = 0.007271928731071858
+gisounddb[355][3] = 0.0067891477599548505
+gisounddb[356][3] = 0.012424727496252322
+gisounddb[357][3] = 0.004198288725868555
+gisounddb[358][3] = 0.005424932911675943
+gisounddb[359][3] = 0.010588874517906383
+gisounddb[360][3] = 0.006609011791042105
+gisounddb[361][3] = 0.00147036783996368
+gisounddb[362][3] = 0.0020706279471926258
+gisounddb[363][3] = 0.004604459778352934
+gisounddb[364][3] = 0.006390763611128467
+gisounddb[365][3] = 0.012571639556699397
+gisounddb[366][3] = 0.006449504061144282
+gisounddb[367][3] = 0.00548617941050492
+gisounddb[368][3] = 0.002598383418337303
+gisounddb[369][3] = 0.004099486452523307
+gisounddb[370][3] = 0.0024031462122296545
+gisounddb[371][3] = 0.002843508282239864
+gisounddb[372][3] = 0.011453272137971381
+gisounddb[373][3] = 0.003792922662189018
+gisounddb[374][3] = 0.004548737555286271
+gisounddb[375][3] = 0.009596472773640636
+gisounddb[376][3] = 0.007135573248911711
+gisounddb[377][3] = 0.0041255882946984864
+gisounddb[378][3] = 0.00571616118420898
+gisounddb[379][3] = 0.015886691214497508
+gisounddb[380][3] = 0.013020528254143845
+gisounddb[381][3] = 0.008017182235192115
+gisounddb[382][3] = 0.010032067930861694
+gisounddb[383][3] = 0.010501783067751898
+gisounddb[384][3] = 0.007988075635999976
+gisounddb[385][3] = 0.006065906049313298
+gisounddb[386][3] = 0.007838404805154792
+gisounddb[387][3] = 0.017819715000830034
+gisounddb[388][3] = 0.00442328149325862
+gisounddb[389][3] = 0.004886868131713872
+gisounddb[390][3] = 0.0023208152606108987
+gisounddb[391][3] = 0.005892675665637948
+gisounddb[392][3] = 0.003377402193912303
+gisounddb[393][3] = 0.006692232239254578
+gisounddb[394][3] = 0.0026917255584544865
+gisounddb[395][3] = 0.004844880749506244
+gisounddb[396][3] = 0.002552927528590085
+gisounddb[397][3] = 0.007992124954187203
+gisounddb[398][3] = 0.00508833662466761
+gisounddb[399][3] = 0.004024878101671962
+gisounddb[400][3] = 0.0385520547831399
+gisounddb[401][3] = 0.017086255384482395
+gisounddb[402][3] = 0.053611013068017174
+gisounddb[403][3] = 0.016325527493974236
+gisounddb[404][3] = 0.03348698568632971
+gisounddb[405][3] = 0.002409953819745983
+gisounddb[406][3] = 0.005164425705922126
+gisounddb[407][3] = 0.02461365117740858
+gisounddb[408][3] = 0.008361035608525535
+gisounddb[409][3] = 0.017713052380625077
+gisounddb[410][3] = 0.004144171028296165
+gisounddb[411][3] = 0.005111903874601885
+gisounddb[412][3] = 0.009511596165193818
+gisounddb[413][3] = 0.0025831992769168814
+gisounddb[414][3] = 0.002224326127407056
+gisounddb[415][3] = 0.002675210138735698
+gisounddb[416][3] = 0.0016762130987419922
+gisounddb[417][3] = 0.008457330229494263
+gisounddb[418][3] = 0.002201946155781755
+gisounddb[419][3] = 0.00187215458987571
+gisounddb[420][3] = 0.0019396775960374227
+gisounddb[421][3] = 0.005426155468378754
+gisounddb[422][3] = 0.004700934319130235
+gisounddb[423][3] = 0.0041384071801684255
+gisounddb[424][3] = 0.0033296339658053582
+gisounddb[425][3] = 0.0019851753387882393
+gisounddb[426][3] = 0.0016627317812495826
+gisounddb[427][3] = 0.0087069344872762
+gisounddb[428][3] = 0.016531749590141268
+gisounddb[429][3] = 0.005074914799375717
+gisounddb[430][3] = 0.002096750796047772
+gisounddb[431][3] = 0.010237075167430025
+gisounddb[432][3] = 0.002065928704777107
+gisounddb[433][3] = 0.006160447013395621
+gisounddb[434][3] = 0.0016557949265267394
+gisounddb[435][3] = 0.009734069413838527
+gisounddb[436][3] = 0.006500719309041842
+gisounddb[437][3] = 0.010488145723544924
+gisounddb[438][3] = 0.007698275817704695
+gisounddb[439][3] = 0.003143711378165215
+gisounddb[440][3] = 0.013929150868723797
+gisounddb[441][3] = 0.014859456225581748
+gisounddb[442][3] = 0.004306934633232537
+gisounddb[443][3] = 0.0054874603369139
+gisounddb[444][3] = 0.00843463660087648
+gisounddb[445][3] = 0.0026368872195097937
+gisounddb[446][3] = 0.008704988402787044
+gisounddb[447][3] = 0.0012804751501661088
+gisounddb[448][3] = 0.004627720106260821
+gisounddb[449][3] = 0.005485498216791181
+gisounddb[450][3] = 0.003980251574892601
+gisounddb[451][3] = 0.002028074346763902
+gisounddb[452][3] = 0.02010556505961227
+gisounddb[453][3] = 0.020058852617619086
+gisounddb[454][3] = 0.006169714326744116
+gisounddb[455][3] = 0.03047828005496211
+gisounddb[456][3] = 0.004411583498574707
+gisounddb[457][3] = 0.002958578705834365
+gisounddb[458][3] = 0.0025221060787447625
+gisounddb[459][3] = 0.007494995298158384
+gisounddb[460][3] = 0.014109860913318084
+gisounddb[461][3] = 0.013208432525379654
+gisounddb[462][3] = 0.011374579511251643
+gisounddb[463][3] = 0.011209191835239087
+gisounddb[464][3] = 0.020920871832514083
+gisounddb[465][3] = 0.02606082477236022
+gisounddb[466][3] = 0.0037007075063986137
+gisounddb[467][3] = 0.004220744385684271
+gisounddb[468][3] = 0.0053281950657955435
+gisounddb[469][3] = 0.04828994855131234
+gisounddb[470][3] = 0.010932876060493922
+gisounddb[471][3] = 0.005444123075072972
+gisounddb[472][3] = 0.006645652572307293
+gisounddb[473][3] = 0.020100237380717433
+gisounddb[474][3] = 0.006154774889091859
+gisounddb[475][3] = 0.00252522565089803
+gisounddb[476][3] = 0.002180516616157709
+gisounddb[477][3] = 0.000978159519875222
+gisounddb[478][3] = 0.005483244248137622
+gisounddb[479][3] = 0.006046928839129979
+gisounddb[480][3] = 0.007719600644641577
+gisounddb[481][3] = 0.0038352217771131037
+gisounddb[482][3] = 0.010838639132023944
+gisounddb[483][3] = 0.0014292543997852126
+gisounddb[484][3] = 0.0023834578216978355
+gisounddb[485][3] = 0.0029020306476392277
+gisounddb[486][3] = 0.007566214678212611
+gisounddb[487][3] = 0.011485267716906156
+gisounddb[488][3] = 0.005010156817509203
+gisounddb[489][3] = 0.007532703411193499
+gisounddb[490][3] = 0.029085078554030114
+gisounddb[491][3] = 0.005229043536351303
+gisounddb[492][3] = 0.0026878792513881622
+gisounddb[493][3] = 0.004470414710276486
+gisounddb[494][3] = 0.002728485324120709
+gisounddb[495][3] = 0.047558400382485364
+gisounddb[496][3] = 0.013127636023536504
+gisounddb[497][3] = 0.002175270558637706
+gisounddb[498][3] = 0.009358068443764158
+gisounddb[499][3] = 0.027935798282345468
+gisounddb[500][3] = 0.0014998084614029272
+gisounddb[501][3] = 0.01274512458623572
+gisounddb[502][3] = 0.0037240508988883553
+gisounddb[503][3] = 0.007706362908422983
+gisounddb[504][3] = 0.002495825599611696
+gisounddb[505][3] = 0.0012884050916754837
+gisounddb[506][3] = 0.0009039993649819509
+gisounddb[507][3] = 0.018027299484424546
+gisounddb[508][3] = 0.004585175004717885
+gisounddb[509][3] = 0.009187331921820464
+gisounddb[510][3] = 0.002850916424233112
+gisounddb[511][3] = 0.01873196295144582
+gisounddb[512][3] = 0.014346359568501983
+gisounddb[513][3] = 0.00724206909852762
+gisounddb[514][3] = 0.0031037855370083934
+gisounddb[515][3] = 0.0044048966393791045
+gisounddb[516][3] = 0.0027321093773058558
+gisounddb[517][3] = 0.008803712742953176
+gisounddb[518][3] = 0.01785301908746352
+gisounddb[519][3] = 0.005220788392193278
+gisounddb[520][3] = 0.023821939877156115
+gisounddb[521][3] = 0.002426225177121949
+gisounddb[522][3] = 0.005684174585228999
+gisounddb[523][3] = 0.017863805296023064
+gisounddb[524][3] = 0.017518845463973823
+gisounddb[525][3] = 0.0026327468189239313
+gisounddb[526][3] = 0.002973660539912657
+gisounddb[527][3] = 0.029133362488112432
+gisounddb[528][3] = 0.0228036258319039
+gisounddb[529][3] = 0.0025477521882140927
+gisounddb[530][3] = 0.003618172741877277
+gisounddb[531][3] = 0.008884971712468274
+gisounddb[532][3] = 0.00905334137489813
+gisounddb[533][3] = 0.02229323342406813
+gisounddb[534][3] = 0.003207865778784433
+gisounddb[535][3] = 0.0053737869377153726
+gisounddb[536][3] = 0.0043485233695898
+gisounddb[537][3] = 0.0020151857062879657
+gisounddb[538][3] = 0.014415693799474591
+gisounddb[539][3] = 0.013593607160702514
+gisounddb[540][3] = 0.00428564700896552
+gisounddb[541][3] = 0.07444193222836577
+gisounddb[542][3] = 0.005309893276497882
+gisounddb[543][3] = 0.013304580901370293
+gisounddb[544][3] = 0.0246420663200815
+gisounddb[545][3] = 0.012411839978270734
+gisounddb[546][3] = 0.016240216640570543
+gisounddb[547][3] = 0.0031354357083962303
+gisounddb[548][3] = 0.0030009243240957818
+gisounddb[549][3] = 0.04360495219265074
+gisounddb[550][3] = 0.006266343130316289
+gisounddb[551][3] = 0.008591878816464577
+gisounddb[552][3] = 0.023311503852397056
+gisounddb[553][3] = 0.0033413136798670106
+gisounddb[554][3] = 0.002130968913794323
+gisounddb[555][3] = 0.005047489696718953
+gisounddb[556][3] = 0.0013883127012422006
+gisounddb[557][3] = 0.005401203381130013
+gisounddb[558][3] = 0.006114792281792226
+gisounddb[559][3] = 0.0021929160094536506
+gisounddb[560][3] = 0.006439799295712199
+gisounddb[561][3] = 0.004764250376826801
+gisounddb[562][3] = 0.0023070408117369648
+gisounddb[563][3] = 0.0037407462384157156
+gisounddb[564][3] = 0.008090880082769775
+gisounddb[565][3] = 0.00717072848908366
+gisounddb[566][3] = 0.01432081031425937
+gisounddb[567][3] = 0.011269991260604338
+gisounddb[568][3] = 0.0021648406618559224
+gisounddb[569][3] = 0.013401472047907549
+gisounddb[570][3] = 0.002944642136705113
+gisounddb[571][3] = 0.005813598183712707
+gisounddb[572][3] = 0.004342415396765807
+gisounddb[573][3] = 0.008579782175930297
+gisounddb[574][3] = 0.007536321691550563
+gisounddb[575][3] = 0.004566067264477368
+gisounddb[576][3] = 0.006678065077714696
+gisounddb[577][3] = 0.0018568750364355909
+gisounddb[578][3] = 0.004602227297448349
+gisounddb[579][3] = 0.010559684533419718
+gisounddb[580][3] = 0.004875939526728292
+gisounddb[581][3] = 0.003938881885289803
+gisounddb[582][3] = 0.0055741913060258965
+gisounddb[583][3] = 0.003714851897338837
+gisounddb[584][3] = 0.0023386760699855885
+gisounddb[585][3] = 0.002165222470291048
+gisounddb[586][3] = 0.002165614220818982
+gisounddb[587][3] = 0.003510849774282209
+gisounddb[588][3] = 0.007282786779269763
+gisounddb[589][3] = 0.013205898895276765
+gisounddb[590][3] = 0.0023038150836895126
+gisounddb[591][3] = 0.010181684881978107
+gisounddb[592][3] = 0.004929173981604054
+gisounddb[593][3] = 0.004078854044243658
+gisounddb[594][3] = 0.007151159243309211
+gisounddb[595][3] = 0.011949581410987137
+gisounddb[596][3] = 0.006351169066161049
+gisounddb[597][3] = 0.01251749940924002
+gisounddb[598][3] = 0.00761383281278941
+gisounddb[599][3] = 0.004264509157515978
+gisounddb[600][3] = 0.003797649966963271
+gisounddb[601][3] = 0.004168134999804779
+gisounddb[602][3] = 0.008065006908729199
+gisounddb[603][3] = 0.009455214877587732
+gisounddb[604][3] = 0.007611660305154349
+gisounddb[605][3] = 0.002780002041929246
+gisounddb[606][3] = 0.002843419124117256
+gisounddb[607][3] = 0.0041063349509052206
+gisounddb[608][3] = 0.007193552968471317
+gisounddb[609][3] = 0.009638802997693834
+gisounddb[610][3] = 0.0032685471818866647
+gisounddb[611][3] = 0.00701454911528809
+gisounddb[612][3] = 0.012097610834380853
+gisounddb[613][3] = 0.005051856199738048
+gisounddb[614][3] = 0.003766886245398774
+gisounddb[615][3] = 0.009276869126805915
+gisounddb[616][3] = 0.0131746897038119
+gisounddb[617][3] = 0.006388593027769434
+gisounddb[618][3] = 0.0030674359628487017
+gisounddb[619][3] = 0.005317582042078476
+gisounddb[620][3] = 0.009128767863773838
+gisounddb[621][3] = 0.006982837687780044
+gisounddb[622][3] = 0.0023249394652068624
+gisounddb[623][3] = 0.009307089881817983
+gisounddb[624][3] = 0.005945561826552731
+gisounddb[625][3] = 0.0022069528012926684
+gisounddb[626][3] = 0.010962661287698428
+gisounddb[627][3] = 0.004033648310380017
+gisounddb[628][3] = 0.014471408004724472
+gisounddb[629][3] = 0.00437145143917027
+gisounddb[630][3] = 0.008150692354532914
+gisounddb[631][3] = 0.008165334812251592
+gisounddb[632][3] = 0.00310192219638842
+gisounddb[633][3] = 0.013869053162683245
+gisounddb[634][3] = 0.008022631143476684
+gisounddb[635][3] = 0.00908239217008547
+gisounddb[636][3] = 0.011174240568326053
+gisounddb[637][3] = 0.01015837612645686
+gisounddb[638][3] = 0.0030476508774465003
+gisounddb[639][3] = 0.004511649059132015
+gisounddb[640][3] = 0.002087461513881296
+gisounddb[641][3] = 0.014235924084432415
+gisounddb[642][3] = 0.007902871900628482
+gisounddb[643][3] = 0.004844632517898694
+gisounddb[644][3] = 0.0018956746950473113
+gisounddb[645][3] = 0.0023211162494528683
+gisounddb[646][3] = 0.011661410813061815
+gisounddb[647][3] = 0.003870209284557988
+gisounddb[648][3] = 0.008465566772317355
+gisounddb[649][3] = 0.025338046170815955
+gisounddb[650][3] = 0.0023577810841684007
+gisounddb[651][3] = 0.0044425832646652445
+gisounddb[652][3] = 0.016214927805016988
+gisounddb[653][3] = 0.003844343807621522
+gisounddb[654][3] = 0.006827215071181767
+gisounddb[655][3] = 0.0065291171332305135
+gisounddb[656][3] = 0.005104111839541149
+gisounddb[657][3] = 0.0037569127227481823
+gisounddb[658][3] = 0.0014267133932908836
+gisounddb[659][3] = 0.007252019529865882
+gisounddb[660][3] = 0.003037663243438373
+gisounddb[661][3] = 0.003547579392957334
+gisounddb[662][3] = 0.002723086767725526
+gisounddb[663][3] = 0.00861216389292126
+gisounddb[664][3] = 0.0029494502610725214
+gisounddb[665][3] = 0.003828394445767493
+gisounddb[666][3] = 0.00361507882673771
+gisounddb[667][3] = 0.005897955237632097
+gisounddb[668][3] = 0.0035965288058324996
+gisounddb[669][3] = 0.010994972447901716
+gisounddb[670][3] = 0.005013068567851499
+gisounddb[671][3] = 0.009174168590941601
+gisounddb[672][3] = 0.0031386207059344333
+gisounddb[673][3] = 0.0062389754352276785
+gisounddb[674][3] = 0.010260251789330715
+gisounddb[675][3] = 0.006200820890154181
+gisounddb[676][3] = 0.014439685672985604
+gisounddb[677][3] = 0.014813641779068071
+gisounddb[678][3] = 0.018251903548057054
+gisounddb[679][3] = 0.011181666990941563
+gisounddb[680][3] = 0.011554512148330814
+gisounddb[681][3] = 0.0069372208002718575
+gisounddb[682][3] = 0.011953292698018864
+gisounddb[683][3] = 0.006892391583084265
+gisounddb[684][3] = 0.010053442147549947
+gisounddb[685][3] = 0.02013942333774168
+gisounddb[686][3] = 0.015919164013887106
+gisounddb[687][3] = 0.010751038390147512
+gisounddb[688][3] = 0.011063249609909877
+gisounddb[689][3] = 0.014892026521623407
+gisounddb[690][3] = 0.0206630226933796
+gisounddb[691][3] = 0.005069539013580193
+gisounddb[692][3] = 0.01217868828052402
+gisounddb[693][3] = 0.010671139883783867
+gisounddb[694][3] = 0.010858461740808683
+gisounddb[695][3] = 0.017240489956639495
+gisounddb[696][3] = 0.012214672242238486
+gisounddb[697][3] = 0.015738950432507916
+gisounddb[698][3] = 0.011008893943535419
+gisounddb[699][3] = 0.027901099737017383
+gisounddb[700][3] = 0.009659576840261504
+gisounddb[701][3] = 0.017432214557215258
+gisounddb[702][3] = 0.01338733631620945
+gisounddb[703][3] = 0.00499279471633831
+gisounddb[704][3] = 0.01362640708701679
+gisounddb[705][3] = 0.006238732976448212
+gisounddb[706][3] = 0.010218546313561117
+gisounddb[707][3] = 0.019950509463016766
+gisounddb[708][3] = 0.012045865769150385
+gisounddb[709][3] = 0.017874345197251087
+gisounddb[710][3] = 0.0038784685979807386
+gisounddb[711][3] = 0.012714215581831147
+gisounddb[712][3] = 0.004629362796562973
+gisounddb[713][3] = 0.025374640769456485
+gisounddb[714][3] = 0.01117951436749212
+gisounddb[715][3] = 0.010498584279568832
+gisounddb[716][3] = 0.02788710640174532
+gisounddb[717][3] = 0.010561154680304738
+gisounddb[718][3] = 0.01261177097467849
+gisounddb[719][3] = 0.0045605234252421075
+gisounddb[720][3] = 0.02350015730843291
+gisounddb[721][3] = 0.013830368800276839
+gisounddb[722][3] = 0.02639824785663504
+gisounddb[723][3] = 0.0104386559098187
+gisounddb[724][3] = 0.01079184458758692
+gisounddb[725][3] = 0.01717611137786307
+gisounddb[726][3] = 0.015294976336037732
+gisounddb[727][3] = 0.014279692384103506
+gisounddb[728][3] = 0.017302733871876065
+gisounddb[729][3] = 0.01476157600116635
+gisounddb[730][3] = 0.01855250240341873
+gisounddb[731][3] = 0.016643324245619123
+gisounddb[732][3] = 0.01092348431062898
+gisounddb[733][3] = 0.01700530109200499
+gisounddb[734][3] = 0.005491478866684686
+gisounddb[735][3] = 0.01595248092902744
+gisounddb[736][3] = 0.016292034828290055
+gisounddb[737][3] = 0.01927014831937228
+gisounddb[738][3] = 0.022030921247400508
+gisounddb[739][3] = 0.02668552943903565
+gisounddb[740][3] = 0.0350933610512908
+gisounddb[741][3] = 0.032306160116300726
+gisounddb[742][3] = 0.008604982494786587
+gisounddb[743][3] = 0.01336480817533003
+gisounddb[744][3] = 0.04126349312237479
+gisounddb[745][3] = 0.01688365990720188
+gisounddb[746][3] = 0.013269527006402458
+gisounddb[747][3] = 0.033652114226503896
+gisounddb[748][3] = 0.027834791750810706
+gisounddb[749][3] = 0.029605985206080206
+gisounddb[750][3] = 0.06239406054572747
+gisounddb[751][3] = 0.08125712267509352
+gisounddb[752][3] = 0.04506454378223325
+gisounddb[753][3] = 0.005536491531520234
+gisounddb[754][3] = 0.012594556401336374
+gisounddb[755][3] = 0.04331427362163623
+gisounddb[756][3] = 0.03815882769406725
+gisounddb[757][3] = 0.04311968569833153
+gisounddb[758][3] = 0.01290443924710545
+gisounddb[759][3] = 0.02543259226630102
+gisounddb[760][3] = 0.013807331367675472
+gisounddb[761][3] = 0.051727377750206756
+gisounddb[762][3] = 0.018105933100012774
+gisounddb[763][3] = 0.01503090408823028
+gisounddb[764][3] = 0.04066653651601607
+gisounddb[765][3] = 0.019785030704605577
+gisounddb[766][3] = 0.020513528254503605
+gisounddb[767][3] = 0.021811989949497103
+gisounddb[768][3] = 0.04197170110583874
+gisounddb[769][3] = 0.007787717450314113
+gisounddb[770][3] = 0.022039077612055785
+gisounddb[771][3] = 0.050690316125043836
+gisounddb[772][3] = 0.007433778304895162
+gisounddb[773][3] = 0.018971265918227145
+gisounddb[774][3] = 0.022136217631625935
+gisounddb[775][3] = 0.013278755834230403
+gisounddb[776][3] = 0.013759093616217815
+gisounddb[777][3] = 0.017635557936445133
+gisounddb[778][3] = 0.024434598575899323
+gisounddb[779][3] = 0.015879053121518973
+gisounddb[780][3] = 0.046574736134235205
+gisounddb[781][3] = 0.03014772791895619
+gisounddb[782][3] = 0.04200720014999427
+gisounddb[783][3] = 0.029187231954077273
+gisounddb[784][3] = 0.059910205049415674
+gisounddb[785][3] = 0.015469580011371383
+gisounddb[786][3] = 0.024100469852183604
+gisounddb[787][3] = 0.02826988852054064
+gisounddb[788][3] = 0.05809491488469972
+gisounddb[789][3] = 0.10019443620210781
+gisounddb[790][3] = 0.043839447035064656
+gisounddb[791][3] = 0.06318106891536869
+gisounddb[792][3] = 0.007334783924659835
+gisounddb[793][3] = 0.032038716536893073
+gisounddb[794][3] = 0.014547262965728974
+gisounddb[795][3] = 0.06422454479395664
+gisounddb[796][3] = 0.006876915272420333
+gisounddb[797][3] = 0.009956895446421615
+gisounddb[798][3] = 0.04286474221599859
+gisounddb[799][3] = 0.02140306846514407
+gisounddb[800][3] = 0.009356558528507905
+gisounddb[801][3] = 0.05259149570882242
+gisounddb[802][3] = 0.0767571493050292
+gisounddb[803][3] = 0.01958853005092953
+gisounddb[804][3] = 0.0243970110508286
+gisounddb[805][3] = 0.026324404405504633
+gisounddb[806][3] = 0.011989866771048432
+gisounddb[807][3] = 0.018903519856402574
+gisounddb[808][3] = 0.007644364659092591
+gisounddb[809][3] = 0.02157119117881706
+gisounddb[810][3] = 0.017231388131029365
+gisounddb[811][3] = 0.024060375636874375
+gixdb_pitchreference ftgen 0,0,-512,-2,0
+gixdb_pitchnotes ftgen 0,0,-1191,-2,0
+gixdb_pitchadjust ftgen 0,0,-1191,-2,0
+gixdb_pitchrefoffset ftgen 0,0,-4,-2,-1,-1,0,128
+tabw_i 0,0,gixdb_pitchreference
+tabw_i 6,2,gixdb_pitchreference
+tabw_i 12,4,gixdb_pitchreference
+tabw_i 18,6,gixdb_pitchreference
+tabw_i 24,8,gixdb_pitchreference
+tabw_i 30,10,gixdb_pitchreference
+tabw_i 36,12,gixdb_pitchreference
+tabw_i 42,14,gixdb_pitchreference
+tabw_i 48,16,gixdb_pitchreference
+tabw_i 54,18,gixdb_pitchreference
+tabw_i 60,20,gixdb_pitchreference
+tabw_i 66,22,gixdb_pitchreference
+tabw_i 72,24,gixdb_pitchreference
+tabw_i 78,26,gixdb_pitchreference
+tabw_i 84,28,gixdb_pitchreference
+tabw_i 90,30,gixdb_pitchreference
+tabw_i 96,32,gixdb_pitchreference
+tabw_i 102,34,gixdb_pitchreference
+tabw_i 108,36,gixdb_pitchreference
+tabw_i 114,38,gixdb_pitchreference
+tabw_i 120,40,gixdb_pitchreference
+tabw_i 126,42,gixdb_pitchreference
+tabw_i 132,44,gixdb_pitchreference
+tabw_i 138,46,gixdb_pitchreference
+tabw_i 144,48,gixdb_pitchreference
+tabw_i 150,50,gixdb_pitchreference
+tabw_i 156,52,gixdb_pitchreference
+tabw_i 162,54,gixdb_pitchreference
+tabw_i 168,56,gixdb_pitchreference
+tabw_i 174,58,gixdb_pitchreference
+tabw_i 180,60,gixdb_pitchreference
+tabw_i 186,62,gixdb_pitchreference
+tabw_i 192,64,gixdb_pitchreference
+tabw_i 198,66,gixdb_pitchreference
+tabw_i 204,68,gixdb_pitchreference
+tabw_i 210,70,gixdb_pitchreference
+tabw_i 216,72,gixdb_pitchreference
+tabw_i 222,74,gixdb_pitchreference
+tabw_i 228,76,gixdb_pitchreference
+tabw_i 234,78,gixdb_pitchreference
+tabw_i 240,80,gixdb_pitchreference
+tabw_i 246,82,gixdb_pitchreference
+tabw_i 252,84,gixdb_pitchreference
+tabw_i 258,86,gixdb_pitchreference
+tabw_i 264,88,gixdb_pitchreference
+tabw_i 270,90,gixdb_pitchreference
+tabw_i 276,92,gixdb_pitchreference
+tabw_i 282,94,gixdb_pitchreference
+tabw_i 288,96,gixdb_pitchreference
+tabw_i 294,98,gixdb_pitchreference
+tabw_i 300,100,gixdb_pitchreference
+tabw_i 306,102,gixdb_pitchreference
+tabw_i 312,104,gixdb_pitchreference
+tabw_i 318,106,gixdb_pitchreference
+tabw_i 324,108,gixdb_pitchreference
+tabw_i 330,110,gixdb_pitchreference
+tabw_i 336,112,gixdb_pitchreference
+tabw_i 342,114,gixdb_pitchreference
+tabw_i 348,116,gixdb_pitchreference
+tabw_i 354,118,gixdb_pitchreference
+tabw_i 360,120,gixdb_pitchreference
+tabw_i 366,122,gixdb_pitchreference
+tabw_i 372,124,gixdb_pitchreference
+tabw_i 378,126,gixdb_pitchreference
+tabw_i 384,128,gixdb_pitchreference
+tabw_i 390,130,gixdb_pitchreference
+tabw_i 396,132,gixdb_pitchreference
+tabw_i 402,134,gixdb_pitchreference
+tabw_i 408,136,gixdb_pitchreference
+tabw_i 414,138,gixdb_pitchreference
+tabw_i 425,140,gixdb_pitchreference
+tabw_i 430,142,gixdb_pitchreference
+tabw_i 439,144,gixdb_pitchreference
+tabw_i 443,146,gixdb_pitchreference
+tabw_i 446,148,gixdb_pitchreference
+tabw_i 452,150,gixdb_pitchreference
+tabw_i 455,152,gixdb_pitchreference
+tabw_i 462,154,gixdb_pitchreference
+tabw_i 466,156,gixdb_pitchreference
+tabw_i 474,158,gixdb_pitchreference
+tabw_i 478,160,gixdb_pitchreference
+tabw_i 482,162,gixdb_pitchreference
+tabw_i 490,164,gixdb_pitchreference
+tabw_i 494,166,gixdb_pitchreference
+tabw_i 502,168,gixdb_pitchreference
+tabw_i 506,170,gixdb_pitchreference
+tabw_i 510,172,gixdb_pitchreference
+tabw_i 519,174,gixdb_pitchreference
+tabw_i 524,176,gixdb_pitchreference
+tabw_i 533,178,gixdb_pitchreference
+tabw_i 537,180,gixdb_pitchreference
+tabw_i 544,182,gixdb_pitchreference
+tabw_i 547,184,gixdb_pitchreference
+tabw_i 550,186,gixdb_pitchreference
+tabw_i 553,188,gixdb_pitchreference
+tabw_i 556,190,gixdb_pitchreference
+tabw_i 559,192,gixdb_pitchreference
+tabw_i 562,194,gixdb_pitchreference
+tabw_i 565,196,gixdb_pitchreference
+tabw_i 568,198,gixdb_pitchreference
+tabw_i 571,200,gixdb_pitchreference
+tabw_i 574,202,gixdb_pitchreference
+tabw_i 577,204,gixdb_pitchreference
+tabw_i 580,206,gixdb_pitchreference
+tabw_i 583,208,gixdb_pitchreference
+tabw_i 586,210,gixdb_pitchreference
+tabw_i 589,212,gixdb_pitchreference
+tabw_i 592,214,gixdb_pitchreference
+tabw_i 595,216,gixdb_pitchreference
+tabw_i 598,218,gixdb_pitchreference
+tabw_i 601,220,gixdb_pitchreference
+tabw_i 604,222,gixdb_pitchreference
+tabw_i 607,224,gixdb_pitchreference
+tabw_i 610,226,gixdb_pitchreference
+tabw_i 613,228,gixdb_pitchreference
+tabw_i 616,230,gixdb_pitchreference
+tabw_i 619,232,gixdb_pitchreference
+tabw_i 622,234,gixdb_pitchreference
+tabw_i 625,236,gixdb_pitchreference
+tabw_i 628,238,gixdb_pitchreference
+tabw_i 631,240,gixdb_pitchreference
+tabw_i 634,242,gixdb_pitchreference
+tabw_i 637,244,gixdb_pitchreference
+tabw_i 640,246,gixdb_pitchreference
+tabw_i 643,248,gixdb_pitchreference
+tabw_i 646,250,gixdb_pitchreference
+tabw_i 649,252,gixdb_pitchreference
+tabw_i 652,254,gixdb_pitchreference
+tabw_i 655,256,gixdb_pitchreference
+tabw_i 659,258,gixdb_pitchreference
+tabw_i 663,260,gixdb_pitchreference
+tabw_i 667,262,gixdb_pitchreference
+tabw_i 671,264,gixdb_pitchreference
+tabw_i 675,266,gixdb_pitchreference
+tabw_i 679,268,gixdb_pitchreference
+tabw_i 683,270,gixdb_pitchreference
+tabw_i 687,272,gixdb_pitchreference
+tabw_i 691,274,gixdb_pitchreference
+tabw_i 695,276,gixdb_pitchreference
+tabw_i 699,278,gixdb_pitchreference
+tabw_i 703,280,gixdb_pitchreference
+tabw_i 707,282,gixdb_pitchreference
+tabw_i 711,284,gixdb_pitchreference
+tabw_i 715,286,gixdb_pitchreference
+tabw_i 719,288,gixdb_pitchreference
+tabw_i 723,290,gixdb_pitchreference
+tabw_i 727,292,gixdb_pitchreference
+tabw_i 731,294,gixdb_pitchreference
+tabw_i 735,296,gixdb_pitchreference
+tabw_i 739,298,gixdb_pitchreference
+tabw_i 743,300,gixdb_pitchreference
+tabw_i 747,302,gixdb_pitchreference
+tabw_i 751,304,gixdb_pitchreference
+tabw_i 755,306,gixdb_pitchreference
+tabw_i 759,308,gixdb_pitchreference
+tabw_i 763,310,gixdb_pitchreference
+tabw_i 767,312,gixdb_pitchreference
+tabw_i 771,314,gixdb_pitchreference
+tabw_i 775,316,gixdb_pitchreference
+tabw_i 779,318,gixdb_pitchreference
+tabw_i 783,320,gixdb_pitchreference
+tabw_i 787,322,gixdb_pitchreference
+tabw_i 791,324,gixdb_pitchreference
+tabw_i 795,326,gixdb_pitchreference
+tabw_i 799,328,gixdb_pitchreference
+tabw_i 803,330,gixdb_pitchreference
+tabw_i 807,332,gixdb_pitchreference
+tabw_i 811,334,gixdb_pitchreference
+tabw_i 815,336,gixdb_pitchreference
+tabw_i 819,338,gixdb_pitchreference
+tabw_i 823,340,gixdb_pitchreference
+tabw_i 827,342,gixdb_pitchreference
+tabw_i 831,344,gixdb_pitchreference
+tabw_i 835,346,gixdb_pitchreference
+tabw_i 839,348,gixdb_pitchreference
+tabw_i 843,350,gixdb_pitchreference
+tabw_i 847,352,gixdb_pitchreference
+tabw_i 851,354,gixdb_pitchreference
+tabw_i 855,356,gixdb_pitchreference
+tabw_i 859,358,gixdb_pitchreference
+tabw_i 863,360,gixdb_pitchreference
+tabw_i 867,362,gixdb_pitchreference
+tabw_i 871,364,gixdb_pitchreference
+tabw_i 875,366,gixdb_pitchreference
+tabw_i 879,368,gixdb_pitchreference
+tabw_i 883,370,gixdb_pitchreference
+tabw_i 887,372,gixdb_pitchreference
+tabw_i 891,374,gixdb_pitchreference
+tabw_i 895,376,gixdb_pitchreference
+tabw_i 899,378,gixdb_pitchreference
+tabw_i 907,380,gixdb_pitchreference
+tabw_i 911,382,gixdb_pitchreference
+tabw_i 919,384,gixdb_pitchreference
+tabw_i 923,386,gixdb_pitchreference
+tabw_i 928,388,gixdb_pitchreference
+tabw_i 938,390,gixdb_pitchreference
+tabw_i 943,392,gixdb_pitchreference
+tabw_i 953,394,gixdb_pitchreference
+tabw_i 958,396,gixdb_pitchreference
+tabw_i 968,398,gixdb_pitchreference
+tabw_i 973,400,gixdb_pitchreference
+tabw_i 977,402,gixdb_pitchreference
+tabw_i 985,404,gixdb_pitchreference
+tabw_i 989,406,gixdb_pitchreference
+tabw_i 997,408,gixdb_pitchreference
+tabw_i 1001,410,gixdb_pitchreference
+tabw_i 1006,412,gixdb_pitchreference
+tabw_i 1015,414,gixdb_pitchreference
+tabw_i 1019,416,gixdb_pitchreference
+tabw_i 1028,418,gixdb_pitchreference
+tabw_i 1033,420,gixdb_pitchreference
+tabw_i 1043,422,gixdb_pitchreference
+tabw_i 1048,424,gixdb_pitchreference
+tabw_i 1052,426,gixdb_pitchreference
+tabw_i 1060,428,gixdb_pitchreference
+tabw_i 1064,430,gixdb_pitchreference
+tabw_i 1071,432,gixdb_pitchreference
+tabw_i 1074,434,gixdb_pitchreference
+tabw_i 1077,436,gixdb_pitchreference
+tabw_i 1080,438,gixdb_pitchreference
+tabw_i 1083,440,gixdb_pitchreference
+tabw_i 1086,442,gixdb_pitchreference
+tabw_i 1089,444,gixdb_pitchreference
+tabw_i 1092,446,gixdb_pitchreference
+tabw_i 1095,448,gixdb_pitchreference
+tabw_i 1098,450,gixdb_pitchreference
+tabw_i 1101,452,gixdb_pitchreference
+tabw_i 1104,454,gixdb_pitchreference
+tabw_i 1107,456,gixdb_pitchreference
+tabw_i 1110,458,gixdb_pitchreference
+tabw_i 1113,460,gixdb_pitchreference
+tabw_i 1116,462,gixdb_pitchreference
+tabw_i 1119,464,gixdb_pitchreference
+tabw_i 1122,466,gixdb_pitchreference
+tabw_i 1125,468,gixdb_pitchreference
+tabw_i 1128,470,gixdb_pitchreference
+tabw_i 1131,472,gixdb_pitchreference
+tabw_i 1134,474,gixdb_pitchreference
+tabw_i 1137,476,gixdb_pitchreference
+tabw_i 1140,478,gixdb_pitchreference
+tabw_i 1143,480,gixdb_pitchreference
+tabw_i 1146,482,gixdb_pitchreference
+tabw_i 1149,484,gixdb_pitchreference
+tabw_i 1152,486,gixdb_pitchreference
+tabw_i 1155,488,gixdb_pitchreference
+tabw_i 1158,490,gixdb_pitchreference
+tabw_i 1161,492,gixdb_pitchreference
+tabw_i 1164,494,gixdb_pitchreference
+tabw_i 1167,496,gixdb_pitchreference
+tabw_i 1170,498,gixdb_pitchreference
+tabw_i 1173,500,gixdb_pitchreference
+tabw_i 1176,502,gixdb_pitchreference
+tabw_i 1179,504,gixdb_pitchreference
+tabw_i 1182,506,gixdb_pitchreference
+tabw_i 1185,508,gixdb_pitchreference
+tabw_i 1188,510,gixdb_pitchreference
+tabw_i 5,1,gixdb_pitchreference
+tabw_i 11,3,gixdb_pitchreference
+tabw_i 17,5,gixdb_pitchreference
+tabw_i 23,7,gixdb_pitchreference
+tabw_i 29,9,gixdb_pitchreference
+tabw_i 35,11,gixdb_pitchreference
+tabw_i 41,13,gixdb_pitchreference
+tabw_i 47,15,gixdb_pitchreference
+tabw_i 53,17,gixdb_pitchreference
+tabw_i 59,19,gixdb_pitchreference
+tabw_i 65,21,gixdb_pitchreference
+tabw_i 71,23,gixdb_pitchreference
+tabw_i 77,25,gixdb_pitchreference
+tabw_i 83,27,gixdb_pitchreference
+tabw_i 89,29,gixdb_pitchreference
+tabw_i 95,31,gixdb_pitchreference
+tabw_i 101,33,gixdb_pitchreference
+tabw_i 107,35,gixdb_pitchreference
+tabw_i 113,37,gixdb_pitchreference
+tabw_i 119,39,gixdb_pitchreference
+tabw_i 125,41,gixdb_pitchreference
+tabw_i 131,43,gixdb_pitchreference
+tabw_i 137,45,gixdb_pitchreference
+tabw_i 143,47,gixdb_pitchreference
+tabw_i 149,49,gixdb_pitchreference
+tabw_i 155,51,gixdb_pitchreference
+tabw_i 161,53,gixdb_pitchreference
+tabw_i 167,55,gixdb_pitchreference
+tabw_i 173,57,gixdb_pitchreference
+tabw_i 179,59,gixdb_pitchreference
+tabw_i 185,61,gixdb_pitchreference
+tabw_i 191,63,gixdb_pitchreference
+tabw_i 197,65,gixdb_pitchreference
+tabw_i 203,67,gixdb_pitchreference
+tabw_i 209,69,gixdb_pitchreference
+tabw_i 215,71,gixdb_pitchreference
+tabw_i 221,73,gixdb_pitchreference
+tabw_i 227,75,gixdb_pitchreference
+tabw_i 233,77,gixdb_pitchreference
+tabw_i 239,79,gixdb_pitchreference
+tabw_i 245,81,gixdb_pitchreference
+tabw_i 251,83,gixdb_pitchreference
+tabw_i 257,85,gixdb_pitchreference
+tabw_i 263,87,gixdb_pitchreference
+tabw_i 269,89,gixdb_pitchreference
+tabw_i 275,91,gixdb_pitchreference
+tabw_i 281,93,gixdb_pitchreference
+tabw_i 287,95,gixdb_pitchreference
+tabw_i 293,97,gixdb_pitchreference
+tabw_i 299,99,gixdb_pitchreference
+tabw_i 305,101,gixdb_pitchreference
+tabw_i 311,103,gixdb_pitchreference
+tabw_i 317,105,gixdb_pitchreference
+tabw_i 323,107,gixdb_pitchreference
+tabw_i 329,109,gixdb_pitchreference
+tabw_i 335,111,gixdb_pitchreference
+tabw_i 341,113,gixdb_pitchreference
+tabw_i 347,115,gixdb_pitchreference
+tabw_i 353,117,gixdb_pitchreference
+tabw_i 359,119,gixdb_pitchreference
+tabw_i 365,121,gixdb_pitchreference
+tabw_i 371,123,gixdb_pitchreference
+tabw_i 377,125,gixdb_pitchreference
+tabw_i 383,127,gixdb_pitchreference
+tabw_i 389,129,gixdb_pitchreference
+tabw_i 395,131,gixdb_pitchreference
+tabw_i 401,133,gixdb_pitchreference
+tabw_i 407,135,gixdb_pitchreference
+tabw_i 413,137,gixdb_pitchreference
+tabw_i 424,139,gixdb_pitchreference
+tabw_i 429,141,gixdb_pitchreference
+tabw_i 438,143,gixdb_pitchreference
+tabw_i 442,145,gixdb_pitchreference
+tabw_i 445,147,gixdb_pitchreference
+tabw_i 451,149,gixdb_pitchreference
+tabw_i 454,151,gixdb_pitchreference
+tabw_i 461,153,gixdb_pitchreference
+tabw_i 465,155,gixdb_pitchreference
+tabw_i 473,157,gixdb_pitchreference
+tabw_i 477,159,gixdb_pitchreference
+tabw_i 481,161,gixdb_pitchreference
+tabw_i 489,163,gixdb_pitchreference
+tabw_i 493,165,gixdb_pitchreference
+tabw_i 501,167,gixdb_pitchreference
+tabw_i 505,169,gixdb_pitchreference
+tabw_i 509,171,gixdb_pitchreference
+tabw_i 518,173,gixdb_pitchreference
+tabw_i 523,175,gixdb_pitchreference
+tabw_i 532,177,gixdb_pitchreference
+tabw_i 536,179,gixdb_pitchreference
+tabw_i 543,181,gixdb_pitchreference
+tabw_i 546,183,gixdb_pitchreference
+tabw_i 549,185,gixdb_pitchreference
+tabw_i 552,187,gixdb_pitchreference
+tabw_i 555,189,gixdb_pitchreference
+tabw_i 558,191,gixdb_pitchreference
+tabw_i 561,193,gixdb_pitchreference
+tabw_i 564,195,gixdb_pitchreference
+tabw_i 567,197,gixdb_pitchreference
+tabw_i 570,199,gixdb_pitchreference
+tabw_i 573,201,gixdb_pitchreference
+tabw_i 576,203,gixdb_pitchreference
+tabw_i 579,205,gixdb_pitchreference
+tabw_i 582,207,gixdb_pitchreference
+tabw_i 585,209,gixdb_pitchreference
+tabw_i 588,211,gixdb_pitchreference
+tabw_i 591,213,gixdb_pitchreference
+tabw_i 594,215,gixdb_pitchreference
+tabw_i 597,217,gixdb_pitchreference
+tabw_i 600,219,gixdb_pitchreference
+tabw_i 603,221,gixdb_pitchreference
+tabw_i 606,223,gixdb_pitchreference
+tabw_i 609,225,gixdb_pitchreference
+tabw_i 612,227,gixdb_pitchreference
+tabw_i 615,229,gixdb_pitchreference
+tabw_i 618,231,gixdb_pitchreference
+tabw_i 621,233,gixdb_pitchreference
+tabw_i 624,235,gixdb_pitchreference
+tabw_i 627,237,gixdb_pitchreference
+tabw_i 630,239,gixdb_pitchreference
+tabw_i 633,241,gixdb_pitchreference
+tabw_i 636,243,gixdb_pitchreference
+tabw_i 639,245,gixdb_pitchreference
+tabw_i 642,247,gixdb_pitchreference
+tabw_i 645,249,gixdb_pitchreference
+tabw_i 648,251,gixdb_pitchreference
+tabw_i 651,253,gixdb_pitchreference
+tabw_i 654,255,gixdb_pitchreference
+tabw_i 658,257,gixdb_pitchreference
+tabw_i 662,259,gixdb_pitchreference
+tabw_i 666,261,gixdb_pitchreference
+tabw_i 670,263,gixdb_pitchreference
+tabw_i 674,265,gixdb_pitchreference
+tabw_i 678,267,gixdb_pitchreference
+tabw_i 682,269,gixdb_pitchreference
+tabw_i 686,271,gixdb_pitchreference
+tabw_i 690,273,gixdb_pitchreference
+tabw_i 694,275,gixdb_pitchreference
+tabw_i 698,277,gixdb_pitchreference
+tabw_i 702,279,gixdb_pitchreference
+tabw_i 706,281,gixdb_pitchreference
+tabw_i 710,283,gixdb_pitchreference
+tabw_i 714,285,gixdb_pitchreference
+tabw_i 718,287,gixdb_pitchreference
+tabw_i 722,289,gixdb_pitchreference
+tabw_i 726,291,gixdb_pitchreference
+tabw_i 730,293,gixdb_pitchreference
+tabw_i 734,295,gixdb_pitchreference
+tabw_i 738,297,gixdb_pitchreference
+tabw_i 742,299,gixdb_pitchreference
+tabw_i 746,301,gixdb_pitchreference
+tabw_i 750,303,gixdb_pitchreference
+tabw_i 754,305,gixdb_pitchreference
+tabw_i 758,307,gixdb_pitchreference
+tabw_i 762,309,gixdb_pitchreference
+tabw_i 766,311,gixdb_pitchreference
+tabw_i 770,313,gixdb_pitchreference
+tabw_i 774,315,gixdb_pitchreference
+tabw_i 778,317,gixdb_pitchreference
+tabw_i 782,319,gixdb_pitchreference
+tabw_i 786,321,gixdb_pitchreference
+tabw_i 790,323,gixdb_pitchreference
+tabw_i 794,325,gixdb_pitchreference
+tabw_i 798,327,gixdb_pitchreference
+tabw_i 802,329,gixdb_pitchreference
+tabw_i 806,331,gixdb_pitchreference
+tabw_i 810,333,gixdb_pitchreference
+tabw_i 814,335,gixdb_pitchreference
+tabw_i 818,337,gixdb_pitchreference
+tabw_i 822,339,gixdb_pitchreference
+tabw_i 826,341,gixdb_pitchreference
+tabw_i 830,343,gixdb_pitchreference
+tabw_i 834,345,gixdb_pitchreference
+tabw_i 838,347,gixdb_pitchreference
+tabw_i 842,349,gixdb_pitchreference
+tabw_i 846,351,gixdb_pitchreference
+tabw_i 850,353,gixdb_pitchreference
+tabw_i 854,355,gixdb_pitchreference
+tabw_i 858,357,gixdb_pitchreference
+tabw_i 862,359,gixdb_pitchreference
+tabw_i 866,361,gixdb_pitchreference
+tabw_i 870,363,gixdb_pitchreference
+tabw_i 874,365,gixdb_pitchreference
+tabw_i 878,367,gixdb_pitchreference
+tabw_i 882,369,gixdb_pitchreference
+tabw_i 886,371,gixdb_pitchreference
+tabw_i 890,373,gixdb_pitchreference
+tabw_i 894,375,gixdb_pitchreference
+tabw_i 898,377,gixdb_pitchreference
+tabw_i 906,379,gixdb_pitchreference
+tabw_i 910,381,gixdb_pitchreference
+tabw_i 918,383,gixdb_pitchreference
+tabw_i 922,385,gixdb_pitchreference
+tabw_i 927,387,gixdb_pitchreference
+tabw_i 937,389,gixdb_pitchreference
+tabw_i 942,391,gixdb_pitchreference
+tabw_i 952,393,gixdb_pitchreference
+tabw_i 957,395,gixdb_pitchreference
+tabw_i 967,397,gixdb_pitchreference
+tabw_i 972,399,gixdb_pitchreference
+tabw_i 976,401,gixdb_pitchreference
+tabw_i 984,403,gixdb_pitchreference
+tabw_i 988,405,gixdb_pitchreference
+tabw_i 996,407,gixdb_pitchreference
+tabw_i 1000,409,gixdb_pitchreference
+tabw_i 1005,411,gixdb_pitchreference
+tabw_i 1014,413,gixdb_pitchreference
+tabw_i 1018,415,gixdb_pitchreference
+tabw_i 1027,417,gixdb_pitchreference
+tabw_i 1032,419,gixdb_pitchreference
+tabw_i 1042,421,gixdb_pitchreference
+tabw_i 1047,423,gixdb_pitchreference
+tabw_i 1051,425,gixdb_pitchreference
+tabw_i 1059,427,gixdb_pitchreference
+tabw_i 1063,429,gixdb_pitchreference
+tabw_i 1070,431,gixdb_pitchreference
+tabw_i 1073,433,gixdb_pitchreference
+tabw_i 1076,435,gixdb_pitchreference
+tabw_i 1079,437,gixdb_pitchreference
+tabw_i 1082,439,gixdb_pitchreference
+tabw_i 1085,441,gixdb_pitchreference
+tabw_i 1088,443,gixdb_pitchreference
+tabw_i 1091,445,gixdb_pitchreference
+tabw_i 1094,447,gixdb_pitchreference
+tabw_i 1097,449,gixdb_pitchreference
+tabw_i 1100,451,gixdb_pitchreference
+tabw_i 1103,453,gixdb_pitchreference
+tabw_i 1106,455,gixdb_pitchreference
+tabw_i 1109,457,gixdb_pitchreference
+tabw_i 1112,459,gixdb_pitchreference
+tabw_i 1115,461,gixdb_pitchreference
+tabw_i 1118,463,gixdb_pitchreference
+tabw_i 1121,465,gixdb_pitchreference
+tabw_i 1124,467,gixdb_pitchreference
+tabw_i 1127,469,gixdb_pitchreference
+tabw_i 1130,471,gixdb_pitchreference
+tabw_i 1133,473,gixdb_pitchreference
+tabw_i 1136,475,gixdb_pitchreference
+tabw_i 1139,477,gixdb_pitchreference
+tabw_i 1142,479,gixdb_pitchreference
+tabw_i 1145,481,gixdb_pitchreference
+tabw_i 1148,483,gixdb_pitchreference
+tabw_i 1151,485,gixdb_pitchreference
+tabw_i 1154,487,gixdb_pitchreference
+tabw_i 1157,489,gixdb_pitchreference
+tabw_i 1160,491,gixdb_pitchreference
+tabw_i 1163,493,gixdb_pitchreference
+tabw_i 1166,495,gixdb_pitchreference
+tabw_i 1169,497,gixdb_pitchreference
+tabw_i 1172,499,gixdb_pitchreference
+tabw_i 1175,501,gixdb_pitchreference
+tabw_i 1178,503,gixdb_pitchreference
+tabw_i 1181,505,gixdb_pitchreference
+tabw_i 1184,507,gixdb_pitchreference
+tabw_i 1187,509,gixdb_pitchreference
+tabw_i 1190,511,gixdb_pitchreference
+tabw_i 684,0,gixdb_pitchnotes
+tabw_i 690,1,gixdb_pitchnotes
+tabw_i 691,2,gixdb_pitchnotes
+tabw_i 705,3,gixdb_pitchnotes
+tabw_i 731,4,gixdb_pitchnotes
+tabw_i 736,5,gixdb_pitchnotes
+tabw_i 684,6,gixdb_pitchnotes
+tabw_i 690,7,gixdb_pitchnotes
+tabw_i 691,8,gixdb_pitchnotes
+tabw_i 705,9,gixdb_pitchnotes
+tabw_i 731,10,gixdb_pitchnotes
+tabw_i 736,11,gixdb_pitchnotes
+tabw_i 684,12,gixdb_pitchnotes
+tabw_i 690,13,gixdb_pitchnotes
+tabw_i 691,14,gixdb_pitchnotes
+tabw_i 705,15,gixdb_pitchnotes
+tabw_i 731,16,gixdb_pitchnotes
+tabw_i 736,17,gixdb_pitchnotes
+tabw_i 684,18,gixdb_pitchnotes
+tabw_i 690,19,gixdb_pitchnotes
+tabw_i 691,20,gixdb_pitchnotes
+tabw_i 705,21,gixdb_pitchnotes
+tabw_i 731,22,gixdb_pitchnotes
+tabw_i 736,23,gixdb_pitchnotes
+tabw_i 684,24,gixdb_pitchnotes
+tabw_i 690,25,gixdb_pitchnotes
+tabw_i 691,26,gixdb_pitchnotes
+tabw_i 705,27,gixdb_pitchnotes
+tabw_i 731,28,gixdb_pitchnotes
+tabw_i 736,29,gixdb_pitchnotes
+tabw_i 684,30,gixdb_pitchnotes
+tabw_i 690,31,gixdb_pitchnotes
+tabw_i 691,32,gixdb_pitchnotes
+tabw_i 705,33,gixdb_pitchnotes
+tabw_i 731,34,gixdb_pitchnotes
+tabw_i 736,35,gixdb_pitchnotes
+tabw_i 684,36,gixdb_pitchnotes
+tabw_i 690,37,gixdb_pitchnotes
+tabw_i 691,38,gixdb_pitchnotes
+tabw_i 705,39,gixdb_pitchnotes
+tabw_i 731,40,gixdb_pitchnotes
+tabw_i 736,41,gixdb_pitchnotes
+tabw_i 684,42,gixdb_pitchnotes
+tabw_i 690,43,gixdb_pitchnotes
+tabw_i 691,44,gixdb_pitchnotes
+tabw_i 705,45,gixdb_pitchnotes
+tabw_i 731,46,gixdb_pitchnotes
+tabw_i 736,47,gixdb_pitchnotes
+tabw_i 684,48,gixdb_pitchnotes
+tabw_i 690,49,gixdb_pitchnotes
+tabw_i 691,50,gixdb_pitchnotes
+tabw_i 705,51,gixdb_pitchnotes
+tabw_i 731,52,gixdb_pitchnotes
+tabw_i 736,53,gixdb_pitchnotes
+tabw_i 684,54,gixdb_pitchnotes
+tabw_i 690,55,gixdb_pitchnotes
+tabw_i 691,56,gixdb_pitchnotes
+tabw_i 705,57,gixdb_pitchnotes
+tabw_i 731,58,gixdb_pitchnotes
+tabw_i 736,59,gixdb_pitchnotes
+tabw_i 684,60,gixdb_pitchnotes
+tabw_i 690,61,gixdb_pitchnotes
+tabw_i 691,62,gixdb_pitchnotes
+tabw_i 705,63,gixdb_pitchnotes
+tabw_i 731,64,gixdb_pitchnotes
+tabw_i 736,65,gixdb_pitchnotes
+tabw_i 684,66,gixdb_pitchnotes
+tabw_i 690,67,gixdb_pitchnotes
+tabw_i 691,68,gixdb_pitchnotes
+tabw_i 705,69,gixdb_pitchnotes
+tabw_i 731,70,gixdb_pitchnotes
+tabw_i 736,71,gixdb_pitchnotes
+tabw_i 684,72,gixdb_pitchnotes
+tabw_i 690,73,gixdb_pitchnotes
+tabw_i 691,74,gixdb_pitchnotes
+tabw_i 705,75,gixdb_pitchnotes
+tabw_i 731,76,gixdb_pitchnotes
+tabw_i 736,77,gixdb_pitchnotes
+tabw_i 684,78,gixdb_pitchnotes
+tabw_i 690,79,gixdb_pitchnotes
+tabw_i 691,80,gixdb_pitchnotes
+tabw_i 705,81,gixdb_pitchnotes
+tabw_i 731,82,gixdb_pitchnotes
+tabw_i 736,83,gixdb_pitchnotes
+tabw_i 684,84,gixdb_pitchnotes
+tabw_i 690,85,gixdb_pitchnotes
+tabw_i 691,86,gixdb_pitchnotes
+tabw_i 705,87,gixdb_pitchnotes
+tabw_i 731,88,gixdb_pitchnotes
+tabw_i 736,89,gixdb_pitchnotes
+tabw_i 684,90,gixdb_pitchnotes
+tabw_i 690,91,gixdb_pitchnotes
+tabw_i 691,92,gixdb_pitchnotes
+tabw_i 705,93,gixdb_pitchnotes
+tabw_i 731,94,gixdb_pitchnotes
+tabw_i 736,95,gixdb_pitchnotes
+tabw_i 684,96,gixdb_pitchnotes
+tabw_i 690,97,gixdb_pitchnotes
+tabw_i 691,98,gixdb_pitchnotes
+tabw_i 705,99,gixdb_pitchnotes
+tabw_i 731,100,gixdb_pitchnotes
+tabw_i 736,101,gixdb_pitchnotes
+tabw_i 684,102,gixdb_pitchnotes
+tabw_i 690,103,gixdb_pitchnotes
+tabw_i 691,104,gixdb_pitchnotes
+tabw_i 705,105,gixdb_pitchnotes
+tabw_i 731,106,gixdb_pitchnotes
+tabw_i 736,107,gixdb_pitchnotes
+tabw_i 684,108,gixdb_pitchnotes
+tabw_i 690,109,gixdb_pitchnotes
+tabw_i 691,110,gixdb_pitchnotes
+tabw_i 705,111,gixdb_pitchnotes
+tabw_i 731,112,gixdb_pitchnotes
+tabw_i 736,113,gixdb_pitchnotes
+tabw_i 684,114,gixdb_pitchnotes
+tabw_i 690,115,gixdb_pitchnotes
+tabw_i 691,116,gixdb_pitchnotes
+tabw_i 705,117,gixdb_pitchnotes
+tabw_i 731,118,gixdb_pitchnotes
+tabw_i 736,119,gixdb_pitchnotes
+tabw_i 684,120,gixdb_pitchnotes
+tabw_i 690,121,gixdb_pitchnotes
+tabw_i 691,122,gixdb_pitchnotes
+tabw_i 705,123,gixdb_pitchnotes
+tabw_i 731,124,gixdb_pitchnotes
+tabw_i 736,125,gixdb_pitchnotes
+tabw_i 684,126,gixdb_pitchnotes
+tabw_i 690,127,gixdb_pitchnotes
+tabw_i 691,128,gixdb_pitchnotes
+tabw_i 705,129,gixdb_pitchnotes
+tabw_i 731,130,gixdb_pitchnotes
+tabw_i 736,131,gixdb_pitchnotes
+tabw_i 684,132,gixdb_pitchnotes
+tabw_i 690,133,gixdb_pitchnotes
+tabw_i 691,134,gixdb_pitchnotes
+tabw_i 705,135,gixdb_pitchnotes
+tabw_i 731,136,gixdb_pitchnotes
+tabw_i 736,137,gixdb_pitchnotes
+tabw_i 684,138,gixdb_pitchnotes
+tabw_i 690,139,gixdb_pitchnotes
+tabw_i 691,140,gixdb_pitchnotes
+tabw_i 705,141,gixdb_pitchnotes
+tabw_i 731,142,gixdb_pitchnotes
+tabw_i 736,143,gixdb_pitchnotes
+tabw_i 684,144,gixdb_pitchnotes
+tabw_i 690,145,gixdb_pitchnotes
+tabw_i 691,146,gixdb_pitchnotes
+tabw_i 705,147,gixdb_pitchnotes
+tabw_i 731,148,gixdb_pitchnotes
+tabw_i 736,149,gixdb_pitchnotes
+tabw_i 684,150,gixdb_pitchnotes
+tabw_i 690,151,gixdb_pitchnotes
+tabw_i 691,152,gixdb_pitchnotes
+tabw_i 705,153,gixdb_pitchnotes
+tabw_i 731,154,gixdb_pitchnotes
+tabw_i 736,155,gixdb_pitchnotes
+tabw_i 684,156,gixdb_pitchnotes
+tabw_i 690,157,gixdb_pitchnotes
+tabw_i 691,158,gixdb_pitchnotes
+tabw_i 705,159,gixdb_pitchnotes
+tabw_i 731,160,gixdb_pitchnotes
+tabw_i 736,161,gixdb_pitchnotes
+tabw_i 684,162,gixdb_pitchnotes
+tabw_i 690,163,gixdb_pitchnotes
+tabw_i 691,164,gixdb_pitchnotes
+tabw_i 705,165,gixdb_pitchnotes
+tabw_i 731,166,gixdb_pitchnotes
+tabw_i 736,167,gixdb_pitchnotes
+tabw_i 684,168,gixdb_pitchnotes
+tabw_i 690,169,gixdb_pitchnotes
+tabw_i 691,170,gixdb_pitchnotes
+tabw_i 705,171,gixdb_pitchnotes
+tabw_i 731,172,gixdb_pitchnotes
+tabw_i 736,173,gixdb_pitchnotes
+tabw_i 684,174,gixdb_pitchnotes
+tabw_i 690,175,gixdb_pitchnotes
+tabw_i 691,176,gixdb_pitchnotes
+tabw_i 705,177,gixdb_pitchnotes
+tabw_i 731,178,gixdb_pitchnotes
+tabw_i 736,179,gixdb_pitchnotes
+tabw_i 684,180,gixdb_pitchnotes
+tabw_i 690,181,gixdb_pitchnotes
+tabw_i 691,182,gixdb_pitchnotes
+tabw_i 705,183,gixdb_pitchnotes
+tabw_i 731,184,gixdb_pitchnotes
+tabw_i 736,185,gixdb_pitchnotes
+tabw_i 684,186,gixdb_pitchnotes
+tabw_i 690,187,gixdb_pitchnotes
+tabw_i 691,188,gixdb_pitchnotes
+tabw_i 705,189,gixdb_pitchnotes
+tabw_i 731,190,gixdb_pitchnotes
+tabw_i 736,191,gixdb_pitchnotes
+tabw_i 684,192,gixdb_pitchnotes
+tabw_i 690,193,gixdb_pitchnotes
+tabw_i 691,194,gixdb_pitchnotes
+tabw_i 705,195,gixdb_pitchnotes
+tabw_i 731,196,gixdb_pitchnotes
+tabw_i 736,197,gixdb_pitchnotes
+tabw_i 684,198,gixdb_pitchnotes
+tabw_i 690,199,gixdb_pitchnotes
+tabw_i 691,200,gixdb_pitchnotes
+tabw_i 705,201,gixdb_pitchnotes
+tabw_i 731,202,gixdb_pitchnotes
+tabw_i 736,203,gixdb_pitchnotes
+tabw_i 684,204,gixdb_pitchnotes
+tabw_i 690,205,gixdb_pitchnotes
+tabw_i 691,206,gixdb_pitchnotes
+tabw_i 705,207,gixdb_pitchnotes
+tabw_i 731,208,gixdb_pitchnotes
+tabw_i 736,209,gixdb_pitchnotes
+tabw_i 684,210,gixdb_pitchnotes
+tabw_i 690,211,gixdb_pitchnotes
+tabw_i 691,212,gixdb_pitchnotes
+tabw_i 705,213,gixdb_pitchnotes
+tabw_i 731,214,gixdb_pitchnotes
+tabw_i 736,215,gixdb_pitchnotes
+tabw_i 684,216,gixdb_pitchnotes
+tabw_i 690,217,gixdb_pitchnotes
+tabw_i 691,218,gixdb_pitchnotes
+tabw_i 705,219,gixdb_pitchnotes
+tabw_i 731,220,gixdb_pitchnotes
+tabw_i 736,221,gixdb_pitchnotes
+tabw_i 684,222,gixdb_pitchnotes
+tabw_i 690,223,gixdb_pitchnotes
+tabw_i 691,224,gixdb_pitchnotes
+tabw_i 705,225,gixdb_pitchnotes
+tabw_i 731,226,gixdb_pitchnotes
+tabw_i 736,227,gixdb_pitchnotes
+tabw_i 684,228,gixdb_pitchnotes
+tabw_i 690,229,gixdb_pitchnotes
+tabw_i 691,230,gixdb_pitchnotes
+tabw_i 705,231,gixdb_pitchnotes
+tabw_i 731,232,gixdb_pitchnotes
+tabw_i 736,233,gixdb_pitchnotes
+tabw_i 684,234,gixdb_pitchnotes
+tabw_i 690,235,gixdb_pitchnotes
+tabw_i 691,236,gixdb_pitchnotes
+tabw_i 705,237,gixdb_pitchnotes
+tabw_i 731,238,gixdb_pitchnotes
+tabw_i 736,239,gixdb_pitchnotes
+tabw_i 684,240,gixdb_pitchnotes
+tabw_i 690,241,gixdb_pitchnotes
+tabw_i 691,242,gixdb_pitchnotes
+tabw_i 705,243,gixdb_pitchnotes
+tabw_i 731,244,gixdb_pitchnotes
+tabw_i 736,245,gixdb_pitchnotes
+tabw_i 684,246,gixdb_pitchnotes
+tabw_i 690,247,gixdb_pitchnotes
+tabw_i 691,248,gixdb_pitchnotes
+tabw_i 705,249,gixdb_pitchnotes
+tabw_i 731,250,gixdb_pitchnotes
+tabw_i 736,251,gixdb_pitchnotes
+tabw_i 684,252,gixdb_pitchnotes
+tabw_i 690,253,gixdb_pitchnotes
+tabw_i 691,254,gixdb_pitchnotes
+tabw_i 705,255,gixdb_pitchnotes
+tabw_i 731,256,gixdb_pitchnotes
+tabw_i 736,257,gixdb_pitchnotes
+tabw_i 684,258,gixdb_pitchnotes
+tabw_i 690,259,gixdb_pitchnotes
+tabw_i 691,260,gixdb_pitchnotes
+tabw_i 705,261,gixdb_pitchnotes
+tabw_i 731,262,gixdb_pitchnotes
+tabw_i 736,263,gixdb_pitchnotes
+tabw_i 684,264,gixdb_pitchnotes
+tabw_i 690,265,gixdb_pitchnotes
+tabw_i 691,266,gixdb_pitchnotes
+tabw_i 705,267,gixdb_pitchnotes
+tabw_i 731,268,gixdb_pitchnotes
+tabw_i 736,269,gixdb_pitchnotes
+tabw_i 684,270,gixdb_pitchnotes
+tabw_i 690,271,gixdb_pitchnotes
+tabw_i 691,272,gixdb_pitchnotes
+tabw_i 705,273,gixdb_pitchnotes
+tabw_i 731,274,gixdb_pitchnotes
+tabw_i 736,275,gixdb_pitchnotes
+tabw_i 684,276,gixdb_pitchnotes
+tabw_i 690,277,gixdb_pitchnotes
+tabw_i 691,278,gixdb_pitchnotes
+tabw_i 705,279,gixdb_pitchnotes
+tabw_i 731,280,gixdb_pitchnotes
+tabw_i 736,281,gixdb_pitchnotes
+tabw_i 684,282,gixdb_pitchnotes
+tabw_i 690,283,gixdb_pitchnotes
+tabw_i 691,284,gixdb_pitchnotes
+tabw_i 705,285,gixdb_pitchnotes
+tabw_i 731,286,gixdb_pitchnotes
+tabw_i 736,287,gixdb_pitchnotes
+tabw_i 684,288,gixdb_pitchnotes
+tabw_i 690,289,gixdb_pitchnotes
+tabw_i 691,290,gixdb_pitchnotes
+tabw_i 705,291,gixdb_pitchnotes
+tabw_i 731,292,gixdb_pitchnotes
+tabw_i 736,293,gixdb_pitchnotes
+tabw_i 684,294,gixdb_pitchnotes
+tabw_i 690,295,gixdb_pitchnotes
+tabw_i 691,296,gixdb_pitchnotes
+tabw_i 705,297,gixdb_pitchnotes
+tabw_i 731,298,gixdb_pitchnotes
+tabw_i 736,299,gixdb_pitchnotes
+tabw_i 684,300,gixdb_pitchnotes
+tabw_i 690,301,gixdb_pitchnotes
+tabw_i 691,302,gixdb_pitchnotes
+tabw_i 705,303,gixdb_pitchnotes
+tabw_i 731,304,gixdb_pitchnotes
+tabw_i 736,305,gixdb_pitchnotes
+tabw_i 684,306,gixdb_pitchnotes
+tabw_i 690,307,gixdb_pitchnotes
+tabw_i 691,308,gixdb_pitchnotes
+tabw_i 705,309,gixdb_pitchnotes
+tabw_i 731,310,gixdb_pitchnotes
+tabw_i 736,311,gixdb_pitchnotes
+tabw_i 684,312,gixdb_pitchnotes
+tabw_i 690,313,gixdb_pitchnotes
+tabw_i 691,314,gixdb_pitchnotes
+tabw_i 705,315,gixdb_pitchnotes
+tabw_i 731,316,gixdb_pitchnotes
+tabw_i 736,317,gixdb_pitchnotes
+tabw_i 684,318,gixdb_pitchnotes
+tabw_i 690,319,gixdb_pitchnotes
+tabw_i 691,320,gixdb_pitchnotes
+tabw_i 705,321,gixdb_pitchnotes
+tabw_i 731,322,gixdb_pitchnotes
+tabw_i 736,323,gixdb_pitchnotes
+tabw_i 684,324,gixdb_pitchnotes
+tabw_i 690,325,gixdb_pitchnotes
+tabw_i 691,326,gixdb_pitchnotes
+tabw_i 705,327,gixdb_pitchnotes
+tabw_i 731,328,gixdb_pitchnotes
+tabw_i 736,329,gixdb_pitchnotes
+tabw_i 684,330,gixdb_pitchnotes
+tabw_i 690,331,gixdb_pitchnotes
+tabw_i 691,332,gixdb_pitchnotes
+tabw_i 705,333,gixdb_pitchnotes
+tabw_i 731,334,gixdb_pitchnotes
+tabw_i 736,335,gixdb_pitchnotes
+tabw_i 684,336,gixdb_pitchnotes
+tabw_i 690,337,gixdb_pitchnotes
+tabw_i 691,338,gixdb_pitchnotes
+tabw_i 705,339,gixdb_pitchnotes
+tabw_i 731,340,gixdb_pitchnotes
+tabw_i 736,341,gixdb_pitchnotes
+tabw_i 684,342,gixdb_pitchnotes
+tabw_i 690,343,gixdb_pitchnotes
+tabw_i 691,344,gixdb_pitchnotes
+tabw_i 705,345,gixdb_pitchnotes
+tabw_i 731,346,gixdb_pitchnotes
+tabw_i 736,347,gixdb_pitchnotes
+tabw_i 684,348,gixdb_pitchnotes
+tabw_i 690,349,gixdb_pitchnotes
+tabw_i 691,350,gixdb_pitchnotes
+tabw_i 705,351,gixdb_pitchnotes
+tabw_i 731,352,gixdb_pitchnotes
+tabw_i 736,353,gixdb_pitchnotes
+tabw_i 684,354,gixdb_pitchnotes
+tabw_i 690,355,gixdb_pitchnotes
+tabw_i 691,356,gixdb_pitchnotes
+tabw_i 705,357,gixdb_pitchnotes
+tabw_i 731,358,gixdb_pitchnotes
+tabw_i 736,359,gixdb_pitchnotes
+tabw_i 684,360,gixdb_pitchnotes
+tabw_i 690,361,gixdb_pitchnotes
+tabw_i 691,362,gixdb_pitchnotes
+tabw_i 705,363,gixdb_pitchnotes
+tabw_i 731,364,gixdb_pitchnotes
+tabw_i 736,365,gixdb_pitchnotes
+tabw_i 684,366,gixdb_pitchnotes
+tabw_i 690,367,gixdb_pitchnotes
+tabw_i 691,368,gixdb_pitchnotes
+tabw_i 705,369,gixdb_pitchnotes
+tabw_i 731,370,gixdb_pitchnotes
+tabw_i 736,371,gixdb_pitchnotes
+tabw_i 684,372,gixdb_pitchnotes
+tabw_i 690,373,gixdb_pitchnotes
+tabw_i 691,374,gixdb_pitchnotes
+tabw_i 705,375,gixdb_pitchnotes
+tabw_i 731,376,gixdb_pitchnotes
+tabw_i 736,377,gixdb_pitchnotes
+tabw_i 684,378,gixdb_pitchnotes
+tabw_i 690,379,gixdb_pitchnotes
+tabw_i 691,380,gixdb_pitchnotes
+tabw_i 705,381,gixdb_pitchnotes
+tabw_i 731,382,gixdb_pitchnotes
+tabw_i 736,383,gixdb_pitchnotes
+tabw_i 684,384,gixdb_pitchnotes
+tabw_i 690,385,gixdb_pitchnotes
+tabw_i 691,386,gixdb_pitchnotes
+tabw_i 705,387,gixdb_pitchnotes
+tabw_i 731,388,gixdb_pitchnotes
+tabw_i 736,389,gixdb_pitchnotes
+tabw_i 684,390,gixdb_pitchnotes
+tabw_i 690,391,gixdb_pitchnotes
+tabw_i 691,392,gixdb_pitchnotes
+tabw_i 705,393,gixdb_pitchnotes
+tabw_i 731,394,gixdb_pitchnotes
+tabw_i 736,395,gixdb_pitchnotes
+tabw_i 684,396,gixdb_pitchnotes
+tabw_i 690,397,gixdb_pitchnotes
+tabw_i 691,398,gixdb_pitchnotes
+tabw_i 705,399,gixdb_pitchnotes
+tabw_i 731,400,gixdb_pitchnotes
+tabw_i 736,401,gixdb_pitchnotes
+tabw_i 684,402,gixdb_pitchnotes
+tabw_i 690,403,gixdb_pitchnotes
+tabw_i 691,404,gixdb_pitchnotes
+tabw_i 705,405,gixdb_pitchnotes
+tabw_i 731,406,gixdb_pitchnotes
+tabw_i 736,407,gixdb_pitchnotes
+tabw_i 684,408,gixdb_pitchnotes
+tabw_i 690,409,gixdb_pitchnotes
+tabw_i 691,410,gixdb_pitchnotes
+tabw_i 705,411,gixdb_pitchnotes
+tabw_i 731,412,gixdb_pitchnotes
+tabw_i 736,413,gixdb_pitchnotes
+tabw_i 684,414,gixdb_pitchnotes
+tabw_i 690,415,gixdb_pitchnotes
+tabw_i 691,416,gixdb_pitchnotes
+tabw_i 693,417,gixdb_pitchnotes
+tabw_i 698,418,gixdb_pitchnotes
+tabw_i 705,419,gixdb_pitchnotes
+tabw_i 714,420,gixdb_pitchnotes
+tabw_i 723,421,gixdb_pitchnotes
+tabw_i 724,422,gixdb_pitchnotes
+tabw_i 731,423,gixdb_pitchnotes
+tabw_i 736,424,gixdb_pitchnotes
+tabw_i 693,425,gixdb_pitchnotes
+tabw_i 698,426,gixdb_pitchnotes
+tabw_i 714,427,gixdb_pitchnotes
+tabw_i 723,428,gixdb_pitchnotes
+tabw_i 724,429,gixdb_pitchnotes
+tabw_i 693,430,gixdb_pitchnotes
+tabw_i 698,431,gixdb_pitchnotes
+tabw_i 703,432,gixdb_pitchnotes
+tabw_i 710,433,gixdb_pitchnotes
+tabw_i 712,434,gixdb_pitchnotes
+tabw_i 714,435,gixdb_pitchnotes
+tabw_i 719,436,gixdb_pitchnotes
+tabw_i 723,437,gixdb_pitchnotes
+tabw_i 724,438,gixdb_pitchnotes
+tabw_i 703,439,gixdb_pitchnotes
+tabw_i 710,440,gixdb_pitchnotes
+tabw_i 712,441,gixdb_pitchnotes
+tabw_i 719,442,gixdb_pitchnotes
+tabw_i 679,443,gixdb_pitchnotes
+tabw_i 694,444,gixdb_pitchnotes
+tabw_i 715,445,gixdb_pitchnotes
+tabw_i 679,446,gixdb_pitchnotes
+tabw_i 681,447,gixdb_pitchnotes
+tabw_i 683,448,gixdb_pitchnotes
+tabw_i 694,449,gixdb_pitchnotes
+tabw_i 715,450,gixdb_pitchnotes
+tabw_i 734,451,gixdb_pitchnotes
+tabw_i 681,452,gixdb_pitchnotes
+tabw_i 683,453,gixdb_pitchnotes
+tabw_i 734,454,gixdb_pitchnotes
+tabw_i 680,455,gixdb_pitchnotes
+tabw_i 681,456,gixdb_pitchnotes
+tabw_i 683,457,gixdb_pitchnotes
+tabw_i 692,458,gixdb_pitchnotes
+tabw_i 717,459,gixdb_pitchnotes
+tabw_i 718,460,gixdb_pitchnotes
+tabw_i 734,461,gixdb_pitchnotes
+tabw_i 680,462,gixdb_pitchnotes
+tabw_i 692,463,gixdb_pitchnotes
+tabw_i 717,464,gixdb_pitchnotes
+tabw_i 718,465,gixdb_pitchnotes
+tabw_i 680,466,gixdb_pitchnotes
+tabw_i 692,467,gixdb_pitchnotes
+tabw_i 696,468,gixdb_pitchnotes
+tabw_i 704,469,gixdb_pitchnotes
+tabw_i 717,470,gixdb_pitchnotes
+tabw_i 718,471,gixdb_pitchnotes
+tabw_i 727,472,gixdb_pitchnotes
+tabw_i 735,473,gixdb_pitchnotes
+tabw_i 696,474,gixdb_pitchnotes
+tabw_i 704,475,gixdb_pitchnotes
+tabw_i 727,476,gixdb_pitchnotes
+tabw_i 735,477,gixdb_pitchnotes
+tabw_i 687,478,gixdb_pitchnotes
+tabw_i 700,479,gixdb_pitchnotes
+tabw_i 729,480,gixdb_pitchnotes
+tabw_i 732,481,gixdb_pitchnotes
+tabw_i 687,482,gixdb_pitchnotes
+tabw_i 697,483,gixdb_pitchnotes
+tabw_i 700,484,gixdb_pitchnotes
+tabw_i 702,485,gixdb_pitchnotes
+tabw_i 708,486,gixdb_pitchnotes
+tabw_i 711,487,gixdb_pitchnotes
+tabw_i 729,488,gixdb_pitchnotes
+tabw_i 732,489,gixdb_pitchnotes
+tabw_i 697,490,gixdb_pitchnotes
+tabw_i 702,491,gixdb_pitchnotes
+tabw_i 708,492,gixdb_pitchnotes
+tabw_i 711,493,gixdb_pitchnotes
+tabw_i 697,494,gixdb_pitchnotes
+tabw_i 702,495,gixdb_pitchnotes
+tabw_i 708,496,gixdb_pitchnotes
+tabw_i 709,497,gixdb_pitchnotes
+tabw_i 711,498,gixdb_pitchnotes
+tabw_i 730,499,gixdb_pitchnotes
+tabw_i 733,500,gixdb_pitchnotes
+tabw_i 737,501,gixdb_pitchnotes
+tabw_i 709,502,gixdb_pitchnotes
+tabw_i 730,503,gixdb_pitchnotes
+tabw_i 733,504,gixdb_pitchnotes
+tabw_i 737,505,gixdb_pitchnotes
+tabw_i 686,506,gixdb_pitchnotes
+tabw_i 689,507,gixdb_pitchnotes
+tabw_i 695,508,gixdb_pitchnotes
+tabw_i 726,509,gixdb_pitchnotes
+tabw_i 686,510,gixdb_pitchnotes
+tabw_i 689,511,gixdb_pitchnotes
+tabw_i 695,512,gixdb_pitchnotes
+tabw_i 699,513,gixdb_pitchnotes
+tabw_i 713,514,gixdb_pitchnotes
+tabw_i 716,515,gixdb_pitchnotes
+tabw_i 720,516,gixdb_pitchnotes
+tabw_i 722,517,gixdb_pitchnotes
+tabw_i 726,518,gixdb_pitchnotes
+tabw_i 699,519,gixdb_pitchnotes
+tabw_i 713,520,gixdb_pitchnotes
+tabw_i 716,521,gixdb_pitchnotes
+tabw_i 720,522,gixdb_pitchnotes
+tabw_i 722,523,gixdb_pitchnotes
+tabw_i 678,524,gixdb_pitchnotes
+tabw_i 699,525,gixdb_pitchnotes
+tabw_i 707,526,gixdb_pitchnotes
+tabw_i 713,527,gixdb_pitchnotes
+tabw_i 716,528,gixdb_pitchnotes
+tabw_i 720,529,gixdb_pitchnotes
+tabw_i 722,530,gixdb_pitchnotes
+tabw_i 725,531,gixdb_pitchnotes
+tabw_i 728,532,gixdb_pitchnotes
+tabw_i 678,533,gixdb_pitchnotes
+tabw_i 707,534,gixdb_pitchnotes
+tabw_i 725,535,gixdb_pitchnotes
+tabw_i 728,536,gixdb_pitchnotes
+tabw_i 678,537,gixdb_pitchnotes
+tabw_i 685,538,gixdb_pitchnotes
+tabw_i 701,539,gixdb_pitchnotes
+tabw_i 707,540,gixdb_pitchnotes
+tabw_i 721,541,gixdb_pitchnotes
+tabw_i 725,542,gixdb_pitchnotes
+tabw_i 728,543,gixdb_pitchnotes
+tabw_i 685,544,gixdb_pitchnotes
+tabw_i 701,545,gixdb_pitchnotes
+tabw_i 721,546,gixdb_pitchnotes
+tabw_i 682,547,gixdb_pitchnotes
+tabw_i 688,548,gixdb_pitchnotes
+tabw_i 706,549,gixdb_pitchnotes
+tabw_i 682,550,gixdb_pitchnotes
+tabw_i 688,551,gixdb_pitchnotes
+tabw_i 706,552,gixdb_pitchnotes
+tabw_i 682,553,gixdb_pitchnotes
+tabw_i 688,554,gixdb_pitchnotes
+tabw_i 706,555,gixdb_pitchnotes
+tabw_i 682,556,gixdb_pitchnotes
+tabw_i 688,557,gixdb_pitchnotes
+tabw_i 706,558,gixdb_pitchnotes
+tabw_i 682,559,gixdb_pitchnotes
+tabw_i 688,560,gixdb_pitchnotes
+tabw_i 706,561,gixdb_pitchnotes
+tabw_i 682,562,gixdb_pitchnotes
+tabw_i 688,563,gixdb_pitchnotes
+tabw_i 706,564,gixdb_pitchnotes
+tabw_i 682,565,gixdb_pitchnotes
+tabw_i 688,566,gixdb_pitchnotes
+tabw_i 706,567,gixdb_pitchnotes
+tabw_i 682,568,gixdb_pitchnotes
+tabw_i 688,569,gixdb_pitchnotes
+tabw_i 706,570,gixdb_pitchnotes
+tabw_i 682,571,gixdb_pitchnotes
+tabw_i 688,572,gixdb_pitchnotes
+tabw_i 706,573,gixdb_pitchnotes
+tabw_i 682,574,gixdb_pitchnotes
+tabw_i 688,575,gixdb_pitchnotes
+tabw_i 706,576,gixdb_pitchnotes
+tabw_i 682,577,gixdb_pitchnotes
+tabw_i 688,578,gixdb_pitchnotes
+tabw_i 706,579,gixdb_pitchnotes
+tabw_i 682,580,gixdb_pitchnotes
+tabw_i 688,581,gixdb_pitchnotes
+tabw_i 706,582,gixdb_pitchnotes
+tabw_i 682,583,gixdb_pitchnotes
+tabw_i 688,584,gixdb_pitchnotes
+tabw_i 706,585,gixdb_pitchnotes
+tabw_i 682,586,gixdb_pitchnotes
+tabw_i 688,587,gixdb_pitchnotes
+tabw_i 706,588,gixdb_pitchnotes
+tabw_i 682,589,gixdb_pitchnotes
+tabw_i 688,590,gixdb_pitchnotes
+tabw_i 706,591,gixdb_pitchnotes
+tabw_i 682,592,gixdb_pitchnotes
+tabw_i 688,593,gixdb_pitchnotes
+tabw_i 706,594,gixdb_pitchnotes
+tabw_i 682,595,gixdb_pitchnotes
+tabw_i 688,596,gixdb_pitchnotes
+tabw_i 706,597,gixdb_pitchnotes
+tabw_i 682,598,gixdb_pitchnotes
+tabw_i 688,599,gixdb_pitchnotes
+tabw_i 706,600,gixdb_pitchnotes
+tabw_i 682,601,gixdb_pitchnotes
+tabw_i 688,602,gixdb_pitchnotes
+tabw_i 706,603,gixdb_pitchnotes
+tabw_i 682,604,gixdb_pitchnotes
+tabw_i 688,605,gixdb_pitchnotes
+tabw_i 706,606,gixdb_pitchnotes
+tabw_i 682,607,gixdb_pitchnotes
+tabw_i 688,608,gixdb_pitchnotes
+tabw_i 706,609,gixdb_pitchnotes
+tabw_i 682,610,gixdb_pitchnotes
+tabw_i 688,611,gixdb_pitchnotes
+tabw_i 706,612,gixdb_pitchnotes
+tabw_i 682,613,gixdb_pitchnotes
+tabw_i 688,614,gixdb_pitchnotes
+tabw_i 706,615,gixdb_pitchnotes
+tabw_i 682,616,gixdb_pitchnotes
+tabw_i 688,617,gixdb_pitchnotes
+tabw_i 706,618,gixdb_pitchnotes
+tabw_i 682,619,gixdb_pitchnotes
+tabw_i 688,620,gixdb_pitchnotes
+tabw_i 706,621,gixdb_pitchnotes
+tabw_i 682,622,gixdb_pitchnotes
+tabw_i 688,623,gixdb_pitchnotes
+tabw_i 706,624,gixdb_pitchnotes
+tabw_i 682,625,gixdb_pitchnotes
+tabw_i 688,626,gixdb_pitchnotes
+tabw_i 706,627,gixdb_pitchnotes
+tabw_i 682,628,gixdb_pitchnotes
+tabw_i 688,629,gixdb_pitchnotes
+tabw_i 706,630,gixdb_pitchnotes
+tabw_i 682,631,gixdb_pitchnotes
+tabw_i 688,632,gixdb_pitchnotes
+tabw_i 706,633,gixdb_pitchnotes
+tabw_i 682,634,gixdb_pitchnotes
+tabw_i 688,635,gixdb_pitchnotes
+tabw_i 706,636,gixdb_pitchnotes
+tabw_i 682,637,gixdb_pitchnotes
+tabw_i 688,638,gixdb_pitchnotes
+tabw_i 706,639,gixdb_pitchnotes
+tabw_i 682,640,gixdb_pitchnotes
+tabw_i 688,641,gixdb_pitchnotes
+tabw_i 706,642,gixdb_pitchnotes
+tabw_i 682,643,gixdb_pitchnotes
+tabw_i 688,644,gixdb_pitchnotes
+tabw_i 706,645,gixdb_pitchnotes
+tabw_i 682,646,gixdb_pitchnotes
+tabw_i 688,647,gixdb_pitchnotes
+tabw_i 706,648,gixdb_pitchnotes
+tabw_i 682,649,gixdb_pitchnotes
+tabw_i 688,650,gixdb_pitchnotes
+tabw_i 706,651,gixdb_pitchnotes
+tabw_i 682,652,gixdb_pitchnotes
+tabw_i 688,653,gixdb_pitchnotes
+tabw_i 706,654,gixdb_pitchnotes
+tabw_i 743,655,gixdb_pitchnotes
+tabw_i 772,656,gixdb_pitchnotes
+tabw_i 777,657,gixdb_pitchnotes
+tabw_i 786,658,gixdb_pitchnotes
+tabw_i 743,659,gixdb_pitchnotes
+tabw_i 772,660,gixdb_pitchnotes
+tabw_i 777,661,gixdb_pitchnotes
+tabw_i 786,662,gixdb_pitchnotes
+tabw_i 743,663,gixdb_pitchnotes
+tabw_i 772,664,gixdb_pitchnotes
+tabw_i 777,665,gixdb_pitchnotes
+tabw_i 786,666,gixdb_pitchnotes
+tabw_i 743,667,gixdb_pitchnotes
+tabw_i 772,668,gixdb_pitchnotes
+tabw_i 777,669,gixdb_pitchnotes
+tabw_i 786,670,gixdb_pitchnotes
+tabw_i 743,671,gixdb_pitchnotes
+tabw_i 772,672,gixdb_pitchnotes
+tabw_i 777,673,gixdb_pitchnotes
+tabw_i 786,674,gixdb_pitchnotes
+tabw_i 743,675,gixdb_pitchnotes
+tabw_i 772,676,gixdb_pitchnotes
+tabw_i 777,677,gixdb_pitchnotes
+tabw_i 786,678,gixdb_pitchnotes
+tabw_i 743,679,gixdb_pitchnotes
+tabw_i 772,680,gixdb_pitchnotes
+tabw_i 777,681,gixdb_pitchnotes
+tabw_i 786,682,gixdb_pitchnotes
+tabw_i 743,683,gixdb_pitchnotes
+tabw_i 772,684,gixdb_pitchnotes
+tabw_i 777,685,gixdb_pitchnotes
+tabw_i 786,686,gixdb_pitchnotes
+tabw_i 743,687,gixdb_pitchnotes
+tabw_i 772,688,gixdb_pitchnotes
+tabw_i 777,689,gixdb_pitchnotes
+tabw_i 786,690,gixdb_pitchnotes
+tabw_i 743,691,gixdb_pitchnotes
+tabw_i 772,692,gixdb_pitchnotes
+tabw_i 777,693,gixdb_pitchnotes
+tabw_i 786,694,gixdb_pitchnotes
+tabw_i 743,695,gixdb_pitchnotes
+tabw_i 772,696,gixdb_pitchnotes
+tabw_i 777,697,gixdb_pitchnotes
+tabw_i 786,698,gixdb_pitchnotes
+tabw_i 743,699,gixdb_pitchnotes
+tabw_i 772,700,gixdb_pitchnotes
+tabw_i 777,701,gixdb_pitchnotes
+tabw_i 786,702,gixdb_pitchnotes
+tabw_i 743,703,gixdb_pitchnotes
+tabw_i 772,704,gixdb_pitchnotes
+tabw_i 777,705,gixdb_pitchnotes
+tabw_i 786,706,gixdb_pitchnotes
+tabw_i 743,707,gixdb_pitchnotes
+tabw_i 772,708,gixdb_pitchnotes
+tabw_i 777,709,gixdb_pitchnotes
+tabw_i 786,710,gixdb_pitchnotes
+tabw_i 743,711,gixdb_pitchnotes
+tabw_i 772,712,gixdb_pitchnotes
+tabw_i 777,713,gixdb_pitchnotes
+tabw_i 786,714,gixdb_pitchnotes
+tabw_i 743,715,gixdb_pitchnotes
+tabw_i 772,716,gixdb_pitchnotes
+tabw_i 777,717,gixdb_pitchnotes
+tabw_i 786,718,gixdb_pitchnotes
+tabw_i 743,719,gixdb_pitchnotes
+tabw_i 772,720,gixdb_pitchnotes
+tabw_i 777,721,gixdb_pitchnotes
+tabw_i 786,722,gixdb_pitchnotes
+tabw_i 743,723,gixdb_pitchnotes
+tabw_i 772,724,gixdb_pitchnotes
+tabw_i 777,725,gixdb_pitchnotes
+tabw_i 786,726,gixdb_pitchnotes
+tabw_i 743,727,gixdb_pitchnotes
+tabw_i 772,728,gixdb_pitchnotes
+tabw_i 777,729,gixdb_pitchnotes
+tabw_i 786,730,gixdb_pitchnotes
+tabw_i 743,731,gixdb_pitchnotes
+tabw_i 772,732,gixdb_pitchnotes
+tabw_i 777,733,gixdb_pitchnotes
+tabw_i 786,734,gixdb_pitchnotes
+tabw_i 743,735,gixdb_pitchnotes
+tabw_i 772,736,gixdb_pitchnotes
+tabw_i 777,737,gixdb_pitchnotes
+tabw_i 786,738,gixdb_pitchnotes
+tabw_i 743,739,gixdb_pitchnotes
+tabw_i 772,740,gixdb_pitchnotes
+tabw_i 777,741,gixdb_pitchnotes
+tabw_i 786,742,gixdb_pitchnotes
+tabw_i 743,743,gixdb_pitchnotes
+tabw_i 772,744,gixdb_pitchnotes
+tabw_i 777,745,gixdb_pitchnotes
+tabw_i 786,746,gixdb_pitchnotes
+tabw_i 743,747,gixdb_pitchnotes
+tabw_i 772,748,gixdb_pitchnotes
+tabw_i 777,749,gixdb_pitchnotes
+tabw_i 786,750,gixdb_pitchnotes
+tabw_i 743,751,gixdb_pitchnotes
+tabw_i 772,752,gixdb_pitchnotes
+tabw_i 777,753,gixdb_pitchnotes
+tabw_i 786,754,gixdb_pitchnotes
+tabw_i 743,755,gixdb_pitchnotes
+tabw_i 772,756,gixdb_pitchnotes
+tabw_i 777,757,gixdb_pitchnotes
+tabw_i 786,758,gixdb_pitchnotes
+tabw_i 743,759,gixdb_pitchnotes
+tabw_i 772,760,gixdb_pitchnotes
+tabw_i 777,761,gixdb_pitchnotes
+tabw_i 786,762,gixdb_pitchnotes
+tabw_i 743,763,gixdb_pitchnotes
+tabw_i 772,764,gixdb_pitchnotes
+tabw_i 777,765,gixdb_pitchnotes
+tabw_i 786,766,gixdb_pitchnotes
+tabw_i 743,767,gixdb_pitchnotes
+tabw_i 772,768,gixdb_pitchnotes
+tabw_i 777,769,gixdb_pitchnotes
+tabw_i 786,770,gixdb_pitchnotes
+tabw_i 743,771,gixdb_pitchnotes
+tabw_i 772,772,gixdb_pitchnotes
+tabw_i 777,773,gixdb_pitchnotes
+tabw_i 786,774,gixdb_pitchnotes
+tabw_i 743,775,gixdb_pitchnotes
+tabw_i 772,776,gixdb_pitchnotes
+tabw_i 777,777,gixdb_pitchnotes
+tabw_i 786,778,gixdb_pitchnotes
+tabw_i 743,779,gixdb_pitchnotes
+tabw_i 772,780,gixdb_pitchnotes
+tabw_i 777,781,gixdb_pitchnotes
+tabw_i 786,782,gixdb_pitchnotes
+tabw_i 743,783,gixdb_pitchnotes
+tabw_i 772,784,gixdb_pitchnotes
+tabw_i 777,785,gixdb_pitchnotes
+tabw_i 786,786,gixdb_pitchnotes
+tabw_i 743,787,gixdb_pitchnotes
+tabw_i 772,788,gixdb_pitchnotes
+tabw_i 777,789,gixdb_pitchnotes
+tabw_i 786,790,gixdb_pitchnotes
+tabw_i 743,791,gixdb_pitchnotes
+tabw_i 772,792,gixdb_pitchnotes
+tabw_i 777,793,gixdb_pitchnotes
+tabw_i 786,794,gixdb_pitchnotes
+tabw_i 743,795,gixdb_pitchnotes
+tabw_i 772,796,gixdb_pitchnotes
+tabw_i 777,797,gixdb_pitchnotes
+tabw_i 786,798,gixdb_pitchnotes
+tabw_i 743,799,gixdb_pitchnotes
+tabw_i 772,800,gixdb_pitchnotes
+tabw_i 777,801,gixdb_pitchnotes
+tabw_i 786,802,gixdb_pitchnotes
+tabw_i 743,803,gixdb_pitchnotes
+tabw_i 772,804,gixdb_pitchnotes
+tabw_i 777,805,gixdb_pitchnotes
+tabw_i 786,806,gixdb_pitchnotes
+tabw_i 743,807,gixdb_pitchnotes
+tabw_i 772,808,gixdb_pitchnotes
+tabw_i 777,809,gixdb_pitchnotes
+tabw_i 786,810,gixdb_pitchnotes
+tabw_i 743,811,gixdb_pitchnotes
+tabw_i 772,812,gixdb_pitchnotes
+tabw_i 777,813,gixdb_pitchnotes
+tabw_i 786,814,gixdb_pitchnotes
+tabw_i 743,815,gixdb_pitchnotes
+tabw_i 772,816,gixdb_pitchnotes
+tabw_i 777,817,gixdb_pitchnotes
+tabw_i 786,818,gixdb_pitchnotes
+tabw_i 743,819,gixdb_pitchnotes
+tabw_i 772,820,gixdb_pitchnotes
+tabw_i 777,821,gixdb_pitchnotes
+tabw_i 786,822,gixdb_pitchnotes
+tabw_i 743,823,gixdb_pitchnotes
+tabw_i 772,824,gixdb_pitchnotes
+tabw_i 777,825,gixdb_pitchnotes
+tabw_i 786,826,gixdb_pitchnotes
+tabw_i 743,827,gixdb_pitchnotes
+tabw_i 772,828,gixdb_pitchnotes
+tabw_i 777,829,gixdb_pitchnotes
+tabw_i 786,830,gixdb_pitchnotes
+tabw_i 743,831,gixdb_pitchnotes
+tabw_i 772,832,gixdb_pitchnotes
+tabw_i 777,833,gixdb_pitchnotes
+tabw_i 786,834,gixdb_pitchnotes
+tabw_i 743,835,gixdb_pitchnotes
+tabw_i 772,836,gixdb_pitchnotes
+tabw_i 777,837,gixdb_pitchnotes
+tabw_i 786,838,gixdb_pitchnotes
+tabw_i 743,839,gixdb_pitchnotes
+tabw_i 772,840,gixdb_pitchnotes
+tabw_i 777,841,gixdb_pitchnotes
+tabw_i 786,842,gixdb_pitchnotes
+tabw_i 743,843,gixdb_pitchnotes
+tabw_i 772,844,gixdb_pitchnotes
+tabw_i 777,845,gixdb_pitchnotes
+tabw_i 786,846,gixdb_pitchnotes
+tabw_i 743,847,gixdb_pitchnotes
+tabw_i 772,848,gixdb_pitchnotes
+tabw_i 777,849,gixdb_pitchnotes
+tabw_i 786,850,gixdb_pitchnotes
+tabw_i 743,851,gixdb_pitchnotes
+tabw_i 772,852,gixdb_pitchnotes
+tabw_i 777,853,gixdb_pitchnotes
+tabw_i 786,854,gixdb_pitchnotes
+tabw_i 743,855,gixdb_pitchnotes
+tabw_i 772,856,gixdb_pitchnotes
+tabw_i 777,857,gixdb_pitchnotes
+tabw_i 786,858,gixdb_pitchnotes
+tabw_i 743,859,gixdb_pitchnotes
+tabw_i 772,860,gixdb_pitchnotes
+tabw_i 777,861,gixdb_pitchnotes
+tabw_i 786,862,gixdb_pitchnotes
+tabw_i 743,863,gixdb_pitchnotes
+tabw_i 772,864,gixdb_pitchnotes
+tabw_i 777,865,gixdb_pitchnotes
+tabw_i 786,866,gixdb_pitchnotes
+tabw_i 743,867,gixdb_pitchnotes
+tabw_i 772,868,gixdb_pitchnotes
+tabw_i 777,869,gixdb_pitchnotes
+tabw_i 786,870,gixdb_pitchnotes
+tabw_i 743,871,gixdb_pitchnotes
+tabw_i 772,872,gixdb_pitchnotes
+tabw_i 777,873,gixdb_pitchnotes
+tabw_i 786,874,gixdb_pitchnotes
+tabw_i 743,875,gixdb_pitchnotes
+tabw_i 772,876,gixdb_pitchnotes
+tabw_i 777,877,gixdb_pitchnotes
+tabw_i 786,878,gixdb_pitchnotes
+tabw_i 743,879,gixdb_pitchnotes
+tabw_i 772,880,gixdb_pitchnotes
+tabw_i 777,881,gixdb_pitchnotes
+tabw_i 786,882,gixdb_pitchnotes
+tabw_i 743,883,gixdb_pitchnotes
+tabw_i 772,884,gixdb_pitchnotes
+tabw_i 777,885,gixdb_pitchnotes
+tabw_i 786,886,gixdb_pitchnotes
+tabw_i 743,887,gixdb_pitchnotes
+tabw_i 772,888,gixdb_pitchnotes
+tabw_i 777,889,gixdb_pitchnotes
+tabw_i 786,890,gixdb_pitchnotes
+tabw_i 743,891,gixdb_pitchnotes
+tabw_i 772,892,gixdb_pitchnotes
+tabw_i 777,893,gixdb_pitchnotes
+tabw_i 786,894,gixdb_pitchnotes
+tabw_i 743,895,gixdb_pitchnotes
+tabw_i 772,896,gixdb_pitchnotes
+tabw_i 777,897,gixdb_pitchnotes
+tabw_i 786,898,gixdb_pitchnotes
+tabw_i 743,899,gixdb_pitchnotes
+tabw_i 746,900,gixdb_pitchnotes
+tabw_i 748,901,gixdb_pitchnotes
+tabw_i 772,902,gixdb_pitchnotes
+tabw_i 774,903,gixdb_pitchnotes
+tabw_i 777,904,gixdb_pitchnotes
+tabw_i 786,905,gixdb_pitchnotes
+tabw_i 806,906,gixdb_pitchnotes
+tabw_i 746,907,gixdb_pitchnotes
+tabw_i 748,908,gixdb_pitchnotes
+tabw_i 774,909,gixdb_pitchnotes
+tabw_i 806,910,gixdb_pitchnotes
+tabw_i 742,911,gixdb_pitchnotes
+tabw_i 746,912,gixdb_pitchnotes
+tabw_i 748,913,gixdb_pitchnotes
+tabw_i 759,914,gixdb_pitchnotes
+tabw_i 774,915,gixdb_pitchnotes
+tabw_i 797,916,gixdb_pitchnotes
+tabw_i 803,917,gixdb_pitchnotes
+tabw_i 806,918,gixdb_pitchnotes
+tabw_i 742,919,gixdb_pitchnotes
+tabw_i 759,920,gixdb_pitchnotes
+tabw_i 797,921,gixdb_pitchnotes
+tabw_i 803,922,gixdb_pitchnotes
+tabw_i 738,923,gixdb_pitchnotes
+tabw_i 747,924,gixdb_pitchnotes
+tabw_i 754,925,gixdb_pitchnotes
+tabw_i 778,926,gixdb_pitchnotes
+tabw_i 781,927,gixdb_pitchnotes
+tabw_i 738,928,gixdb_pitchnotes
+tabw_i 745,929,gixdb_pitchnotes
+tabw_i 747,930,gixdb_pitchnotes
+tabw_i 749,931,gixdb_pitchnotes
+tabw_i 754,932,gixdb_pitchnotes
+tabw_i 765,933,gixdb_pitchnotes
+tabw_i 778,934,gixdb_pitchnotes
+tabw_i 781,935,gixdb_pitchnotes
+tabw_i 793,936,gixdb_pitchnotes
+tabw_i 808,937,gixdb_pitchnotes
+tabw_i 745,938,gixdb_pitchnotes
+tabw_i 749,939,gixdb_pitchnotes
+tabw_i 765,940,gixdb_pitchnotes
+tabw_i 793,941,gixdb_pitchnotes
+tabw_i 808,942,gixdb_pitchnotes
+tabw_i 741,943,gixdb_pitchnotes
+tabw_i 744,944,gixdb_pitchnotes
+tabw_i 745,945,gixdb_pitchnotes
+tabw_i 749,946,gixdb_pitchnotes
+tabw_i 750,947,gixdb_pitchnotes
+tabw_i 756,948,gixdb_pitchnotes
+tabw_i 765,949,gixdb_pitchnotes
+tabw_i 771,950,gixdb_pitchnotes
+tabw_i 793,951,gixdb_pitchnotes
+tabw_i 808,952,gixdb_pitchnotes
+tabw_i 741,953,gixdb_pitchnotes
+tabw_i 744,954,gixdb_pitchnotes
+tabw_i 750,955,gixdb_pitchnotes
+tabw_i 756,956,gixdb_pitchnotes
+tabw_i 771,957,gixdb_pitchnotes
+tabw_i 741,958,gixdb_pitchnotes
+tabw_i 744,959,gixdb_pitchnotes
+tabw_i 750,960,gixdb_pitchnotes
+tabw_i 756,961,gixdb_pitchnotes
+tabw_i 757,962,gixdb_pitchnotes
+tabw_i 766,963,gixdb_pitchnotes
+tabw_i 771,964,gixdb_pitchnotes
+tabw_i 773,965,gixdb_pitchnotes
+tabw_i 782,966,gixdb_pitchnotes
+tabw_i 805,967,gixdb_pitchnotes
+tabw_i 757,968,gixdb_pitchnotes
+tabw_i 766,969,gixdb_pitchnotes
+tabw_i 773,970,gixdb_pitchnotes
+tabw_i 782,971,gixdb_pitchnotes
+tabw_i 805,972,gixdb_pitchnotes
+tabw_i 768,973,gixdb_pitchnotes
+tabw_i 780,974,gixdb_pitchnotes
+tabw_i 784,975,gixdb_pitchnotes
+tabw_i 791,976,gixdb_pitchnotes
+tabw_i 751,977,gixdb_pitchnotes
+tabw_i 761,978,gixdb_pitchnotes
+tabw_i 768,979,gixdb_pitchnotes
+tabw_i 780,980,gixdb_pitchnotes
+tabw_i 784,981,gixdb_pitchnotes
+tabw_i 787,982,gixdb_pitchnotes
+tabw_i 791,983,gixdb_pitchnotes
+tabw_i 801,984,gixdb_pitchnotes
+tabw_i 751,985,gixdb_pitchnotes
+tabw_i 761,986,gixdb_pitchnotes
+tabw_i 787,987,gixdb_pitchnotes
+tabw_i 801,988,gixdb_pitchnotes
+tabw_i 740,989,gixdb_pitchnotes
+tabw_i 751,990,gixdb_pitchnotes
+tabw_i 761,991,gixdb_pitchnotes
+tabw_i 787,992,gixdb_pitchnotes
+tabw_i 789,993,gixdb_pitchnotes
+tabw_i 798,994,gixdb_pitchnotes
+tabw_i 801,995,gixdb_pitchnotes
+tabw_i 802,996,gixdb_pitchnotes
+tabw_i 740,997,gixdb_pitchnotes
+tabw_i 789,998,gixdb_pitchnotes
+tabw_i 798,999,gixdb_pitchnotes
+tabw_i 802,1000,gixdb_pitchnotes
+tabw_i 739,1001,gixdb_pitchnotes
+tabw_i 752,1002,gixdb_pitchnotes
+tabw_i 788,1003,gixdb_pitchnotes
+tabw_i 790,1004,gixdb_pitchnotes
+tabw_i 795,1005,gixdb_pitchnotes
+tabw_i 739,1006,gixdb_pitchnotes
+tabw_i 752,1007,gixdb_pitchnotes
+tabw_i 758,1008,gixdb_pitchnotes
+tabw_i 770,1009,gixdb_pitchnotes
+tabw_i 788,1010,gixdb_pitchnotes
+tabw_i 790,1011,gixdb_pitchnotes
+tabw_i 795,1012,gixdb_pitchnotes
+tabw_i 799,1013,gixdb_pitchnotes
+tabw_i 810,1014,gixdb_pitchnotes
+tabw_i 758,1015,gixdb_pitchnotes
+tabw_i 770,1016,gixdb_pitchnotes
+tabw_i 799,1017,gixdb_pitchnotes
+tabw_i 810,1018,gixdb_pitchnotes
+tabw_i 758,1019,gixdb_pitchnotes
+tabw_i 767,1020,gixdb_pitchnotes
+tabw_i 769,1021,gixdb_pitchnotes
+tabw_i 770,1022,gixdb_pitchnotes
+tabw_i 775,1023,gixdb_pitchnotes
+tabw_i 776,1024,gixdb_pitchnotes
+tabw_i 794,1025,gixdb_pitchnotes
+tabw_i 799,1026,gixdb_pitchnotes
+tabw_i 810,1027,gixdb_pitchnotes
+tabw_i 767,1028,gixdb_pitchnotes
+tabw_i 769,1029,gixdb_pitchnotes
+tabw_i 775,1030,gixdb_pitchnotes
+tabw_i 776,1031,gixdb_pitchnotes
+tabw_i 794,1032,gixdb_pitchnotes
+tabw_i 760,1033,gixdb_pitchnotes
+tabw_i 762,1034,gixdb_pitchnotes
+tabw_i 763,1035,gixdb_pitchnotes
+tabw_i 767,1036,gixdb_pitchnotes
+tabw_i 769,1037,gixdb_pitchnotes
+tabw_i 775,1038,gixdb_pitchnotes
+tabw_i 776,1039,gixdb_pitchnotes
+tabw_i 785,1040,gixdb_pitchnotes
+tabw_i 794,1041,gixdb_pitchnotes
+tabw_i 800,1042,gixdb_pitchnotes
+tabw_i 760,1043,gixdb_pitchnotes
+tabw_i 762,1044,gixdb_pitchnotes
+tabw_i 763,1045,gixdb_pitchnotes
+tabw_i 785,1046,gixdb_pitchnotes
+tabw_i 800,1047,gixdb_pitchnotes
+tabw_i 779,1048,gixdb_pitchnotes
+tabw_i 804,1049,gixdb_pitchnotes
+tabw_i 807,1050,gixdb_pitchnotes
+tabw_i 811,1051,gixdb_pitchnotes
+tabw_i 755,1052,gixdb_pitchnotes
+tabw_i 764,1053,gixdb_pitchnotes
+tabw_i 779,1054,gixdb_pitchnotes
+tabw_i 783,1055,gixdb_pitchnotes
+tabw_i 804,1056,gixdb_pitchnotes
+tabw_i 807,1057,gixdb_pitchnotes
+tabw_i 809,1058,gixdb_pitchnotes
+tabw_i 811,1059,gixdb_pitchnotes
+tabw_i 755,1060,gixdb_pitchnotes
+tabw_i 764,1061,gixdb_pitchnotes
+tabw_i 783,1062,gixdb_pitchnotes
+tabw_i 809,1063,gixdb_pitchnotes
+tabw_i 753,1064,gixdb_pitchnotes
+tabw_i 755,1065,gixdb_pitchnotes
+tabw_i 764,1066,gixdb_pitchnotes
+tabw_i 783,1067,gixdb_pitchnotes
+tabw_i 792,1068,gixdb_pitchnotes
+tabw_i 796,1069,gixdb_pitchnotes
+tabw_i 809,1070,gixdb_pitchnotes
+tabw_i 753,1071,gixdb_pitchnotes
+tabw_i 792,1072,gixdb_pitchnotes
+tabw_i 796,1073,gixdb_pitchnotes
+tabw_i 753,1074,gixdb_pitchnotes
+tabw_i 792,1075,gixdb_pitchnotes
+tabw_i 796,1076,gixdb_pitchnotes
+tabw_i 753,1077,gixdb_pitchnotes
+tabw_i 792,1078,gixdb_pitchnotes
+tabw_i 796,1079,gixdb_pitchnotes
+tabw_i 753,1080,gixdb_pitchnotes
+tabw_i 792,1081,gixdb_pitchnotes
+tabw_i 796,1082,gixdb_pitchnotes
+tabw_i 753,1083,gixdb_pitchnotes
+tabw_i 792,1084,gixdb_pitchnotes
+tabw_i 796,1085,gixdb_pitchnotes
+tabw_i 753,1086,gixdb_pitchnotes
+tabw_i 792,1087,gixdb_pitchnotes
+tabw_i 796,1088,gixdb_pitchnotes
+tabw_i 753,1089,gixdb_pitchnotes
+tabw_i 792,1090,gixdb_pitchnotes
+tabw_i 796,1091,gixdb_pitchnotes
+tabw_i 753,1092,gixdb_pitchnotes
+tabw_i 792,1093,gixdb_pitchnotes
+tabw_i 796,1094,gixdb_pitchnotes
+tabw_i 753,1095,gixdb_pitchnotes
+tabw_i 792,1096,gixdb_pitchnotes
+tabw_i 796,1097,gixdb_pitchnotes
+tabw_i 753,1098,gixdb_pitchnotes
+tabw_i 792,1099,gixdb_pitchnotes
+tabw_i 796,1100,gixdb_pitchnotes
+tabw_i 753,1101,gixdb_pitchnotes
+tabw_i 792,1102,gixdb_pitchnotes
+tabw_i 796,1103,gixdb_pitchnotes
+tabw_i 753,1104,gixdb_pitchnotes
+tabw_i 792,1105,gixdb_pitchnotes
+tabw_i 796,1106,gixdb_pitchnotes
+tabw_i 753,1107,gixdb_pitchnotes
+tabw_i 792,1108,gixdb_pitchnotes
+tabw_i 796,1109,gixdb_pitchnotes
+tabw_i 753,1110,gixdb_pitchnotes
+tabw_i 792,1111,gixdb_pitchnotes
+tabw_i 796,1112,gixdb_pitchnotes
+tabw_i 753,1113,gixdb_pitchnotes
+tabw_i 792,1114,gixdb_pitchnotes
+tabw_i 796,1115,gixdb_pitchnotes
+tabw_i 753,1116,gixdb_pitchnotes
+tabw_i 792,1117,gixdb_pitchnotes
+tabw_i 796,1118,gixdb_pitchnotes
+tabw_i 753,1119,gixdb_pitchnotes
+tabw_i 792,1120,gixdb_pitchnotes
+tabw_i 796,1121,gixdb_pitchnotes
+tabw_i 753,1122,gixdb_pitchnotes
+tabw_i 792,1123,gixdb_pitchnotes
+tabw_i 796,1124,gixdb_pitchnotes
+tabw_i 753,1125,gixdb_pitchnotes
+tabw_i 792,1126,gixdb_pitchnotes
+tabw_i 796,1127,gixdb_pitchnotes
+tabw_i 753,1128,gixdb_pitchnotes
+tabw_i 792,1129,gixdb_pitchnotes
+tabw_i 796,1130,gixdb_pitchnotes
+tabw_i 753,1131,gixdb_pitchnotes
+tabw_i 792,1132,gixdb_pitchnotes
+tabw_i 796,1133,gixdb_pitchnotes
+tabw_i 753,1134,gixdb_pitchnotes
+tabw_i 792,1135,gixdb_pitchnotes
+tabw_i 796,1136,gixdb_pitchnotes
+tabw_i 753,1137,gixdb_pitchnotes
+tabw_i 792,1138,gixdb_pitchnotes
+tabw_i 796,1139,gixdb_pitchnotes
+tabw_i 753,1140,gixdb_pitchnotes
+tabw_i 792,1141,gixdb_pitchnotes
+tabw_i 796,1142,gixdb_pitchnotes
+tabw_i 753,1143,gixdb_pitchnotes
+tabw_i 792,1144,gixdb_pitchnotes
+tabw_i 796,1145,gixdb_pitchnotes
+tabw_i 753,1146,gixdb_pitchnotes
+tabw_i 792,1147,gixdb_pitchnotes
+tabw_i 796,1148,gixdb_pitchnotes
+tabw_i 753,1149,gixdb_pitchnotes
+tabw_i 792,1150,gixdb_pitchnotes
+tabw_i 796,1151,gixdb_pitchnotes
+tabw_i 753,1152,gixdb_pitchnotes
+tabw_i 792,1153,gixdb_pitchnotes
+tabw_i 796,1154,gixdb_pitchnotes
+tabw_i 753,1155,gixdb_pitchnotes
+tabw_i 792,1156,gixdb_pitchnotes
+tabw_i 796,1157,gixdb_pitchnotes
+tabw_i 753,1158,gixdb_pitchnotes
+tabw_i 792,1159,gixdb_pitchnotes
+tabw_i 796,1160,gixdb_pitchnotes
+tabw_i 753,1161,gixdb_pitchnotes
+tabw_i 792,1162,gixdb_pitchnotes
+tabw_i 796,1163,gixdb_pitchnotes
+tabw_i 753,1164,gixdb_pitchnotes
+tabw_i 792,1165,gixdb_pitchnotes
+tabw_i 796,1166,gixdb_pitchnotes
+tabw_i 753,1167,gixdb_pitchnotes
+tabw_i 792,1168,gixdb_pitchnotes
+tabw_i 796,1169,gixdb_pitchnotes
+tabw_i 753,1170,gixdb_pitchnotes
+tabw_i 792,1171,gixdb_pitchnotes
+tabw_i 796,1172,gixdb_pitchnotes
+tabw_i 753,1173,gixdb_pitchnotes
+tabw_i 792,1174,gixdb_pitchnotes
+tabw_i 796,1175,gixdb_pitchnotes
+tabw_i 753,1176,gixdb_pitchnotes
+tabw_i 792,1177,gixdb_pitchnotes
+tabw_i 796,1178,gixdb_pitchnotes
+tabw_i 753,1179,gixdb_pitchnotes
+tabw_i 792,1180,gixdb_pitchnotes
+tabw_i 796,1181,gixdb_pitchnotes
+tabw_i 753,1182,gixdb_pitchnotes
+tabw_i 792,1183,gixdb_pitchnotes
+tabw_i 796,1184,gixdb_pitchnotes
+tabw_i 753,1185,gixdb_pitchnotes
+tabw_i 792,1186,gixdb_pitchnotes
+tabw_i 796,1187,gixdb_pitchnotes
+tabw_i 753,1188,gixdb_pitchnotes
+tabw_i 792,1189,gixdb_pitchnotes
+tabw_i 796,1190,gixdb_pitchnotes
+tabw_i 0.019686269,0,gixdb_pitchadjust
+tabw_i 0.019686269,1,gixdb_pitchadjust
+tabw_i 0.019686269,2,gixdb_pitchadjust
+tabw_i 0.019686269,3,gixdb_pitchadjust
+tabw_i 0.019686269,4,gixdb_pitchadjust
+tabw_i 0.019686269,5,gixdb_pitchadjust
+tabw_i 0.020856872,6,gixdb_pitchadjust
+tabw_i 0.020856872,7,gixdb_pitchadjust
+tabw_i 0.020856872,8,gixdb_pitchadjust
+tabw_i 0.020856872,9,gixdb_pitchadjust
+tabw_i 0.020856872,10,gixdb_pitchadjust
+tabw_i 0.020856872,11,gixdb_pitchadjust
+tabw_i 0.022097087,12,gixdb_pitchadjust
+tabw_i 0.022097087,13,gixdb_pitchadjust
+tabw_i 0.022097087,14,gixdb_pitchadjust
+tabw_i 0.022097087,15,gixdb_pitchadjust
+tabw_i 0.022097087,16,gixdb_pitchadjust
+tabw_i 0.022097087,17,gixdb_pitchadjust
+tabw_i 0.023411049,18,gixdb_pitchadjust
+tabw_i 0.023411049,19,gixdb_pitchadjust
+tabw_i 0.023411049,20,gixdb_pitchadjust
+tabw_i 0.023411049,21,gixdb_pitchadjust
+tabw_i 0.023411049,22,gixdb_pitchadjust
+tabw_i 0.023411049,23,gixdb_pitchadjust
+tabw_i 0.024803143,24,gixdb_pitchadjust
+tabw_i 0.024803143,25,gixdb_pitchadjust
+tabw_i 0.024803143,26,gixdb_pitchadjust
+tabw_i 0.024803143,27,gixdb_pitchadjust
+tabw_i 0.024803143,28,gixdb_pitchadjust
+tabw_i 0.024803143,29,gixdb_pitchadjust
+tabw_i 0.026278015,30,gixdb_pitchadjust
+tabw_i 0.026278015,31,gixdb_pitchadjust
+tabw_i 0.026278015,32,gixdb_pitchadjust
+tabw_i 0.026278015,33,gixdb_pitchadjust
+tabw_i 0.026278015,34,gixdb_pitchadjust
+tabw_i 0.026278015,35,gixdb_pitchadjust
+tabw_i 0.027840585,36,gixdb_pitchadjust
+tabw_i 0.027840585,37,gixdb_pitchadjust
+tabw_i 0.027840585,38,gixdb_pitchadjust
+tabw_i 0.027840585,39,gixdb_pitchadjust
+tabw_i 0.027840585,40,gixdb_pitchadjust
+tabw_i 0.027840585,41,gixdb_pitchadjust
+tabw_i 0.029496072,42,gixdb_pitchadjust
+tabw_i 0.029496072,43,gixdb_pitchadjust
+tabw_i 0.029496072,44,gixdb_pitchadjust
+tabw_i 0.029496072,45,gixdb_pitchadjust
+tabw_i 0.029496072,46,gixdb_pitchadjust
+tabw_i 0.029496072,47,gixdb_pitchadjust
+tabw_i 0.03125,48,gixdb_pitchadjust
+tabw_i 0.03125,49,gixdb_pitchadjust
+tabw_i 0.03125,50,gixdb_pitchadjust
+tabw_i 0.03125,51,gixdb_pitchadjust
+tabw_i 0.03125,52,gixdb_pitchadjust
+tabw_i 0.03125,53,gixdb_pitchadjust
+tabw_i 0.033108223,54,gixdb_pitchadjust
+tabw_i 0.033108223,55,gixdb_pitchadjust
+tabw_i 0.033108223,56,gixdb_pitchadjust
+tabw_i 0.033108223,57,gixdb_pitchadjust
+tabw_i 0.033108223,58,gixdb_pitchadjust
+tabw_i 0.033108223,59,gixdb_pitchadjust
+tabw_i 0.03507694,60,gixdb_pitchadjust
+tabw_i 0.03507694,61,gixdb_pitchadjust
+tabw_i 0.03507694,62,gixdb_pitchadjust
+tabw_i 0.03507694,63,gixdb_pitchadjust
+tabw_i 0.03507694,64,gixdb_pitchadjust
+tabw_i 0.03507694,65,gixdb_pitchadjust
+tabw_i 0.037162725,66,gixdb_pitchadjust
+tabw_i 0.037162725,67,gixdb_pitchadjust
+tabw_i 0.037162725,68,gixdb_pitchadjust
+tabw_i 0.037162725,69,gixdb_pitchadjust
+tabw_i 0.037162725,70,gixdb_pitchadjust
+tabw_i 0.037162725,71,gixdb_pitchadjust
+tabw_i 0.039372537,72,gixdb_pitchadjust
+tabw_i 0.039372537,73,gixdb_pitchadjust
+tabw_i 0.039372537,74,gixdb_pitchadjust
+tabw_i 0.039372537,75,gixdb_pitchadjust
+tabw_i 0.039372537,76,gixdb_pitchadjust
+tabw_i 0.039372537,77,gixdb_pitchadjust
+tabw_i 0.041713744,78,gixdb_pitchadjust
+tabw_i 0.041713744,79,gixdb_pitchadjust
+tabw_i 0.041713744,80,gixdb_pitchadjust
+tabw_i 0.041713744,81,gixdb_pitchadjust
+tabw_i 0.041713744,82,gixdb_pitchadjust
+tabw_i 0.041713744,83,gixdb_pitchadjust
+tabw_i 0.044194173,84,gixdb_pitchadjust
+tabw_i 0.044194173,85,gixdb_pitchadjust
+tabw_i 0.044194173,86,gixdb_pitchadjust
+tabw_i 0.044194173,87,gixdb_pitchadjust
+tabw_i 0.044194173,88,gixdb_pitchadjust
+tabw_i 0.044194173,89,gixdb_pitchadjust
+tabw_i 0.046822097,90,gixdb_pitchadjust
+tabw_i 0.046822097,91,gixdb_pitchadjust
+tabw_i 0.046822097,92,gixdb_pitchadjust
+tabw_i 0.046822097,93,gixdb_pitchadjust
+tabw_i 0.046822097,94,gixdb_pitchadjust
+tabw_i 0.046822097,95,gixdb_pitchadjust
+tabw_i 0.049606286,96,gixdb_pitchadjust
+tabw_i 0.049606286,97,gixdb_pitchadjust
+tabw_i 0.049606286,98,gixdb_pitchadjust
+tabw_i 0.049606286,99,gixdb_pitchadjust
+tabw_i 0.049606286,100,gixdb_pitchadjust
+tabw_i 0.049606286,101,gixdb_pitchadjust
+tabw_i 0.05255603,102,gixdb_pitchadjust
+tabw_i 0.05255603,103,gixdb_pitchadjust
+tabw_i 0.05255603,104,gixdb_pitchadjust
+tabw_i 0.05255603,105,gixdb_pitchadjust
+tabw_i 0.05255603,106,gixdb_pitchadjust
+tabw_i 0.05255603,107,gixdb_pitchadjust
+tabw_i 0.05568117,108,gixdb_pitchadjust
+tabw_i 0.05568117,109,gixdb_pitchadjust
+tabw_i 0.05568117,110,gixdb_pitchadjust
+tabw_i 0.05568117,111,gixdb_pitchadjust
+tabw_i 0.05568117,112,gixdb_pitchadjust
+tabw_i 0.05568117,113,gixdb_pitchadjust
+tabw_i 0.058992144,114,gixdb_pitchadjust
+tabw_i 0.058992144,115,gixdb_pitchadjust
+tabw_i 0.058992144,116,gixdb_pitchadjust
+tabw_i 0.058992144,117,gixdb_pitchadjust
+tabw_i 0.058992144,118,gixdb_pitchadjust
+tabw_i 0.058992144,119,gixdb_pitchadjust
+tabw_i 0.0625,120,gixdb_pitchadjust
+tabw_i 0.0625,121,gixdb_pitchadjust
+tabw_i 0.0625,122,gixdb_pitchadjust
+tabw_i 0.0625,123,gixdb_pitchadjust
+tabw_i 0.0625,124,gixdb_pitchadjust
+tabw_i 0.0625,125,gixdb_pitchadjust
+tabw_i 0.06621645,126,gixdb_pitchadjust
+tabw_i 0.06621645,127,gixdb_pitchadjust
+tabw_i 0.06621645,128,gixdb_pitchadjust
+tabw_i 0.06621645,129,gixdb_pitchadjust
+tabw_i 0.06621645,130,gixdb_pitchadjust
+tabw_i 0.06621645,131,gixdb_pitchadjust
+tabw_i 0.07015388,132,gixdb_pitchadjust
+tabw_i 0.07015388,133,gixdb_pitchadjust
+tabw_i 0.07015388,134,gixdb_pitchadjust
+tabw_i 0.07015388,135,gixdb_pitchadjust
+tabw_i 0.07015388,136,gixdb_pitchadjust
+tabw_i 0.07015388,137,gixdb_pitchadjust
+tabw_i 0.07432545,138,gixdb_pitchadjust
+tabw_i 0.07432545,139,gixdb_pitchadjust
+tabw_i 0.07432545,140,gixdb_pitchadjust
+tabw_i 0.07432545,141,gixdb_pitchadjust
+tabw_i 0.07432545,142,gixdb_pitchadjust
+tabw_i 0.07432545,143,gixdb_pitchadjust
+tabw_i 0.078745075,144,gixdb_pitchadjust
+tabw_i 0.078745075,145,gixdb_pitchadjust
+tabw_i 0.078745075,146,gixdb_pitchadjust
+tabw_i 0.078745075,147,gixdb_pitchadjust
+tabw_i 0.078745075,148,gixdb_pitchadjust
+tabw_i 0.078745075,149,gixdb_pitchadjust
+tabw_i 0.08342749,150,gixdb_pitchadjust
+tabw_i 0.08342749,151,gixdb_pitchadjust
+tabw_i 0.08342749,152,gixdb_pitchadjust
+tabw_i 0.08342749,153,gixdb_pitchadjust
+tabw_i 0.08342749,154,gixdb_pitchadjust
+tabw_i 0.08342749,155,gixdb_pitchadjust
+tabw_i 0.088388346,156,gixdb_pitchadjust
+tabw_i 0.088388346,157,gixdb_pitchadjust
+tabw_i 0.088388346,158,gixdb_pitchadjust
+tabw_i 0.088388346,159,gixdb_pitchadjust
+tabw_i 0.088388346,160,gixdb_pitchadjust
+tabw_i 0.088388346,161,gixdb_pitchadjust
+tabw_i 0.093644194,162,gixdb_pitchadjust
+tabw_i 0.093644194,163,gixdb_pitchadjust
+tabw_i 0.093644194,164,gixdb_pitchadjust
+tabw_i 0.093644194,165,gixdb_pitchadjust
+tabw_i 0.093644194,166,gixdb_pitchadjust
+tabw_i 0.093644194,167,gixdb_pitchadjust
+tabw_i 0.09921257,168,gixdb_pitchadjust
+tabw_i 0.09921257,169,gixdb_pitchadjust
+tabw_i 0.09921257,170,gixdb_pitchadjust
+tabw_i 0.09921257,171,gixdb_pitchadjust
+tabw_i 0.09921257,172,gixdb_pitchadjust
+tabw_i 0.09921257,173,gixdb_pitchadjust
+tabw_i 0.10511206,174,gixdb_pitchadjust
+tabw_i 0.10511206,175,gixdb_pitchadjust
+tabw_i 0.10511206,176,gixdb_pitchadjust
+tabw_i 0.10511206,177,gixdb_pitchadjust
+tabw_i 0.10511206,178,gixdb_pitchadjust
+tabw_i 0.10511206,179,gixdb_pitchadjust
+tabw_i 0.11136234,180,gixdb_pitchadjust
+tabw_i 0.11136234,181,gixdb_pitchadjust
+tabw_i 0.11136234,182,gixdb_pitchadjust
+tabw_i 0.11136234,183,gixdb_pitchadjust
+tabw_i 0.11136234,184,gixdb_pitchadjust
+tabw_i 0.11136234,185,gixdb_pitchadjust
+tabw_i 0.11798429,186,gixdb_pitchadjust
+tabw_i 0.11798429,187,gixdb_pitchadjust
+tabw_i 0.11798429,188,gixdb_pitchadjust
+tabw_i 0.11798429,189,gixdb_pitchadjust
+tabw_i 0.11798429,190,gixdb_pitchadjust
+tabw_i 0.11798429,191,gixdb_pitchadjust
+tabw_i 0.125,192,gixdb_pitchadjust
+tabw_i 0.125,193,gixdb_pitchadjust
+tabw_i 0.125,194,gixdb_pitchadjust
+tabw_i 0.125,195,gixdb_pitchadjust
+tabw_i 0.125,196,gixdb_pitchadjust
+tabw_i 0.125,197,gixdb_pitchadjust
+tabw_i 0.1324329,198,gixdb_pitchadjust
+tabw_i 0.1324329,199,gixdb_pitchadjust
+tabw_i 0.1324329,200,gixdb_pitchadjust
+tabw_i 0.1324329,201,gixdb_pitchadjust
+tabw_i 0.1324329,202,gixdb_pitchadjust
+tabw_i 0.1324329,203,gixdb_pitchadjust
+tabw_i 0.14030775,204,gixdb_pitchadjust
+tabw_i 0.14030775,205,gixdb_pitchadjust
+tabw_i 0.14030775,206,gixdb_pitchadjust
+tabw_i 0.14030775,207,gixdb_pitchadjust
+tabw_i 0.14030775,208,gixdb_pitchadjust
+tabw_i 0.14030775,209,gixdb_pitchadjust
+tabw_i 0.1486509,210,gixdb_pitchadjust
+tabw_i 0.1486509,211,gixdb_pitchadjust
+tabw_i 0.1486509,212,gixdb_pitchadjust
+tabw_i 0.1486509,213,gixdb_pitchadjust
+tabw_i 0.1486509,214,gixdb_pitchadjust
+tabw_i 0.1486509,215,gixdb_pitchadjust
+tabw_i 0.15749015,216,gixdb_pitchadjust
+tabw_i 0.15749015,217,gixdb_pitchadjust
+tabw_i 0.15749015,218,gixdb_pitchadjust
+tabw_i 0.15749015,219,gixdb_pitchadjust
+tabw_i 0.15749015,220,gixdb_pitchadjust
+tabw_i 0.15749015,221,gixdb_pitchadjust
+tabw_i 0.16685498,222,gixdb_pitchadjust
+tabw_i 0.16685498,223,gixdb_pitchadjust
+tabw_i 0.16685498,224,gixdb_pitchadjust
+tabw_i 0.16685498,225,gixdb_pitchadjust
+tabw_i 0.16685498,226,gixdb_pitchadjust
+tabw_i 0.16685498,227,gixdb_pitchadjust
+tabw_i 0.17677669,228,gixdb_pitchadjust
+tabw_i 0.17677669,229,gixdb_pitchadjust
+tabw_i 0.17677669,230,gixdb_pitchadjust
+tabw_i 0.17677669,231,gixdb_pitchadjust
+tabw_i 0.17677669,232,gixdb_pitchadjust
+tabw_i 0.17677669,233,gixdb_pitchadjust
+tabw_i 0.18728839,234,gixdb_pitchadjust
+tabw_i 0.18728839,235,gixdb_pitchadjust
+tabw_i 0.18728839,236,gixdb_pitchadjust
+tabw_i 0.18728839,237,gixdb_pitchadjust
+tabw_i 0.18728839,238,gixdb_pitchadjust
+tabw_i 0.18728839,239,gixdb_pitchadjust
+tabw_i 0.19842514,240,gixdb_pitchadjust
+tabw_i 0.19842514,241,gixdb_pitchadjust
+tabw_i 0.19842514,242,gixdb_pitchadjust
+tabw_i 0.19842514,243,gixdb_pitchadjust
+tabw_i 0.19842514,244,gixdb_pitchadjust
+tabw_i 0.19842514,245,gixdb_pitchadjust
+tabw_i 0.21022412,246,gixdb_pitchadjust
+tabw_i 0.21022412,247,gixdb_pitchadjust
+tabw_i 0.21022412,248,gixdb_pitchadjust
+tabw_i 0.21022412,249,gixdb_pitchadjust
+tabw_i 0.21022412,250,gixdb_pitchadjust
+tabw_i 0.21022412,251,gixdb_pitchadjust
+tabw_i 0.22272468,252,gixdb_pitchadjust
+tabw_i 0.22272468,253,gixdb_pitchadjust
+tabw_i 0.22272468,254,gixdb_pitchadjust
+tabw_i 0.22272468,255,gixdb_pitchadjust
+tabw_i 0.22272468,256,gixdb_pitchadjust
+tabw_i 0.22272468,257,gixdb_pitchadjust
+tabw_i 0.23596857,258,gixdb_pitchadjust
+tabw_i 0.23596857,259,gixdb_pitchadjust
+tabw_i 0.23596857,260,gixdb_pitchadjust
+tabw_i 0.23596857,261,gixdb_pitchadjust
+tabw_i 0.23596857,262,gixdb_pitchadjust
+tabw_i 0.23596857,263,gixdb_pitchadjust
+tabw_i 0.25,264,gixdb_pitchadjust
+tabw_i 0.25,265,gixdb_pitchadjust
+tabw_i 0.25,266,gixdb_pitchadjust
+tabw_i 0.25,267,gixdb_pitchadjust
+tabw_i 0.25,268,gixdb_pitchadjust
+tabw_i 0.25,269,gixdb_pitchadjust
+tabw_i 0.2648658,270,gixdb_pitchadjust
+tabw_i 0.2648658,271,gixdb_pitchadjust
+tabw_i 0.2648658,272,gixdb_pitchadjust
+tabw_i 0.2648658,273,gixdb_pitchadjust
+tabw_i 0.2648658,274,gixdb_pitchadjust
+tabw_i 0.2648658,275,gixdb_pitchadjust
+tabw_i 0.2806155,276,gixdb_pitchadjust
+tabw_i 0.2806155,277,gixdb_pitchadjust
+tabw_i 0.2806155,278,gixdb_pitchadjust
+tabw_i 0.2806155,279,gixdb_pitchadjust
+tabw_i 0.2806155,280,gixdb_pitchadjust
+tabw_i 0.2806155,281,gixdb_pitchadjust
+tabw_i 0.2973018,282,gixdb_pitchadjust
+tabw_i 0.2973018,283,gixdb_pitchadjust
+tabw_i 0.2973018,284,gixdb_pitchadjust
+tabw_i 0.2973018,285,gixdb_pitchadjust
+tabw_i 0.2973018,286,gixdb_pitchadjust
+tabw_i 0.2973018,287,gixdb_pitchadjust
+tabw_i 0.3149803,288,gixdb_pitchadjust
+tabw_i 0.3149803,289,gixdb_pitchadjust
+tabw_i 0.3149803,290,gixdb_pitchadjust
+tabw_i 0.3149803,291,gixdb_pitchadjust
+tabw_i 0.3149803,292,gixdb_pitchadjust
+tabw_i 0.3149803,293,gixdb_pitchadjust
+tabw_i 0.33370996,294,gixdb_pitchadjust
+tabw_i 0.33370996,295,gixdb_pitchadjust
+tabw_i 0.33370996,296,gixdb_pitchadjust
+tabw_i 0.33370996,297,gixdb_pitchadjust
+tabw_i 0.33370996,298,gixdb_pitchadjust
+tabw_i 0.33370996,299,gixdb_pitchadjust
+tabw_i 0.35355338,300,gixdb_pitchadjust
+tabw_i 0.35355338,301,gixdb_pitchadjust
+tabw_i 0.35355338,302,gixdb_pitchadjust
+tabw_i 0.35355338,303,gixdb_pitchadjust
+tabw_i 0.35355338,304,gixdb_pitchadjust
+tabw_i 0.35355338,305,gixdb_pitchadjust
+tabw_i 0.37457678,306,gixdb_pitchadjust
+tabw_i 0.37457678,307,gixdb_pitchadjust
+tabw_i 0.37457678,308,gixdb_pitchadjust
+tabw_i 0.37457678,309,gixdb_pitchadjust
+tabw_i 0.37457678,310,gixdb_pitchadjust
+tabw_i 0.37457678,311,gixdb_pitchadjust
+tabw_i 0.3968503,312,gixdb_pitchadjust
+tabw_i 0.3968503,313,gixdb_pitchadjust
+tabw_i 0.3968503,314,gixdb_pitchadjust
+tabw_i 0.3968503,315,gixdb_pitchadjust
+tabw_i 0.3968503,316,gixdb_pitchadjust
+tabw_i 0.3968503,317,gixdb_pitchadjust
+tabw_i 0.42044824,318,gixdb_pitchadjust
+tabw_i 0.42044824,319,gixdb_pitchadjust
+tabw_i 0.42044824,320,gixdb_pitchadjust
+tabw_i 0.42044824,321,gixdb_pitchadjust
+tabw_i 0.42044824,322,gixdb_pitchadjust
+tabw_i 0.42044824,323,gixdb_pitchadjust
+tabw_i 0.44544935,324,gixdb_pitchadjust
+tabw_i 0.44544935,325,gixdb_pitchadjust
+tabw_i 0.44544935,326,gixdb_pitchadjust
+tabw_i 0.44544935,327,gixdb_pitchadjust
+tabw_i 0.44544935,328,gixdb_pitchadjust
+tabw_i 0.44544935,329,gixdb_pitchadjust
+tabw_i 0.47193715,330,gixdb_pitchadjust
+tabw_i 0.47193715,331,gixdb_pitchadjust
+tabw_i 0.47193715,332,gixdb_pitchadjust
+tabw_i 0.47193715,333,gixdb_pitchadjust
+tabw_i 0.47193715,334,gixdb_pitchadjust
+tabw_i 0.47193715,335,gixdb_pitchadjust
+tabw_i 0.5,336,gixdb_pitchadjust
+tabw_i 0.5,337,gixdb_pitchadjust
+tabw_i 0.5,338,gixdb_pitchadjust
+tabw_i 0.5,339,gixdb_pitchadjust
+tabw_i 0.5,340,gixdb_pitchadjust
+tabw_i 0.5,341,gixdb_pitchadjust
+tabw_i 0.5297316,342,gixdb_pitchadjust
+tabw_i 0.5297316,343,gixdb_pitchadjust
+tabw_i 0.5297316,344,gixdb_pitchadjust
+tabw_i 0.5297316,345,gixdb_pitchadjust
+tabw_i 0.5297316,346,gixdb_pitchadjust
+tabw_i 0.5297316,347,gixdb_pitchadjust
+tabw_i 0.561231,348,gixdb_pitchadjust
+tabw_i 0.561231,349,gixdb_pitchadjust
+tabw_i 0.561231,350,gixdb_pitchadjust
+tabw_i 0.561231,351,gixdb_pitchadjust
+tabw_i 0.561231,352,gixdb_pitchadjust
+tabw_i 0.561231,353,gixdb_pitchadjust
+tabw_i 0.5946036,354,gixdb_pitchadjust
+tabw_i 0.5946036,355,gixdb_pitchadjust
+tabw_i 0.5946036,356,gixdb_pitchadjust
+tabw_i 0.5946036,357,gixdb_pitchadjust
+tabw_i 0.5946036,358,gixdb_pitchadjust
+tabw_i 0.5946036,359,gixdb_pitchadjust
+tabw_i 0.6299606,360,gixdb_pitchadjust
+tabw_i 0.6299606,361,gixdb_pitchadjust
+tabw_i 0.6299606,362,gixdb_pitchadjust
+tabw_i 0.6299606,363,gixdb_pitchadjust
+tabw_i 0.6299606,364,gixdb_pitchadjust
+tabw_i 0.6299606,365,gixdb_pitchadjust
+tabw_i 0.6674199,366,gixdb_pitchadjust
+tabw_i 0.6674199,367,gixdb_pitchadjust
+tabw_i 0.6674199,368,gixdb_pitchadjust
+tabw_i 0.6674199,369,gixdb_pitchadjust
+tabw_i 0.6674199,370,gixdb_pitchadjust
+tabw_i 0.6674199,371,gixdb_pitchadjust
+tabw_i 0.70710677,372,gixdb_pitchadjust
+tabw_i 0.70710677,373,gixdb_pitchadjust
+tabw_i 0.70710677,374,gixdb_pitchadjust
+tabw_i 0.70710677,375,gixdb_pitchadjust
+tabw_i 0.70710677,376,gixdb_pitchadjust
+tabw_i 0.70710677,377,gixdb_pitchadjust
+tabw_i 0.74915355,378,gixdb_pitchadjust
+tabw_i 0.74915355,379,gixdb_pitchadjust
+tabw_i 0.74915355,380,gixdb_pitchadjust
+tabw_i 0.74915355,381,gixdb_pitchadjust
+tabw_i 0.74915355,382,gixdb_pitchadjust
+tabw_i 0.74915355,383,gixdb_pitchadjust
+tabw_i 0.7937006,384,gixdb_pitchadjust
+tabw_i 0.7937006,385,gixdb_pitchadjust
+tabw_i 0.7937006,386,gixdb_pitchadjust
+tabw_i 0.7937006,387,gixdb_pitchadjust
+tabw_i 0.7937006,388,gixdb_pitchadjust
+tabw_i 0.7937006,389,gixdb_pitchadjust
+tabw_i 0.8408965,390,gixdb_pitchadjust
+tabw_i 0.8408965,391,gixdb_pitchadjust
+tabw_i 0.8408965,392,gixdb_pitchadjust
+tabw_i 0.8408965,393,gixdb_pitchadjust
+tabw_i 0.8408965,394,gixdb_pitchadjust
+tabw_i 0.8408965,395,gixdb_pitchadjust
+tabw_i 0.8908987,396,gixdb_pitchadjust
+tabw_i 0.8908987,397,gixdb_pitchadjust
+tabw_i 0.8908987,398,gixdb_pitchadjust
+tabw_i 0.8908987,399,gixdb_pitchadjust
+tabw_i 0.8908987,400,gixdb_pitchadjust
+tabw_i 0.8908987,401,gixdb_pitchadjust
+tabw_i 0.9438743,402,gixdb_pitchadjust
+tabw_i 0.9438743,403,gixdb_pitchadjust
+tabw_i 0.9438743,404,gixdb_pitchadjust
+tabw_i 0.9438743,405,gixdb_pitchadjust
+tabw_i 0.9438743,406,gixdb_pitchadjust
+tabw_i 0.9438743,407,gixdb_pitchadjust
+tabw_i 1,408,gixdb_pitchadjust
+tabw_i 1,409,gixdb_pitchadjust
+tabw_i 1,410,gixdb_pitchadjust
+tabw_i 1,411,gixdb_pitchadjust
+tabw_i 1,412,gixdb_pitchadjust
+tabw_i 1,413,gixdb_pitchadjust
+tabw_i 1.0594631,414,gixdb_pitchadjust
+tabw_i 1.0594631,415,gixdb_pitchadjust
+tabw_i 1.0594631,416,gixdb_pitchadjust
+tabw_i 0.9438743,417,gixdb_pitchadjust
+tabw_i 0.9438743,418,gixdb_pitchadjust
+tabw_i 1.0594631,419,gixdb_pitchadjust
+tabw_i 0.9438743,420,gixdb_pitchadjust
+tabw_i 0.9438743,421,gixdb_pitchadjust
+tabw_i 0.9438743,422,gixdb_pitchadjust
+tabw_i 1.0594631,423,gixdb_pitchadjust
+tabw_i 1.0594631,424,gixdb_pitchadjust
+tabw_i 1,425,gixdb_pitchadjust
+tabw_i 1,426,gixdb_pitchadjust
+tabw_i 1,427,gixdb_pitchadjust
+tabw_i 1,428,gixdb_pitchadjust
+tabw_i 1,429,gixdb_pitchadjust
+tabw_i 1.0594631,430,gixdb_pitchadjust
+tabw_i 1.0594631,431,gixdb_pitchadjust
+tabw_i 0.94387424,432,gixdb_pitchadjust
+tabw_i 0.94387424,433,gixdb_pitchadjust
+tabw_i 0.94387424,434,gixdb_pitchadjust
+tabw_i 1.0594631,435,gixdb_pitchadjust
+tabw_i 0.94387424,436,gixdb_pitchadjust
+tabw_i 1.0594631,437,gixdb_pitchadjust
+tabw_i 1.0594631,438,gixdb_pitchadjust
+tabw_i 1,439,gixdb_pitchadjust
+tabw_i 1,440,gixdb_pitchadjust
+tabw_i 1,441,gixdb_pitchadjust
+tabw_i 1,442,gixdb_pitchadjust
+tabw_i 1,443,gixdb_pitchadjust
+tabw_i 1,444,gixdb_pitchadjust
+tabw_i 1,445,gixdb_pitchadjust
+tabw_i 1.0594631,446,gixdb_pitchadjust
+tabw_i 0.9438743,447,gixdb_pitchadjust
+tabw_i 0.9438743,448,gixdb_pitchadjust
+tabw_i 1.0594631,449,gixdb_pitchadjust
+tabw_i 1.0594631,450,gixdb_pitchadjust
+tabw_i 0.9438743,451,gixdb_pitchadjust
+tabw_i 1,452,gixdb_pitchadjust
+tabw_i 1,453,gixdb_pitchadjust
+tabw_i 1,454,gixdb_pitchadjust
+tabw_i 0.9438743,455,gixdb_pitchadjust
+tabw_i 1.0594631,456,gixdb_pitchadjust
+tabw_i 1.0594631,457,gixdb_pitchadjust
+tabw_i 0.9438743,458,gixdb_pitchadjust
+tabw_i 0.9438743,459,gixdb_pitchadjust
+tabw_i 0.9438743,460,gixdb_pitchadjust
+tabw_i 1.0594631,461,gixdb_pitchadjust
+tabw_i 1,462,gixdb_pitchadjust
+tabw_i 1,463,gixdb_pitchadjust
+tabw_i 1,464,gixdb_pitchadjust
+tabw_i 1,465,gixdb_pitchadjust
+tabw_i 1.059463,466,gixdb_pitchadjust
+tabw_i 1.059463,467,gixdb_pitchadjust
+tabw_i 0.9438743,468,gixdb_pitchadjust
+tabw_i 0.9438743,469,gixdb_pitchadjust
+tabw_i 1.059463,470,gixdb_pitchadjust
+tabw_i 1.059463,471,gixdb_pitchadjust
+tabw_i 0.9438743,472,gixdb_pitchadjust
+tabw_i 0.9438743,473,gixdb_pitchadjust
+tabw_i 1,474,gixdb_pitchadjust
+tabw_i 1,475,gixdb_pitchadjust
+tabw_i 1,476,gixdb_pitchadjust
+tabw_i 1,477,gixdb_pitchadjust
+tabw_i 1,478,gixdb_pitchadjust
+tabw_i 1,479,gixdb_pitchadjust
+tabw_i 1,480,gixdb_pitchadjust
+tabw_i 1,481,gixdb_pitchadjust
+tabw_i 1.0594631,482,gixdb_pitchadjust
+tabw_i 0.9438743,483,gixdb_pitchadjust
+tabw_i 1.0594631,484,gixdb_pitchadjust
+tabw_i 0.9438743,485,gixdb_pitchadjust
+tabw_i 0.9438743,486,gixdb_pitchadjust
+tabw_i 0.9438743,487,gixdb_pitchadjust
+tabw_i 1.0594631,488,gixdb_pitchadjust
+tabw_i 1.0594631,489,gixdb_pitchadjust
+tabw_i 1,490,gixdb_pitchadjust
+tabw_i 1,491,gixdb_pitchadjust
+tabw_i 1,492,gixdb_pitchadjust
+tabw_i 1,493,gixdb_pitchadjust
+tabw_i 1.0594631,494,gixdb_pitchadjust
+tabw_i 1.0594631,495,gixdb_pitchadjust
+tabw_i 1.0594631,496,gixdb_pitchadjust
+tabw_i 0.94387424,497,gixdb_pitchadjust
+tabw_i 1.0594631,498,gixdb_pitchadjust
+tabw_i 0.94387424,499,gixdb_pitchadjust
+tabw_i 0.94387424,500,gixdb_pitchadjust
+tabw_i 0.94387424,501,gixdb_pitchadjust
+tabw_i 1,502,gixdb_pitchadjust
+tabw_i 1,503,gixdb_pitchadjust
+tabw_i 1,504,gixdb_pitchadjust
+tabw_i 1,505,gixdb_pitchadjust
+tabw_i 1,506,gixdb_pitchadjust
+tabw_i 1,507,gixdb_pitchadjust
+tabw_i 1,508,gixdb_pitchadjust
+tabw_i 1,509,gixdb_pitchadjust
+tabw_i 1.0594631,510,gixdb_pitchadjust
+tabw_i 1.0594631,511,gixdb_pitchadjust
+tabw_i 1.0594631,512,gixdb_pitchadjust
+tabw_i 0.9438743,513,gixdb_pitchadjust
+tabw_i 0.9438743,514,gixdb_pitchadjust
+tabw_i 0.9438743,515,gixdb_pitchadjust
+tabw_i 0.9438743,516,gixdb_pitchadjust
+tabw_i 0.9438743,517,gixdb_pitchadjust
+tabw_i 1.0594631,518,gixdb_pitchadjust
+tabw_i 1,519,gixdb_pitchadjust
+tabw_i 1,520,gixdb_pitchadjust
+tabw_i 1,521,gixdb_pitchadjust
+tabw_i 1,522,gixdb_pitchadjust
+tabw_i 1,523,gixdb_pitchadjust
+tabw_i 0.9438743,524,gixdb_pitchadjust
+tabw_i 1.0594631,525,gixdb_pitchadjust
+tabw_i 0.9438743,526,gixdb_pitchadjust
+tabw_i 1.0594631,527,gixdb_pitchadjust
+tabw_i 1.0594631,528,gixdb_pitchadjust
+tabw_i 1.0594631,529,gixdb_pitchadjust
+tabw_i 1.0594631,530,gixdb_pitchadjust
+tabw_i 0.9438743,531,gixdb_pitchadjust
+tabw_i 0.9438743,532,gixdb_pitchadjust
+tabw_i 1,533,gixdb_pitchadjust
+tabw_i 1,534,gixdb_pitchadjust
+tabw_i 1,535,gixdb_pitchadjust
+tabw_i 1,536,gixdb_pitchadjust
+tabw_i 1.059463,537,gixdb_pitchadjust
+tabw_i 0.9438743,538,gixdb_pitchadjust
+tabw_i 0.9438743,539,gixdb_pitchadjust
+tabw_i 1.059463,540,gixdb_pitchadjust
+tabw_i 0.9438743,541,gixdb_pitchadjust
+tabw_i 1.059463,542,gixdb_pitchadjust
+tabw_i 1.059463,543,gixdb_pitchadjust
+tabw_i 1,544,gixdb_pitchadjust
+tabw_i 1,545,gixdb_pitchadjust
+tabw_i 1,546,gixdb_pitchadjust
+tabw_i 1,547,gixdb_pitchadjust
+tabw_i 1,548,gixdb_pitchadjust
+tabw_i 1,549,gixdb_pitchadjust
+tabw_i 1.0594631,550,gixdb_pitchadjust
+tabw_i 1.0594631,551,gixdb_pitchadjust
+tabw_i 1.0594631,552,gixdb_pitchadjust
+tabw_i 1.122462,553,gixdb_pitchadjust
+tabw_i 1.122462,554,gixdb_pitchadjust
+tabw_i 1.122462,555,gixdb_pitchadjust
+tabw_i 1.1892072,556,gixdb_pitchadjust
+tabw_i 1.1892072,557,gixdb_pitchadjust
+tabw_i 1.1892072,558,gixdb_pitchadjust
+tabw_i 1.2599212,559,gixdb_pitchadjust
+tabw_i 1.2599212,560,gixdb_pitchadjust
+tabw_i 1.2599212,561,gixdb_pitchadjust
+tabw_i 1.3348398,562,gixdb_pitchadjust
+tabw_i 1.3348398,563,gixdb_pitchadjust
+tabw_i 1.3348398,564,gixdb_pitchadjust
+tabw_i 1.4142135,565,gixdb_pitchadjust
+tabw_i 1.4142135,566,gixdb_pitchadjust
+tabw_i 1.4142135,567,gixdb_pitchadjust
+tabw_i 1.4983071,568,gixdb_pitchadjust
+tabw_i 1.4983071,569,gixdb_pitchadjust
+tabw_i 1.4983071,570,gixdb_pitchadjust
+tabw_i 1.5874012,571,gixdb_pitchadjust
+tabw_i 1.5874012,572,gixdb_pitchadjust
+tabw_i 1.5874012,573,gixdb_pitchadjust
+tabw_i 1.681793,574,gixdb_pitchadjust
+tabw_i 1.681793,575,gixdb_pitchadjust
+tabw_i 1.681793,576,gixdb_pitchadjust
+tabw_i 1.7817974,577,gixdb_pitchadjust
+tabw_i 1.7817974,578,gixdb_pitchadjust
+tabw_i 1.7817974,579,gixdb_pitchadjust
+tabw_i 1.8877486,580,gixdb_pitchadjust
+tabw_i 1.8877486,581,gixdb_pitchadjust
+tabw_i 1.8877486,582,gixdb_pitchadjust
+tabw_i 2,583,gixdb_pitchadjust
+tabw_i 2,584,gixdb_pitchadjust
+tabw_i 2,585,gixdb_pitchadjust
+tabw_i 2.1189263,586,gixdb_pitchadjust
+tabw_i 2.1189263,587,gixdb_pitchadjust
+tabw_i 2.1189263,588,gixdb_pitchadjust
+tabw_i 2.244924,589,gixdb_pitchadjust
+tabw_i 2.244924,590,gixdb_pitchadjust
+tabw_i 2.244924,591,gixdb_pitchadjust
+tabw_i 2.3784144,592,gixdb_pitchadjust
+tabw_i 2.3784144,593,gixdb_pitchadjust
+tabw_i 2.3784144,594,gixdb_pitchadjust
+tabw_i 2.5198424,595,gixdb_pitchadjust
+tabw_i 2.5198424,596,gixdb_pitchadjust
+tabw_i 2.5198424,597,gixdb_pitchadjust
+tabw_i 2.6696796,598,gixdb_pitchadjust
+tabw_i 2.6696796,599,gixdb_pitchadjust
+tabw_i 2.6696796,600,gixdb_pitchadjust
+tabw_i 2.828427,601,gixdb_pitchadjust
+tabw_i 2.828427,602,gixdb_pitchadjust
+tabw_i 2.828427,603,gixdb_pitchadjust
+tabw_i 2.9966142,604,gixdb_pitchadjust
+tabw_i 2.9966142,605,gixdb_pitchadjust
+tabw_i 2.9966142,606,gixdb_pitchadjust
+tabw_i 3.1748023,607,gixdb_pitchadjust
+tabw_i 3.1748023,608,gixdb_pitchadjust
+tabw_i 3.1748023,609,gixdb_pitchadjust
+tabw_i 3.363586,610,gixdb_pitchadjust
+tabw_i 3.363586,611,gixdb_pitchadjust
+tabw_i 3.363586,612,gixdb_pitchadjust
+tabw_i 3.5635948,613,gixdb_pitchadjust
+tabw_i 3.5635948,614,gixdb_pitchadjust
+tabw_i 3.5635948,615,gixdb_pitchadjust
+tabw_i 3.7754972,616,gixdb_pitchadjust
+tabw_i 3.7754972,617,gixdb_pitchadjust
+tabw_i 3.7754972,618,gixdb_pitchadjust
+tabw_i 4,619,gixdb_pitchadjust
+tabw_i 4,620,gixdb_pitchadjust
+tabw_i 4,621,gixdb_pitchadjust
+tabw_i 4.2378526,622,gixdb_pitchadjust
+tabw_i 4.2378526,623,gixdb_pitchadjust
+tabw_i 4.2378526,624,gixdb_pitchadjust
+tabw_i 4.489848,625,gixdb_pitchadjust
+tabw_i 4.489848,626,gixdb_pitchadjust
+tabw_i 4.489848,627,gixdb_pitchadjust
+tabw_i 4.756829,628,gixdb_pitchadjust
+tabw_i 4.756829,629,gixdb_pitchadjust
+tabw_i 4.756829,630,gixdb_pitchadjust
+tabw_i 5.039685,631,gixdb_pitchadjust
+tabw_i 5.039685,632,gixdb_pitchadjust
+tabw_i 5.039685,633,gixdb_pitchadjust
+tabw_i 5.3393593,634,gixdb_pitchadjust
+tabw_i 5.3393593,635,gixdb_pitchadjust
+tabw_i 5.3393593,636,gixdb_pitchadjust
+tabw_i 5.656854,637,gixdb_pitchadjust
+tabw_i 5.656854,638,gixdb_pitchadjust
+tabw_i 5.656854,639,gixdb_pitchadjust
+tabw_i 5.9932284,640,gixdb_pitchadjust
+tabw_i 5.9932284,641,gixdb_pitchadjust
+tabw_i 5.9932284,642,gixdb_pitchadjust
+tabw_i 6.3496046,643,gixdb_pitchadjust
+tabw_i 6.3496046,644,gixdb_pitchadjust
+tabw_i 6.3496046,645,gixdb_pitchadjust
+tabw_i 6.727172,646,gixdb_pitchadjust
+tabw_i 6.727172,647,gixdb_pitchadjust
+tabw_i 6.727172,648,gixdb_pitchadjust
+tabw_i 7.1271896,649,gixdb_pitchadjust
+tabw_i 7.1271896,650,gixdb_pitchadjust
+tabw_i 7.1271896,651,gixdb_pitchadjust
+tabw_i 7.5509944,652,gixdb_pitchadjust
+tabw_i 7.5509944,653,gixdb_pitchadjust
+tabw_i 7.5509944,654,gixdb_pitchadjust
+tabw_i 0.03125,655,gixdb_pitchadjust
+tabw_i 0.03125,656,gixdb_pitchadjust
+tabw_i 0.03125,657,gixdb_pitchadjust
+tabw_i 0.03125,658,gixdb_pitchadjust
+tabw_i 0.03310822,659,gixdb_pitchadjust
+tabw_i 0.03310822,660,gixdb_pitchadjust
+tabw_i 0.03310822,661,gixdb_pitchadjust
+tabw_i 0.03310822,662,gixdb_pitchadjust
+tabw_i 0.035076935,663,gixdb_pitchadjust
+tabw_i 0.035076935,664,gixdb_pitchadjust
+tabw_i 0.035076935,665,gixdb_pitchadjust
+tabw_i 0.035076935,666,gixdb_pitchadjust
+tabw_i 0.03716272,667,gixdb_pitchadjust
+tabw_i 0.03716272,668,gixdb_pitchadjust
+tabw_i 0.03716272,669,gixdb_pitchadjust
+tabw_i 0.03716272,670,gixdb_pitchadjust
+tabw_i 0.03937253,671,gixdb_pitchadjust
+tabw_i 0.03937253,672,gixdb_pitchadjust
+tabw_i 0.03937253,673,gixdb_pitchadjust
+tabw_i 0.03937253,674,gixdb_pitchadjust
+tabw_i 0.041713744,675,gixdb_pitchadjust
+tabw_i 0.041713744,676,gixdb_pitchadjust
+tabw_i 0.041713744,677,gixdb_pitchadjust
+tabw_i 0.041713744,678,gixdb_pitchadjust
+tabw_i 0.04419417,679,gixdb_pitchadjust
+tabw_i 0.04419417,680,gixdb_pitchadjust
+tabw_i 0.04419417,681,gixdb_pitchadjust
+tabw_i 0.04419417,682,gixdb_pitchadjust
+tabw_i 0.046822093,683,gixdb_pitchadjust
+tabw_i 0.046822093,684,gixdb_pitchadjust
+tabw_i 0.046822093,685,gixdb_pitchadjust
+tabw_i 0.046822093,686,gixdb_pitchadjust
+tabw_i 0.04960628,687,gixdb_pitchadjust
+tabw_i 0.04960628,688,gixdb_pitchadjust
+tabw_i 0.04960628,689,gixdb_pitchadjust
+tabw_i 0.04960628,690,gixdb_pitchadjust
+tabw_i 0.052556023,691,gixdb_pitchadjust
+tabw_i 0.052556023,692,gixdb_pitchadjust
+tabw_i 0.052556023,693,gixdb_pitchadjust
+tabw_i 0.052556023,694,gixdb_pitchadjust
+tabw_i 0.055681165,695,gixdb_pitchadjust
+tabw_i 0.055681165,696,gixdb_pitchadjust
+tabw_i 0.055681165,697,gixdb_pitchadjust
+tabw_i 0.055681165,698,gixdb_pitchadjust
+tabw_i 0.05899214,699,gixdb_pitchadjust
+tabw_i 0.05899214,700,gixdb_pitchadjust
+tabw_i 0.05899214,701,gixdb_pitchadjust
+tabw_i 0.05899214,702,gixdb_pitchadjust
+tabw_i 0.0625,703,gixdb_pitchadjust
+tabw_i 0.0625,704,gixdb_pitchadjust
+tabw_i 0.0625,705,gixdb_pitchadjust
+tabw_i 0.0625,706,gixdb_pitchadjust
+tabw_i 0.06621644,707,gixdb_pitchadjust
+tabw_i 0.06621644,708,gixdb_pitchadjust
+tabw_i 0.06621644,709,gixdb_pitchadjust
+tabw_i 0.06621644,710,gixdb_pitchadjust
+tabw_i 0.07015387,711,gixdb_pitchadjust
+tabw_i 0.07015387,712,gixdb_pitchadjust
+tabw_i 0.07015387,713,gixdb_pitchadjust
+tabw_i 0.07015387,714,gixdb_pitchadjust
+tabw_i 0.07432544,715,gixdb_pitchadjust
+tabw_i 0.07432544,716,gixdb_pitchadjust
+tabw_i 0.07432544,717,gixdb_pitchadjust
+tabw_i 0.07432544,718,gixdb_pitchadjust
+tabw_i 0.07874506,719,gixdb_pitchadjust
+tabw_i 0.07874506,720,gixdb_pitchadjust
+tabw_i 0.07874506,721,gixdb_pitchadjust
+tabw_i 0.07874506,722,gixdb_pitchadjust
+tabw_i 0.08342749,723,gixdb_pitchadjust
+tabw_i 0.08342749,724,gixdb_pitchadjust
+tabw_i 0.08342749,725,gixdb_pitchadjust
+tabw_i 0.08342749,726,gixdb_pitchadjust
+tabw_i 0.08838834,727,gixdb_pitchadjust
+tabw_i 0.08838834,728,gixdb_pitchadjust
+tabw_i 0.08838834,729,gixdb_pitchadjust
+tabw_i 0.08838834,730,gixdb_pitchadjust
+tabw_i 0.09364419,731,gixdb_pitchadjust
+tabw_i 0.09364419,732,gixdb_pitchadjust
+tabw_i 0.09364419,733,gixdb_pitchadjust
+tabw_i 0.09364419,734,gixdb_pitchadjust
+tabw_i 0.09921256,735,gixdb_pitchadjust
+tabw_i 0.09921256,736,gixdb_pitchadjust
+tabw_i 0.09921256,737,gixdb_pitchadjust
+tabw_i 0.09921256,738,gixdb_pitchadjust
+tabw_i 0.105112046,739,gixdb_pitchadjust
+tabw_i 0.105112046,740,gixdb_pitchadjust
+tabw_i 0.105112046,741,gixdb_pitchadjust
+tabw_i 0.105112046,742,gixdb_pitchadjust
+tabw_i 0.11136233,743,gixdb_pitchadjust
+tabw_i 0.11136233,744,gixdb_pitchadjust
+tabw_i 0.11136233,745,gixdb_pitchadjust
+tabw_i 0.11136233,746,gixdb_pitchadjust
+tabw_i 0.11798428,747,gixdb_pitchadjust
+tabw_i 0.11798428,748,gixdb_pitchadjust
+tabw_i 0.11798428,749,gixdb_pitchadjust
+tabw_i 0.11798428,750,gixdb_pitchadjust
+tabw_i 0.125,751,gixdb_pitchadjust
+tabw_i 0.125,752,gixdb_pitchadjust
+tabw_i 0.125,753,gixdb_pitchadjust
+tabw_i 0.125,754,gixdb_pitchadjust
+tabw_i 0.13243288,755,gixdb_pitchadjust
+tabw_i 0.13243288,756,gixdb_pitchadjust
+tabw_i 0.13243288,757,gixdb_pitchadjust
+tabw_i 0.13243288,758,gixdb_pitchadjust
+tabw_i 0.14030774,759,gixdb_pitchadjust
+tabw_i 0.14030774,760,gixdb_pitchadjust
+tabw_i 0.14030774,761,gixdb_pitchadjust
+tabw_i 0.14030774,762,gixdb_pitchadjust
+tabw_i 0.14865088,763,gixdb_pitchadjust
+tabw_i 0.14865088,764,gixdb_pitchadjust
+tabw_i 0.14865088,765,gixdb_pitchadjust
+tabw_i 0.14865088,766,gixdb_pitchadjust
+tabw_i 0.15749012,767,gixdb_pitchadjust
+tabw_i 0.15749012,768,gixdb_pitchadjust
+tabw_i 0.15749012,769,gixdb_pitchadjust
+tabw_i 0.15749012,770,gixdb_pitchadjust
+tabw_i 0.16685498,771,gixdb_pitchadjust
+tabw_i 0.16685498,772,gixdb_pitchadjust
+tabw_i 0.16685498,773,gixdb_pitchadjust
+tabw_i 0.16685498,774,gixdb_pitchadjust
+tabw_i 0.17677668,775,gixdb_pitchadjust
+tabw_i 0.17677668,776,gixdb_pitchadjust
+tabw_i 0.17677668,777,gixdb_pitchadjust
+tabw_i 0.17677668,778,gixdb_pitchadjust
+tabw_i 0.18728837,779,gixdb_pitchadjust
+tabw_i 0.18728837,780,gixdb_pitchadjust
+tabw_i 0.18728837,781,gixdb_pitchadjust
+tabw_i 0.18728837,782,gixdb_pitchadjust
+tabw_i 0.19842511,783,gixdb_pitchadjust
+tabw_i 0.19842511,784,gixdb_pitchadjust
+tabw_i 0.19842511,785,gixdb_pitchadjust
+tabw_i 0.19842511,786,gixdb_pitchadjust
+tabw_i 0.21022409,787,gixdb_pitchadjust
+tabw_i 0.21022409,788,gixdb_pitchadjust
+tabw_i 0.21022409,789,gixdb_pitchadjust
+tabw_i 0.21022409,790,gixdb_pitchadjust
+tabw_i 0.22272466,791,gixdb_pitchadjust
+tabw_i 0.22272466,792,gixdb_pitchadjust
+tabw_i 0.22272466,793,gixdb_pitchadjust
+tabw_i 0.22272466,794,gixdb_pitchadjust
+tabw_i 0.23596856,795,gixdb_pitchadjust
+tabw_i 0.23596856,796,gixdb_pitchadjust
+tabw_i 0.23596856,797,gixdb_pitchadjust
+tabw_i 0.23596856,798,gixdb_pitchadjust
+tabw_i 0.25,799,gixdb_pitchadjust
+tabw_i 0.25,800,gixdb_pitchadjust
+tabw_i 0.25,801,gixdb_pitchadjust
+tabw_i 0.25,802,gixdb_pitchadjust
+tabw_i 0.26486576,803,gixdb_pitchadjust
+tabw_i 0.26486576,804,gixdb_pitchadjust
+tabw_i 0.26486576,805,gixdb_pitchadjust
+tabw_i 0.26486576,806,gixdb_pitchadjust
+tabw_i 0.28061548,807,gixdb_pitchadjust
+tabw_i 0.28061548,808,gixdb_pitchadjust
+tabw_i 0.28061548,809,gixdb_pitchadjust
+tabw_i 0.28061548,810,gixdb_pitchadjust
+tabw_i 0.29730177,811,gixdb_pitchadjust
+tabw_i 0.29730177,812,gixdb_pitchadjust
+tabw_i 0.29730177,813,gixdb_pitchadjust
+tabw_i 0.29730177,814,gixdb_pitchadjust
+tabw_i 0.31498024,815,gixdb_pitchadjust
+tabw_i 0.31498024,816,gixdb_pitchadjust
+tabw_i 0.31498024,817,gixdb_pitchadjust
+tabw_i 0.31498024,818,gixdb_pitchadjust
+tabw_i 0.33370996,819,gixdb_pitchadjust
+tabw_i 0.33370996,820,gixdb_pitchadjust
+tabw_i 0.33370996,821,gixdb_pitchadjust
+tabw_i 0.33370996,822,gixdb_pitchadjust
+tabw_i 0.35355335,823,gixdb_pitchadjust
+tabw_i 0.35355335,824,gixdb_pitchadjust
+tabw_i 0.35355335,825,gixdb_pitchadjust
+tabw_i 0.35355335,826,gixdb_pitchadjust
+tabw_i 0.37457675,827,gixdb_pitchadjust
+tabw_i 0.37457675,828,gixdb_pitchadjust
+tabw_i 0.37457675,829,gixdb_pitchadjust
+tabw_i 0.37457675,830,gixdb_pitchadjust
+tabw_i 0.39685023,831,gixdb_pitchadjust
+tabw_i 0.39685023,832,gixdb_pitchadjust
+tabw_i 0.39685023,833,gixdb_pitchadjust
+tabw_i 0.39685023,834,gixdb_pitchadjust
+tabw_i 0.42044818,835,gixdb_pitchadjust
+tabw_i 0.42044818,836,gixdb_pitchadjust
+tabw_i 0.42044818,837,gixdb_pitchadjust
+tabw_i 0.42044818,838,gixdb_pitchadjust
+tabw_i 0.44544932,839,gixdb_pitchadjust
+tabw_i 0.44544932,840,gixdb_pitchadjust
+tabw_i 0.44544932,841,gixdb_pitchadjust
+tabw_i 0.44544932,842,gixdb_pitchadjust
+tabw_i 0.47193712,843,gixdb_pitchadjust
+tabw_i 0.47193712,844,gixdb_pitchadjust
+tabw_i 0.47193712,845,gixdb_pitchadjust
+tabw_i 0.47193712,846,gixdb_pitchadjust
+tabw_i 0.5,847,gixdb_pitchadjust
+tabw_i 0.5,848,gixdb_pitchadjust
+tabw_i 0.5,849,gixdb_pitchadjust
+tabw_i 0.5,850,gixdb_pitchadjust
+tabw_i 0.5297315,851,gixdb_pitchadjust
+tabw_i 0.5297315,852,gixdb_pitchadjust
+tabw_i 0.5297315,853,gixdb_pitchadjust
+tabw_i 0.5297315,854,gixdb_pitchadjust
+tabw_i 0.56123096,855,gixdb_pitchadjust
+tabw_i 0.56123096,856,gixdb_pitchadjust
+tabw_i 0.56123096,857,gixdb_pitchadjust
+tabw_i 0.56123096,858,gixdb_pitchadjust
+tabw_i 0.59460354,859,gixdb_pitchadjust
+tabw_i 0.59460354,860,gixdb_pitchadjust
+tabw_i 0.59460354,861,gixdb_pitchadjust
+tabw_i 0.59460354,862,gixdb_pitchadjust
+tabw_i 0.6299605,863,gixdb_pitchadjust
+tabw_i 0.6299605,864,gixdb_pitchadjust
+tabw_i 0.6299605,865,gixdb_pitchadjust
+tabw_i 0.6299605,866,gixdb_pitchadjust
+tabw_i 0.6674199,867,gixdb_pitchadjust
+tabw_i 0.6674199,868,gixdb_pitchadjust
+tabw_i 0.6674199,869,gixdb_pitchadjust
+tabw_i 0.6674199,870,gixdb_pitchadjust
+tabw_i 0.7071067,871,gixdb_pitchadjust
+tabw_i 0.7071067,872,gixdb_pitchadjust
+tabw_i 0.7071067,873,gixdb_pitchadjust
+tabw_i 0.7071067,874,gixdb_pitchadjust
+tabw_i 0.7491535,875,gixdb_pitchadjust
+tabw_i 0.7491535,876,gixdb_pitchadjust
+tabw_i 0.7491535,877,gixdb_pitchadjust
+tabw_i 0.7491535,878,gixdb_pitchadjust
+tabw_i 0.79370046,879,gixdb_pitchadjust
+tabw_i 0.79370046,880,gixdb_pitchadjust
+tabw_i 0.79370046,881,gixdb_pitchadjust
+tabw_i 0.79370046,882,gixdb_pitchadjust
+tabw_i 0.84089637,883,gixdb_pitchadjust
+tabw_i 0.84089637,884,gixdb_pitchadjust
+tabw_i 0.84089637,885,gixdb_pitchadjust
+tabw_i 0.84089637,886,gixdb_pitchadjust
+tabw_i 0.89089864,887,gixdb_pitchadjust
+tabw_i 0.89089864,888,gixdb_pitchadjust
+tabw_i 0.89089864,889,gixdb_pitchadjust
+tabw_i 0.89089864,890,gixdb_pitchadjust
+tabw_i 0.94387424,891,gixdb_pitchadjust
+tabw_i 0.94387424,892,gixdb_pitchadjust
+tabw_i 0.94387424,893,gixdb_pitchadjust
+tabw_i 0.94387424,894,gixdb_pitchadjust
+tabw_i 1,895,gixdb_pitchadjust
+tabw_i 1,896,gixdb_pitchadjust
+tabw_i 1,897,gixdb_pitchadjust
+tabw_i 1,898,gixdb_pitchadjust
+tabw_i 1.059463,899,gixdb_pitchadjust
+tabw_i 0.9438743,900,gixdb_pitchadjust
+tabw_i 0.9438743,901,gixdb_pitchadjust
+tabw_i 1.059463,902,gixdb_pitchadjust
+tabw_i 0.9438743,903,gixdb_pitchadjust
+tabw_i 1.059463,904,gixdb_pitchadjust
+tabw_i 1.059463,905,gixdb_pitchadjust
+tabw_i 0.9438743,906,gixdb_pitchadjust
+tabw_i 1,907,gixdb_pitchadjust
+tabw_i 1,908,gixdb_pitchadjust
+tabw_i 1,909,gixdb_pitchadjust
+tabw_i 1,910,gixdb_pitchadjust
+tabw_i 0.9438743,911,gixdb_pitchadjust
+tabw_i 1.0594631,912,gixdb_pitchadjust
+tabw_i 1.0594631,913,gixdb_pitchadjust
+tabw_i 0.9438743,914,gixdb_pitchadjust
+tabw_i 1.0594631,915,gixdb_pitchadjust
+tabw_i 0.9438743,916,gixdb_pitchadjust
+tabw_i 0.9438743,917,gixdb_pitchadjust
+tabw_i 1.0594631,918,gixdb_pitchadjust
+tabw_i 1,919,gixdb_pitchadjust
+tabw_i 1,920,gixdb_pitchadjust
+tabw_i 1,921,gixdb_pitchadjust
+tabw_i 1,922,gixdb_pitchadjust
+tabw_i 1,923,gixdb_pitchadjust
+tabw_i 1,924,gixdb_pitchadjust
+tabw_i 1,925,gixdb_pitchadjust
+tabw_i 1,926,gixdb_pitchadjust
+tabw_i 1,927,gixdb_pitchadjust
+tabw_i 1.059463,928,gixdb_pitchadjust
+tabw_i 0.9438743,929,gixdb_pitchadjust
+tabw_i 1.059463,930,gixdb_pitchadjust
+tabw_i 0.9438743,931,gixdb_pitchadjust
+tabw_i 1.059463,932,gixdb_pitchadjust
+tabw_i 0.9438743,933,gixdb_pitchadjust
+tabw_i 1.059463,934,gixdb_pitchadjust
+tabw_i 1.059463,935,gixdb_pitchadjust
+tabw_i 0.9438743,936,gixdb_pitchadjust
+tabw_i 0.9438743,937,gixdb_pitchadjust
+tabw_i 1,938,gixdb_pitchadjust
+tabw_i 1,939,gixdb_pitchadjust
+tabw_i 1,940,gixdb_pitchadjust
+tabw_i 1,941,gixdb_pitchadjust
+tabw_i 1,942,gixdb_pitchadjust
+tabw_i 0.9438743,943,gixdb_pitchadjust
+tabw_i 0.9438743,944,gixdb_pitchadjust
+tabw_i 1.0594631,945,gixdb_pitchadjust
+tabw_i 1.0594631,946,gixdb_pitchadjust
+tabw_i 0.9438743,947,gixdb_pitchadjust
+tabw_i 0.9438743,948,gixdb_pitchadjust
+tabw_i 1.0594631,949,gixdb_pitchadjust
+tabw_i 0.9438743,950,gixdb_pitchadjust
+tabw_i 1.0594631,951,gixdb_pitchadjust
+tabw_i 1.0594631,952,gixdb_pitchadjust
+tabw_i 1,953,gixdb_pitchadjust
+tabw_i 1,954,gixdb_pitchadjust
+tabw_i 1,955,gixdb_pitchadjust
+tabw_i 1,956,gixdb_pitchadjust
+tabw_i 1,957,gixdb_pitchadjust
+tabw_i 1.0594631,958,gixdb_pitchadjust
+tabw_i 1.0594631,959,gixdb_pitchadjust
+tabw_i 1.0594631,960,gixdb_pitchadjust
+tabw_i 1.0594631,961,gixdb_pitchadjust
+tabw_i 0.9438743,962,gixdb_pitchadjust
+tabw_i 0.9438743,963,gixdb_pitchadjust
+tabw_i 1.0594631,964,gixdb_pitchadjust
+tabw_i 0.9438743,965,gixdb_pitchadjust
+tabw_i 0.9438743,966,gixdb_pitchadjust
+tabw_i 0.9438743,967,gixdb_pitchadjust
+tabw_i 1,968,gixdb_pitchadjust
+tabw_i 1,969,gixdb_pitchadjust
+tabw_i 1,970,gixdb_pitchadjust
+tabw_i 1,971,gixdb_pitchadjust
+tabw_i 1,972,gixdb_pitchadjust
+tabw_i 1,973,gixdb_pitchadjust
+tabw_i 1,974,gixdb_pitchadjust
+tabw_i 1,975,gixdb_pitchadjust
+tabw_i 1,976,gixdb_pitchadjust
+tabw_i 0.9438743,977,gixdb_pitchadjust
+tabw_i 0.9438743,978,gixdb_pitchadjust
+tabw_i 1.059463,979,gixdb_pitchadjust
+tabw_i 1.059463,980,gixdb_pitchadjust
+tabw_i 1.059463,981,gixdb_pitchadjust
+tabw_i 0.9438743,982,gixdb_pitchadjust
+tabw_i 1.059463,983,gixdb_pitchadjust
+tabw_i 0.9438743,984,gixdb_pitchadjust
+tabw_i 1,985,gixdb_pitchadjust
+tabw_i 1,986,gixdb_pitchadjust
+tabw_i 1,987,gixdb_pitchadjust
+tabw_i 1,988,gixdb_pitchadjust
+tabw_i 0.9438743,989,gixdb_pitchadjust
+tabw_i 1.0594631,990,gixdb_pitchadjust
+tabw_i 1.0594631,991,gixdb_pitchadjust
+tabw_i 1.0594631,992,gixdb_pitchadjust
+tabw_i 0.9438743,993,gixdb_pitchadjust
+tabw_i 0.9438743,994,gixdb_pitchadjust
+tabw_i 1.0594631,995,gixdb_pitchadjust
+tabw_i 0.9438743,996,gixdb_pitchadjust
+tabw_i 1,997,gixdb_pitchadjust
+tabw_i 1,998,gixdb_pitchadjust
+tabw_i 1,999,gixdb_pitchadjust
+tabw_i 1,1000,gixdb_pitchadjust
+tabw_i 1,1001,gixdb_pitchadjust
+tabw_i 1,1002,gixdb_pitchadjust
+tabw_i 1,1003,gixdb_pitchadjust
+tabw_i 1,1004,gixdb_pitchadjust
+tabw_i 1,1005,gixdb_pitchadjust
+tabw_i 1.059463,1006,gixdb_pitchadjust
+tabw_i 1.059463,1007,gixdb_pitchadjust
+tabw_i 0.9438743,1008,gixdb_pitchadjust
+tabw_i 0.9438743,1009,gixdb_pitchadjust
+tabw_i 1.059463,1010,gixdb_pitchadjust
+tabw_i 1.059463,1011,gixdb_pitchadjust
+tabw_i 1.059463,1012,gixdb_pitchadjust
+tabw_i 0.9438743,1013,gixdb_pitchadjust
+tabw_i 0.9438743,1014,gixdb_pitchadjust
+tabw_i 1,1015,gixdb_pitchadjust
+tabw_i 1,1016,gixdb_pitchadjust
+tabw_i 1,1017,gixdb_pitchadjust
+tabw_i 1,1018,gixdb_pitchadjust
+tabw_i 1.0594631,1019,gixdb_pitchadjust
+tabw_i 0.9438743,1020,gixdb_pitchadjust
+tabw_i 0.9438743,1021,gixdb_pitchadjust
+tabw_i 1.0594631,1022,gixdb_pitchadjust
+tabw_i 0.9438743,1023,gixdb_pitchadjust
+tabw_i 0.9438743,1024,gixdb_pitchadjust
+tabw_i 0.9438743,1025,gixdb_pitchadjust
+tabw_i 1.0594631,1026,gixdb_pitchadjust
+tabw_i 1.0594631,1027,gixdb_pitchadjust
+tabw_i 1,1028,gixdb_pitchadjust
+tabw_i 1,1029,gixdb_pitchadjust
+tabw_i 1,1030,gixdb_pitchadjust
+tabw_i 1,1031,gixdb_pitchadjust
+tabw_i 1,1032,gixdb_pitchadjust
+tabw_i 0.9438743,1033,gixdb_pitchadjust
+tabw_i 0.9438743,1034,gixdb_pitchadjust
+tabw_i 0.9438743,1035,gixdb_pitchadjust
+tabw_i 1.0594631,1036,gixdb_pitchadjust
+tabw_i 1.0594631,1037,gixdb_pitchadjust
+tabw_i 1.0594631,1038,gixdb_pitchadjust
+tabw_i 1.0594631,1039,gixdb_pitchadjust
+tabw_i 0.9438743,1040,gixdb_pitchadjust
+tabw_i 1.0594631,1041,gixdb_pitchadjust
+tabw_i 0.9438743,1042,gixdb_pitchadjust
+tabw_i 1,1043,gixdb_pitchadjust
+tabw_i 1,1044,gixdb_pitchadjust
+tabw_i 1,1045,gixdb_pitchadjust
+tabw_i 1,1046,gixdb_pitchadjust
+tabw_i 1,1047,gixdb_pitchadjust
+tabw_i 1,1048,gixdb_pitchadjust
+tabw_i 1,1049,gixdb_pitchadjust
+tabw_i 1,1050,gixdb_pitchadjust
+tabw_i 1,1051,gixdb_pitchadjust
+tabw_i 0.9438743,1052,gixdb_pitchadjust
+tabw_i 0.9438743,1053,gixdb_pitchadjust
+tabw_i 1.059463,1054,gixdb_pitchadjust
+tabw_i 0.9438743,1055,gixdb_pitchadjust
+tabw_i 1.059463,1056,gixdb_pitchadjust
+tabw_i 1.059463,1057,gixdb_pitchadjust
+tabw_i 0.9438743,1058,gixdb_pitchadjust
+tabw_i 1.059463,1059,gixdb_pitchadjust
+tabw_i 1,1060,gixdb_pitchadjust
+tabw_i 1,1061,gixdb_pitchadjust
+tabw_i 1,1062,gixdb_pitchadjust
+tabw_i 1,1063,gixdb_pitchadjust
+tabw_i 0.9438743,1064,gixdb_pitchadjust
+tabw_i 1.0594631,1065,gixdb_pitchadjust
+tabw_i 1.0594631,1066,gixdb_pitchadjust
+tabw_i 1.0594631,1067,gixdb_pitchadjust
+tabw_i 0.9438743,1068,gixdb_pitchadjust
+tabw_i 0.9438743,1069,gixdb_pitchadjust
+tabw_i 1.0594631,1070,gixdb_pitchadjust
+tabw_i 1,1071,gixdb_pitchadjust
+tabw_i 1,1072,gixdb_pitchadjust
+tabw_i 1,1073,gixdb_pitchadjust
+tabw_i 1.0594631,1074,gixdb_pitchadjust
+tabw_i 1.0594631,1075,gixdb_pitchadjust
+tabw_i 1.0594631,1076,gixdb_pitchadjust
+tabw_i 1.122462,1077,gixdb_pitchadjust
+tabw_i 1.122462,1078,gixdb_pitchadjust
+tabw_i 1.122462,1079,gixdb_pitchadjust
+tabw_i 1.1892071,1080,gixdb_pitchadjust
+tabw_i 1.1892071,1081,gixdb_pitchadjust
+tabw_i 1.1892071,1082,gixdb_pitchadjust
+tabw_i 1.259921,1083,gixdb_pitchadjust
+tabw_i 1.259921,1084,gixdb_pitchadjust
+tabw_i 1.259921,1085,gixdb_pitchadjust
+tabw_i 1.3348398,1086,gixdb_pitchadjust
+tabw_i 1.3348398,1087,gixdb_pitchadjust
+tabw_i 1.3348398,1088,gixdb_pitchadjust
+tabw_i 1.4142135,1089,gixdb_pitchadjust
+tabw_i 1.4142135,1090,gixdb_pitchadjust
+tabw_i 1.4142135,1091,gixdb_pitchadjust
+tabw_i 1.498307,1092,gixdb_pitchadjust
+tabw_i 1.498307,1093,gixdb_pitchadjust
+tabw_i 1.498307,1094,gixdb_pitchadjust
+tabw_i 1.5874012,1095,gixdb_pitchadjust
+tabw_i 1.5874012,1096,gixdb_pitchadjust
+tabw_i 1.5874012,1097,gixdb_pitchadjust
+tabw_i 1.6817927,1098,gixdb_pitchadjust
+tabw_i 1.6817927,1099,gixdb_pitchadjust
+tabw_i 1.6817927,1100,gixdb_pitchadjust
+tabw_i 1.7817974,1101,gixdb_pitchadjust
+tabw_i 1.7817974,1102,gixdb_pitchadjust
+tabw_i 1.7817974,1103,gixdb_pitchadjust
+tabw_i 1.8877486,1104,gixdb_pitchadjust
+tabw_i 1.8877486,1105,gixdb_pitchadjust
+tabw_i 1.8877486,1106,gixdb_pitchadjust
+tabw_i 2,1107,gixdb_pitchadjust
+tabw_i 2,1108,gixdb_pitchadjust
+tabw_i 2,1109,gixdb_pitchadjust
+tabw_i 2.1189263,1110,gixdb_pitchadjust
+tabw_i 2.1189263,1111,gixdb_pitchadjust
+tabw_i 2.1189263,1112,gixdb_pitchadjust
+tabw_i 2.244924,1113,gixdb_pitchadjust
+tabw_i 2.244924,1114,gixdb_pitchadjust
+tabw_i 2.244924,1115,gixdb_pitchadjust
+tabw_i 2.3784142,1116,gixdb_pitchadjust
+tabw_i 2.3784142,1117,gixdb_pitchadjust
+tabw_i 2.3784142,1118,gixdb_pitchadjust
+tabw_i 2.519842,1119,gixdb_pitchadjust
+tabw_i 2.519842,1120,gixdb_pitchadjust
+tabw_i 2.519842,1121,gixdb_pitchadjust
+tabw_i 2.6696796,1122,gixdb_pitchadjust
+tabw_i 2.6696796,1123,gixdb_pitchadjust
+tabw_i 2.6696796,1124,gixdb_pitchadjust
+tabw_i 2.828427,1125,gixdb_pitchadjust
+tabw_i 2.828427,1126,gixdb_pitchadjust
+tabw_i 2.828427,1127,gixdb_pitchadjust
+tabw_i 2.996614,1128,gixdb_pitchadjust
+tabw_i 2.996614,1129,gixdb_pitchadjust
+tabw_i 2.996614,1130,gixdb_pitchadjust
+tabw_i 3.1748023,1131,gixdb_pitchadjust
+tabw_i 3.1748023,1132,gixdb_pitchadjust
+tabw_i 3.1748023,1133,gixdb_pitchadjust
+tabw_i 3.3635855,1134,gixdb_pitchadjust
+tabw_i 3.3635855,1135,gixdb_pitchadjust
+tabw_i 3.3635855,1136,gixdb_pitchadjust
+tabw_i 3.5635948,1137,gixdb_pitchadjust
+tabw_i 3.5635948,1138,gixdb_pitchadjust
+tabw_i 3.5635948,1139,gixdb_pitchadjust
+tabw_i 3.7754972,1140,gixdb_pitchadjust
+tabw_i 3.7754972,1141,gixdb_pitchadjust
+tabw_i 3.7754972,1142,gixdb_pitchadjust
+tabw_i 4,1143,gixdb_pitchadjust
+tabw_i 4,1144,gixdb_pitchadjust
+tabw_i 4,1145,gixdb_pitchadjust
+tabw_i 4.2378526,1146,gixdb_pitchadjust
+tabw_i 4.2378526,1147,gixdb_pitchadjust
+tabw_i 4.2378526,1148,gixdb_pitchadjust
+tabw_i 4.489848,1149,gixdb_pitchadjust
+tabw_i 4.489848,1150,gixdb_pitchadjust
+tabw_i 4.489848,1151,gixdb_pitchadjust
+tabw_i 4.7568283,1152,gixdb_pitchadjust
+tabw_i 4.7568283,1153,gixdb_pitchadjust
+tabw_i 4.7568283,1154,gixdb_pitchadjust
+tabw_i 5.039684,1155,gixdb_pitchadjust
+tabw_i 5.039684,1156,gixdb_pitchadjust
+tabw_i 5.039684,1157,gixdb_pitchadjust
+tabw_i 5.3393593,1158,gixdb_pitchadjust
+tabw_i 5.3393593,1159,gixdb_pitchadjust
+tabw_i 5.3393593,1160,gixdb_pitchadjust
+tabw_i 5.656854,1161,gixdb_pitchadjust
+tabw_i 5.656854,1162,gixdb_pitchadjust
+tabw_i 5.656854,1163,gixdb_pitchadjust
+tabw_i 5.993228,1164,gixdb_pitchadjust
+tabw_i 5.993228,1165,gixdb_pitchadjust
+tabw_i 5.993228,1166,gixdb_pitchadjust
+tabw_i 6.3496046,1167,gixdb_pitchadjust
+tabw_i 6.3496046,1168,gixdb_pitchadjust
+tabw_i 6.3496046,1169,gixdb_pitchadjust
+tabw_i 6.727171,1170,gixdb_pitchadjust
+tabw_i 6.727171,1171,gixdb_pitchadjust
+tabw_i 6.727171,1172,gixdb_pitchadjust
+tabw_i 7.1271896,1173,gixdb_pitchadjust
+tabw_i 7.1271896,1174,gixdb_pitchadjust
+tabw_i 7.1271896,1175,gixdb_pitchadjust
+tabw_i 7.5509944,1176,gixdb_pitchadjust
+tabw_i 7.5509944,1177,gixdb_pitchadjust
+tabw_i 7.5509944,1178,gixdb_pitchadjust
+tabw_i 8,1179,gixdb_pitchadjust
+tabw_i 8,1180,gixdb_pitchadjust
+tabw_i 8,1181,gixdb_pitchadjust
+tabw_i 8.475705,1182,gixdb_pitchadjust
+tabw_i 8.475705,1183,gixdb_pitchadjust
+tabw_i 8.475705,1184,gixdb_pitchadjust
+tabw_i 8.979696,1185,gixdb_pitchadjust
+tabw_i 8.979696,1186,gixdb_pitchadjust
+tabw_i 8.979696,1187,gixdb_pitchadjust
+tabw_i 9.513657,1188,gixdb_pitchadjust
+tabw_i 9.513657,1189,gixdb_pitchadjust
+tabw_i 9.513657,1190,gixdb_pitchadjust
diff --git a/site/app/partialemergence/sounds/Kalimba/60.0.mp3 b/site/app/partialemergence/sounds/Kalimba/60.0.mp3 Binary files differnew file mode 100644 index 0000000..63ab3ae --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/60.0.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/60.1.mp3 b/site/app/partialemergence/sounds/Kalimba/60.1.mp3 Binary files differnew file mode 100644 index 0000000..347c5af --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/60.1.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/60.2.mp3 b/site/app/partialemergence/sounds/Kalimba/60.2.mp3 Binary files differnew file mode 100644 index 0000000..f1ddfe7 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/60.2.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/60.3.mp3 b/site/app/partialemergence/sounds/Kalimba/60.3.mp3 Binary files differnew file mode 100644 index 0000000..fd0e300 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/60.3.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/62.0.mp3 b/site/app/partialemergence/sounds/Kalimba/62.0.mp3 Binary files differnew file mode 100644 index 0000000..759075f --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/62.0.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/62.1.mp3 b/site/app/partialemergence/sounds/Kalimba/62.1.mp3 Binary files differnew file mode 100644 index 0000000..c9b023c --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/62.1.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/62.2.mp3 b/site/app/partialemergence/sounds/Kalimba/62.2.mp3 Binary files differnew file mode 100644 index 0000000..0954eea --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/62.2.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/62.3.mp3 b/site/app/partialemergence/sounds/Kalimba/62.3.mp3 Binary files differnew file mode 100644 index 0000000..b8675c7 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/62.3.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/64.0.mp3 b/site/app/partialemergence/sounds/Kalimba/64.0.mp3 Binary files differnew file mode 100644 index 0000000..6f82a28 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/64.0.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/64.1.mp3 b/site/app/partialemergence/sounds/Kalimba/64.1.mp3 Binary files differnew file mode 100644 index 0000000..49ae0f3 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/64.1.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/64.2.mp3 b/site/app/partialemergence/sounds/Kalimba/64.2.mp3 Binary files differnew file mode 100644 index 0000000..4fe11e0 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/64.2.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/64.3.mp3 b/site/app/partialemergence/sounds/Kalimba/64.3.mp3 Binary files differnew file mode 100644 index 0000000..63299a6 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/64.3.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/65.0.mp3 b/site/app/partialemergence/sounds/Kalimba/65.0.mp3 Binary files differnew file mode 100644 index 0000000..744a297 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/65.0.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/65.1.mp3 b/site/app/partialemergence/sounds/Kalimba/65.1.mp3 Binary files differnew file mode 100644 index 0000000..2a87845 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/65.1.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/65.2.mp3 b/site/app/partialemergence/sounds/Kalimba/65.2.mp3 Binary files differnew file mode 100644 index 0000000..d5ab60f --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/65.2.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/65.3.mp3 b/site/app/partialemergence/sounds/Kalimba/65.3.mp3 Binary files differnew file mode 100644 index 0000000..3da5771 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/65.3.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/65.4.mp3 b/site/app/partialemergence/sounds/Kalimba/65.4.mp3 Binary files differnew file mode 100644 index 0000000..95acc43 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/65.4.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/67.0.mp3 b/site/app/partialemergence/sounds/Kalimba/67.0.mp3 Binary files differnew file mode 100644 index 0000000..b5d681d --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/67.0.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/67.1.mp3 b/site/app/partialemergence/sounds/Kalimba/67.1.mp3 Binary files differnew file mode 100644 index 0000000..c80b8f8 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/67.1.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/67.2.mp3 b/site/app/partialemergence/sounds/Kalimba/67.2.mp3 Binary files differnew file mode 100644 index 0000000..eb8e56e --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/67.2.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/67.3.mp3 b/site/app/partialemergence/sounds/Kalimba/67.3.mp3 Binary files differnew file mode 100644 index 0000000..7b16c62 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/67.3.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/67.4.mp3 b/site/app/partialemergence/sounds/Kalimba/67.4.mp3 Binary files differnew file mode 100644 index 0000000..edc4956 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/67.4.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/69.0.mp3 b/site/app/partialemergence/sounds/Kalimba/69.0.mp3 Binary files differnew file mode 100644 index 0000000..b052fba --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/69.0.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/69.1.mp3 b/site/app/partialemergence/sounds/Kalimba/69.1.mp3 Binary files differnew file mode 100644 index 0000000..e9707a3 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/69.1.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/69.2.mp3 b/site/app/partialemergence/sounds/Kalimba/69.2.mp3 Binary files differnew file mode 100644 index 0000000..2481606 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/69.2.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/69.3.mp3 b/site/app/partialemergence/sounds/Kalimba/69.3.mp3 Binary files differnew file mode 100644 index 0000000..ab9f063 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/69.3.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/69.4.mp3 b/site/app/partialemergence/sounds/Kalimba/69.4.mp3 Binary files differnew file mode 100644 index 0000000..f5141ea --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/69.4.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/71.0.mp3 b/site/app/partialemergence/sounds/Kalimba/71.0.mp3 Binary files differnew file mode 100644 index 0000000..b002709 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/71.0.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/71.1.mp3 b/site/app/partialemergence/sounds/Kalimba/71.1.mp3 Binary files differnew file mode 100644 index 0000000..84911f3 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/71.1.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/71.2.mp3 b/site/app/partialemergence/sounds/Kalimba/71.2.mp3 Binary files differnew file mode 100644 index 0000000..1fd314c --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/71.2.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/71.3.mp3 b/site/app/partialemergence/sounds/Kalimba/71.3.mp3 Binary files differnew file mode 100644 index 0000000..b63143d --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/71.3.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/71.4.mp3 b/site/app/partialemergence/sounds/Kalimba/71.4.mp3 Binary files differnew file mode 100644 index 0000000..983f435 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/71.4.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/72.0.mp3 b/site/app/partialemergence/sounds/Kalimba/72.0.mp3 Binary files differnew file mode 100644 index 0000000..2dd622c --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/72.0.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/72.1.mp3 b/site/app/partialemergence/sounds/Kalimba/72.1.mp3 Binary files differnew file mode 100644 index 0000000..df2770a --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/72.1.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/72.2.mp3 b/site/app/partialemergence/sounds/Kalimba/72.2.mp3 Binary files differnew file mode 100644 index 0000000..38b391a --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/72.2.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/72.3.mp3 b/site/app/partialemergence/sounds/Kalimba/72.3.mp3 Binary files differnew file mode 100644 index 0000000..e792a22 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/72.3.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/74.0.mp3 b/site/app/partialemergence/sounds/Kalimba/74.0.mp3 Binary files differnew file mode 100644 index 0000000..56cc890 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/74.0.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/74.1.mp3 b/site/app/partialemergence/sounds/Kalimba/74.1.mp3 Binary files differnew file mode 100644 index 0000000..24e0be3 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/74.1.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/74.2.mp3 b/site/app/partialemergence/sounds/Kalimba/74.2.mp3 Binary files differnew file mode 100644 index 0000000..756bf84 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/74.2.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/74.3.mp3 b/site/app/partialemergence/sounds/Kalimba/74.3.mp3 Binary files differnew file mode 100644 index 0000000..5b86735 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/74.3.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/76.0.mp3 b/site/app/partialemergence/sounds/Kalimba/76.0.mp3 Binary files differnew file mode 100644 index 0000000..6af8e62 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/76.0.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/76.1.mp3 b/site/app/partialemergence/sounds/Kalimba/76.1.mp3 Binary files differnew file mode 100644 index 0000000..e748b9d --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/76.1.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/76.2.mp3 b/site/app/partialemergence/sounds/Kalimba/76.2.mp3 Binary files differnew file mode 100644 index 0000000..7e2e703 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/76.2.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/76.3.mp3 b/site/app/partialemergence/sounds/Kalimba/76.3.mp3 Binary files differnew file mode 100644 index 0000000..3afd998 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/76.3.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/77.0.mp3 b/site/app/partialemergence/sounds/Kalimba/77.0.mp3 Binary files differnew file mode 100644 index 0000000..10526b9 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/77.0.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/77.1.mp3 b/site/app/partialemergence/sounds/Kalimba/77.1.mp3 Binary files differnew file mode 100644 index 0000000..6578b62 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/77.1.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/77.2.mp3 b/site/app/partialemergence/sounds/Kalimba/77.2.mp3 Binary files differnew file mode 100644 index 0000000..2c1d510 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/77.2.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/77.3.mp3 b/site/app/partialemergence/sounds/Kalimba/77.3.mp3 Binary files differnew file mode 100644 index 0000000..bf4ea31 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/77.3.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/77.4.mp3 b/site/app/partialemergence/sounds/Kalimba/77.4.mp3 Binary files differnew file mode 100644 index 0000000..435ee84 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/77.4.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/79.0.mp3 b/site/app/partialemergence/sounds/Kalimba/79.0.mp3 Binary files differnew file mode 100644 index 0000000..73b7bfa --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/79.0.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/79.1.mp3 b/site/app/partialemergence/sounds/Kalimba/79.1.mp3 Binary files differnew file mode 100644 index 0000000..c8e9113 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/79.1.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/79.2.mp3 b/site/app/partialemergence/sounds/Kalimba/79.2.mp3 Binary files differnew file mode 100644 index 0000000..889bccd --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/79.2.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/79.3.mp3 b/site/app/partialemergence/sounds/Kalimba/79.3.mp3 Binary files differnew file mode 100644 index 0000000..31d6efb --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/79.3.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/81.0.mp3 b/site/app/partialemergence/sounds/Kalimba/81.0.mp3 Binary files differnew file mode 100644 index 0000000..c06b8b9 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/81.0.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/81.1.mp3 b/site/app/partialemergence/sounds/Kalimba/81.1.mp3 Binary files differnew file mode 100644 index 0000000..da3bd28 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/81.1.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/81.2.mp3 b/site/app/partialemergence/sounds/Kalimba/81.2.mp3 Binary files differnew file mode 100644 index 0000000..3899002 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/81.2.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/81.3.mp3 b/site/app/partialemergence/sounds/Kalimba/81.3.mp3 Binary files differnew file mode 100644 index 0000000..65851b3 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/81.3.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/81.4.mp3 b/site/app/partialemergence/sounds/Kalimba/81.4.mp3 Binary files differnew file mode 100644 index 0000000..ce5f34e --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/81.4.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/83.0.mp3 b/site/app/partialemergence/sounds/Kalimba/83.0.mp3 Binary files differnew file mode 100644 index 0000000..5a82b39 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/83.0.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/83.1.mp3 b/site/app/partialemergence/sounds/Kalimba/83.1.mp3 Binary files differnew file mode 100644 index 0000000..79781ef --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/83.1.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/83.2.mp3 b/site/app/partialemergence/sounds/Kalimba/83.2.mp3 Binary files differnew file mode 100644 index 0000000..1c4c97b --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/83.2.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/83.3.mp3 b/site/app/partialemergence/sounds/Kalimba/83.3.mp3 Binary files differnew file mode 100644 index 0000000..df816ef --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/83.3.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/83.4.mp3 b/site/app/partialemergence/sounds/Kalimba/83.4.mp3 Binary files differnew file mode 100644 index 0000000..f7cb62c --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/83.4.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/84.0.mp3 b/site/app/partialemergence/sounds/Kalimba/84.0.mp3 Binary files differnew file mode 100644 index 0000000..5bf1e3a --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/84.0.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/84.1.mp3 b/site/app/partialemergence/sounds/Kalimba/84.1.mp3 Binary files differnew file mode 100644 index 0000000..0ce17e8 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/84.1.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/84.2.mp3 b/site/app/partialemergence/sounds/Kalimba/84.2.mp3 Binary files differnew file mode 100644 index 0000000..ac496e0 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/84.2.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/84.3.mp3 b/site/app/partialemergence/sounds/Kalimba/84.3.mp3 Binary files differnew file mode 100644 index 0000000..9c54285 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/84.3.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/86.0.mp3 b/site/app/partialemergence/sounds/Kalimba/86.0.mp3 Binary files differnew file mode 100644 index 0000000..7042234 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/86.0.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/86.1.mp3 b/site/app/partialemergence/sounds/Kalimba/86.1.mp3 Binary files differnew file mode 100644 index 0000000..27b553f --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/86.1.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/86.2.mp3 b/site/app/partialemergence/sounds/Kalimba/86.2.mp3 Binary files differnew file mode 100644 index 0000000..f89a0d7 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/86.2.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/86.3.mp3 b/site/app/partialemergence/sounds/Kalimba/86.3.mp3 Binary files differnew file mode 100644 index 0000000..5124740 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/86.3.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/88.0.mp3 b/site/app/partialemergence/sounds/Kalimba/88.0.mp3 Binary files differnew file mode 100644 index 0000000..3097bac --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/88.0.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/88.1.mp3 b/site/app/partialemergence/sounds/Kalimba/88.1.mp3 Binary files differnew file mode 100644 index 0000000..924d962 --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/88.1.mp3 diff --git a/site/app/partialemergence/sounds/Kalimba/88.2.mp3 b/site/app/partialemergence/sounds/Kalimba/88.2.mp3 Binary files differnew file mode 100644 index 0000000..5fde74f --- /dev/null +++ b/site/app/partialemergence/sounds/Kalimba/88.2.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/68.0.mp3 b/site/app/partialemergence/sounds/MusicBox/68.0.mp3 Binary files differnew file mode 100644 index 0000000..3cba4dd --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/68.0.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/68.1.mp3 b/site/app/partialemergence/sounds/MusicBox/68.1.mp3 Binary files differnew file mode 100644 index 0000000..29943ee --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/68.1.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/68.2.mp3 b/site/app/partialemergence/sounds/MusicBox/68.2.mp3 Binary files differnew file mode 100644 index 0000000..9a25208 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/68.2.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/68.3.mp3 b/site/app/partialemergence/sounds/MusicBox/68.3.mp3 Binary files differnew file mode 100644 index 0000000..4847168 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/68.3.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/68.4.mp3 b/site/app/partialemergence/sounds/MusicBox/68.4.mp3 Binary files differnew file mode 100644 index 0000000..1642bb6 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/68.4.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/68.5.mp3 b/site/app/partialemergence/sounds/MusicBox/68.5.mp3 Binary files differnew file mode 100644 index 0000000..a107d83 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/68.5.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/70.0.mp3 b/site/app/partialemergence/sounds/MusicBox/70.0.mp3 Binary files differnew file mode 100644 index 0000000..695671e --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/70.0.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/70.1.mp3 b/site/app/partialemergence/sounds/MusicBox/70.1.mp3 Binary files differnew file mode 100644 index 0000000..07642e1 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/70.1.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/70.2.mp3 b/site/app/partialemergence/sounds/MusicBox/70.2.mp3 Binary files differnew file mode 100644 index 0000000..c758665 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/70.2.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/70.3.mp3 b/site/app/partialemergence/sounds/MusicBox/70.3.mp3 Binary files differnew file mode 100644 index 0000000..e9a02ed --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/70.3.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/70.4.mp3 b/site/app/partialemergence/sounds/MusicBox/70.4.mp3 Binary files differnew file mode 100644 index 0000000..dea302f --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/70.4.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/72.0.mp3 b/site/app/partialemergence/sounds/MusicBox/72.0.mp3 Binary files differnew file mode 100644 index 0000000..b873e2a --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/72.0.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/72.1.mp3 b/site/app/partialemergence/sounds/MusicBox/72.1.mp3 Binary files differnew file mode 100644 index 0000000..9e6a248 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/72.1.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/72.2.mp3 b/site/app/partialemergence/sounds/MusicBox/72.2.mp3 Binary files differnew file mode 100644 index 0000000..3d13386 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/72.2.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/72.3.mp3 b/site/app/partialemergence/sounds/MusicBox/72.3.mp3 Binary files differnew file mode 100644 index 0000000..d579d7e --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/72.3.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/73.0.mp3 b/site/app/partialemergence/sounds/MusicBox/73.0.mp3 Binary files differnew file mode 100644 index 0000000..103db48 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/73.0.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/73.1.mp3 b/site/app/partialemergence/sounds/MusicBox/73.1.mp3 Binary files differnew file mode 100644 index 0000000..c2dd5b1 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/73.1.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/73.2.mp3 b/site/app/partialemergence/sounds/MusicBox/73.2.mp3 Binary files differnew file mode 100644 index 0000000..5e5ce84 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/73.2.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/75.0.mp3 b/site/app/partialemergence/sounds/MusicBox/75.0.mp3 Binary files differnew file mode 100644 index 0000000..d1af15d --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/75.0.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/75.1.mp3 b/site/app/partialemergence/sounds/MusicBox/75.1.mp3 Binary files differnew file mode 100644 index 0000000..7080ca0 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/75.1.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/75.2.mp3 b/site/app/partialemergence/sounds/MusicBox/75.2.mp3 Binary files differnew file mode 100644 index 0000000..f5a3792 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/75.2.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/77.0.mp3 b/site/app/partialemergence/sounds/MusicBox/77.0.mp3 Binary files differnew file mode 100644 index 0000000..5258d3e --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/77.0.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/77.1.mp3 b/site/app/partialemergence/sounds/MusicBox/77.1.mp3 Binary files differnew file mode 100644 index 0000000..72dcd0b --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/77.1.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/77.2.mp3 b/site/app/partialemergence/sounds/MusicBox/77.2.mp3 Binary files differnew file mode 100644 index 0000000..141a6f7 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/77.2.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/77.3.mp3 b/site/app/partialemergence/sounds/MusicBox/77.3.mp3 Binary files differnew file mode 100644 index 0000000..8394958 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/77.3.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/79.0.mp3 b/site/app/partialemergence/sounds/MusicBox/79.0.mp3 Binary files differnew file mode 100644 index 0000000..cf3d403 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/79.0.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/79.1.mp3 b/site/app/partialemergence/sounds/MusicBox/79.1.mp3 Binary files differnew file mode 100644 index 0000000..e4aadb0 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/79.1.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/79.2.mp3 b/site/app/partialemergence/sounds/MusicBox/79.2.mp3 Binary files differnew file mode 100644 index 0000000..2fc69d2 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/79.2.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/79.3.mp3 b/site/app/partialemergence/sounds/MusicBox/79.3.mp3 Binary files differnew file mode 100644 index 0000000..b787a4a --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/79.3.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/80.0.mp3 b/site/app/partialemergence/sounds/MusicBox/80.0.mp3 Binary files differnew file mode 100644 index 0000000..a47d5d9 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/80.0.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/80.1.mp3 b/site/app/partialemergence/sounds/MusicBox/80.1.mp3 Binary files differnew file mode 100644 index 0000000..a92072a --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/80.1.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/80.2.mp3 b/site/app/partialemergence/sounds/MusicBox/80.2.mp3 Binary files differnew file mode 100644 index 0000000..7172e56 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/80.2.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/80.3.mp3 b/site/app/partialemergence/sounds/MusicBox/80.3.mp3 Binary files differnew file mode 100644 index 0000000..8bd3431 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/80.3.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/82.0.mp3 b/site/app/partialemergence/sounds/MusicBox/82.0.mp3 Binary files differnew file mode 100644 index 0000000..def26fb --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/82.0.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/82.1.mp3 b/site/app/partialemergence/sounds/MusicBox/82.1.mp3 Binary files differnew file mode 100644 index 0000000..12c104d --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/82.1.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/82.2.mp3 b/site/app/partialemergence/sounds/MusicBox/82.2.mp3 Binary files differnew file mode 100644 index 0000000..b1b6604 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/82.2.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/82.3.mp3 b/site/app/partialemergence/sounds/MusicBox/82.3.mp3 Binary files differnew file mode 100644 index 0000000..5d5927f --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/82.3.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/84.0.mp3 b/site/app/partialemergence/sounds/MusicBox/84.0.mp3 Binary files differnew file mode 100644 index 0000000..94f7da7 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/84.0.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/84.1.mp3 b/site/app/partialemergence/sounds/MusicBox/84.1.mp3 Binary files differnew file mode 100644 index 0000000..14e9e13 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/84.1.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/84.2.mp3 b/site/app/partialemergence/sounds/MusicBox/84.2.mp3 Binary files differnew file mode 100644 index 0000000..848c535 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/84.2.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/84.3.mp3 b/site/app/partialemergence/sounds/MusicBox/84.3.mp3 Binary files differnew file mode 100644 index 0000000..89d65e4 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/84.3.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/85.0.mp3 b/site/app/partialemergence/sounds/MusicBox/85.0.mp3 Binary files differnew file mode 100644 index 0000000..f458a73 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/85.0.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/85.1.mp3 b/site/app/partialemergence/sounds/MusicBox/85.1.mp3 Binary files differnew file mode 100644 index 0000000..373c982 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/85.1.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/85.2.mp3 b/site/app/partialemergence/sounds/MusicBox/85.2.mp3 Binary files differnew file mode 100644 index 0000000..2ecf8fd --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/85.2.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/85.3.mp3 b/site/app/partialemergence/sounds/MusicBox/85.3.mp3 Binary files differnew file mode 100644 index 0000000..1820904 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/85.3.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/87.0.mp3 b/site/app/partialemergence/sounds/MusicBox/87.0.mp3 Binary files differnew file mode 100644 index 0000000..252b814 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/87.0.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/87.1.mp3 b/site/app/partialemergence/sounds/MusicBox/87.1.mp3 Binary files differnew file mode 100644 index 0000000..c9e28af --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/87.1.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/87.2.mp3 b/site/app/partialemergence/sounds/MusicBox/87.2.mp3 Binary files differnew file mode 100644 index 0000000..4ba0166 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/87.2.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/87.3.mp3 b/site/app/partialemergence/sounds/MusicBox/87.3.mp3 Binary files differnew file mode 100644 index 0000000..ea639a4 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/87.3.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/87.4.mp3 b/site/app/partialemergence/sounds/MusicBox/87.4.mp3 Binary files differnew file mode 100644 index 0000000..156d74b --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/87.4.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/89.0.mp3 b/site/app/partialemergence/sounds/MusicBox/89.0.mp3 Binary files differnew file mode 100644 index 0000000..14bae17 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/89.0.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/89.1.mp3 b/site/app/partialemergence/sounds/MusicBox/89.1.mp3 Binary files differnew file mode 100644 index 0000000..a1b2066 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/89.1.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/89.2.mp3 b/site/app/partialemergence/sounds/MusicBox/89.2.mp3 Binary files differnew file mode 100644 index 0000000..099b672 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/89.2.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/89.3.mp3 b/site/app/partialemergence/sounds/MusicBox/89.3.mp3 Binary files differnew file mode 100644 index 0000000..eb3887c --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/89.3.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/91.0.mp3 b/site/app/partialemergence/sounds/MusicBox/91.0.mp3 Binary files differnew file mode 100644 index 0000000..99c5294 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/91.0.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/91.1.mp3 b/site/app/partialemergence/sounds/MusicBox/91.1.mp3 Binary files differnew file mode 100644 index 0000000..b91a4d6 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/91.1.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/91.2.mp3 b/site/app/partialemergence/sounds/MusicBox/91.2.mp3 Binary files differnew file mode 100644 index 0000000..0eea22a --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/91.2.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/92.0.mp3 b/site/app/partialemergence/sounds/MusicBox/92.0.mp3 Binary files differnew file mode 100644 index 0000000..f41ea47 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/92.0.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/92.1.mp3 b/site/app/partialemergence/sounds/MusicBox/92.1.mp3 Binary files differnew file mode 100644 index 0000000..9c4f180 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/92.1.mp3 diff --git a/site/app/partialemergence/sounds/MusicBox/92.2.mp3 b/site/app/partialemergence/sounds/MusicBox/92.2.mp3 Binary files differnew file mode 100644 index 0000000..09a7c82 --- /dev/null +++ b/site/app/partialemergence/sounds/MusicBox/92.2.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/1.mp3 b/site/app/partialemergence/sounds/Water/Droplets/1.mp3 Binary files differnew file mode 100644 index 0000000..b4f0b98 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/1.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/10.mp3 b/site/app/partialemergence/sounds/Water/Droplets/10.mp3 Binary files differnew file mode 100644 index 0000000..8568013 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/10.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/100.mp3 b/site/app/partialemergence/sounds/Water/Droplets/100.mp3 Binary files differnew file mode 100644 index 0000000..9208d12 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/100.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/101.mp3 b/site/app/partialemergence/sounds/Water/Droplets/101.mp3 Binary files differnew file mode 100644 index 0000000..245a189 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/101.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/102.mp3 b/site/app/partialemergence/sounds/Water/Droplets/102.mp3 Binary files differnew file mode 100644 index 0000000..d163f03 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/102.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/103.mp3 b/site/app/partialemergence/sounds/Water/Droplets/103.mp3 Binary files differnew file mode 100644 index 0000000..6ac3fe6 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/103.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/104.mp3 b/site/app/partialemergence/sounds/Water/Droplets/104.mp3 Binary files differnew file mode 100644 index 0000000..1ac83c9 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/104.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/105.mp3 b/site/app/partialemergence/sounds/Water/Droplets/105.mp3 Binary files differnew file mode 100644 index 0000000..8c91dab --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/105.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/106.mp3 b/site/app/partialemergence/sounds/Water/Droplets/106.mp3 Binary files differnew file mode 100644 index 0000000..fcf4cff --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/106.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/107.mp3 b/site/app/partialemergence/sounds/Water/Droplets/107.mp3 Binary files differnew file mode 100644 index 0000000..a2b7d4c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/107.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/108.mp3 b/site/app/partialemergence/sounds/Water/Droplets/108.mp3 Binary files differnew file mode 100644 index 0000000..0ae741a --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/108.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/109.mp3 b/site/app/partialemergence/sounds/Water/Droplets/109.mp3 Binary files differnew file mode 100644 index 0000000..96cb9a5 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/109.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/11.mp3 b/site/app/partialemergence/sounds/Water/Droplets/11.mp3 Binary files differnew file mode 100644 index 0000000..4d720fa --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/11.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/110.mp3 b/site/app/partialemergence/sounds/Water/Droplets/110.mp3 Binary files differnew file mode 100644 index 0000000..a6fc5ca --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/110.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/111.mp3 b/site/app/partialemergence/sounds/Water/Droplets/111.mp3 Binary files differnew file mode 100644 index 0000000..d0db885 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/111.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/112.mp3 b/site/app/partialemergence/sounds/Water/Droplets/112.mp3 Binary files differnew file mode 100644 index 0000000..f34046f --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/112.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/113.mp3 b/site/app/partialemergence/sounds/Water/Droplets/113.mp3 Binary files differnew file mode 100644 index 0000000..9dacb68 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/113.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/114.mp3 b/site/app/partialemergence/sounds/Water/Droplets/114.mp3 Binary files differnew file mode 100644 index 0000000..3a35979 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/114.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/115.mp3 b/site/app/partialemergence/sounds/Water/Droplets/115.mp3 Binary files differnew file mode 100644 index 0000000..602c674 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/115.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/116.mp3 b/site/app/partialemergence/sounds/Water/Droplets/116.mp3 Binary files differnew file mode 100644 index 0000000..ebf997f --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/116.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/117.mp3 b/site/app/partialemergence/sounds/Water/Droplets/117.mp3 Binary files differnew file mode 100644 index 0000000..9003976 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/117.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/118.mp3 b/site/app/partialemergence/sounds/Water/Droplets/118.mp3 Binary files differnew file mode 100644 index 0000000..97134d8 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/118.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/119.mp3 b/site/app/partialemergence/sounds/Water/Droplets/119.mp3 Binary files differnew file mode 100644 index 0000000..511eec9 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/119.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/12.mp3 b/site/app/partialemergence/sounds/Water/Droplets/12.mp3 Binary files differnew file mode 100644 index 0000000..00d30a0 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/12.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/120.mp3 b/site/app/partialemergence/sounds/Water/Droplets/120.mp3 Binary files differnew file mode 100644 index 0000000..20febc9 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/120.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/121.mp3 b/site/app/partialemergence/sounds/Water/Droplets/121.mp3 Binary files differnew file mode 100644 index 0000000..3418a9d --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/121.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/122.mp3 b/site/app/partialemergence/sounds/Water/Droplets/122.mp3 Binary files differnew file mode 100644 index 0000000..5610087 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/122.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/123.mp3 b/site/app/partialemergence/sounds/Water/Droplets/123.mp3 Binary files differnew file mode 100644 index 0000000..6c94232 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/123.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/124.mp3 b/site/app/partialemergence/sounds/Water/Droplets/124.mp3 Binary files differnew file mode 100644 index 0000000..6ae202e --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/124.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/125.mp3 b/site/app/partialemergence/sounds/Water/Droplets/125.mp3 Binary files differnew file mode 100644 index 0000000..6347a24 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/125.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/126.mp3 b/site/app/partialemergence/sounds/Water/Droplets/126.mp3 Binary files differnew file mode 100644 index 0000000..6acefb0 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/126.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/127.mp3 b/site/app/partialemergence/sounds/Water/Droplets/127.mp3 Binary files differnew file mode 100644 index 0000000..a3107f7 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/127.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/128.mp3 b/site/app/partialemergence/sounds/Water/Droplets/128.mp3 Binary files differnew file mode 100644 index 0000000..38ef2c8 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/128.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/129.mp3 b/site/app/partialemergence/sounds/Water/Droplets/129.mp3 Binary files differnew file mode 100644 index 0000000..9ed1ebe --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/129.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/13.mp3 b/site/app/partialemergence/sounds/Water/Droplets/13.mp3 Binary files differnew file mode 100644 index 0000000..4969bb3 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/13.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/130.mp3 b/site/app/partialemergence/sounds/Water/Droplets/130.mp3 Binary files differnew file mode 100644 index 0000000..c94dc91 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/130.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/131.mp3 b/site/app/partialemergence/sounds/Water/Droplets/131.mp3 Binary files differnew file mode 100644 index 0000000..e6f6a25 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/131.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/132.mp3 b/site/app/partialemergence/sounds/Water/Droplets/132.mp3 Binary files differnew file mode 100644 index 0000000..e1fc426 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/132.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/133.mp3 b/site/app/partialemergence/sounds/Water/Droplets/133.mp3 Binary files differnew file mode 100644 index 0000000..64025a7 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/133.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/134.mp3 b/site/app/partialemergence/sounds/Water/Droplets/134.mp3 Binary files differnew file mode 100644 index 0000000..74a4e02 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/134.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/135.mp3 b/site/app/partialemergence/sounds/Water/Droplets/135.mp3 Binary files differnew file mode 100644 index 0000000..1942484 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/135.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/136.mp3 b/site/app/partialemergence/sounds/Water/Droplets/136.mp3 Binary files differnew file mode 100644 index 0000000..39e79fe --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/136.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/137.mp3 b/site/app/partialemergence/sounds/Water/Droplets/137.mp3 Binary files differnew file mode 100644 index 0000000..e996eb3 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/137.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/138.mp3 b/site/app/partialemergence/sounds/Water/Droplets/138.mp3 Binary files differnew file mode 100644 index 0000000..b6e286c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/138.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/139.mp3 b/site/app/partialemergence/sounds/Water/Droplets/139.mp3 Binary files differnew file mode 100644 index 0000000..3bbc8c1 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/139.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/14.mp3 b/site/app/partialemergence/sounds/Water/Droplets/14.mp3 Binary files differnew file mode 100644 index 0000000..3a27d98 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/14.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/140.mp3 b/site/app/partialemergence/sounds/Water/Droplets/140.mp3 Binary files differnew file mode 100644 index 0000000..cfd9548 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/140.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/141.mp3 b/site/app/partialemergence/sounds/Water/Droplets/141.mp3 Binary files differnew file mode 100644 index 0000000..4354acd --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/141.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/142.mp3 b/site/app/partialemergence/sounds/Water/Droplets/142.mp3 Binary files differnew file mode 100644 index 0000000..60ee6db --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/142.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/143.mp3 b/site/app/partialemergence/sounds/Water/Droplets/143.mp3 Binary files differnew file mode 100644 index 0000000..c982204 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/143.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/144.mp3 b/site/app/partialemergence/sounds/Water/Droplets/144.mp3 Binary files differnew file mode 100644 index 0000000..6473048 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/144.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/145.mp3 b/site/app/partialemergence/sounds/Water/Droplets/145.mp3 Binary files differnew file mode 100644 index 0000000..fbfa59d --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/145.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/146.mp3 b/site/app/partialemergence/sounds/Water/Droplets/146.mp3 Binary files differnew file mode 100644 index 0000000..80b1535 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/146.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/147.mp3 b/site/app/partialemergence/sounds/Water/Droplets/147.mp3 Binary files differnew file mode 100644 index 0000000..bf60d3f --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/147.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/148.mp3 b/site/app/partialemergence/sounds/Water/Droplets/148.mp3 Binary files differnew file mode 100644 index 0000000..5047271 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/148.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/149.mp3 b/site/app/partialemergence/sounds/Water/Droplets/149.mp3 Binary files differnew file mode 100644 index 0000000..8540c7f --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/149.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/15.mp3 b/site/app/partialemergence/sounds/Water/Droplets/15.mp3 Binary files differnew file mode 100644 index 0000000..7cc1f1c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/15.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/150.mp3 b/site/app/partialemergence/sounds/Water/Droplets/150.mp3 Binary files differnew file mode 100644 index 0000000..86614d4 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/150.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/151.mp3 b/site/app/partialemergence/sounds/Water/Droplets/151.mp3 Binary files differnew file mode 100644 index 0000000..c8c53ea --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/151.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/152.mp3 b/site/app/partialemergence/sounds/Water/Droplets/152.mp3 Binary files differnew file mode 100644 index 0000000..db1edd2 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/152.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/153.mp3 b/site/app/partialemergence/sounds/Water/Droplets/153.mp3 Binary files differnew file mode 100644 index 0000000..fbec12f --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/153.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/154.mp3 b/site/app/partialemergence/sounds/Water/Droplets/154.mp3 Binary files differnew file mode 100644 index 0000000..f9366ac --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/154.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/155.mp3 b/site/app/partialemergence/sounds/Water/Droplets/155.mp3 Binary files differnew file mode 100644 index 0000000..c1c272f --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/155.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/156.mp3 b/site/app/partialemergence/sounds/Water/Droplets/156.mp3 Binary files differnew file mode 100644 index 0000000..16fa0bb --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/156.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/157.mp3 b/site/app/partialemergence/sounds/Water/Droplets/157.mp3 Binary files differnew file mode 100644 index 0000000..024afd6 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/157.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/158.mp3 b/site/app/partialemergence/sounds/Water/Droplets/158.mp3 Binary files differnew file mode 100644 index 0000000..f4d89c3 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/158.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/159.mp3 b/site/app/partialemergence/sounds/Water/Droplets/159.mp3 Binary files differnew file mode 100644 index 0000000..61e162c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/159.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/16.mp3 b/site/app/partialemergence/sounds/Water/Droplets/16.mp3 Binary files differnew file mode 100644 index 0000000..b441307 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/16.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/160.mp3 b/site/app/partialemergence/sounds/Water/Droplets/160.mp3 Binary files differnew file mode 100644 index 0000000..72109b2 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/160.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/161.mp3 b/site/app/partialemergence/sounds/Water/Droplets/161.mp3 Binary files differnew file mode 100644 index 0000000..5f45a7e --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/161.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/162.mp3 b/site/app/partialemergence/sounds/Water/Droplets/162.mp3 Binary files differnew file mode 100644 index 0000000..437d56b --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/162.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/163.mp3 b/site/app/partialemergence/sounds/Water/Droplets/163.mp3 Binary files differnew file mode 100644 index 0000000..107cb3c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/163.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/164.mp3 b/site/app/partialemergence/sounds/Water/Droplets/164.mp3 Binary files differnew file mode 100644 index 0000000..5d9c3ee --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/164.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/165.mp3 b/site/app/partialemergence/sounds/Water/Droplets/165.mp3 Binary files differnew file mode 100644 index 0000000..14be4ae --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/165.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/166.mp3 b/site/app/partialemergence/sounds/Water/Droplets/166.mp3 Binary files differnew file mode 100644 index 0000000..824d646 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/166.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/167.mp3 b/site/app/partialemergence/sounds/Water/Droplets/167.mp3 Binary files differnew file mode 100644 index 0000000..bcce9f1 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/167.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/168.mp3 b/site/app/partialemergence/sounds/Water/Droplets/168.mp3 Binary files differnew file mode 100644 index 0000000..5405da2 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/168.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/169.mp3 b/site/app/partialemergence/sounds/Water/Droplets/169.mp3 Binary files differnew file mode 100644 index 0000000..bc1cf68 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/169.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/17.mp3 b/site/app/partialemergence/sounds/Water/Droplets/17.mp3 Binary files differnew file mode 100644 index 0000000..c785d99 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/17.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/170.mp3 b/site/app/partialemergence/sounds/Water/Droplets/170.mp3 Binary files differnew file mode 100644 index 0000000..3235ff7 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/170.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/171.mp3 b/site/app/partialemergence/sounds/Water/Droplets/171.mp3 Binary files differnew file mode 100644 index 0000000..1aacc16 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/171.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/172.mp3 b/site/app/partialemergence/sounds/Water/Droplets/172.mp3 Binary files differnew file mode 100644 index 0000000..0b07f05 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/172.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/173.mp3 b/site/app/partialemergence/sounds/Water/Droplets/173.mp3 Binary files differnew file mode 100644 index 0000000..30df4ea --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/173.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/174.mp3 b/site/app/partialemergence/sounds/Water/Droplets/174.mp3 Binary files differnew file mode 100644 index 0000000..641214e --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/174.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/175.mp3 b/site/app/partialemergence/sounds/Water/Droplets/175.mp3 Binary files differnew file mode 100644 index 0000000..b40e8f0 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/175.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/176.mp3 b/site/app/partialemergence/sounds/Water/Droplets/176.mp3 Binary files differnew file mode 100644 index 0000000..193e005 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/176.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/177.mp3 b/site/app/partialemergence/sounds/Water/Droplets/177.mp3 Binary files differnew file mode 100644 index 0000000..8e48c1c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/177.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/178.mp3 b/site/app/partialemergence/sounds/Water/Droplets/178.mp3 Binary files differnew file mode 100644 index 0000000..2182c92 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/178.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/179.mp3 b/site/app/partialemergence/sounds/Water/Droplets/179.mp3 Binary files differnew file mode 100644 index 0000000..571603d --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/179.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/18.mp3 b/site/app/partialemergence/sounds/Water/Droplets/18.mp3 Binary files differnew file mode 100644 index 0000000..1a147bb --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/18.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/180.mp3 b/site/app/partialemergence/sounds/Water/Droplets/180.mp3 Binary files differnew file mode 100644 index 0000000..c3ee6ec --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/180.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/181.mp3 b/site/app/partialemergence/sounds/Water/Droplets/181.mp3 Binary files differnew file mode 100644 index 0000000..4d93cbe --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/181.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/182.mp3 b/site/app/partialemergence/sounds/Water/Droplets/182.mp3 Binary files differnew file mode 100644 index 0000000..a5faa54 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/182.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/183.mp3 b/site/app/partialemergence/sounds/Water/Droplets/183.mp3 Binary files differnew file mode 100644 index 0000000..7f09888 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/183.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/184.mp3 b/site/app/partialemergence/sounds/Water/Droplets/184.mp3 Binary files differnew file mode 100644 index 0000000..5659860 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/184.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/185.mp3 b/site/app/partialemergence/sounds/Water/Droplets/185.mp3 Binary files differnew file mode 100644 index 0000000..88961dc --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/185.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/186.mp3 b/site/app/partialemergence/sounds/Water/Droplets/186.mp3 Binary files differnew file mode 100644 index 0000000..4082715 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/186.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/187.mp3 b/site/app/partialemergence/sounds/Water/Droplets/187.mp3 Binary files differnew file mode 100644 index 0000000..d61dabb --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/187.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/188.mp3 b/site/app/partialemergence/sounds/Water/Droplets/188.mp3 Binary files differnew file mode 100644 index 0000000..491371a --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/188.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/189.mp3 b/site/app/partialemergence/sounds/Water/Droplets/189.mp3 Binary files differnew file mode 100644 index 0000000..89d3dec --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/189.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/19.mp3 b/site/app/partialemergence/sounds/Water/Droplets/19.mp3 Binary files differnew file mode 100644 index 0000000..65ea735 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/19.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/190.mp3 b/site/app/partialemergence/sounds/Water/Droplets/190.mp3 Binary files differnew file mode 100644 index 0000000..7793dbb --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/190.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/191.mp3 b/site/app/partialemergence/sounds/Water/Droplets/191.mp3 Binary files differnew file mode 100644 index 0000000..d0fbc3d --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/191.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/192.mp3 b/site/app/partialemergence/sounds/Water/Droplets/192.mp3 Binary files differnew file mode 100644 index 0000000..3bd54e5 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/192.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/193.mp3 b/site/app/partialemergence/sounds/Water/Droplets/193.mp3 Binary files differnew file mode 100644 index 0000000..5e17fff --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/193.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/194.mp3 b/site/app/partialemergence/sounds/Water/Droplets/194.mp3 Binary files differnew file mode 100644 index 0000000..72ccc55 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/194.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/195.mp3 b/site/app/partialemergence/sounds/Water/Droplets/195.mp3 Binary files differnew file mode 100644 index 0000000..f147a05 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/195.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/196.mp3 b/site/app/partialemergence/sounds/Water/Droplets/196.mp3 Binary files differnew file mode 100644 index 0000000..79a31ef --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/196.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/197.mp3 b/site/app/partialemergence/sounds/Water/Droplets/197.mp3 Binary files differnew file mode 100644 index 0000000..bd79dc5 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/197.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/198.mp3 b/site/app/partialemergence/sounds/Water/Droplets/198.mp3 Binary files differnew file mode 100644 index 0000000..1027cc0 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/198.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/199.mp3 b/site/app/partialemergence/sounds/Water/Droplets/199.mp3 Binary files differnew file mode 100644 index 0000000..384dacb --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/199.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/2.mp3 b/site/app/partialemergence/sounds/Water/Droplets/2.mp3 Binary files differnew file mode 100644 index 0000000..251f5aa --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/2.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/20.mp3 b/site/app/partialemergence/sounds/Water/Droplets/20.mp3 Binary files differnew file mode 100644 index 0000000..1c14b38 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/20.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/200.mp3 b/site/app/partialemergence/sounds/Water/Droplets/200.mp3 Binary files differnew file mode 100644 index 0000000..1fa9685 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/200.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/201.mp3 b/site/app/partialemergence/sounds/Water/Droplets/201.mp3 Binary files differnew file mode 100644 index 0000000..ad7579d --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/201.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/202.mp3 b/site/app/partialemergence/sounds/Water/Droplets/202.mp3 Binary files differnew file mode 100644 index 0000000..f23980b --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/202.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/203.mp3 b/site/app/partialemergence/sounds/Water/Droplets/203.mp3 Binary files differnew file mode 100644 index 0000000..431ca56 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/203.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/204.mp3 b/site/app/partialemergence/sounds/Water/Droplets/204.mp3 Binary files differnew file mode 100644 index 0000000..a327123 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/204.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/205.mp3 b/site/app/partialemergence/sounds/Water/Droplets/205.mp3 Binary files differnew file mode 100644 index 0000000..8095ab0 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/205.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/206.mp3 b/site/app/partialemergence/sounds/Water/Droplets/206.mp3 Binary files differnew file mode 100644 index 0000000..3f70218 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/206.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/207.mp3 b/site/app/partialemergence/sounds/Water/Droplets/207.mp3 Binary files differnew file mode 100644 index 0000000..7e22b0e --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/207.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/208.mp3 b/site/app/partialemergence/sounds/Water/Droplets/208.mp3 Binary files differnew file mode 100644 index 0000000..e5c5763 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/208.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/209.mp3 b/site/app/partialemergence/sounds/Water/Droplets/209.mp3 Binary files differnew file mode 100644 index 0000000..2aa7463 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/209.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/21.mp3 b/site/app/partialemergence/sounds/Water/Droplets/21.mp3 Binary files differnew file mode 100644 index 0000000..7eda693 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/21.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/210.mp3 b/site/app/partialemergence/sounds/Water/Droplets/210.mp3 Binary files differnew file mode 100644 index 0000000..46b9d22 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/210.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/211.mp3 b/site/app/partialemergence/sounds/Water/Droplets/211.mp3 Binary files differnew file mode 100644 index 0000000..1b2d79f --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/211.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/212.mp3 b/site/app/partialemergence/sounds/Water/Droplets/212.mp3 Binary files differnew file mode 100644 index 0000000..f38a38b --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/212.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/213.mp3 b/site/app/partialemergence/sounds/Water/Droplets/213.mp3 Binary files differnew file mode 100644 index 0000000..2c17a95 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/213.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/214.mp3 b/site/app/partialemergence/sounds/Water/Droplets/214.mp3 Binary files differnew file mode 100644 index 0000000..de5f549 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/214.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/215.mp3 b/site/app/partialemergence/sounds/Water/Droplets/215.mp3 Binary files differnew file mode 100644 index 0000000..72dd43e --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/215.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/216.mp3 b/site/app/partialemergence/sounds/Water/Droplets/216.mp3 Binary files differnew file mode 100644 index 0000000..ac2fd00 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/216.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/217.mp3 b/site/app/partialemergence/sounds/Water/Droplets/217.mp3 Binary files differnew file mode 100644 index 0000000..47d3af1 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/217.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/218.mp3 b/site/app/partialemergence/sounds/Water/Droplets/218.mp3 Binary files differnew file mode 100644 index 0000000..33d7396 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/218.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/219.mp3 b/site/app/partialemergence/sounds/Water/Droplets/219.mp3 Binary files differnew file mode 100644 index 0000000..35996e1 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/219.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/22.mp3 b/site/app/partialemergence/sounds/Water/Droplets/22.mp3 Binary files differnew file mode 100644 index 0000000..96668cf --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/22.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/220.mp3 b/site/app/partialemergence/sounds/Water/Droplets/220.mp3 Binary files differnew file mode 100644 index 0000000..a9c02c4 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/220.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/221.mp3 b/site/app/partialemergence/sounds/Water/Droplets/221.mp3 Binary files differnew file mode 100644 index 0000000..444c48a --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/221.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/222.mp3 b/site/app/partialemergence/sounds/Water/Droplets/222.mp3 Binary files differnew file mode 100644 index 0000000..7c43205 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/222.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/223.mp3 b/site/app/partialemergence/sounds/Water/Droplets/223.mp3 Binary files differnew file mode 100644 index 0000000..cd7f5a1 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/223.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/224.mp3 b/site/app/partialemergence/sounds/Water/Droplets/224.mp3 Binary files differnew file mode 100644 index 0000000..1d085ab --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/224.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/225.mp3 b/site/app/partialemergence/sounds/Water/Droplets/225.mp3 Binary files differnew file mode 100644 index 0000000..f031965 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/225.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/226.mp3 b/site/app/partialemergence/sounds/Water/Droplets/226.mp3 Binary files differnew file mode 100644 index 0000000..4ce8c42 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/226.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/227.mp3 b/site/app/partialemergence/sounds/Water/Droplets/227.mp3 Binary files differnew file mode 100644 index 0000000..8b7f0c9 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/227.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/228.mp3 b/site/app/partialemergence/sounds/Water/Droplets/228.mp3 Binary files differnew file mode 100644 index 0000000..6c2a9ec --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/228.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/229.mp3 b/site/app/partialemergence/sounds/Water/Droplets/229.mp3 Binary files differnew file mode 100644 index 0000000..5dda72a --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/229.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/23.mp3 b/site/app/partialemergence/sounds/Water/Droplets/23.mp3 Binary files differnew file mode 100644 index 0000000..5c752ce --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/23.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/230.mp3 b/site/app/partialemergence/sounds/Water/Droplets/230.mp3 Binary files differnew file mode 100644 index 0000000..6a40553 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/230.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/231.mp3 b/site/app/partialemergence/sounds/Water/Droplets/231.mp3 Binary files differnew file mode 100644 index 0000000..720940e --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/231.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/232.mp3 b/site/app/partialemergence/sounds/Water/Droplets/232.mp3 Binary files differnew file mode 100644 index 0000000..a8d8cee --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/232.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/233.mp3 b/site/app/partialemergence/sounds/Water/Droplets/233.mp3 Binary files differnew file mode 100644 index 0000000..549ca4b --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/233.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/234.mp3 b/site/app/partialemergence/sounds/Water/Droplets/234.mp3 Binary files differnew file mode 100644 index 0000000..12ed374 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/234.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/235.mp3 b/site/app/partialemergence/sounds/Water/Droplets/235.mp3 Binary files differnew file mode 100644 index 0000000..165bdce --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/235.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/236.mp3 b/site/app/partialemergence/sounds/Water/Droplets/236.mp3 Binary files differnew file mode 100644 index 0000000..8594d4c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/236.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/237.mp3 b/site/app/partialemergence/sounds/Water/Droplets/237.mp3 Binary files differnew file mode 100644 index 0000000..5955f00 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/237.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/238.mp3 b/site/app/partialemergence/sounds/Water/Droplets/238.mp3 Binary files differnew file mode 100644 index 0000000..de9f350 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/238.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/239.mp3 b/site/app/partialemergence/sounds/Water/Droplets/239.mp3 Binary files differnew file mode 100644 index 0000000..08a2946 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/239.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/24.mp3 b/site/app/partialemergence/sounds/Water/Droplets/24.mp3 Binary files differnew file mode 100644 index 0000000..8f35505 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/24.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/240.mp3 b/site/app/partialemergence/sounds/Water/Droplets/240.mp3 Binary files differnew file mode 100644 index 0000000..2481a60 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/240.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/241.mp3 b/site/app/partialemergence/sounds/Water/Droplets/241.mp3 Binary files differnew file mode 100644 index 0000000..587d0ca --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/241.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/242.mp3 b/site/app/partialemergence/sounds/Water/Droplets/242.mp3 Binary files differnew file mode 100644 index 0000000..b863534 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/242.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/243.mp3 b/site/app/partialemergence/sounds/Water/Droplets/243.mp3 Binary files differnew file mode 100644 index 0000000..7257503 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/243.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/244.mp3 b/site/app/partialemergence/sounds/Water/Droplets/244.mp3 Binary files differnew file mode 100644 index 0000000..e23c6c1 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/244.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/245.mp3 b/site/app/partialemergence/sounds/Water/Droplets/245.mp3 Binary files differnew file mode 100644 index 0000000..b501f78 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/245.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/246.mp3 b/site/app/partialemergence/sounds/Water/Droplets/246.mp3 Binary files differnew file mode 100644 index 0000000..d0d0387 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/246.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/247.mp3 b/site/app/partialemergence/sounds/Water/Droplets/247.mp3 Binary files differnew file mode 100644 index 0000000..765a27c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/247.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/248.mp3 b/site/app/partialemergence/sounds/Water/Droplets/248.mp3 Binary files differnew file mode 100644 index 0000000..34823a2 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/248.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/249.mp3 b/site/app/partialemergence/sounds/Water/Droplets/249.mp3 Binary files differnew file mode 100644 index 0000000..9a2d7e4 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/249.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/25.mp3 b/site/app/partialemergence/sounds/Water/Droplets/25.mp3 Binary files differnew file mode 100644 index 0000000..57c023e --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/25.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/250.mp3 b/site/app/partialemergence/sounds/Water/Droplets/250.mp3 Binary files differnew file mode 100644 index 0000000..58ca626 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/250.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/251.mp3 b/site/app/partialemergence/sounds/Water/Droplets/251.mp3 Binary files differnew file mode 100644 index 0000000..4130d2a --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/251.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/252.mp3 b/site/app/partialemergence/sounds/Water/Droplets/252.mp3 Binary files differnew file mode 100644 index 0000000..f1e3193 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/252.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/253.mp3 b/site/app/partialemergence/sounds/Water/Droplets/253.mp3 Binary files differnew file mode 100644 index 0000000..546b04c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/253.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/254.mp3 b/site/app/partialemergence/sounds/Water/Droplets/254.mp3 Binary files differnew file mode 100644 index 0000000..a1a66bd --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/254.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/255.mp3 b/site/app/partialemergence/sounds/Water/Droplets/255.mp3 Binary files differnew file mode 100644 index 0000000..f2eeadf --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/255.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/256.mp3 b/site/app/partialemergence/sounds/Water/Droplets/256.mp3 Binary files differnew file mode 100644 index 0000000..a426113 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/256.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/257.mp3 b/site/app/partialemergence/sounds/Water/Droplets/257.mp3 Binary files differnew file mode 100644 index 0000000..2482688 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/257.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/258.mp3 b/site/app/partialemergence/sounds/Water/Droplets/258.mp3 Binary files differnew file mode 100644 index 0000000..7b761ea --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/258.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/259.mp3 b/site/app/partialemergence/sounds/Water/Droplets/259.mp3 Binary files differnew file mode 100644 index 0000000..6828e2f --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/259.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/26.mp3 b/site/app/partialemergence/sounds/Water/Droplets/26.mp3 Binary files differnew file mode 100644 index 0000000..abb4803 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/26.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/260.mp3 b/site/app/partialemergence/sounds/Water/Droplets/260.mp3 Binary files differnew file mode 100644 index 0000000..1da1ce7 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/260.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/261.mp3 b/site/app/partialemergence/sounds/Water/Droplets/261.mp3 Binary files differnew file mode 100644 index 0000000..de6b115 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/261.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/262.mp3 b/site/app/partialemergence/sounds/Water/Droplets/262.mp3 Binary files differnew file mode 100644 index 0000000..cd1f7f3 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/262.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/263.mp3 b/site/app/partialemergence/sounds/Water/Droplets/263.mp3 Binary files differnew file mode 100644 index 0000000..f1c25d8 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/263.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/264.mp3 b/site/app/partialemergence/sounds/Water/Droplets/264.mp3 Binary files differnew file mode 100644 index 0000000..1364fb0 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/264.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/265.mp3 b/site/app/partialemergence/sounds/Water/Droplets/265.mp3 Binary files differnew file mode 100644 index 0000000..8821a5c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/265.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/266.mp3 b/site/app/partialemergence/sounds/Water/Droplets/266.mp3 Binary files differnew file mode 100644 index 0000000..30885e0 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/266.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/267.mp3 b/site/app/partialemergence/sounds/Water/Droplets/267.mp3 Binary files differnew file mode 100644 index 0000000..f647958 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/267.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/268.mp3 b/site/app/partialemergence/sounds/Water/Droplets/268.mp3 Binary files differnew file mode 100644 index 0000000..032d6e2 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/268.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/269.mp3 b/site/app/partialemergence/sounds/Water/Droplets/269.mp3 Binary files differnew file mode 100644 index 0000000..06dcc69 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/269.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/27.mp3 b/site/app/partialemergence/sounds/Water/Droplets/27.mp3 Binary files differnew file mode 100644 index 0000000..0fce697 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/27.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/270.mp3 b/site/app/partialemergence/sounds/Water/Droplets/270.mp3 Binary files differnew file mode 100644 index 0000000..412e8b6 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/270.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/271.mp3 b/site/app/partialemergence/sounds/Water/Droplets/271.mp3 Binary files differnew file mode 100644 index 0000000..3895a9d --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/271.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/272.mp3 b/site/app/partialemergence/sounds/Water/Droplets/272.mp3 Binary files differnew file mode 100644 index 0000000..a606972 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/272.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/273.mp3 b/site/app/partialemergence/sounds/Water/Droplets/273.mp3 Binary files differnew file mode 100644 index 0000000..2d766eb --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/273.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/274.mp3 b/site/app/partialemergence/sounds/Water/Droplets/274.mp3 Binary files differnew file mode 100644 index 0000000..0b60243 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/274.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/275.mp3 b/site/app/partialemergence/sounds/Water/Droplets/275.mp3 Binary files differnew file mode 100644 index 0000000..5913ac4 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/275.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/276.mp3 b/site/app/partialemergence/sounds/Water/Droplets/276.mp3 Binary files differnew file mode 100644 index 0000000..567e666 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/276.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/277.mp3 b/site/app/partialemergence/sounds/Water/Droplets/277.mp3 Binary files differnew file mode 100644 index 0000000..88653ea --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/277.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/278.mp3 b/site/app/partialemergence/sounds/Water/Droplets/278.mp3 Binary files differnew file mode 100644 index 0000000..04beb99 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/278.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/279.mp3 b/site/app/partialemergence/sounds/Water/Droplets/279.mp3 Binary files differnew file mode 100644 index 0000000..0a8980b --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/279.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/28.mp3 b/site/app/partialemergence/sounds/Water/Droplets/28.mp3 Binary files differnew file mode 100644 index 0000000..55efe81 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/28.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/280.mp3 b/site/app/partialemergence/sounds/Water/Droplets/280.mp3 Binary files differnew file mode 100644 index 0000000..380d4af --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/280.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/281.mp3 b/site/app/partialemergence/sounds/Water/Droplets/281.mp3 Binary files differnew file mode 100644 index 0000000..28e1116 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/281.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/282.mp3 b/site/app/partialemergence/sounds/Water/Droplets/282.mp3 Binary files differnew file mode 100644 index 0000000..a097e26 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/282.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/283.mp3 b/site/app/partialemergence/sounds/Water/Droplets/283.mp3 Binary files differnew file mode 100644 index 0000000..a77ef30 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/283.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/284.mp3 b/site/app/partialemergence/sounds/Water/Droplets/284.mp3 Binary files differnew file mode 100644 index 0000000..cc881cb --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/284.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/285.mp3 b/site/app/partialemergence/sounds/Water/Droplets/285.mp3 Binary files differnew file mode 100644 index 0000000..7d4c9a7 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/285.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/286.mp3 b/site/app/partialemergence/sounds/Water/Droplets/286.mp3 Binary files differnew file mode 100644 index 0000000..d8a8911 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/286.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/287.mp3 b/site/app/partialemergence/sounds/Water/Droplets/287.mp3 Binary files differnew file mode 100644 index 0000000..7763ace --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/287.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/288.mp3 b/site/app/partialemergence/sounds/Water/Droplets/288.mp3 Binary files differnew file mode 100644 index 0000000..e900cf8 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/288.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/289.mp3 b/site/app/partialemergence/sounds/Water/Droplets/289.mp3 Binary files differnew file mode 100644 index 0000000..820e172 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/289.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/29.mp3 b/site/app/partialemergence/sounds/Water/Droplets/29.mp3 Binary files differnew file mode 100644 index 0000000..d209f98 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/29.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/290.mp3 b/site/app/partialemergence/sounds/Water/Droplets/290.mp3 Binary files differnew file mode 100644 index 0000000..08659c3 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/290.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/291.mp3 b/site/app/partialemergence/sounds/Water/Droplets/291.mp3 Binary files differnew file mode 100644 index 0000000..cbd8283 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/291.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/292.mp3 b/site/app/partialemergence/sounds/Water/Droplets/292.mp3 Binary files differnew file mode 100644 index 0000000..fe5997f --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/292.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/293.mp3 b/site/app/partialemergence/sounds/Water/Droplets/293.mp3 Binary files differnew file mode 100644 index 0000000..9caee62 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/293.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/294.mp3 b/site/app/partialemergence/sounds/Water/Droplets/294.mp3 Binary files differnew file mode 100644 index 0000000..cab7176 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/294.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/295.mp3 b/site/app/partialemergence/sounds/Water/Droplets/295.mp3 Binary files differnew file mode 100644 index 0000000..20d52e5 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/295.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/296.mp3 b/site/app/partialemergence/sounds/Water/Droplets/296.mp3 Binary files differnew file mode 100644 index 0000000..7387fe1 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/296.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/297.mp3 b/site/app/partialemergence/sounds/Water/Droplets/297.mp3 Binary files differnew file mode 100644 index 0000000..e6f60f5 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/297.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/298.mp3 b/site/app/partialemergence/sounds/Water/Droplets/298.mp3 Binary files differnew file mode 100644 index 0000000..4cc0213 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/298.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/299.mp3 b/site/app/partialemergence/sounds/Water/Droplets/299.mp3 Binary files differnew file mode 100644 index 0000000..61c3eff --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/299.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/3.mp3 b/site/app/partialemergence/sounds/Water/Droplets/3.mp3 Binary files differnew file mode 100644 index 0000000..658418f --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/3.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/30.mp3 b/site/app/partialemergence/sounds/Water/Droplets/30.mp3 Binary files differnew file mode 100644 index 0000000..05a46b9 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/30.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/300.mp3 b/site/app/partialemergence/sounds/Water/Droplets/300.mp3 Binary files differnew file mode 100644 index 0000000..5e70e79 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/300.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/301.mp3 b/site/app/partialemergence/sounds/Water/Droplets/301.mp3 Binary files differnew file mode 100644 index 0000000..542de58 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/301.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/302.mp3 b/site/app/partialemergence/sounds/Water/Droplets/302.mp3 Binary files differnew file mode 100644 index 0000000..9dc534a --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/302.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/303.mp3 b/site/app/partialemergence/sounds/Water/Droplets/303.mp3 Binary files differnew file mode 100644 index 0000000..247884c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/303.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/304.mp3 b/site/app/partialemergence/sounds/Water/Droplets/304.mp3 Binary files differnew file mode 100644 index 0000000..ff9c8a8 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/304.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/305.mp3 b/site/app/partialemergence/sounds/Water/Droplets/305.mp3 Binary files differnew file mode 100644 index 0000000..e46c3e7 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/305.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/306.mp3 b/site/app/partialemergence/sounds/Water/Droplets/306.mp3 Binary files differnew file mode 100644 index 0000000..9961c91 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/306.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/307.mp3 b/site/app/partialemergence/sounds/Water/Droplets/307.mp3 Binary files differnew file mode 100644 index 0000000..39fd980 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/307.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/308.mp3 b/site/app/partialemergence/sounds/Water/Droplets/308.mp3 Binary files differnew file mode 100644 index 0000000..bc77ec4 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/308.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/309.mp3 b/site/app/partialemergence/sounds/Water/Droplets/309.mp3 Binary files differnew file mode 100644 index 0000000..f45ea3f --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/309.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/31.mp3 b/site/app/partialemergence/sounds/Water/Droplets/31.mp3 Binary files differnew file mode 100644 index 0000000..3be7b75 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/31.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/310.mp3 b/site/app/partialemergence/sounds/Water/Droplets/310.mp3 Binary files differnew file mode 100644 index 0000000..a8a1f9d --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/310.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/311.mp3 b/site/app/partialemergence/sounds/Water/Droplets/311.mp3 Binary files differnew file mode 100644 index 0000000..805802c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/311.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/312.mp3 b/site/app/partialemergence/sounds/Water/Droplets/312.mp3 Binary files differnew file mode 100644 index 0000000..929d59a --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/312.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/313.mp3 b/site/app/partialemergence/sounds/Water/Droplets/313.mp3 Binary files differnew file mode 100644 index 0000000..3f9a989 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/313.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/314.mp3 b/site/app/partialemergence/sounds/Water/Droplets/314.mp3 Binary files differnew file mode 100644 index 0000000..959d11a --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/314.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/315.mp3 b/site/app/partialemergence/sounds/Water/Droplets/315.mp3 Binary files differnew file mode 100644 index 0000000..d854229 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/315.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/316.mp3 b/site/app/partialemergence/sounds/Water/Droplets/316.mp3 Binary files differnew file mode 100644 index 0000000..c86e1ce --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/316.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/317.mp3 b/site/app/partialemergence/sounds/Water/Droplets/317.mp3 Binary files differnew file mode 100644 index 0000000..5118364 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/317.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/318.mp3 b/site/app/partialemergence/sounds/Water/Droplets/318.mp3 Binary files differnew file mode 100644 index 0000000..0918fee --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/318.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/319.mp3 b/site/app/partialemergence/sounds/Water/Droplets/319.mp3 Binary files differnew file mode 100644 index 0000000..5dc6067 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/319.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/32.mp3 b/site/app/partialemergence/sounds/Water/Droplets/32.mp3 Binary files differnew file mode 100644 index 0000000..4cd64c5 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/32.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/320.mp3 b/site/app/partialemergence/sounds/Water/Droplets/320.mp3 Binary files differnew file mode 100644 index 0000000..2551027 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/320.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/321.mp3 b/site/app/partialemergence/sounds/Water/Droplets/321.mp3 Binary files differnew file mode 100644 index 0000000..1254684 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/321.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/322.mp3 b/site/app/partialemergence/sounds/Water/Droplets/322.mp3 Binary files differnew file mode 100644 index 0000000..a8b4761 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/322.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/323.mp3 b/site/app/partialemergence/sounds/Water/Droplets/323.mp3 Binary files differnew file mode 100644 index 0000000..09d3361 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/323.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/324.mp3 b/site/app/partialemergence/sounds/Water/Droplets/324.mp3 Binary files differnew file mode 100644 index 0000000..9ac169a --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/324.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/325.mp3 b/site/app/partialemergence/sounds/Water/Droplets/325.mp3 Binary files differnew file mode 100644 index 0000000..c5dd7dd --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/325.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/326.mp3 b/site/app/partialemergence/sounds/Water/Droplets/326.mp3 Binary files differnew file mode 100644 index 0000000..fd83c64 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/326.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/327.mp3 b/site/app/partialemergence/sounds/Water/Droplets/327.mp3 Binary files differnew file mode 100644 index 0000000..2e520fc --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/327.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/328.mp3 b/site/app/partialemergence/sounds/Water/Droplets/328.mp3 Binary files differnew file mode 100644 index 0000000..006735d --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/328.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/329.mp3 b/site/app/partialemergence/sounds/Water/Droplets/329.mp3 Binary files differnew file mode 100644 index 0000000..d2b1845 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/329.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/33.mp3 b/site/app/partialemergence/sounds/Water/Droplets/33.mp3 Binary files differnew file mode 100644 index 0000000..0ffdf5b --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/33.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/330.mp3 b/site/app/partialemergence/sounds/Water/Droplets/330.mp3 Binary files differnew file mode 100644 index 0000000..8be7309 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/330.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/331.mp3 b/site/app/partialemergence/sounds/Water/Droplets/331.mp3 Binary files differnew file mode 100644 index 0000000..0b8568a --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/331.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/332.mp3 b/site/app/partialemergence/sounds/Water/Droplets/332.mp3 Binary files differnew file mode 100644 index 0000000..99a50e4 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/332.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/333.mp3 b/site/app/partialemergence/sounds/Water/Droplets/333.mp3 Binary files differnew file mode 100644 index 0000000..8b16f23 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/333.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/334.mp3 b/site/app/partialemergence/sounds/Water/Droplets/334.mp3 Binary files differnew file mode 100644 index 0000000..f1c17f2 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/334.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/335.mp3 b/site/app/partialemergence/sounds/Water/Droplets/335.mp3 Binary files differnew file mode 100644 index 0000000..7e8bdfb --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/335.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/336.mp3 b/site/app/partialemergence/sounds/Water/Droplets/336.mp3 Binary files differnew file mode 100644 index 0000000..683c8b1 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/336.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/337.mp3 b/site/app/partialemergence/sounds/Water/Droplets/337.mp3 Binary files differnew file mode 100644 index 0000000..db5f72c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/337.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/338.mp3 b/site/app/partialemergence/sounds/Water/Droplets/338.mp3 Binary files differnew file mode 100644 index 0000000..ccc8798 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/338.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/339.mp3 b/site/app/partialemergence/sounds/Water/Droplets/339.mp3 Binary files differnew file mode 100644 index 0000000..84cb648 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/339.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/34.mp3 b/site/app/partialemergence/sounds/Water/Droplets/34.mp3 Binary files differnew file mode 100644 index 0000000..472b245 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/34.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/340.mp3 b/site/app/partialemergence/sounds/Water/Droplets/340.mp3 Binary files differnew file mode 100644 index 0000000..911dd49 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/340.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/341.mp3 b/site/app/partialemergence/sounds/Water/Droplets/341.mp3 Binary files differnew file mode 100644 index 0000000..59aa242 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/341.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/342.mp3 b/site/app/partialemergence/sounds/Water/Droplets/342.mp3 Binary files differnew file mode 100644 index 0000000..c717bde --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/342.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/343.mp3 b/site/app/partialemergence/sounds/Water/Droplets/343.mp3 Binary files differnew file mode 100644 index 0000000..99be7f2 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/343.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/344.mp3 b/site/app/partialemergence/sounds/Water/Droplets/344.mp3 Binary files differnew file mode 100644 index 0000000..54943dc --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/344.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/345.mp3 b/site/app/partialemergence/sounds/Water/Droplets/345.mp3 Binary files differnew file mode 100644 index 0000000..613c7e0 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/345.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/346.mp3 b/site/app/partialemergence/sounds/Water/Droplets/346.mp3 Binary files differnew file mode 100644 index 0000000..5c798fe --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/346.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/347.mp3 b/site/app/partialemergence/sounds/Water/Droplets/347.mp3 Binary files differnew file mode 100644 index 0000000..6a81894 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/347.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/348.mp3 b/site/app/partialemergence/sounds/Water/Droplets/348.mp3 Binary files differnew file mode 100644 index 0000000..8c986ba --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/348.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/349.mp3 b/site/app/partialemergence/sounds/Water/Droplets/349.mp3 Binary files differnew file mode 100644 index 0000000..5782791 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/349.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/35.mp3 b/site/app/partialemergence/sounds/Water/Droplets/35.mp3 Binary files differnew file mode 100644 index 0000000..1274b7c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/35.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/350.mp3 b/site/app/partialemergence/sounds/Water/Droplets/350.mp3 Binary files differnew file mode 100644 index 0000000..9a79241 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/350.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/351.mp3 b/site/app/partialemergence/sounds/Water/Droplets/351.mp3 Binary files differnew file mode 100644 index 0000000..ba3f75b --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/351.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/352.mp3 b/site/app/partialemergence/sounds/Water/Droplets/352.mp3 Binary files differnew file mode 100644 index 0000000..e9b9bd8 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/352.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/353.mp3 b/site/app/partialemergence/sounds/Water/Droplets/353.mp3 Binary files differnew file mode 100644 index 0000000..763401c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/353.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/354.mp3 b/site/app/partialemergence/sounds/Water/Droplets/354.mp3 Binary files differnew file mode 100644 index 0000000..09881f4 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/354.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/355.mp3 b/site/app/partialemergence/sounds/Water/Droplets/355.mp3 Binary files differnew file mode 100644 index 0000000..61534cf --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/355.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/356.mp3 b/site/app/partialemergence/sounds/Water/Droplets/356.mp3 Binary files differnew file mode 100644 index 0000000..3e7dfc0 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/356.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/357.mp3 b/site/app/partialemergence/sounds/Water/Droplets/357.mp3 Binary files differnew file mode 100644 index 0000000..bb3babf --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/357.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/358.mp3 b/site/app/partialemergence/sounds/Water/Droplets/358.mp3 Binary files differnew file mode 100644 index 0000000..9864a4b --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/358.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/359.mp3 b/site/app/partialemergence/sounds/Water/Droplets/359.mp3 Binary files differnew file mode 100644 index 0000000..3f48321 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/359.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/36.mp3 b/site/app/partialemergence/sounds/Water/Droplets/36.mp3 Binary files differnew file mode 100644 index 0000000..1a775dc --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/36.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/360.mp3 b/site/app/partialemergence/sounds/Water/Droplets/360.mp3 Binary files differnew file mode 100644 index 0000000..0a0a3d5 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/360.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/361.mp3 b/site/app/partialemergence/sounds/Water/Droplets/361.mp3 Binary files differnew file mode 100644 index 0000000..0943c3c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/361.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/362.mp3 b/site/app/partialemergence/sounds/Water/Droplets/362.mp3 Binary files differnew file mode 100644 index 0000000..5564f64 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/362.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/363.mp3 b/site/app/partialemergence/sounds/Water/Droplets/363.mp3 Binary files differnew file mode 100644 index 0000000..87192c0 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/363.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/364.mp3 b/site/app/partialemergence/sounds/Water/Droplets/364.mp3 Binary files differnew file mode 100644 index 0000000..a4785b2 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/364.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/365.mp3 b/site/app/partialemergence/sounds/Water/Droplets/365.mp3 Binary files differnew file mode 100644 index 0000000..897393c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/365.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/366.mp3 b/site/app/partialemergence/sounds/Water/Droplets/366.mp3 Binary files differnew file mode 100644 index 0000000..f2cf146 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/366.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/367.mp3 b/site/app/partialemergence/sounds/Water/Droplets/367.mp3 Binary files differnew file mode 100644 index 0000000..a1d6163 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/367.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/368.mp3 b/site/app/partialemergence/sounds/Water/Droplets/368.mp3 Binary files differnew file mode 100644 index 0000000..2760769 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/368.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/369.mp3 b/site/app/partialemergence/sounds/Water/Droplets/369.mp3 Binary files differnew file mode 100644 index 0000000..2620a2a --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/369.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/37.mp3 b/site/app/partialemergence/sounds/Water/Droplets/37.mp3 Binary files differnew file mode 100644 index 0000000..b86e36c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/37.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/370.mp3 b/site/app/partialemergence/sounds/Water/Droplets/370.mp3 Binary files differnew file mode 100644 index 0000000..f6a2dfd --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/370.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/371.mp3 b/site/app/partialemergence/sounds/Water/Droplets/371.mp3 Binary files differnew file mode 100644 index 0000000..de222cd --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/371.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/372.mp3 b/site/app/partialemergence/sounds/Water/Droplets/372.mp3 Binary files differnew file mode 100644 index 0000000..d22d0d8 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/372.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/373.mp3 b/site/app/partialemergence/sounds/Water/Droplets/373.mp3 Binary files differnew file mode 100644 index 0000000..ce1c786 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/373.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/374.mp3 b/site/app/partialemergence/sounds/Water/Droplets/374.mp3 Binary files differnew file mode 100644 index 0000000..d682d6d --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/374.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/375.mp3 b/site/app/partialemergence/sounds/Water/Droplets/375.mp3 Binary files differnew file mode 100644 index 0000000..3e0fd0b --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/375.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/376.mp3 b/site/app/partialemergence/sounds/Water/Droplets/376.mp3 Binary files differnew file mode 100644 index 0000000..6851a65 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/376.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/377.mp3 b/site/app/partialemergence/sounds/Water/Droplets/377.mp3 Binary files differnew file mode 100644 index 0000000..1e97ddb --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/377.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/378.mp3 b/site/app/partialemergence/sounds/Water/Droplets/378.mp3 Binary files differnew file mode 100644 index 0000000..afc2478 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/378.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/379.mp3 b/site/app/partialemergence/sounds/Water/Droplets/379.mp3 Binary files differnew file mode 100644 index 0000000..fe1bd6f --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/379.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/38.mp3 b/site/app/partialemergence/sounds/Water/Droplets/38.mp3 Binary files differnew file mode 100644 index 0000000..2ca366c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/38.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/380.mp3 b/site/app/partialemergence/sounds/Water/Droplets/380.mp3 Binary files differnew file mode 100644 index 0000000..159c232 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/380.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/381.mp3 b/site/app/partialemergence/sounds/Water/Droplets/381.mp3 Binary files differnew file mode 100644 index 0000000..22709cf --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/381.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/382.mp3 b/site/app/partialemergence/sounds/Water/Droplets/382.mp3 Binary files differnew file mode 100644 index 0000000..af0dbc6 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/382.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/383.mp3 b/site/app/partialemergence/sounds/Water/Droplets/383.mp3 Binary files differnew file mode 100644 index 0000000..c50c3c8 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/383.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/384.mp3 b/site/app/partialemergence/sounds/Water/Droplets/384.mp3 Binary files differnew file mode 100644 index 0000000..07ad65a --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/384.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/385.mp3 b/site/app/partialemergence/sounds/Water/Droplets/385.mp3 Binary files differnew file mode 100644 index 0000000..5fb2f61 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/385.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/386.mp3 b/site/app/partialemergence/sounds/Water/Droplets/386.mp3 Binary files differnew file mode 100644 index 0000000..4a383db --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/386.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/387.mp3 b/site/app/partialemergence/sounds/Water/Droplets/387.mp3 Binary files differnew file mode 100644 index 0000000..bbb51b0 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/387.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/388.mp3 b/site/app/partialemergence/sounds/Water/Droplets/388.mp3 Binary files differnew file mode 100644 index 0000000..6eeed7c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/388.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/389.mp3 b/site/app/partialemergence/sounds/Water/Droplets/389.mp3 Binary files differnew file mode 100644 index 0000000..8890751 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/389.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/39.mp3 b/site/app/partialemergence/sounds/Water/Droplets/39.mp3 Binary files differnew file mode 100644 index 0000000..0747981 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/39.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/390.mp3 b/site/app/partialemergence/sounds/Water/Droplets/390.mp3 Binary files differnew file mode 100644 index 0000000..e70a9c5 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/390.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/391.mp3 b/site/app/partialemergence/sounds/Water/Droplets/391.mp3 Binary files differnew file mode 100644 index 0000000..c50c6db --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/391.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/392.mp3 b/site/app/partialemergence/sounds/Water/Droplets/392.mp3 Binary files differnew file mode 100644 index 0000000..1350525 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/392.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/393.mp3 b/site/app/partialemergence/sounds/Water/Droplets/393.mp3 Binary files differnew file mode 100644 index 0000000..9e51eda --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/393.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/394.mp3 b/site/app/partialemergence/sounds/Water/Droplets/394.mp3 Binary files differnew file mode 100644 index 0000000..1313c69 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/394.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/395.mp3 b/site/app/partialemergence/sounds/Water/Droplets/395.mp3 Binary files differnew file mode 100644 index 0000000..514d8b3 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/395.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/396.mp3 b/site/app/partialemergence/sounds/Water/Droplets/396.mp3 Binary files differnew file mode 100644 index 0000000..3a3dec7 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/396.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/397.mp3 b/site/app/partialemergence/sounds/Water/Droplets/397.mp3 Binary files differnew file mode 100644 index 0000000..adaa5fe --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/397.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/398.mp3 b/site/app/partialemergence/sounds/Water/Droplets/398.mp3 Binary files differnew file mode 100644 index 0000000..943dbfa --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/398.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/399.mp3 b/site/app/partialemergence/sounds/Water/Droplets/399.mp3 Binary files differnew file mode 100644 index 0000000..0b22e34 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/399.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/4.mp3 b/site/app/partialemergence/sounds/Water/Droplets/4.mp3 Binary files differnew file mode 100644 index 0000000..4f3565e --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/4.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/40.mp3 b/site/app/partialemergence/sounds/Water/Droplets/40.mp3 Binary files differnew file mode 100644 index 0000000..118ecf4 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/40.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/400.mp3 b/site/app/partialemergence/sounds/Water/Droplets/400.mp3 Binary files differnew file mode 100644 index 0000000..30c9af4 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/400.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/401.mp3 b/site/app/partialemergence/sounds/Water/Droplets/401.mp3 Binary files differnew file mode 100644 index 0000000..42b5552 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/401.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/402.mp3 b/site/app/partialemergence/sounds/Water/Droplets/402.mp3 Binary files differnew file mode 100644 index 0000000..687f155 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/402.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/403.mp3 b/site/app/partialemergence/sounds/Water/Droplets/403.mp3 Binary files differnew file mode 100644 index 0000000..2c0b4db --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/403.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/404.mp3 b/site/app/partialemergence/sounds/Water/Droplets/404.mp3 Binary files differnew file mode 100644 index 0000000..05ca2e0 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/404.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/405.mp3 b/site/app/partialemergence/sounds/Water/Droplets/405.mp3 Binary files differnew file mode 100644 index 0000000..b67f497 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/405.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/406.mp3 b/site/app/partialemergence/sounds/Water/Droplets/406.mp3 Binary files differnew file mode 100644 index 0000000..aecffc2 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/406.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/407.mp3 b/site/app/partialemergence/sounds/Water/Droplets/407.mp3 Binary files differnew file mode 100644 index 0000000..6b41c6b --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/407.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/408.mp3 b/site/app/partialemergence/sounds/Water/Droplets/408.mp3 Binary files differnew file mode 100644 index 0000000..8a30682 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/408.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/409.mp3 b/site/app/partialemergence/sounds/Water/Droplets/409.mp3 Binary files differnew file mode 100644 index 0000000..892577a --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/409.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/41.mp3 b/site/app/partialemergence/sounds/Water/Droplets/41.mp3 Binary files differnew file mode 100644 index 0000000..6ca406f --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/41.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/410.mp3 b/site/app/partialemergence/sounds/Water/Droplets/410.mp3 Binary files differnew file mode 100644 index 0000000..77c8ad8 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/410.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/411.mp3 b/site/app/partialemergence/sounds/Water/Droplets/411.mp3 Binary files differnew file mode 100644 index 0000000..269510a --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/411.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/412.mp3 b/site/app/partialemergence/sounds/Water/Droplets/412.mp3 Binary files differnew file mode 100644 index 0000000..c9ec6da --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/412.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/413.mp3 b/site/app/partialemergence/sounds/Water/Droplets/413.mp3 Binary files differnew file mode 100644 index 0000000..f8a42a8 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/413.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/414.mp3 b/site/app/partialemergence/sounds/Water/Droplets/414.mp3 Binary files differnew file mode 100644 index 0000000..3bbf727 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/414.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/415.mp3 b/site/app/partialemergence/sounds/Water/Droplets/415.mp3 Binary files differnew file mode 100644 index 0000000..220ef75 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/415.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/416.mp3 b/site/app/partialemergence/sounds/Water/Droplets/416.mp3 Binary files differnew file mode 100644 index 0000000..25945a7 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/416.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/417.mp3 b/site/app/partialemergence/sounds/Water/Droplets/417.mp3 Binary files differnew file mode 100644 index 0000000..830ba10 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/417.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/418.mp3 b/site/app/partialemergence/sounds/Water/Droplets/418.mp3 Binary files differnew file mode 100644 index 0000000..6f1c8a2 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/418.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/419.mp3 b/site/app/partialemergence/sounds/Water/Droplets/419.mp3 Binary files differnew file mode 100644 index 0000000..e899697 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/419.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/42.mp3 b/site/app/partialemergence/sounds/Water/Droplets/42.mp3 Binary files differnew file mode 100644 index 0000000..5a6af44 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/42.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/420.mp3 b/site/app/partialemergence/sounds/Water/Droplets/420.mp3 Binary files differnew file mode 100644 index 0000000..b772a0c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/420.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/421.mp3 b/site/app/partialemergence/sounds/Water/Droplets/421.mp3 Binary files differnew file mode 100644 index 0000000..33fade3 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/421.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/422.mp3 b/site/app/partialemergence/sounds/Water/Droplets/422.mp3 Binary files differnew file mode 100644 index 0000000..11bd2c1 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/422.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/423.mp3 b/site/app/partialemergence/sounds/Water/Droplets/423.mp3 Binary files differnew file mode 100644 index 0000000..0420da7 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/423.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/424.mp3 b/site/app/partialemergence/sounds/Water/Droplets/424.mp3 Binary files differnew file mode 100644 index 0000000..eef20bd --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/424.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/425.mp3 b/site/app/partialemergence/sounds/Water/Droplets/425.mp3 Binary files differnew file mode 100644 index 0000000..4d0850e --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/425.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/426.mp3 b/site/app/partialemergence/sounds/Water/Droplets/426.mp3 Binary files differnew file mode 100644 index 0000000..686c192 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/426.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/427.mp3 b/site/app/partialemergence/sounds/Water/Droplets/427.mp3 Binary files differnew file mode 100644 index 0000000..c3019ea --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/427.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/428.mp3 b/site/app/partialemergence/sounds/Water/Droplets/428.mp3 Binary files differnew file mode 100644 index 0000000..da4f073 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/428.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/429.mp3 b/site/app/partialemergence/sounds/Water/Droplets/429.mp3 Binary files differnew file mode 100644 index 0000000..b2d9bf0 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/429.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/43.mp3 b/site/app/partialemergence/sounds/Water/Droplets/43.mp3 Binary files differnew file mode 100644 index 0000000..561e76e --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/43.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/430.mp3 b/site/app/partialemergence/sounds/Water/Droplets/430.mp3 Binary files differnew file mode 100644 index 0000000..f78b80b --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/430.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/431.mp3 b/site/app/partialemergence/sounds/Water/Droplets/431.mp3 Binary files differnew file mode 100644 index 0000000..472c981 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/431.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/432.mp3 b/site/app/partialemergence/sounds/Water/Droplets/432.mp3 Binary files differnew file mode 100644 index 0000000..a147125 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/432.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/433.mp3 b/site/app/partialemergence/sounds/Water/Droplets/433.mp3 Binary files differnew file mode 100644 index 0000000..3ec1f38 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/433.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/434.mp3 b/site/app/partialemergence/sounds/Water/Droplets/434.mp3 Binary files differnew file mode 100644 index 0000000..e61fe15 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/434.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/435.mp3 b/site/app/partialemergence/sounds/Water/Droplets/435.mp3 Binary files differnew file mode 100644 index 0000000..687ca40 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/435.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/436.mp3 b/site/app/partialemergence/sounds/Water/Droplets/436.mp3 Binary files differnew file mode 100644 index 0000000..bf0feef --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/436.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/437.mp3 b/site/app/partialemergence/sounds/Water/Droplets/437.mp3 Binary files differnew file mode 100644 index 0000000..7e7004c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/437.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/438.mp3 b/site/app/partialemergence/sounds/Water/Droplets/438.mp3 Binary files differnew file mode 100644 index 0000000..71f03e4 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/438.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/439.mp3 b/site/app/partialemergence/sounds/Water/Droplets/439.mp3 Binary files differnew file mode 100644 index 0000000..fa8fb11 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/439.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/44.mp3 b/site/app/partialemergence/sounds/Water/Droplets/44.mp3 Binary files differnew file mode 100644 index 0000000..347770f --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/44.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/440.mp3 b/site/app/partialemergence/sounds/Water/Droplets/440.mp3 Binary files differnew file mode 100644 index 0000000..c4b8bc6 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/440.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/441.mp3 b/site/app/partialemergence/sounds/Water/Droplets/441.mp3 Binary files differnew file mode 100644 index 0000000..0dedd94 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/441.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/442.mp3 b/site/app/partialemergence/sounds/Water/Droplets/442.mp3 Binary files differnew file mode 100644 index 0000000..bfb9fca --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/442.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/443.mp3 b/site/app/partialemergence/sounds/Water/Droplets/443.mp3 Binary files differnew file mode 100644 index 0000000..1547456 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/443.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/444.mp3 b/site/app/partialemergence/sounds/Water/Droplets/444.mp3 Binary files differnew file mode 100644 index 0000000..34f1ecd --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/444.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/445.mp3 b/site/app/partialemergence/sounds/Water/Droplets/445.mp3 Binary files differnew file mode 100644 index 0000000..8401ddf --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/445.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/446.mp3 b/site/app/partialemergence/sounds/Water/Droplets/446.mp3 Binary files differnew file mode 100644 index 0000000..a41fcd6 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/446.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/447.mp3 b/site/app/partialemergence/sounds/Water/Droplets/447.mp3 Binary files differnew file mode 100644 index 0000000..243ec00 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/447.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/448.mp3 b/site/app/partialemergence/sounds/Water/Droplets/448.mp3 Binary files differnew file mode 100644 index 0000000..354517f --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/448.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/449.mp3 b/site/app/partialemergence/sounds/Water/Droplets/449.mp3 Binary files differnew file mode 100644 index 0000000..8aaecfd --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/449.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/45.mp3 b/site/app/partialemergence/sounds/Water/Droplets/45.mp3 Binary files differnew file mode 100644 index 0000000..acd0fc6 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/45.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/450.mp3 b/site/app/partialemergence/sounds/Water/Droplets/450.mp3 Binary files differnew file mode 100644 index 0000000..c561572 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/450.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/451.mp3 b/site/app/partialemergence/sounds/Water/Droplets/451.mp3 Binary files differnew file mode 100644 index 0000000..8660a7c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/451.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/452.mp3 b/site/app/partialemergence/sounds/Water/Droplets/452.mp3 Binary files differnew file mode 100644 index 0000000..3ffffaa --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/452.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/453.mp3 b/site/app/partialemergence/sounds/Water/Droplets/453.mp3 Binary files differnew file mode 100644 index 0000000..baedda1 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/453.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/454.mp3 b/site/app/partialemergence/sounds/Water/Droplets/454.mp3 Binary files differnew file mode 100644 index 0000000..cabcd97 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/454.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/455.mp3 b/site/app/partialemergence/sounds/Water/Droplets/455.mp3 Binary files differnew file mode 100644 index 0000000..8a33e35 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/455.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/456.mp3 b/site/app/partialemergence/sounds/Water/Droplets/456.mp3 Binary files differnew file mode 100644 index 0000000..ca1c8ef --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/456.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/457.mp3 b/site/app/partialemergence/sounds/Water/Droplets/457.mp3 Binary files differnew file mode 100644 index 0000000..02afd44 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/457.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/458.mp3 b/site/app/partialemergence/sounds/Water/Droplets/458.mp3 Binary files differnew file mode 100644 index 0000000..3fca4ff --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/458.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/459.mp3 b/site/app/partialemergence/sounds/Water/Droplets/459.mp3 Binary files differnew file mode 100644 index 0000000..d5abd99 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/459.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/46.mp3 b/site/app/partialemergence/sounds/Water/Droplets/46.mp3 Binary files differnew file mode 100644 index 0000000..5b8d181 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/46.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/460.mp3 b/site/app/partialemergence/sounds/Water/Droplets/460.mp3 Binary files differnew file mode 100644 index 0000000..a3485bb --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/460.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/461.mp3 b/site/app/partialemergence/sounds/Water/Droplets/461.mp3 Binary files differnew file mode 100644 index 0000000..79acc5e --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/461.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/462.mp3 b/site/app/partialemergence/sounds/Water/Droplets/462.mp3 Binary files differnew file mode 100644 index 0000000..8e18474 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/462.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/463.mp3 b/site/app/partialemergence/sounds/Water/Droplets/463.mp3 Binary files differnew file mode 100644 index 0000000..afc845c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/463.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/464.mp3 b/site/app/partialemergence/sounds/Water/Droplets/464.mp3 Binary files differnew file mode 100644 index 0000000..9b058c3 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/464.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/465.mp3 b/site/app/partialemergence/sounds/Water/Droplets/465.mp3 Binary files differnew file mode 100644 index 0000000..0e0ba88 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/465.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/466.mp3 b/site/app/partialemergence/sounds/Water/Droplets/466.mp3 Binary files differnew file mode 100644 index 0000000..b5b98b1 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/466.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/467.mp3 b/site/app/partialemergence/sounds/Water/Droplets/467.mp3 Binary files differnew file mode 100644 index 0000000..ff2b53f --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/467.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/468.mp3 b/site/app/partialemergence/sounds/Water/Droplets/468.mp3 Binary files differnew file mode 100644 index 0000000..93545ab --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/468.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/469.mp3 b/site/app/partialemergence/sounds/Water/Droplets/469.mp3 Binary files differnew file mode 100644 index 0000000..0e01fe8 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/469.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/47.mp3 b/site/app/partialemergence/sounds/Water/Droplets/47.mp3 Binary files differnew file mode 100644 index 0000000..407441e --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/47.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/470.mp3 b/site/app/partialemergence/sounds/Water/Droplets/470.mp3 Binary files differnew file mode 100644 index 0000000..2f9dbee --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/470.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/471.mp3 b/site/app/partialemergence/sounds/Water/Droplets/471.mp3 Binary files differnew file mode 100644 index 0000000..0b6d68a --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/471.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/472.mp3 b/site/app/partialemergence/sounds/Water/Droplets/472.mp3 Binary files differnew file mode 100644 index 0000000..72e9a81 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/472.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/473.mp3 b/site/app/partialemergence/sounds/Water/Droplets/473.mp3 Binary files differnew file mode 100644 index 0000000..e464dc0 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/473.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/474.mp3 b/site/app/partialemergence/sounds/Water/Droplets/474.mp3 Binary files differnew file mode 100644 index 0000000..06bdcf5 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/474.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/475.mp3 b/site/app/partialemergence/sounds/Water/Droplets/475.mp3 Binary files differnew file mode 100644 index 0000000..d8f51ef --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/475.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/476.mp3 b/site/app/partialemergence/sounds/Water/Droplets/476.mp3 Binary files differnew file mode 100644 index 0000000..4e8bc4e --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/476.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/477.mp3 b/site/app/partialemergence/sounds/Water/Droplets/477.mp3 Binary files differnew file mode 100644 index 0000000..70c983e --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/477.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/478.mp3 b/site/app/partialemergence/sounds/Water/Droplets/478.mp3 Binary files differnew file mode 100644 index 0000000..aff8dba --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/478.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/479.mp3 b/site/app/partialemergence/sounds/Water/Droplets/479.mp3 Binary files differnew file mode 100644 index 0000000..d9e3e32 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/479.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/48.mp3 b/site/app/partialemergence/sounds/Water/Droplets/48.mp3 Binary files differnew file mode 100644 index 0000000..4471fe7 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/48.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/480.mp3 b/site/app/partialemergence/sounds/Water/Droplets/480.mp3 Binary files differnew file mode 100644 index 0000000..eac0f83 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/480.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/481.mp3 b/site/app/partialemergence/sounds/Water/Droplets/481.mp3 Binary files differnew file mode 100644 index 0000000..83d5d6c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/481.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/482.mp3 b/site/app/partialemergence/sounds/Water/Droplets/482.mp3 Binary files differnew file mode 100644 index 0000000..9065aba --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/482.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/483.mp3 b/site/app/partialemergence/sounds/Water/Droplets/483.mp3 Binary files differnew file mode 100644 index 0000000..c773ae3 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/483.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/484.mp3 b/site/app/partialemergence/sounds/Water/Droplets/484.mp3 Binary files differnew file mode 100644 index 0000000..7fd66f8 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/484.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/485.mp3 b/site/app/partialemergence/sounds/Water/Droplets/485.mp3 Binary files differnew file mode 100644 index 0000000..fa1572a --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/485.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/486.mp3 b/site/app/partialemergence/sounds/Water/Droplets/486.mp3 Binary files differnew file mode 100644 index 0000000..2db8508 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/486.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/487.mp3 b/site/app/partialemergence/sounds/Water/Droplets/487.mp3 Binary files differnew file mode 100644 index 0000000..5c261ca --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/487.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/488.mp3 b/site/app/partialemergence/sounds/Water/Droplets/488.mp3 Binary files differnew file mode 100644 index 0000000..d048f66 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/488.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/489.mp3 b/site/app/partialemergence/sounds/Water/Droplets/489.mp3 Binary files differnew file mode 100644 index 0000000..ef18637 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/489.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/49.mp3 b/site/app/partialemergence/sounds/Water/Droplets/49.mp3 Binary files differnew file mode 100644 index 0000000..d805683 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/49.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/490.mp3 b/site/app/partialemergence/sounds/Water/Droplets/490.mp3 Binary files differnew file mode 100644 index 0000000..3b141ab --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/490.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/491.mp3 b/site/app/partialemergence/sounds/Water/Droplets/491.mp3 Binary files differnew file mode 100644 index 0000000..93f49fe --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/491.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/492.mp3 b/site/app/partialemergence/sounds/Water/Droplets/492.mp3 Binary files differnew file mode 100644 index 0000000..2b5ce86 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/492.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/493.mp3 b/site/app/partialemergence/sounds/Water/Droplets/493.mp3 Binary files differnew file mode 100644 index 0000000..51c92d5 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/493.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/494.mp3 b/site/app/partialemergence/sounds/Water/Droplets/494.mp3 Binary files differnew file mode 100644 index 0000000..fa045c3 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/494.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/495.mp3 b/site/app/partialemergence/sounds/Water/Droplets/495.mp3 Binary files differnew file mode 100644 index 0000000..1c3fd59 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/495.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/496.mp3 b/site/app/partialemergence/sounds/Water/Droplets/496.mp3 Binary files differnew file mode 100644 index 0000000..8f9f71a --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/496.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/497.mp3 b/site/app/partialemergence/sounds/Water/Droplets/497.mp3 Binary files differnew file mode 100644 index 0000000..30b01b6 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/497.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/498.mp3 b/site/app/partialemergence/sounds/Water/Droplets/498.mp3 Binary files differnew file mode 100644 index 0000000..c385116 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/498.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/499.mp3 b/site/app/partialemergence/sounds/Water/Droplets/499.mp3 Binary files differnew file mode 100644 index 0000000..6376b57 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/499.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/5.mp3 b/site/app/partialemergence/sounds/Water/Droplets/5.mp3 Binary files differnew file mode 100644 index 0000000..1afe7b1 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/5.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/50.mp3 b/site/app/partialemergence/sounds/Water/Droplets/50.mp3 Binary files differnew file mode 100644 index 0000000..d02abe8 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/50.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/500.mp3 b/site/app/partialemergence/sounds/Water/Droplets/500.mp3 Binary files differnew file mode 100644 index 0000000..8a210f1 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/500.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/501.mp3 b/site/app/partialemergence/sounds/Water/Droplets/501.mp3 Binary files differnew file mode 100644 index 0000000..47bfcc6 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/501.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/502.mp3 b/site/app/partialemergence/sounds/Water/Droplets/502.mp3 Binary files differnew file mode 100644 index 0000000..5a92a48 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/502.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/503.mp3 b/site/app/partialemergence/sounds/Water/Droplets/503.mp3 Binary files differnew file mode 100644 index 0000000..4896c50 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/503.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/504.mp3 b/site/app/partialemergence/sounds/Water/Droplets/504.mp3 Binary files differnew file mode 100644 index 0000000..66e2cd1 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/504.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/505.mp3 b/site/app/partialemergence/sounds/Water/Droplets/505.mp3 Binary files differnew file mode 100644 index 0000000..406db03 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/505.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/506.mp3 b/site/app/partialemergence/sounds/Water/Droplets/506.mp3 Binary files differnew file mode 100644 index 0000000..60988f4 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/506.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/507.mp3 b/site/app/partialemergence/sounds/Water/Droplets/507.mp3 Binary files differnew file mode 100644 index 0000000..7dc3662 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/507.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/508.mp3 b/site/app/partialemergence/sounds/Water/Droplets/508.mp3 Binary files differnew file mode 100644 index 0000000..ba57d16 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/508.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/509.mp3 b/site/app/partialemergence/sounds/Water/Droplets/509.mp3 Binary files differnew file mode 100644 index 0000000..663e594 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/509.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/51.mp3 b/site/app/partialemergence/sounds/Water/Droplets/51.mp3 Binary files differnew file mode 100644 index 0000000..264ca7d --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/51.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/510.mp3 b/site/app/partialemergence/sounds/Water/Droplets/510.mp3 Binary files differnew file mode 100644 index 0000000..8e37848 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/510.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/511.mp3 b/site/app/partialemergence/sounds/Water/Droplets/511.mp3 Binary files differnew file mode 100644 index 0000000..1789a30 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/511.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/512.mp3 b/site/app/partialemergence/sounds/Water/Droplets/512.mp3 Binary files differnew file mode 100644 index 0000000..a728104 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/512.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/513.mp3 b/site/app/partialemergence/sounds/Water/Droplets/513.mp3 Binary files differnew file mode 100644 index 0000000..95a78c2 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/513.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/514.mp3 b/site/app/partialemergence/sounds/Water/Droplets/514.mp3 Binary files differnew file mode 100644 index 0000000..1b32cc9 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/514.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/515.mp3 b/site/app/partialemergence/sounds/Water/Droplets/515.mp3 Binary files differnew file mode 100644 index 0000000..d77ffd8 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/515.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/516.mp3 b/site/app/partialemergence/sounds/Water/Droplets/516.mp3 Binary files differnew file mode 100644 index 0000000..3502c4b --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/516.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/517.mp3 b/site/app/partialemergence/sounds/Water/Droplets/517.mp3 Binary files differnew file mode 100644 index 0000000..130c074 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/517.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/518.mp3 b/site/app/partialemergence/sounds/Water/Droplets/518.mp3 Binary files differnew file mode 100644 index 0000000..6940776 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/518.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/519.mp3 b/site/app/partialemergence/sounds/Water/Droplets/519.mp3 Binary files differnew file mode 100644 index 0000000..18f179a --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/519.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/52.mp3 b/site/app/partialemergence/sounds/Water/Droplets/52.mp3 Binary files differnew file mode 100644 index 0000000..0740868 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/52.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/520.mp3 b/site/app/partialemergence/sounds/Water/Droplets/520.mp3 Binary files differnew file mode 100644 index 0000000..c63e64c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/520.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/521.mp3 b/site/app/partialemergence/sounds/Water/Droplets/521.mp3 Binary files differnew file mode 100644 index 0000000..61d2978 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/521.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/522.mp3 b/site/app/partialemergence/sounds/Water/Droplets/522.mp3 Binary files differnew file mode 100644 index 0000000..5baa849 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/522.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/523.mp3 b/site/app/partialemergence/sounds/Water/Droplets/523.mp3 Binary files differnew file mode 100644 index 0000000..b889034 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/523.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/524.mp3 b/site/app/partialemergence/sounds/Water/Droplets/524.mp3 Binary files differnew file mode 100644 index 0000000..51e9bb4 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/524.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/525.mp3 b/site/app/partialemergence/sounds/Water/Droplets/525.mp3 Binary files differnew file mode 100644 index 0000000..d4ad072 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/525.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/526.mp3 b/site/app/partialemergence/sounds/Water/Droplets/526.mp3 Binary files differnew file mode 100644 index 0000000..98ef33d --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/526.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/527.mp3 b/site/app/partialemergence/sounds/Water/Droplets/527.mp3 Binary files differnew file mode 100644 index 0000000..5e5f9b8 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/527.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/528.mp3 b/site/app/partialemergence/sounds/Water/Droplets/528.mp3 Binary files differnew file mode 100644 index 0000000..d1f40ef --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/528.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/529.mp3 b/site/app/partialemergence/sounds/Water/Droplets/529.mp3 Binary files differnew file mode 100644 index 0000000..13028a3 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/529.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/53.mp3 b/site/app/partialemergence/sounds/Water/Droplets/53.mp3 Binary files differnew file mode 100644 index 0000000..fbcf4ba --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/53.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/530.mp3 b/site/app/partialemergence/sounds/Water/Droplets/530.mp3 Binary files differnew file mode 100644 index 0000000..09171bd --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/530.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/531.mp3 b/site/app/partialemergence/sounds/Water/Droplets/531.mp3 Binary files differnew file mode 100644 index 0000000..33b43ec --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/531.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/532.mp3 b/site/app/partialemergence/sounds/Water/Droplets/532.mp3 Binary files differnew file mode 100644 index 0000000..07aa24e --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/532.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/533.mp3 b/site/app/partialemergence/sounds/Water/Droplets/533.mp3 Binary files differnew file mode 100644 index 0000000..e1c3149 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/533.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/534.mp3 b/site/app/partialemergence/sounds/Water/Droplets/534.mp3 Binary files differnew file mode 100644 index 0000000..2b35e71 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/534.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/535.mp3 b/site/app/partialemergence/sounds/Water/Droplets/535.mp3 Binary files differnew file mode 100644 index 0000000..63b783a --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/535.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/536.mp3 b/site/app/partialemergence/sounds/Water/Droplets/536.mp3 Binary files differnew file mode 100644 index 0000000..5c7f354 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/536.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/537.mp3 b/site/app/partialemergence/sounds/Water/Droplets/537.mp3 Binary files differnew file mode 100644 index 0000000..65212f5 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/537.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/538.mp3 b/site/app/partialemergence/sounds/Water/Droplets/538.mp3 Binary files differnew file mode 100644 index 0000000..1ab81be --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/538.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/539.mp3 b/site/app/partialemergence/sounds/Water/Droplets/539.mp3 Binary files differnew file mode 100644 index 0000000..293e6e7 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/539.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/54.mp3 b/site/app/partialemergence/sounds/Water/Droplets/54.mp3 Binary files differnew file mode 100644 index 0000000..f14f576 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/54.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/540.mp3 b/site/app/partialemergence/sounds/Water/Droplets/540.mp3 Binary files differnew file mode 100644 index 0000000..f843cc0 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/540.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/541.mp3 b/site/app/partialemergence/sounds/Water/Droplets/541.mp3 Binary files differnew file mode 100644 index 0000000..efc6396 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/541.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/542.mp3 b/site/app/partialemergence/sounds/Water/Droplets/542.mp3 Binary files differnew file mode 100644 index 0000000..0fd4dde --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/542.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/543.mp3 b/site/app/partialemergence/sounds/Water/Droplets/543.mp3 Binary files differnew file mode 100644 index 0000000..ae8b083 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/543.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/545.mp3 b/site/app/partialemergence/sounds/Water/Droplets/545.mp3 Binary files differnew file mode 100644 index 0000000..0411199 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/545.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/546.mp3 b/site/app/partialemergence/sounds/Water/Droplets/546.mp3 Binary files differnew file mode 100644 index 0000000..36e4b40 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/546.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/547.mp3 b/site/app/partialemergence/sounds/Water/Droplets/547.mp3 Binary files differnew file mode 100644 index 0000000..8d8ab05 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/547.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/548.mp3 b/site/app/partialemergence/sounds/Water/Droplets/548.mp3 Binary files differnew file mode 100644 index 0000000..4272e7d --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/548.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/549.mp3 b/site/app/partialemergence/sounds/Water/Droplets/549.mp3 Binary files differnew file mode 100644 index 0000000..2c92e68 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/549.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/55.mp3 b/site/app/partialemergence/sounds/Water/Droplets/55.mp3 Binary files differnew file mode 100644 index 0000000..02dd1d8 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/55.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/550.mp3 b/site/app/partialemergence/sounds/Water/Droplets/550.mp3 Binary files differnew file mode 100644 index 0000000..e0fb675 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/550.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/551.mp3 b/site/app/partialemergence/sounds/Water/Droplets/551.mp3 Binary files differnew file mode 100644 index 0000000..cd07f4e --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/551.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/552.mp3 b/site/app/partialemergence/sounds/Water/Droplets/552.mp3 Binary files differnew file mode 100644 index 0000000..5c029b6 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/552.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/553.mp3 b/site/app/partialemergence/sounds/Water/Droplets/553.mp3 Binary files differnew file mode 100644 index 0000000..8c0f1ee --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/553.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/554.mp3 b/site/app/partialemergence/sounds/Water/Droplets/554.mp3 Binary files differnew file mode 100644 index 0000000..d5defa5 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/554.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/555.mp3 b/site/app/partialemergence/sounds/Water/Droplets/555.mp3 Binary files differnew file mode 100644 index 0000000..f3feb21 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/555.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/556.mp3 b/site/app/partialemergence/sounds/Water/Droplets/556.mp3 Binary files differnew file mode 100644 index 0000000..aa79e32 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/556.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/557.mp3 b/site/app/partialemergence/sounds/Water/Droplets/557.mp3 Binary files differnew file mode 100644 index 0000000..f6f572a --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/557.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/558.mp3 b/site/app/partialemergence/sounds/Water/Droplets/558.mp3 Binary files differnew file mode 100644 index 0000000..ec461fd --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/558.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/559.mp3 b/site/app/partialemergence/sounds/Water/Droplets/559.mp3 Binary files differnew file mode 100644 index 0000000..fef97fc --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/559.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/56.mp3 b/site/app/partialemergence/sounds/Water/Droplets/56.mp3 Binary files differnew file mode 100644 index 0000000..66cd072 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/56.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/560.mp3 b/site/app/partialemergence/sounds/Water/Droplets/560.mp3 Binary files differnew file mode 100644 index 0000000..da17a9b --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/560.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/561.mp3 b/site/app/partialemergence/sounds/Water/Droplets/561.mp3 Binary files differnew file mode 100644 index 0000000..e978547 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/561.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/562.mp3 b/site/app/partialemergence/sounds/Water/Droplets/562.mp3 Binary files differnew file mode 100644 index 0000000..3d3f0ae --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/562.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/563.mp3 b/site/app/partialemergence/sounds/Water/Droplets/563.mp3 Binary files differnew file mode 100644 index 0000000..66eaea8 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/563.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/564.mp3 b/site/app/partialemergence/sounds/Water/Droplets/564.mp3 Binary files differnew file mode 100644 index 0000000..6dc04cf --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/564.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/565.mp3 b/site/app/partialemergence/sounds/Water/Droplets/565.mp3 Binary files differnew file mode 100644 index 0000000..d2f3474 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/565.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/566.mp3 b/site/app/partialemergence/sounds/Water/Droplets/566.mp3 Binary files differnew file mode 100644 index 0000000..0d6f6e1 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/566.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/567.mp3 b/site/app/partialemergence/sounds/Water/Droplets/567.mp3 Binary files differnew file mode 100644 index 0000000..0ef0a03 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/567.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/568.mp3 b/site/app/partialemergence/sounds/Water/Droplets/568.mp3 Binary files differnew file mode 100644 index 0000000..c94b782 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/568.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/569.mp3 b/site/app/partialemergence/sounds/Water/Droplets/569.mp3 Binary files differnew file mode 100644 index 0000000..6244931 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/569.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/57.mp3 b/site/app/partialemergence/sounds/Water/Droplets/57.mp3 Binary files differnew file mode 100644 index 0000000..c558150 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/57.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/570.mp3 b/site/app/partialemergence/sounds/Water/Droplets/570.mp3 Binary files differnew file mode 100644 index 0000000..bde716a --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/570.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/571.mp3 b/site/app/partialemergence/sounds/Water/Droplets/571.mp3 Binary files differnew file mode 100644 index 0000000..fe91950 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/571.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/572.mp3 b/site/app/partialemergence/sounds/Water/Droplets/572.mp3 Binary files differnew file mode 100644 index 0000000..609c2d9 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/572.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/573.mp3 b/site/app/partialemergence/sounds/Water/Droplets/573.mp3 Binary files differnew file mode 100644 index 0000000..acc7acd --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/573.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/574.mp3 b/site/app/partialemergence/sounds/Water/Droplets/574.mp3 Binary files differnew file mode 100644 index 0000000..14ee8f7 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/574.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/575.mp3 b/site/app/partialemergence/sounds/Water/Droplets/575.mp3 Binary files differnew file mode 100644 index 0000000..cd6f3f1 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/575.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/576.mp3 b/site/app/partialemergence/sounds/Water/Droplets/576.mp3 Binary files differnew file mode 100644 index 0000000..71d54d8 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/576.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/577.mp3 b/site/app/partialemergence/sounds/Water/Droplets/577.mp3 Binary files differnew file mode 100644 index 0000000..b57b99c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/577.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/578.mp3 b/site/app/partialemergence/sounds/Water/Droplets/578.mp3 Binary files differnew file mode 100644 index 0000000..dba3ab3 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/578.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/579.mp3 b/site/app/partialemergence/sounds/Water/Droplets/579.mp3 Binary files differnew file mode 100644 index 0000000..8efa11c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/579.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/58.mp3 b/site/app/partialemergence/sounds/Water/Droplets/58.mp3 Binary files differnew file mode 100644 index 0000000..7143f0f --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/58.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/59.mp3 b/site/app/partialemergence/sounds/Water/Droplets/59.mp3 Binary files differnew file mode 100644 index 0000000..53f6350 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/59.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/6.mp3 b/site/app/partialemergence/sounds/Water/Droplets/6.mp3 Binary files differnew file mode 100644 index 0000000..2281a04 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/6.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/60.mp3 b/site/app/partialemergence/sounds/Water/Droplets/60.mp3 Binary files differnew file mode 100644 index 0000000..ddc6117 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/60.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/61.mp3 b/site/app/partialemergence/sounds/Water/Droplets/61.mp3 Binary files differnew file mode 100644 index 0000000..a017a8f --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/61.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/62.mp3 b/site/app/partialemergence/sounds/Water/Droplets/62.mp3 Binary files differnew file mode 100644 index 0000000..2ba578a --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/62.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/63.mp3 b/site/app/partialemergence/sounds/Water/Droplets/63.mp3 Binary files differnew file mode 100644 index 0000000..348d906 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/63.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/64.mp3 b/site/app/partialemergence/sounds/Water/Droplets/64.mp3 Binary files differnew file mode 100644 index 0000000..3a55ef0 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/64.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/65.mp3 b/site/app/partialemergence/sounds/Water/Droplets/65.mp3 Binary files differnew file mode 100644 index 0000000..88f9410 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/65.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/66.mp3 b/site/app/partialemergence/sounds/Water/Droplets/66.mp3 Binary files differnew file mode 100644 index 0000000..aee32e2 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/66.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/67.mp3 b/site/app/partialemergence/sounds/Water/Droplets/67.mp3 Binary files differnew file mode 100644 index 0000000..b007b33 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/67.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/68.mp3 b/site/app/partialemergence/sounds/Water/Droplets/68.mp3 Binary files differnew file mode 100644 index 0000000..b07c4f2 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/68.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/69.mp3 b/site/app/partialemergence/sounds/Water/Droplets/69.mp3 Binary files differnew file mode 100644 index 0000000..746c8dd --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/69.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/7.mp3 b/site/app/partialemergence/sounds/Water/Droplets/7.mp3 Binary files differnew file mode 100644 index 0000000..c7bbc7e --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/7.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/70.mp3 b/site/app/partialemergence/sounds/Water/Droplets/70.mp3 Binary files differnew file mode 100644 index 0000000..030af2d --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/70.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/71.mp3 b/site/app/partialemergence/sounds/Water/Droplets/71.mp3 Binary files differnew file mode 100644 index 0000000..3962ac5 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/71.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/72.mp3 b/site/app/partialemergence/sounds/Water/Droplets/72.mp3 Binary files differnew file mode 100644 index 0000000..32de894 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/72.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/73.mp3 b/site/app/partialemergence/sounds/Water/Droplets/73.mp3 Binary files differnew file mode 100644 index 0000000..5eba927 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/73.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/74.mp3 b/site/app/partialemergence/sounds/Water/Droplets/74.mp3 Binary files differnew file mode 100644 index 0000000..a7b4c5b --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/74.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/75.mp3 b/site/app/partialemergence/sounds/Water/Droplets/75.mp3 Binary files differnew file mode 100644 index 0000000..66e872f --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/75.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/76.mp3 b/site/app/partialemergence/sounds/Water/Droplets/76.mp3 Binary files differnew file mode 100644 index 0000000..03a23a0 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/76.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/77.mp3 b/site/app/partialemergence/sounds/Water/Droplets/77.mp3 Binary files differnew file mode 100644 index 0000000..9332f16 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/77.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/78.mp3 b/site/app/partialemergence/sounds/Water/Droplets/78.mp3 Binary files differnew file mode 100644 index 0000000..2929daf --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/78.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/79.mp3 b/site/app/partialemergence/sounds/Water/Droplets/79.mp3 Binary files differnew file mode 100644 index 0000000..037a475 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/79.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/8.mp3 b/site/app/partialemergence/sounds/Water/Droplets/8.mp3 Binary files differnew file mode 100644 index 0000000..82a9256 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/8.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/80.mp3 b/site/app/partialemergence/sounds/Water/Droplets/80.mp3 Binary files differnew file mode 100644 index 0000000..cde5d06 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/80.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/81.mp3 b/site/app/partialemergence/sounds/Water/Droplets/81.mp3 Binary files differnew file mode 100644 index 0000000..cc18b66 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/81.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/82.mp3 b/site/app/partialemergence/sounds/Water/Droplets/82.mp3 Binary files differnew file mode 100644 index 0000000..db4bf32 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/82.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/83.mp3 b/site/app/partialemergence/sounds/Water/Droplets/83.mp3 Binary files differnew file mode 100644 index 0000000..822ba20 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/83.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/84.mp3 b/site/app/partialemergence/sounds/Water/Droplets/84.mp3 Binary files differnew file mode 100644 index 0000000..4703da7 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/84.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/85.mp3 b/site/app/partialemergence/sounds/Water/Droplets/85.mp3 Binary files differnew file mode 100644 index 0000000..13be1d5 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/85.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/86.mp3 b/site/app/partialemergence/sounds/Water/Droplets/86.mp3 Binary files differnew file mode 100644 index 0000000..ac0541b --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/86.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/87.mp3 b/site/app/partialemergence/sounds/Water/Droplets/87.mp3 Binary files differnew file mode 100644 index 0000000..af889fb --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/87.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/88.mp3 b/site/app/partialemergence/sounds/Water/Droplets/88.mp3 Binary files differnew file mode 100644 index 0000000..533b36d --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/88.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/89.mp3 b/site/app/partialemergence/sounds/Water/Droplets/89.mp3 Binary files differnew file mode 100644 index 0000000..5aaff8b --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/89.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/9.mp3 b/site/app/partialemergence/sounds/Water/Droplets/9.mp3 Binary files differnew file mode 100644 index 0000000..6ac5333 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/9.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/90.mp3 b/site/app/partialemergence/sounds/Water/Droplets/90.mp3 Binary files differnew file mode 100644 index 0000000..3280d1f --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/90.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/91.mp3 b/site/app/partialemergence/sounds/Water/Droplets/91.mp3 Binary files differnew file mode 100644 index 0000000..0a0b06f --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/91.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/92.mp3 b/site/app/partialemergence/sounds/Water/Droplets/92.mp3 Binary files differnew file mode 100644 index 0000000..c5ea873 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/92.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/93.mp3 b/site/app/partialemergence/sounds/Water/Droplets/93.mp3 Binary files differnew file mode 100644 index 0000000..4370ac3 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/93.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/94.mp3 b/site/app/partialemergence/sounds/Water/Droplets/94.mp3 Binary files differnew file mode 100644 index 0000000..f26ddc0 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/94.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/95.mp3 b/site/app/partialemergence/sounds/Water/Droplets/95.mp3 Binary files differnew file mode 100644 index 0000000..319c29f --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/95.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/96.mp3 b/site/app/partialemergence/sounds/Water/Droplets/96.mp3 Binary files differnew file mode 100644 index 0000000..ceb1bb2 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/96.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/97.mp3 b/site/app/partialemergence/sounds/Water/Droplets/97.mp3 Binary files differnew file mode 100644 index 0000000..1fcccbd --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/97.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/98.mp3 b/site/app/partialemergence/sounds/Water/Droplets/98.mp3 Binary files differnew file mode 100644 index 0000000..8220ed8 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/98.mp3 diff --git a/site/app/partialemergence/sounds/Water/Droplets/99.mp3 b/site/app/partialemergence/sounds/Water/Droplets/99.mp3 Binary files differnew file mode 100644 index 0000000..d5b57cc --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Droplets/99.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/1.mp3 b/site/app/partialemergence/sounds/Water/Paddling/1.mp3 Binary files differnew file mode 100644 index 0000000..28d04c7 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/1.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/10.mp3 b/site/app/partialemergence/sounds/Water/Paddling/10.mp3 Binary files differnew file mode 100644 index 0000000..55adb7a --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/10.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/100.mp3 b/site/app/partialemergence/sounds/Water/Paddling/100.mp3 Binary files differnew file mode 100644 index 0000000..416ccdd --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/100.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/11.mp3 b/site/app/partialemergence/sounds/Water/Paddling/11.mp3 Binary files differnew file mode 100644 index 0000000..d72454b --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/11.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/12.mp3 b/site/app/partialemergence/sounds/Water/Paddling/12.mp3 Binary files differnew file mode 100644 index 0000000..5e4d459 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/12.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/13.mp3 b/site/app/partialemergence/sounds/Water/Paddling/13.mp3 Binary files differnew file mode 100644 index 0000000..3f27d52 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/13.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/14.mp3 b/site/app/partialemergence/sounds/Water/Paddling/14.mp3 Binary files differnew file mode 100644 index 0000000..a3cc7f1 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/14.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/15.mp3 b/site/app/partialemergence/sounds/Water/Paddling/15.mp3 Binary files differnew file mode 100644 index 0000000..180ca6c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/15.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/16.mp3 b/site/app/partialemergence/sounds/Water/Paddling/16.mp3 Binary files differnew file mode 100644 index 0000000..6e4b9da --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/16.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/17.mp3 b/site/app/partialemergence/sounds/Water/Paddling/17.mp3 Binary files differnew file mode 100644 index 0000000..5039fc9 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/17.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/18.mp3 b/site/app/partialemergence/sounds/Water/Paddling/18.mp3 Binary files differnew file mode 100644 index 0000000..d6e9268 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/18.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/19.mp3 b/site/app/partialemergence/sounds/Water/Paddling/19.mp3 Binary files differnew file mode 100644 index 0000000..1045713 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/19.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/2.mp3 b/site/app/partialemergence/sounds/Water/Paddling/2.mp3 Binary files differnew file mode 100644 index 0000000..36ce4df --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/2.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/20.mp3 b/site/app/partialemergence/sounds/Water/Paddling/20.mp3 Binary files differnew file mode 100644 index 0000000..c3d820f --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/20.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/21.mp3 b/site/app/partialemergence/sounds/Water/Paddling/21.mp3 Binary files differnew file mode 100644 index 0000000..b826aae --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/21.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/22.mp3 b/site/app/partialemergence/sounds/Water/Paddling/22.mp3 Binary files differnew file mode 100644 index 0000000..e520f73 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/22.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/23.mp3 b/site/app/partialemergence/sounds/Water/Paddling/23.mp3 Binary files differnew file mode 100644 index 0000000..5b3d117 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/23.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/24.mp3 b/site/app/partialemergence/sounds/Water/Paddling/24.mp3 Binary files differnew file mode 100644 index 0000000..bbdf293 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/24.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/25.mp3 b/site/app/partialemergence/sounds/Water/Paddling/25.mp3 Binary files differnew file mode 100644 index 0000000..56085c7 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/25.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/26.mp3 b/site/app/partialemergence/sounds/Water/Paddling/26.mp3 Binary files differnew file mode 100644 index 0000000..3772cf3 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/26.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/27.mp3 b/site/app/partialemergence/sounds/Water/Paddling/27.mp3 Binary files differnew file mode 100644 index 0000000..ccf85f4 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/27.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/28.mp3 b/site/app/partialemergence/sounds/Water/Paddling/28.mp3 Binary files differnew file mode 100644 index 0000000..8400a0e --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/28.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/29.mp3 b/site/app/partialemergence/sounds/Water/Paddling/29.mp3 Binary files differnew file mode 100644 index 0000000..9d723b8 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/29.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/3.mp3 b/site/app/partialemergence/sounds/Water/Paddling/3.mp3 Binary files differnew file mode 100644 index 0000000..53b974b --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/3.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/30.mp3 b/site/app/partialemergence/sounds/Water/Paddling/30.mp3 Binary files differnew file mode 100644 index 0000000..8550f5f --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/30.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/31.mp3 b/site/app/partialemergence/sounds/Water/Paddling/31.mp3 Binary files differnew file mode 100644 index 0000000..24997a0 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/31.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/32.mp3 b/site/app/partialemergence/sounds/Water/Paddling/32.mp3 Binary files differnew file mode 100644 index 0000000..c2e32f2 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/32.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/33.mp3 b/site/app/partialemergence/sounds/Water/Paddling/33.mp3 Binary files differnew file mode 100644 index 0000000..aa12122 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/33.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/34.mp3 b/site/app/partialemergence/sounds/Water/Paddling/34.mp3 Binary files differnew file mode 100644 index 0000000..28a7690 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/34.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/35.mp3 b/site/app/partialemergence/sounds/Water/Paddling/35.mp3 Binary files differnew file mode 100644 index 0000000..080a529 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/35.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/36.mp3 b/site/app/partialemergence/sounds/Water/Paddling/36.mp3 Binary files differnew file mode 100644 index 0000000..26ec3ec --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/36.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/37.mp3 b/site/app/partialemergence/sounds/Water/Paddling/37.mp3 Binary files differnew file mode 100644 index 0000000..1389076 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/37.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/38.mp3 b/site/app/partialemergence/sounds/Water/Paddling/38.mp3 Binary files differnew file mode 100644 index 0000000..b949db3 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/38.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/39.mp3 b/site/app/partialemergence/sounds/Water/Paddling/39.mp3 Binary files differnew file mode 100644 index 0000000..4ddf427 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/39.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/4.mp3 b/site/app/partialemergence/sounds/Water/Paddling/4.mp3 Binary files differnew file mode 100644 index 0000000..e21a6cb --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/4.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/40.mp3 b/site/app/partialemergence/sounds/Water/Paddling/40.mp3 Binary files differnew file mode 100644 index 0000000..024f6b2 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/40.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/41.mp3 b/site/app/partialemergence/sounds/Water/Paddling/41.mp3 Binary files differnew file mode 100644 index 0000000..51bf28c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/41.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/42.mp3 b/site/app/partialemergence/sounds/Water/Paddling/42.mp3 Binary files differnew file mode 100644 index 0000000..c3e21e7 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/42.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/43.mp3 b/site/app/partialemergence/sounds/Water/Paddling/43.mp3 Binary files differnew file mode 100644 index 0000000..4054854 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/43.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/44.mp3 b/site/app/partialemergence/sounds/Water/Paddling/44.mp3 Binary files differnew file mode 100644 index 0000000..cf18049 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/44.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/45.mp3 b/site/app/partialemergence/sounds/Water/Paddling/45.mp3 Binary files differnew file mode 100644 index 0000000..1821806 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/45.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/46.mp3 b/site/app/partialemergence/sounds/Water/Paddling/46.mp3 Binary files differnew file mode 100644 index 0000000..26d7e1a --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/46.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/47.mp3 b/site/app/partialemergence/sounds/Water/Paddling/47.mp3 Binary files differnew file mode 100644 index 0000000..c6bcf00 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/47.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/48.mp3 b/site/app/partialemergence/sounds/Water/Paddling/48.mp3 Binary files differnew file mode 100644 index 0000000..04a4238 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/48.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/49.mp3 b/site/app/partialemergence/sounds/Water/Paddling/49.mp3 Binary files differnew file mode 100644 index 0000000..64a6576 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/49.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/5.mp3 b/site/app/partialemergence/sounds/Water/Paddling/5.mp3 Binary files differnew file mode 100644 index 0000000..33b6ff8 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/5.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/50.mp3 b/site/app/partialemergence/sounds/Water/Paddling/50.mp3 Binary files differnew file mode 100644 index 0000000..ec55316 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/50.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/51.mp3 b/site/app/partialemergence/sounds/Water/Paddling/51.mp3 Binary files differnew file mode 100644 index 0000000..bba47e3 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/51.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/52.mp3 b/site/app/partialemergence/sounds/Water/Paddling/52.mp3 Binary files differnew file mode 100644 index 0000000..55cdf38 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/52.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/53.mp3 b/site/app/partialemergence/sounds/Water/Paddling/53.mp3 Binary files differnew file mode 100644 index 0000000..f760889 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/53.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/54.mp3 b/site/app/partialemergence/sounds/Water/Paddling/54.mp3 Binary files differnew file mode 100644 index 0000000..0d11b66 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/54.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/55.mp3 b/site/app/partialemergence/sounds/Water/Paddling/55.mp3 Binary files differnew file mode 100644 index 0000000..764bd66 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/55.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/56.mp3 b/site/app/partialemergence/sounds/Water/Paddling/56.mp3 Binary files differnew file mode 100644 index 0000000..74eb527 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/56.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/57.mp3 b/site/app/partialemergence/sounds/Water/Paddling/57.mp3 Binary files differnew file mode 100644 index 0000000..01a8725 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/57.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/58.mp3 b/site/app/partialemergence/sounds/Water/Paddling/58.mp3 Binary files differnew file mode 100644 index 0000000..317de16 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/58.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/59.mp3 b/site/app/partialemergence/sounds/Water/Paddling/59.mp3 Binary files differnew file mode 100644 index 0000000..7fecdbb --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/59.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/6.mp3 b/site/app/partialemergence/sounds/Water/Paddling/6.mp3 Binary files differnew file mode 100644 index 0000000..253db48 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/6.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/60.mp3 b/site/app/partialemergence/sounds/Water/Paddling/60.mp3 Binary files differnew file mode 100644 index 0000000..f7304a8 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/60.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/61.mp3 b/site/app/partialemergence/sounds/Water/Paddling/61.mp3 Binary files differnew file mode 100644 index 0000000..b0b3326 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/61.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/62.mp3 b/site/app/partialemergence/sounds/Water/Paddling/62.mp3 Binary files differnew file mode 100644 index 0000000..f74c2fe --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/62.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/63.mp3 b/site/app/partialemergence/sounds/Water/Paddling/63.mp3 Binary files differnew file mode 100644 index 0000000..e1177aa --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/63.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/64.mp3 b/site/app/partialemergence/sounds/Water/Paddling/64.mp3 Binary files differnew file mode 100644 index 0000000..87bd72b --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/64.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/65.mp3 b/site/app/partialemergence/sounds/Water/Paddling/65.mp3 Binary files differnew file mode 100644 index 0000000..31af83f --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/65.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/66.mp3 b/site/app/partialemergence/sounds/Water/Paddling/66.mp3 Binary files differnew file mode 100644 index 0000000..d8af6cf --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/66.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/67.mp3 b/site/app/partialemergence/sounds/Water/Paddling/67.mp3 Binary files differnew file mode 100644 index 0000000..9787ff5 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/67.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/68.mp3 b/site/app/partialemergence/sounds/Water/Paddling/68.mp3 Binary files differnew file mode 100644 index 0000000..05c61f7 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/68.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/69.mp3 b/site/app/partialemergence/sounds/Water/Paddling/69.mp3 Binary files differnew file mode 100644 index 0000000..894fdcd --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/69.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/7.mp3 b/site/app/partialemergence/sounds/Water/Paddling/7.mp3 Binary files differnew file mode 100644 index 0000000..ddc7fcf --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/7.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/70.mp3 b/site/app/partialemergence/sounds/Water/Paddling/70.mp3 Binary files differnew file mode 100644 index 0000000..14e4928 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/70.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/71.mp3 b/site/app/partialemergence/sounds/Water/Paddling/71.mp3 Binary files differnew file mode 100644 index 0000000..5bfd0b6 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/71.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/72.mp3 b/site/app/partialemergence/sounds/Water/Paddling/72.mp3 Binary files differnew file mode 100644 index 0000000..60b2c56 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/72.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/73.mp3 b/site/app/partialemergence/sounds/Water/Paddling/73.mp3 Binary files differnew file mode 100644 index 0000000..715e77a --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/73.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/74.mp3 b/site/app/partialemergence/sounds/Water/Paddling/74.mp3 Binary files differnew file mode 100644 index 0000000..389d12f --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/74.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/75.mp3 b/site/app/partialemergence/sounds/Water/Paddling/75.mp3 Binary files differnew file mode 100644 index 0000000..e82ae66 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/75.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/76.mp3 b/site/app/partialemergence/sounds/Water/Paddling/76.mp3 Binary files differnew file mode 100644 index 0000000..726ebf2 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/76.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/77.mp3 b/site/app/partialemergence/sounds/Water/Paddling/77.mp3 Binary files differnew file mode 100644 index 0000000..bbda6cd --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/77.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/78.mp3 b/site/app/partialemergence/sounds/Water/Paddling/78.mp3 Binary files differnew file mode 100644 index 0000000..b9363fb --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/78.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/79.mp3 b/site/app/partialemergence/sounds/Water/Paddling/79.mp3 Binary files differnew file mode 100644 index 0000000..549f054 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/79.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/8.mp3 b/site/app/partialemergence/sounds/Water/Paddling/8.mp3 Binary files differnew file mode 100644 index 0000000..7656b93 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/8.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/80.mp3 b/site/app/partialemergence/sounds/Water/Paddling/80.mp3 Binary files differnew file mode 100644 index 0000000..4ac99ca --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/80.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/81.mp3 b/site/app/partialemergence/sounds/Water/Paddling/81.mp3 Binary files differnew file mode 100644 index 0000000..4e7d90f --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/81.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/82.mp3 b/site/app/partialemergence/sounds/Water/Paddling/82.mp3 Binary files differnew file mode 100644 index 0000000..c272d99 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/82.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/83.mp3 b/site/app/partialemergence/sounds/Water/Paddling/83.mp3 Binary files differnew file mode 100644 index 0000000..c487263 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/83.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/84.mp3 b/site/app/partialemergence/sounds/Water/Paddling/84.mp3 Binary files differnew file mode 100644 index 0000000..736c012 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/84.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/85.mp3 b/site/app/partialemergence/sounds/Water/Paddling/85.mp3 Binary files differnew file mode 100644 index 0000000..fb8af59 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/85.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/86.mp3 b/site/app/partialemergence/sounds/Water/Paddling/86.mp3 Binary files differnew file mode 100644 index 0000000..bb3749c --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/86.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/87.mp3 b/site/app/partialemergence/sounds/Water/Paddling/87.mp3 Binary files differnew file mode 100644 index 0000000..94b1830 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/87.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/88.mp3 b/site/app/partialemergence/sounds/Water/Paddling/88.mp3 Binary files differnew file mode 100644 index 0000000..adfa03a --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/88.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/89.mp3 b/site/app/partialemergence/sounds/Water/Paddling/89.mp3 Binary files differnew file mode 100644 index 0000000..d38aec0 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/89.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/9.mp3 b/site/app/partialemergence/sounds/Water/Paddling/9.mp3 Binary files differnew file mode 100644 index 0000000..e0dfc4b --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/9.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/90.mp3 b/site/app/partialemergence/sounds/Water/Paddling/90.mp3 Binary files differnew file mode 100644 index 0000000..ba243e6 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/90.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/91.mp3 b/site/app/partialemergence/sounds/Water/Paddling/91.mp3 Binary files differnew file mode 100644 index 0000000..7ed13da --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/91.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/92.mp3 b/site/app/partialemergence/sounds/Water/Paddling/92.mp3 Binary files differnew file mode 100644 index 0000000..ed4c84e --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/92.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/93.mp3 b/site/app/partialemergence/sounds/Water/Paddling/93.mp3 Binary files differnew file mode 100644 index 0000000..f6f1e02 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/93.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/94.mp3 b/site/app/partialemergence/sounds/Water/Paddling/94.mp3 Binary files differnew file mode 100644 index 0000000..b6525de --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/94.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/95.mp3 b/site/app/partialemergence/sounds/Water/Paddling/95.mp3 Binary files differnew file mode 100644 index 0000000..9955f67 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/95.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/96.mp3 b/site/app/partialemergence/sounds/Water/Paddling/96.mp3 Binary files differnew file mode 100644 index 0000000..f6a5b5e --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/96.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/97.mp3 b/site/app/partialemergence/sounds/Water/Paddling/97.mp3 Binary files differnew file mode 100644 index 0000000..b2eb357 --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/97.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/98.mp3 b/site/app/partialemergence/sounds/Water/Paddling/98.mp3 Binary files differnew file mode 100644 index 0000000..dcccd9b --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/98.mp3 diff --git a/site/app/partialemergence/sounds/Water/Paddling/99.mp3 b/site/app/partialemergence/sounds/Water/Paddling/99.mp3 Binary files differnew file mode 100644 index 0000000..a7e400d --- /dev/null +++ b/site/app/partialemergence/sounds/Water/Paddling/99.mp3 |