v o o d o o c h i l d / : r e d e m p t i o n s o n g s - Christian Oyarzún Roa

Page 1



voodoochild/: redemption songs primera edici贸n

Christian Oyarz煤n Roa

vanoeditorial.com 2015



1 2

This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License http://creativecommons.org/licenses/by-nc-sa/4.0/

3 4 5 6 7 8 9 10 11 12 13 14 15 16 17

All songs and visuals were composed, writen and coded by coyarzun@error404.cl Except: -"El Aparecido" by Victor Jara -"L'ete Indien" by Joe Dassin -"She Lost" by Ian Curtis/Joy Division -"A Forest" Charlotte Sometimes, by Robert Smith/The Cure -"Punkrocker" by Iggy Pop/Teddybears -"Reptile" by The Church -"Flag", a cover of "No necesitamos banderas" by Jorge González/Los Prisioneros -lyrics on "OkMickeyMouse" taken from "The Mickey Mouse March", by Jimmie Dodd, ending of Stanley Kubrick´s Full Metal Jacket -lyrics of "AnemicKover3" taken from "Anemic Cinema", by Rose Sèlavy -second chorus of "slowlyBitingU" taken from "No sé, no sé", by Rumba 3 -verse two of "Silvestein" taken from "Natural", by Babasónicos -The Boid and Flock classes used in "LostMan"'s visuals are based on Flocking example by Daniel Shiffman about Craig Reynold's Boids

18 19 20 21 22 23 24

For music, images and further info please check: http://soundcloud.com/imavoodoochild http://www.facebook.com/pages/voodoochild/150150278338074 http://www.youtube.com/user/coyarzun http://error404.cl/voodoochild

25 26 27

Designed by coyarzun@error404.cl SCL:2015/06

3


4


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

+redemptionSongs credits.txt..................................................................3 readme.txt...................................................................5 +redemptionSongs_20150616.....................................................7 redemptionSongs_20150616.pde............................................7 donMiguel.pde...........................................................8 VArduinoManager.pde.....................................................9 VMidiManager.pde........................................................11 VStageManager.pde.......................................................12 VZong.pde...............................................................15 XZong.pde...............................................................16 anachronika_FreshWeedow.pde.............................................18 anachronika_okMickey.pde................................................22 covers_AForest.pde......................................................25 covers_Punkrocker.pde...................................................34 covers_Reptile.pde......................................................38 covers_sheLost.pde......................................................43 songs_adaptativeRadiation.pde...........................................46 songs_animalConciousness.pde............................................50 songs_ElAparecido.pde...................................................53 songs_Escaleras.pde.....................................................58 songs_Features.pde......................................................64 songs_GeometricAttraction.pde...........................................68 songs_Intrincate.pde....................................................72 songs_LeteIndien.pde....................................................76 songs_TheEternalCitySong.pde............................................80 songs_TuFiesta.pde......................................................83 transitio_flowRsong.pde.................................................87 BeatMapAndMore.pde......................................................88 manyVisuals.pde.........................................................90 vCosas.pde..............................................................127 +data...................................................................139 aforest_lyrics.txt.................................................139 basspatterns.txt...................................................140 drumpatterns.txt...................................................141 guitarpatterns.txt.................................................142 punkrocker.txt.....................................................143 shelostlyrics.txt..................................................144 keymickey.txt......................................................145 freshwidow2010.txt.................................................146 +visuals...........................................................147 blobworld.xml.................................................147 keymi_logo.xml................................................177 kuernos_logo.xml..............................................182 loogoo.xml....................................................186 +xml...............................................................207 ahardplace_eng.xml............................................207 anemickover3.xml..............................................221 antarctic.xml.................................................230 b17.xml.......................................................241 charlottesometimes.xml........................................253 flag.xml......................................................266 lostman.xml...................................................286 loveedn.xml...................................................295 silverstein.xml...............................................307 slowlybittingU.xml............................................316 songzero.xml..................................................326 sunlight.xml..................................................342 +voodoosing_20150616.........................................................359 voodoosing_20150616.pde.................................................359 DM.pde..................................................................360

5


6


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17

/********************************************************/ /* */ /* VOODOOCHILD/: */ /* REDEMPTION SONGS */ /* 2007-2015 */ /* EXTENDED PLAYBACK */ /* */ /* coded & composed by: coyarzun@error404.cl */ /* */ /********************************************************/ import processing.serial.*; import cc.arduino.*; import hypermedia.net.*; import promidi.*; import rita.*; import arb.soundcipher.*; import de.looksgood.ani.*;

18 19

PApplet p = this;

20 21 22 23 24 25 26 27 28

SCScore score = new SCScore(); VArduinoManager arduinoManager; VMidiManager midiManager; VStageManager stageManager; int gOperationFlag; PFont mono; boolean mini = true; DonMiguel donmiguel;

29 30 31 32

boolean scrollOn, halloesOn, innerOn, outLineOn, vertexOn, cycleOn; int screendiv = 1; float wscalef, ydisplacement;

33 34 35 36 37 38 39 40 41 42 43 44 45 46

void setup(){ if(!mini)size(displayWidth,displayHeight,P3D); else size(512,384,P3D); colorMode(HSB); wscalef = width/float(512); ydisplacement = (height-384*wscalef)*.25; mono = loadFont("AndaleMono-8.vlw");//CoyarzunAtarinormal-8.vlw");// textFont(mono, 8); donmiguel = new DonMiguel(); midiManager = new VMidiManager(); arduinoManager = new VArduinoManager(); stageManager = new VStageManager();

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

halloesOn innerOn outLineOn vertexOn cycleOn scrollOn

= = = = = =

true; true; false; false; false; false;

} void draw(){ background(240,255,255); noSmooth(); noCursor(); switch(gOperationFlag){ case 0: midiManager.draw(); break; case 1: arduinoManager.draw(); break; case 2: stageManager.draw(); break; case 3: break; } fill(112); pushMatrix(); text("VOODOOCHILD/:REDEMPTION SONGS: ", 8, 12); if(gOperationFlag!=0 && gOperationFlag!=1 && (gOperationFlag==2 && stageManager.operationFlag!=0)){ text("MIDI Out Ch# "+midiManager.outputChan, 8, 24+12); if(arduinoManager.on) text("Arduino Enabled on Port "+arduinoManager.serialPort, 8, 36+12); else text("Arduino Disabled ", 8, 36+12); } if(gOperationFlag==2 && stageManager.operationFlag!=0){ float aux = textWidth("VOODOOCHILD/:REDEMPTION SONGS: "); noStroke(); if(!stageManager.daSong.sequencer.isRunning()) fill(255); else fill(112,255,255); rect(0, 16, textWidth(stageManager.daSong.name)+8+8, 12); fill(112); text(stageManager.daSong.name, 8, 24); } popMatrix();

94 95 96 97 98 99 100 101 102 103 104 105 106 107 108

} void keyReleased(){ switch(gOperationFlag){ case 0: midiManager.keyReleased(); break; case 1: arduinoManager.keyReleased(); break; case 2: stageManager.keyReleased(); break; } }

109

7


1 2 3

class DonMiguel { String lastlyric = ""; UDP udp; // define the UDP object

4

DonMiguel() { udp = new UDP( p, 6000, "224.0.0.1" ); udp.listen( true ); } void sing(String $1) { try { lastlyric = $1; udp.send( $1 ); } catch(Exception e) { } } void sing(String $1, boolean isfemale) {//not yet try { lastlyric = $1; udp.send( $1 ); } catch(Exception e) { } } // UDP udp; // define the UDP object // boolean local; // String lastlyric = ""; // // // DonMiguel(boolean l){ // local = l; // udp = new UDP( p, 6000, "224.0.0.1" ); // udp.listen( true ); // } // // void sing(String $1){ // try{ // lastlyric = $1; // udp.send( $1 ); // } // catch(Exception e){ // } // } // void sing(String $1, boolean isfemale){//not yet // try{ // lastlyric = $1; // udp.send( $1 ); // } // catch(Exception e){ // } // }

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

8

}

RiSpeech speech1, speech2; DonMiguel() { speech1 = new RiSpeech(p); speech1.setVoice("kevin"); speech2 = new RiSpeech(p); speech2.useMacTTS(); speech2.setVoice("Kathy"); } void sing(String $1) { try { if (random(100)>50) { speech1.speak($1); } else { speech2.speak($1); } } catch(Exception e) { } } void sing(String $1, boolean isfemale) { try { if (!isfemale) { speech1.speak($1); } else { speech2.speak($1); } } catch(Exception e) { } }


1 2 3 4

class VArduinoManager {//en el futuro extender esta clase "scroll menu" o algo asi Arduino arduino; int serialPort; boolean on;

5 6 7 8

String[] devices; int operationFlag; int scrollPos;

9 10 11 12 13

int int int int

potePin kickPin snarePin hihatPin

= = = =

0; 3; 5; 6;

14 15 16

int kickVal, snareval, hihatVal; int poteVal, maxVal;

17 18 19

VArduinoManager() { devices = new String[Arduino.list().length+1];

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

for (int i=0; i<devices.length; i++) { if (i<devices.length-1) devices[i] = Arduino.list()[i]; else devices[i] = "Plese no Arduino today"; } serialPort = -1; scrollPos = -1; } void initArduino(int sch) { on = (sch!=devices.length-1); if (on) { try { arduino = new Arduino(p, devices[sch], 57600); arduino.pinMode(kickPin, Arduino.OUTPUT); arduino.pinMode(snarePin, Arduino.OUTPUT); arduino.pinMode(hihatPin, Arduino.OUTPUT); } catch(Exception e) { on = false; } serialPort = sch; } println("arduino on: "+on); } void doPote() { poteVal = arduino.analogRead(potePin); maxVal = (int)map(poteVal, 0, 1023, 0, 255); } void doKick() { try { arduino.analogWrite(kickPin, maxVal); println("arduino.analogWrite("+kickPin+", "+maxVal+")"); } catch(Exception e) { } } void muteKick() { try { arduino.analogWrite(kickPin, 0); } catch(Exception e) { } } void doSnare() { try { arduino.analogWrite(snarePin, int(maxVal*0.75)); } catch(Exception e) { } } void muteSnare() { try { arduino.analogWrite(snarePin, 0); } catch(Exception e) { } } void doHat() { try { arduino.analogWrite(hihatPin, int(maxVal*.5)); } catch(Exception e) { } } void muteHat() { try { arduino.analogWrite(hihatPin, 0); } catch(Exception e) { } } void draw() { switch(operationFlag) { case 0: default: drawSelectOutput(); break; } } void keyReleased() { switch(operationFlag) { case 0: default: keyReleasedSelectOutput(); break; } } void keyReleasedSelectOutput() { if (keyCode==32 || keyCode==10) {//spacebar o return

9


if (scrollPos>-1) { initArduino(scrollPos); gOperationFlag = 2; }

111 112 113 114

} else if (keyCode>=48 && keyCode <=57) { int pnum = constrain(keyCode-48, 0, 9); pnum%=devices.length; scrollPos = pnum; } else if (keyCode>=37 && keyCode<=40) { //println(keyCode); if (keyCode==38) { scrollPos--; if (scrollPos<-1)scrollPos=devices.length-1; } else if (keyCode==40) { scrollPos++; scrollPos%=devices.length; } }

115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131

} void drawSelectOutput() { int scrollW = 240; //background(255); pushMatrix(); translate(16, 16); noSmooth(); fill(255); rect(0, 3, scrollW, (devices.length+1)*12); fill((frameCount/2)%2==0?240:122, 240, 240); noStroke(); rect(0, (scrollPos+1)*12+3, scrollW, 12); fill(0); text("PLEASE SELECT AN ARDUINO DEVICE:", 8, 12); for (int i=0; i<devices.length; i++) { translate(0, 12); text("["+i+"] "+devices[i], 8, 12); } popMatrix(); }

132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153

10

}


1 2 3 4 5 6

class VMidiManager { MidiIO midiIO; int outputChan; String[] inputDevices, outputDevices; int operationFlag; int scrollPos;

7

VMidiManager() { midiIO = MidiIO.getInstance(); inputDevices = new String[midiIO.numberOfInputDevices()]; outputDevices = new String[midiIO.numberOfOutputDevices()]; for (int i=0; i<inputDevices.length; i++) { inputDevices[i] = midiIO.getInputDeviceName(i); } for (int i=0; i<outputDevices.length; i++) { outputDevices[i] = midiIO.getOutputDeviceName(i); } outputChan = -1; scrollPos = -1; } void initMidi(int mch) { outputChan = mch; for (int j=0; j<16; j++) { for (int i=0; i<127; i++) { (midiIO.getMidiOut(j, outputChan)).sendNote(new Note(i, 0, 0)); } } } void draw() { switch(operationFlag) { case 0: default: drawSelectOutput(); break; } } void keyReleased() { switch(operationFlag) { case 0: default: keyReleasedSelectOutput(); break; } } void keyReleasedSelectOutput() { if (keyCode==32 || keyCode==10) {//spacebar o return if (scrollPos>-1) { initMidi(scrollPos); gOperationFlag = 1; } } else if (keyCode>=48 && keyCode <=57) { int pnum = constrain(keyCode-48, 0, 9); pnum%=outputDevices.length; scrollPos = pnum; } else if (keyCode>=37 && keyCode<=40) { //println(keyCode); if (keyCode==38) { scrollPos--; if (scrollPos<-1)scrollPos=outputDevices.length-1; } else if (keyCode==40) { scrollPos++; scrollPos%=outputDevices.length; } } } void drawSelectOutput() { int scrollW = 240; //background(255); pushMatrix(); translate(16, 16); noSmooth(); fill(255); rect(0, 3, scrollW, (outputDevices.length+1)*12); fill((frameCount/2)%2==0?240:122, 240, 240); noStroke(); rect(0, (scrollPos+1)*12+3, scrollW, 12); fill(0); text("PLEASE SELECT A MIDI OUTPUT DEVICE:", 8, 12); for (int i=0; i<outputDevices.length; i++) { translate(0, 12); text("["+i+"] "+outputDevices[i], 8, 12); } popMatrix(); }

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

11


1 2 3 4 5 6 7

class VStageManager {//en el futuro extender esta clase "scroll menu" o algo asi PGraphics pg; VScreen[] screens; VScreen cscreen; VLoogoo splash; int current; boolean rocking, oldrocking;

8 9 10 11

VZong daSong; String[] songNames; int selectedSong;

12 13 14

int bar, frame; int oldbar, oldframe;

15 16 17

int int

operationFlag; scrollPos;

18 19

PFont font;

20 21 22 23 24 25 26 27 28 29 30 31 32

VStageManager() songNames songNames[0] songNames[1] songNames[2] songNames[3] songNames[4] songNames[5] songNames[6] songNames[7] songNames[8] songNames[9]

{ = = = = = = = = = = =

new String[29]; "The Eternal City Song"; "Escaleras"; "Animal Conciousness"; "L'ete Indien"; "Fresh Widow"; "antarctic"; "Features"; "songZero"; "El Aparecido"; "Geometric Attraction";

33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52

songNames[10] songNames[11] songNames[12] songNames[13] songNames[14] songNames[15] songNames[16] songNames[17] songNames[18] songNames[19] songNames[20] songNames[21] songNames[22] songNames[23] songNames[24] songNames[25] songNames[26] songNames[27] songNames[28]

= "aForest"; = "Adaptive Radiation"; = "Tu Fiesta"; = "Intricate Spatio Temporal Organizations"; = "charlotteSometimes";//"aForest"; = "Reptile"; = "punkRocker"; = "aHardPlace"; = "anemicKover"; = "b17"; = "lostman"; = "loveedn"; = "silverstein"; = "slowlyBittingU"; = "flag"; = "sunlight"; = "sheLost"; = "OKMickeyClub"; = "flowRZong";

53 54

scrollPos = -1;

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

pg = createGraphics(512, 384, P3D); font = loadFont("CoyarzunAtarinormal-8.vlw"); pg.textFont(font, 8); splash = new VLoogoo(0, 0, 512, 384); screens = new VScreen[29]; for (int i=0;i<screens.length;i++) { screens[i]= new Tmp(0, 0, 512, 384, color(0)); } screens[0] = new VTheEternalCity(0, 0, 512, 384, 0); screens[1] = new VAnemic(0, 0, 512, 384, 0 ); screens[2] = new VSilverstein(0, 0, 512, 384, 0 ); screens[3] = new Tmp(0, 0, 512, 384, 0); screens[4] = new VFreshwidow(0, 0, 512, 384, 0) ; screens[5] = new VAntarctic(0, 0, 512, 384, 0); screens[6] = new VFeatures(0, 0, 512, 384, 0); screens[7] = new VSongzero(0, 0, 512, 384, 0);// screens[8] = new VElAparecido(0, 0, 512, 384, 0 ); screens[9] = new FlowRVisuals(0, 0, 512, 384, 0 );// // screens[10] = new VPunkrocker(0,0,512,384, 0); // screens[11] = new FlowRVisuals(0,0,512,384, 0 );//Tmp(0,0,512,384, color(240,255,255) ); // screens[9] = new Tmp(0,0,512,384, 0); // screens[10] = new VAnemic(0,0,512,384, 0) ; // screens[11] = new Tmp(0,0,512,384, 0 ); // screens[12] = new Tmp(0,0,512,384, 0 ); // screens[13] = new VPunkrocker(0,0,512,384, 0); // screens[14] = new VAhardplace(0,0,512,384, color(0,255,255)); // screens[15] = new VAnemic(0,0,512,384, 0) ; // screens[16] = new VAnemic(0,0,512,384, 0) ; screens[17] = new VAhardplace(0, 0, 512, 384, 0); // screens[18] = new Tmp(0,0,512,384, 0 ); // screens[19] = new VAntarctic(0,0,512,384, 0); // screens[20] = new VLostmanSuperstar(0,0,512,384, 0); // screens[21] = new Tmp(0,0,512,384, 0 ); // screens[22] = new VSilverstein(0,0,512,384, 0); // screens[23] = new Tmp(0,0,512,384, 0 ); // screens[24] = new Tmp(0,0,512,384, 0 ); // screens[25] = new VSunlight(0,0,512,384, color(240,230,0)); // screens[26] = new Tmp(0,0,512,384, 0 ); //screens[27] = new VOkeyMickey(0,0,512,384, 0) ; screens[28] = new FlowRVisuals(0, 0, 512, 384, 0 );

96 97 98 99 100 101

splash.fadein(); } void initSong(int i) { if (daSong!=null)if (daSong.sequencer.isRunning())daSong.sequencer.stop(); if (midiManager.outputChan!=-1) {

102 103 104 105 106 107 108 109 110

12

songNames[0] songNames[1] songNames[2] songNames[3] songNames[4] songNames[5] songNames[6] songNames[7]

= = = = = = = =

"The Eternal City Song"; "Escaleras"; "Animal Conciousness"; "L'ete Indien"; "Fresh Widow"; "antarctic"; "Features"; "songZero";


111 112

songNames[8] songNames[9]

= "El Aparecido"; = "Geometric Attraction";

113 114 115 116 117 118 119 120 121 122 123 124

if if if if if if if if if if

(i==0) (i==1) (i==2) (i==3) (i==4) (i==5) (i==6) (i==7) (i==8) (i==9)

daSong daSong daSong daSong daSong daSong daSong daSong daSong daSong

= = = = = = = = = =

new new new new new new new new new new

TheEternalCitySong(); Escaleras(); AnimalConciousness(); LEteIndien(); FreshWeedow(); XMLZong("xml/antarctic.xml"); Features(); XMLZong("xml/songzero.xml"); Aparecido(); GeometricAttraction();

if if if if if if if if if if if if if if if if if if if

(i==10) (i==11) (i==12) (i==13) (i==14) (i==15) (i==16) (i==17) (i==18) (i==19) (i==20) (i==21) (i==22) (i==23) (i==24) (i==25) (i==26) (i==27) (i==28)

daSong daSong daSong daSong daSong daSong daSong daSong daSong daSong daSong daSong daSong daSong daSong daSong daSong daSong daSong

= = = = = = = = = = = = = = = = = = =

new new new new new new new new new new new new new new new new new new new

AForest(); AdaptiveRadiation(); TuFiesta(); IntricateSpatioTemporalOrganizations(); XMLZong("xml/charlottesometimes.xml"); Reptile(); Punkrocker(); XMLZong("xml/ahardplace_eng.xml"); XMLZong("xml/anemickover3.xml"); XMLZong("xml/b17.xml"); XMLZong("xml/lostman.xml"); XMLZong("xml/loveedn.xml"); XMLZong("xml/silverstein.xml"); XMLZong("xml/slowlybittingU.xml"); XMLZong("xml/flag.xml"); XMLZong("xml/sunlight.xml"); SheLost(); OKeymickey(); FlowRZong();

125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147

selectedSong = i;

148 149 150 151 152 153

// score.writeMidiFile("/Users/coyarzun/Documents/Processing/voodoochild/tokatas/2015/_posternuraSuperstar/theEternalCityFL016_superstar_20150403x/saved/"+ // daSong.name+".mid"); } } void draw() {

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

switch(operationFlag) { case 0: drawSplash(); drawSelectSong(); break; case 1: drawWhileRocking(); drawSplash(); break; default: break; } } void drawSplash() { splash.fade(); if (splash.alfa>1) { splash.draw(this.pg); pushMatrix(); scale(wscalef); translate(0, ydisplacement); tint(255, splash.alfa); image(this.pg, 0, 0); noTint(); popMatrix(); } } void drawWhileRocking() { int f = (daSong.quantization==12)?384:512; if (daSong!=null) { rocking = daSong.sequencer.isRunning();

187 188 189 190 191 192 193 194 195 196 197

if (rocking!=oldrocking) { resetGeometry(); if (!rocking) { splash.fadein(); } else { splash.fadeout();// } } oldrocking=rocking;

198 199 200 201 202 203 204 205 206 207 208

if (daSong.sequencer.isRunning()) { bar = int(daSong.sequencer.getTickPosition()/f); frame = int((daSong.sequencer.getTickPosition()%f)/32); if (oldbar!=bar || oldframe!=frame) { if (daSong.lyrics[bar][frame]!=null) { donmiguel.sing(daSong.lyrics[bar][frame]); //vadmin.cscreen.addLyric(lyrics[bar][frame]); screens[selectedSong].addLyric(daSong.lyrics[bar][frame]); } }

209 210 211 212 213 214 215 216 217

daSong.beatMap.update(bar*daSong.quantization+frame); //pg.textFont(font, 100); screens[selectedSong].draw(pg); for (int i=0; i<screendiv; i++) { for (int j=0; j<screendiv; j++) { pushMatrix(); scale(wscalef); translate(0, ydisplacement);

218 219 220

image(pg, i*pg.width/screendiv, j*pg.height/screendiv, pg.width/screendiv, pg.height/screendiv);//1024,768); popMatrix();

13


}

221

}

222 223

oldbar=bar; oldframe=frame; if (daSong.sequencer.getTickPosition()-daSong.sequencer.getLoopEndPoint()>0)daSong.sequencer.stop(); println(bar+":"+frame);

224 225 226 227

} } } void keyReleased() { switch(operationFlag) { case 0: keyReleasedSelectSong(); break; case 1: keyReleasedLoadedSong(); break; } } void keyReleasedLoadedSong() { if (keyCode==32 || keyCode==10) {//spacebar o return if (!daSong.sequencer.isRunning())daSong.sequencer.start(); else { daSong.sequencer.stop(); //daSong.sequencer.noLoop();// (0); operationFlag = 1; } } if (keyCode>=48 && keyCode <=57) { operationFlag = 0; } } void keyReleasedSelectSong() { if (keyCode==32 || keyCode==10) {//spacebar o return if (scrollPos>-1) { initSong(scrollPos); operationFlag = 1; } } else if (keyCode>=48 && keyCode <=57) { int pnum = constrain(keyCode-48, 0, 9); pnum%=songNames.length; scrollPos = pnum; } else if (keyCode>=37 && keyCode<=40) { //println(keyCode); if (keyCode==38) { scrollPos--; if (scrollPos<-1)scrollPos=songNames.length-1; } else if (keyCode==40) { scrollPos++; scrollPos%=songNames.length; } } } void drawSelectSong() { int scrollW = 240; //background(255); pushMatrix(); translate(16, 16); noSmooth(); fill(255); rect(0, 3, scrollW, (songNames.length+1)*12); fill((frameCount/2)%2==0?240:122, 240, 240); noStroke(); rect(0, (scrollPos+1)*12+3, scrollW, 12); fill(0); text("PLEASE SELECT A SONG:", 8, 12); for (int i=0; i<songNames.length; i++) { translate(0, 12); text("["+i+"] "+songNames[i], 8, 12); } popMatrix(); }

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

void resetGeometry() { //println("pasĂŠ?"); pg.camera(pg.width/2.0, pg.height/2.0, (pg.height/2.0) / tan(PI*60.0 / 360.0), pg.width/2.0, pg.height/2.0, 0, 0, 1, 0); }

298 299 300 301 302 303

14

}


1 2 3

class VZong { ZongSettings settings;// = new ZongSettings(); promidi.Sequencer sequencer = new promidi.Sequencer();

4

MidiOut MidiOut MidiOut MidiOut

5 6 7 8

drumsout bassout guitarout bellsout

= = = =

midiManager.midiIO.getMidiOut(9, midiManager.midiIO.getMidiOut(1, midiManager.midiIO.getMidiOut(0, midiManager.midiIO.getMidiOut(1,

midiManager.outputChan); midiManager.outputChan); midiManager.outputChan); midiManager.outputChan);

9

promidi.Track drumstrack, basstrack, guitartrack, bellstrack;

10 11

Song song;

12 13

boolean rocking = false; String name = ""; int bars = 0; int bar = 0, frame = 0, cframe = 0; int oldbar=-1, oldframe=-1; int quantization;

14 15 16 17 18 19 20

String[][] lyrics;

21 22

BeatMap beatMap;

23 24

VZong() { muteall(); } void muteall() { for (int i=0; i<127; i++) { drumsout.sendNote(new Note(i, 0, 0)); bassout.sendNote(new Note(i, 0, 0)); guitarout.sendNote(new Note(i, 0, 0)); } } void setInstruments() { drumsout.sendController(new Controller(0, 1)); drumsout.sendProgramChange(new ProgramChange(0)); guitarout.sendProgramChange(new ProgramChange(42));//62)); } void dobeat(int pos, int pad) { switch(pad) { case 35: case 36: beatMap.addKick(pos); break; case 38: beatMap.addSnare(pos); break; case 42: case 44: beatMap.addHat(pos); break; case 37: beatMap.addRim(pos); break; } }

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

class ZongSettings { int tempo = 120; boolean loopeable = false; int mainlevel = 127; int basslevel = 127; int guitarlevel = 127; int drumlevel = 127; int bassinstrument = 38; int guitarinstrument = 28;

69

ZongSettings() { } ZongSettings(XML $1) {

70 71 72 73

tempo = int($1.getChild("tempo").getContent()); loopeable = boolean($1.getChild("loopeable").getContent());

74 75 76

mainlevel = drumlevel = basslevel = guitarlevel

77 78 79 80

int($1.getChild("levels").getChild("mainlevel").getContent()); int($1.getChild("levels").getChild("drumlevel").getContent()); int($1.getChild("levels").getChild("basslevel").getContent()); = int($1.getChild("levels").getChild("guitarlevel").getContent());

81

bassinstrument = int($1.getChild("instruments").getChild("bassinstrument").getContent()); guitarinstrument = int($1.getChild("instruments").getChild("guitarinstrument").getContent());

82 83

}

84 85

}

86

15


1 2 3 4 5 6

class XMLZong extends VZong { XML xmlsong; //ZongSettings settings; XML patterns; XML tonepatterns; XML compose;

7 8 9 10 11

String file; boolean songloaded = false; //boolean rocking = false;

12 13

float a, b, prevol;

14 15 16

int notes2search; int note, pitx, vol, dur;

17 18

//String[][]

19 20 21 22 23 24 25 26 27

XMLZong(String $1) { lyrics = new String[1024][16]; file = $1; loadSong(); } void loadSong() { try { xmlsong = loadXML(file);

28 29 30 31 32 33 34 35 36 37

parseSong(); songloaded = true; } catch(Exception ide) { songloaded = false; } } void parseSong() { score.empty();

38 39

name = xmlsong.getString("name");

40 41 42 43 44

settings = new ZongSettings(xmlsong.getChild("settings")); patterns = xmlsong.getChild("patterns"); tonepatterns = xmlsong.getChild("tonepatterns"); compose = xmlsong.getChild("compose");

45 46

//println(patterns);

47 48 49 50

drumstrack = new promidi.Track("drums", drumsout); basstrack = new promidi.Track("bass", bassout); guitartrack = new promidi.Track("guitar", guitarout);

51 52 53 54

drumstrack.setQuantization(Q._1_16); basstrack.setQuantization(Q._1_16); guitartrack.setQuantization(Q._1_16);

55 56 57

drumsout.sendController(new Controller(0, 1)); drumsout.sendProgramChange(new ProgramChange(settings.bassinstrument));

58 59 60

//drumsout.sendController(new Controller(7,0)); volume //bassout.sendController(new Controller(7,0)); volume

61 62 63

//bassout.sendProgramChange(new ProgramChange(settings.bassinstrument)); guitarout.sendProgramChange(new ProgramChange(settings.guitarinstrument));

64 65 66

quantization = 16; int position = 0;

67 68

int chan = 0;

69 70

beatMap = new BeatMap();

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

XML[] parts = compose.getChildren("part"); for (int i=0; i<parts.length;i++) {//recorre las partes XML[] phrases = parts[i].getChildren("phrase"); for (int j =0; j<phrases.length;j++) {//y luego las frases XML[] barss = phrases[j].getChildren("bar"); for (int k =0; k<barss.length;k++) {//y luego las bars switch(barss[k].getInt("kind")) { case 0: a = float(settings.mainlevel)/127; b = float(settings.drumlevel)/127; prevol = a*b; int drum2search = int(barss[k].getContent()); XML[] drumpatterns = patterns.getChild("drumpatterns").getChildren("drumpattern"); XML[] pads = drumpatterns[drum2search].getChildren("pad"); for (int pad=0; pad<pads.length; pad++) { int padinstrument = pads[pad].getInt("id"); String pttrn = pads[pad].getContent(); for (int m=0; m<pttrn.length(); m++) { String hxtep = pttrn.substring(m, m+1); try { int vol = int(prevol*127*unhex(hxtep)/15); score.addNote(float(position+m)/4, 9, 0, padinstrument, 100, 0.25, 0.8, 64);//random(127));//80); drumstrack.addEvent(new Note(padinstrument, vol, 80), position+m); drumstrack.addEvent(new Note(padinstrument, 0, 0), position+m+4); dobeat(position+m, padinstrument); } catch(Exception e){ println("crashed by "+e); } } } break; case 1: a = float(settings.mainlevel)/127; b = float(settings.basslevel)/127; prevol = a*b;

108 109 110

16

notes2search = int(barss[k].getChild("notes").getContent()); XML[] xtonepatterns = tonepatterns.getChildren("notes");


int[] bassnotes = int(split(xtonepatterns[notes2search].getContent(), ",")); int bass2search = int(barss[k].getChild("rhytm").getContent()); XML[] basspatterns = patterns.getChild("basspatterns").getChildren("basspattern"); XML[] basspattern = basspatterns[bass2search].getChildren("pattern");

111 112 113 114 115

for (int pad=0; pad<basspattern.length; pad++) { String pttrn = basspattern[pad].getContent(); for (int m=0; m<pttrn.length(); m++) { String hxtep = pttrn.substring(m, m+1); try { note = 24+bassnotes[m]; int postpos = 3; if (hxtep.equals("X")) { hxtep="0"; postpos = 3*3*8*2; } pitx = note+unhex(hxtep); vol = int(prevol*127);

116 117 118 119 120 121 122 123 124 125 126 127 128 129

score.addNote(float(position+m)/4, chan, 35, pitx, vol, 0.25, 0.8, 64);//random(127));//80); basstrack.addEvent(new Note(pitx, vol, dur), position+m); basstrack.addEvent(new Note(pitx, 0, 0), position+m+postpos); } catch(Exception e) {//NullPointerException //vplayer.println("crashed by "+e); } //score.addCallback(i/4, 0);

130 131 132 133 134 135 136 137

} } break; case 2: a = float(settings.mainlevel)/127; b = float(settings.guitarlevel)/127; prevol = a*b;

138 139 140 141 142 143 144 145

notes2search = int(barss[k].getChild("notes").getContent()); XML[] gtonepatterns = tonepatterns.getChildren("notes"); int[] guitarnotes = int(split(gtonepatterns[notes2search].getContent(), ",")); int guitar2search = int(barss[k].getChild("rhytm").getContent()); XML[] guitarpatterns = patterns.getChild("guitarpatterns").getChildren("guitarpattern"); XML[] guitarpattern = guitarpatterns[guitar2search].getChildren("pattern");

146 147 148 149 150 151 152

for (int pad=0; pad<guitarpattern.length; pad++) { String pttrn = guitarpattern[pad].getContent();//patterns.getChild(2).getChild(guitar2search).getChild(pad).getContent(); for (int m=0; m<pttrn.length(); m++) { String hxtep = pttrn.substring(m, m+1); try { note = 48+guitarnotes[m]; pitx = note+unhex(hxtep); vol = int(prevol*127); dur = 800;//0; score.addNote(float(position+m)/4, chan, 0, pitx, vol, 0.25*8, 0.8, 64);//random(127));//80); guitartrack.addEvent(new Note(pitx, vol, dur), position+m); guitartrack.addEvent(new Note(pitx, 0, 0), position+m+16); } catch(Exception e){ //println("crashed by "+e); } } } break; case 3: int frame = int(barss[k].getString("frame")); String speech = barss[k].getContent(); lyrics[bars][frame] = speech; break; }

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

} bars++; position+=quantization;

178 179 180

} } score.tempo(settings.tempo); song = new Song(name, settings.tempo); song.addTrack(drumstrack); song.addTrack(basstrack); song.addTrack(guitartrack);

181 182 183 184 185 186 187 188

sequencer.setSong(song); sequencer.setLoopStartPoint(0); sequencer.setLoopEndPoint(512*bars); sequencer.setLoopCount(-1); sequencer.noLoop();

189 190 191 192 193

}

194 195

}

196

17


1 2 3 4

class FreshWeedow extends VZong { int[] drumpads = { 36, 38, 42, 44, 47, 48, 37 };

5 6 7 8

String[][] drumspatterns; String[] basspatterns; int [][] bassnotes;

9 10 11

String[] kbpatterns; int [][] kbnotes;

12 13

int[] bellsnotes;

14 15 16

//int quantization; int position;

17 18 19

String[] lyricsbase; int lyricLine;

20 21 22 23 24 25 26 27

FreshWeedow() { lyrics = new String[1024][16]; name = "Fresh Weedow"; lyricsbase = loadStrings("data/freshwidow2010.txt"); definePatterns(); makeSong(); }

28 29 30 31 32 33 34 35

void makeSong() { beatMap = new BeatMap(); //score.empty(); drumstrack = new promidi.Track("drums", drumsout); basstrack = new promidi.Track("bass", bassout); guitartrack = new promidi.Track("kboard", guitarout); bellstrack = new promidi.Track("bells", guitarout);

36 37 38 39 40

drumstrack.setQuantization(Q._1_16); basstrack.setQuantization(Q._1_16); guitartrack.setQuantization(Q._1_16); bellstrack.setQuantization(Q._1_16);

41 42 43 44 45 46 47 48 49 50

//bassout.sendProgramChange(new ProgramChange(11)); drumsout.sendController(new Controller(0, 1)); drumsout.sendProgramChange(new ProgramChange(0)); guitarout.sendProgramChange(new ProgramChange(5));//62)); bellsout.sendProgramChange(new ProgramChange(76));//62));//76)); //score.empty(); quantization = 16; position = 0; int tempo = 140;

51 52 53 54 55

makePattern(3, makePattern(3, makePattern(3, makePattern(1,

1, 1, 1, 1,

0, 0, 0, 0,

1, 1, 1, 1,

0, 0, 0, 0,

false, false, false, false,

false); false); false); false);

//intro makePattern(0, makePattern(0, makePattern(0, makePattern(0,

0, 0, 0, 0,

0, 1, 2, 3,

0, 0, 0, 0,

0, 1, 2, 2,

false, false, false, false,

false); false); false); false);

makePattern(0, makePattern(0, makePattern(0, makePattern(0,

0, 0, 0, 0,

0, 1, 2, 3,

0, 0, 0, 0,

0, 3, 4, 4,

false, false, false, false,

false); false); false); false);

makePattern(0, makePattern(0, makePattern(0, makePattern(0,

0, 0, 0, 0,

0, 1, 2, 3,

0, 0, 0, 0,

0, 1, 2, 2,

false, false, false, false,

false); false); false); false);

makePattern(0, makePattern(0, makePattern(0, makePattern(0,

0, 0, 0, 0,

0, 1, 2, 4,

0, 0, 0, 0,

0, 3, 4, 4,

false, false, false, false,

false); false); false); false);

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

//verse 1 for (int i=0; i<6; i++) { int d = i>=4 ? 4 : 0; boolean b = i>=2 ? true : false; makePattern(d, 0, 0, 1, 0, true, b); makePattern(d, 0, 1, 1, 0, false, b); makePattern(d, 0, 2, 1, 0, false, b); makePattern(d, 0, 3, 1, 0, false, b); } //chorus for (int i=0; i<2; i++) { makePattern(5, 0, 0, 1, 0, true, false); makePattern(5, 0, 1, 1, 0, false, false); makePattern(5, 0, 2, 1, 0, false, false); makePattern(5, 0, 4, 1, 0, false, false); } //bridge tmp makePattern(0, 0, 0, 0, 0, false, false); makePattern(0, 0, 1, 0, 3, false, false); makePattern(0, 0, 2, 0, 4, false, false); makePattern(0, 0, 3, 0, 4, false, false);

99 100 101 102 103 104 105 106 107 108 109 110

18

makePattern(0, 0, 0, 0, 0, false, false); makePattern(0, 0, 1, 0, 1, false, false); makePattern(0, 0, 2, 0, 2, false, false); makePattern(0, 0, 4, 0, 2, false, false); //verse 2 for (int i=0; i<6; i++) { int d = i>=4 ? 4 : 0; boolean b = i>=2 ? true : false; makePattern(d, 0, 0, 1, 0, true, b); makePattern(d, 0, 1, 1, 0, false, b); makePattern(d, 0, 2, 1, 0, false, b);


111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126

makePattern(d, 0, 3, 1, 0, false, b); } //chorus 2 for (int i=0; i<2; i++) { makePattern(5, 0, 0, 1, 0, true, false); makePattern(5, 0, 1, 1, 0, false, false); makePattern(5, 0, 2, 1, 0, false, false); makePattern(5, 0, 4, 1, 0, false, false); } // //makePattern(1, 1, 0, 1, 0, false, false); //++chorus 2 makePattern(5, 0, 0, 0, 0, true, false); makePattern(5, 0, 1, 0, 1, false, false); makePattern(5, 0, 2, 0, 2, false, false); makePattern(5, 0, 3, 0, 2, false, false);

127 128 129 130 131 132 133 134 135 136

makePattern(4, makePattern(4, makePattern(4, makePattern(4, //bridge 2 makePattern(0, makePattern(0, makePattern(0, makePattern(0,

0, 0, 0, 0,

0, 1, 2, 4,

0, 0, 0, 0,

0, 3, 4, 4,

true, false); false, false); false, false); false, false);

0, 0, 0, 0,

0, 1, 2, 3,

1, 1, 1, 1,

0, 0, 0, 0,

false, false, false, false,

false); false); false); false);

makePattern(0, makePattern(0, makePattern(0, makePattern(0,

0, 0, 0, 0,

0, 1, 2, 3,

1, 1, 1, 1,

0, 0, 0, 0,

false, false, false, false,

false); false); false); false);

makePattern(0, makePattern(0, makePattern(0, makePattern(0,

0, 0, 0, 0,

0, 1, 2, 3,

1, 1, 1, 1,

0, 0, 0, 0,

false, false, false, false,

false); false); false); false);

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

makePattern(0, 0, 0, 1, 0, false, false); makePattern(0, 0, 1, 1, 0, false, false); makePattern(0, 0, 2, 1, 0, false, false); makePattern(0, 0, 4, 1, 0, false, false); //verse 3 for (int i=0; i<6; i++) { int d = i>=4 ? 4 : 0; boolean b = i>=2 ? true : false; makePattern(d, 0, 0, 1, 0, true, b); makePattern(d, 0, 1, 1, 0, false, b); makePattern(d, 0, 2, 1, 0, false, b); makePattern(d, 0, 3, 1, 0, false, b); } //chorus for (int i=0; i<2; i++) { makePattern(5, 0, 0, 1, 0, true, false); makePattern(5, 0, 1, 1, 0, false, false); makePattern(5, 0, 2, 1, 0, false, false); makePattern(5, 0, 4, 1, 0, false, false); } //++chorus makePattern(5, 0, 0, 0, 0, true, false); makePattern(5, 0, 1, 0, 1, false, false); makePattern(5, 0, 2, 0, 2, false, false); makePattern(5, 0, 3, 0, 2, false, false);

173 174 175 176 177 178 179 180 181 182

makePattern(5, makePattern(5, makePattern(5, makePattern(5, //++to end makePattern(4, makePattern(4, makePattern(4, makePattern(4,

0, 0, 0, 0,

0, 1, 2, 3,

0, 0, 0, 0,

0, 3, 4, 4,

true, true); false, true); false, true); false, true);

0, 0, 0, 0,

0, 1, 2, 3,

0, 0, 0, 0,

0, 1, 2, 2,

false, false, false, false,

true); true); true); true);

makePattern(4, makePattern(4, makePattern(4, makePattern(4,

0, 0, 0, 0,

0, 1, 2, 3,

0, 0, 0, 0,

0, 3, 4, 4,

false, false, false, false,

true); true); true); true);

makePattern(4, makePattern(4, makePattern(4, makePattern(4,

0, 0, 0, 0,

0, 1, 2, 3,

0, 0, 0, 0,

0, 1, 2, 2,

false, false, false, false,

true); true); true); true);

makePattern(4, makePattern(4, makePattern(4, makePattern(4,

0, 0, 0, 0,

0, 1, 2, 4,

0, 0, 0, 0,

0, 3, 4, 4,

false, false, false, false,

true); true); true); true);

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

//zuรกkate makePattern(2, 2, 0, 2, 0, false, false); for (int i=0;i<3+4;i++)makePattern(3, 1, 0, 1, 0, false, false); score.tempo(tempo); song = new Song(name, tempo); song.addTrack(drumstrack); song.addTrack(basstrack); song.addTrack(guitartrack); song.addTrack(bellstrack);

209 210 211 212 213 214 215 216 217 218

sequencer.setSong(song); sequencer.setLoopStartPoint(0); sequencer.setLoopEndPoint(512*bars); sequencer.setLoopCount(-1); sequencer.noLoop(); } void makePattern(int drumIndex, int bassIndex, int bassNoteIndex, int kbIndex, int kbNoteIndex, boolean singa, boolean bells) {// for (int i=0; i<16; i++) { int auxposition = position+i;

219 220

for (int j=0; j<drumpads.length; j++) {

19


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

if (!drumspatterns[drumIndex][j].substring(i, i+1).equals("-")) { score.addNote(float(position+i)/4, 9, 0, drumpads[j], 80+random(40), 0.25, 0.8, 64); drumstrack.addEvent(new Note(drumpads[j], int(120+random(7)), 80), auxposition); drumstrack.addEvent(new Note(drumpads[j], 0, 0), auxposition+1); dobeat(auxposition, drumpads[j]); } } String hxtep = basspatterns[bassIndex].substring(i, i+1); if (!hxtep.equals("-")) { int note = 24+bassnotes[bassNoteIndex][i]; int postpos = 2; if (hxtep.equals("X")) { hxtep="0"; postpos = 3*3*8*2; } int pitx = note+unhex(hxtep); score.addNote(float(position+i)/4, 9, 40, pitx, 120+(int)random(7), 0.25, 0.8, 64);//random(127));//80); basstrack.addEvent(new Note(pitx, 120+(int)random(7), 80), auxposition);//int(100+random(20)) basstrack.addEvent(new Note(pitx, 0, 0), auxposition+postpos); } String xhxtep = kbpatterns[kbIndex].substring(i, i+1); if (!xhxtep.equals("-")) { int xnote = 48+12+kbnotes[kbNoteIndex][i]; int xpitx = xnote+unhex(xhxtep); score.addNote(float(position+i)/4, 3, 0, xpitx, 96+(int)random(7), 0.25*8, 0.8, 64);//random(127));//80); guitartrack.addEvent(new Note(xpitx, 96+(int)random(7), 80), auxposition);//int(100+random(20)) guitartrack.addEvent(new Note(xpitx, 0, 0), auxposition+1); } if (bells) { int ypitx = 96-12; int zpitx = 0; if (i%2==0) { int oo = (i==0 || i==8 ) ? 0 : (i==2 || i==10) ? 2 : (i>8) ? (random(2)>1)? 2:1 : 3; zpitx = bellsnotes[oo]; ypitx+=zpitx; score.addNote(float(position+i)/4, 1, 0, ypitx, 60+(int)random(2), 0.25*8, 0.8, 64);//random(127));//80); bellstrack.addEvent(new Note(ypitx, 60+(int)random(2), 80), auxposition);//int(100+random(20)) bellstrack.addEvent(new Note(ypitx, 0, 0), auxposition+1); } } //score.addCallback(float(position+i)/4, 1);// } if (singa) { //vplayer.println(lyricsbase[lyricLine]); lyrics[int(position/16)][0] = lyricsbase[lyricLine]; lyricLine++; lyricLine%=lyrics.length; }

270 271 272 273 274 275 276

// position+=16; bars++; position+=quantization; } void definePatterns() { drumspatterns = new String[6][drumpads.length];

277 278 279 280 281 282 283 284

drumspatterns[0][0]="X---X---X---X---"; drumspatterns[0][1]="----X-------X---"; drumspatterns[0][2]="--XX--XX--XX--XX";//"----------------";//"X-X-X-X-X-X-X-X-"; drumspatterns[0][3]="----------------";//"X-X-X-X-X-X-X-X-"; drumspatterns[0][4]="----------------"; drumspatterns[0][5]="----------------"; drumspatterns[0][6]="----------------";

285 286 287 288 289 290 291 292

drumspatterns[1][0]="----------------"; drumspatterns[1][1]="----------------"; drumspatterns[1][2]="--XX--XX--XX--XX"; drumspatterns[1][3]="----------------"; drumspatterns[1][4]="----------------"; drumspatterns[1][5]="----------------"; drumspatterns[1][6]="X---X---X---X---";

293 294 295 296 297 298 299 300

drumspatterns[2][0]="X---------------"; drumspatterns[2][1]="X---------------"; drumspatterns[2][2]="--XX--XX--XX--XX"; drumspatterns[2][3]="----------------"; drumspatterns[2][4]="----------------"; drumspatterns[2][5]="----------------"; drumspatterns[2][6]="----------------";

301 302 303 304 305 306 307 308

drumspatterns[3][0]="----------------"; drumspatterns[3][1]="----------------"; drumspatterns[3][2]="--XX--XX--XX--XX"; drumspatterns[3][3]="----------------"; drumspatterns[3][4]="----------------"; drumspatterns[3][5]="----------------"; drumspatterns[3][6]="----------------";

309 310 311 312 313 314 315 316

drumspatterns[4][0]="XXXXXXXXXXXXXXXX"; drumspatterns[4][1]="X---X---X---X---";//"----------------";// drumspatterns[4][2]="XXXXXXXXXXXXXXXX";//"----------------";//"X-X-X-X-X-X-X-X-"; drumspatterns[4][3]="----------------";//"X-X-X-X-X-X-X-X-"; drumspatterns[4][4]="----------------"; drumspatterns[4][5]="----------------"; drumspatterns[4][6]="----------------";

317 318 319 320 321 322 323 324

drumspatterns[5][0]="XX--XX--XX--XX--"; drumspatterns[5][1]="--X---X---X---X-"; drumspatterns[5][2]="XXXXXXXXXXXXXXXX";//"----------------";//"X-X-X-X-X-X-X-X-"; drumspatterns[5][3]="----------------";//"X-X-X-X-X-X-X-X-"; drumspatterns[5][4]="----------------"; drumspatterns[5][5]="----------------"; drumspatterns[5][6]="----------------";

325 326 327 328 329 330

20

basspatterns = new String[3]; basspatterns[0]= "0-C-0-C-0-C-0-C-";//0-3-0-5-0-7-0-5-"; basspatterns[1]= "----------------"; basspatterns[2]= "X---------------";


bassnotes = new int[5][16];

331 332

int[] b0 = { 14, 14, 14, }; int[] b1 = { 9, 9, 9, 9, }; int[] b2 = { 10, 10, 10, }; int[] b3 = { 10, 10, 10, }; int[] b4 = { 10, 10, 10, };

333 334 335 336 337 338 339 340 341 342 343 344 345 346 347

14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14

9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9

10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10

10, 10, 10, 10, 10, 10, 10, 10, 10, 9, 9, 9, 9

10, 10, 10, 10, 10, 10, 10, 10, 10, 12, 12, 12, 12

348

bassnotes[0] bassnotes[1] bassnotes[2] bassnotes[3] bassnotes[4]

349 350 351 352 353

= = = = =

b0; b1; b2; b3; b4;

354 355

kbpatterns = new String[3]; kbpatterns[0]= "0-7-0-3-0-5-0-3-"; kbpatterns[1]= "----------------"; kbpatterns[2]= "0---------------";

356 357 358 359 360

kbnotes = new int[6][16];

361 362

int[] k0 = { 14, 14, 14, }; int[] k1 = { 9, 9, 9, 9, }; int[] k2 = { 10, 10, 10, }; int[] k3 = { 9, 9, 9, 9, }; int[] k4 = { 10, 10, 10, }; int[] k5 = { 14, 14, 14, };

363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380

14, 14, 14, 14, 14, 9, 9, 9, 9, 9, 9, 9, 9

9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9

10, 10, 10, 10-1, 10, 10, 10, 10+2, 10, 10, 10, 10-1, 10

9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9

10, 10, 10, 10-1, 10, 10, 10, 10+2, 10, 10+12, 10, 10-1, 10

14, 14, 14, 14, 14, 9, 9, 9, 9, 9, 9, 9, 9

381

kbnotes[0] kbnotes[1] kbnotes[2] kbnotes[3] kbnotes[4] kbnotes[5]

382 383 384 385 386 387

= = = = = =

k0; k1; k2; k3; k4; k5;

388

bellsnotes = new int[4]; bellsnotes[0] = 0;//3; bellsnotes[1] = 5;//3; bellsnotes[2] = 0;//7; bellsnotes[3] = 12;//5;

389 390 391 392 393

}

394 395

}

396 397 398 399 400 401 402 403 404 405

21


1

class OKeymickey extends VZong {

2 3 4 5

int[] drumpads = { 36, 38, 42, 44, 47, 48, 31 };//46,47,48,42};

6 7 8 9

String[][] drumspatterns; String[] basspatterns; int [][] bassnotes;

10 11 12

//int quantization; int position;

13 14 15

String[] lyricsbase; int lyricLine;

16 17 18 19 20 21 22 23

OKeymickey() { lyrics = new String[1024][16]; name = "OKEY MICKEY CLUB"; lyricsbase = loadStrings("keymickey.txt"); definePatterns(); makeSong(); }

24 25 26 27 28 29 30

void makeSong() { beatMap = new BeatMap(); //score.empty(); drumstrack = new promidi.Track("drums", drumsout); basstrack = new promidi.Track("bass", bassout); guitartrack = new promidi.Track("guitar", guitarout);

31 32 33 34

drumstrack.setQuantization(Q._1_16); basstrack.setQuantization(Q._1_16); guitartrack.setQuantization(Q._1_16);

35 36 37 38 39 40 41 42 43

//bassout.sendProgramChange(new ProgramChange(38)); drumsout.sendController(new Controller(0, 1)); drumsout.sendProgramChange(new ProgramChange(1)); guitarout.sendProgramChange(new ProgramChange(29));//65)); //score.empty(); quantization = 16; position = 0; int tempo = 124;

44 45 46 47 48

makePattern(6, makePattern(6, makePattern(6, makePattern(4,

2, 2, 2, 2,

0, 0, 0, 0,

false, false, false, false,

true); true); true); true);

49 50 51 52 53

for (int i=0; i<2; i++) { makePattern(0, 2, 0, false, true); makePattern(1, 2, 0, false, true); }

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

for (int i=0; i<2; i++) { makePattern(0, 0, 0, false, true); makePattern(1, 0, 0, false, true); makePattern(0, 0, 0, false, true); makePattern(1, 0, 0, false, true); } for (int i=0; i<8;i++) { makePattern(0, 0, 0, true, false); makePattern(0, 0, 0, false, false); } for (int i=0; i<8;i++) { makePattern(0, 0, 0, true, false); makePattern(0, 0, 0, false, false); } for (int i=0; i<4;i++) { makePattern(2, 1, 0, true, true); makePattern(3, 1, 0, false, true); } for (int i=0; i<2;i++) {//makePattern(0, 0, 0); makePattern(1, 1, 1, false, false); makePattern(3, 1, 2, false, true); makePattern(1, 1, 3, false, false); makePattern(3, 1, 3, false, true);// makePattern(1, 1, 1, false, false); makePattern(3, 1, 2, false, true); makePattern(1, 1, 4, false, false); makePattern(3, 1, 4, false, true); }

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

22

for (int i=0; i<2; i++) { makePattern(0, 0, 0, false, true); makePattern(1, 0, 0, false, true); makePattern(0, 0, 0, false, true); makePattern(1, 0, 0, false, true); } for (int i=0; i<8;i++) { makePattern(0, 0, 0, true, false); makePattern(0, 0, 0, false, false); } for (int i=0; i<4;i++) { makePattern(2, 1, 0, true, true); makePattern(3, 1, 0, false, true); } for (int i=0; i<2;i++) {//makePattern(0, 0, 0); makePattern(1, 1, 1, false, false); makePattern(3, 1, 2, false, true); makePattern(1, 1, 3, false, false); makePattern(3, 1, 3, false, true);// makePattern(1, 1, 1, false, false); makePattern(3, 1, 2, false, true); makePattern(1, 1, 4, false, false); makePattern(3, 1, 4, false, true); } for (int i=0; i<2;i++) {//makePattern(0, 0, 0); makePattern(2, 1, 1, false, false); makePattern(3, 1, 2, false, true);


111 112 113 114 115 116 117 118 119 120 121

makePattern(2, makePattern(3, makePattern(2, makePattern(3, makePattern(2, makePattern(3,

1, 1, 1, 1, 1, 1,

3, 3, 1, 2, 4, 4,

false, false, false, false, false, false,

false); true);// true); true); true); true);

} for (int i=0; i<4;i++) { makePattern(2, 1, 0, true, true); makePattern(3, 1, 0, false, true); }

122 123 124 125

makePattern(5, 3, 0, false, true); for (int i=0;i<7;i++)makePattern(6, 2, 0, false, true); makePattern(6, 2, 0, false, false);

126 127 128 129 130

song = new Song(name, tempo); song.addTrack(drumstrack); song.addTrack(basstrack); song.addTrack(guitartrack);

131 132 133 134 135 136 137 138 139 140 141 142

sequencer.setSong(song); sequencer.setLoopStartPoint(0); sequencer.setLoopEndPoint(512*bars); sequencer.setLoopCount(-1); sequencer.noLoop(); //score.tempo(140); //score.addCallbackListener(p); } void makePattern(int drumIndex, int bassIndex, int bassNoteIndex, boolean singa, boolean bells) { for (int i=0; i<16; i++) { int auxposition = position+i;

143 144 145 146 147 148

for (int j=0; j<drumpads.length; j++) { if (!drumspatterns[drumIndex][j].substring(i, i+1).equals("-")) { //score.addNote(float(position+i)/4, 9, 0, drumpads[j], 80+random(40), 0.25, 0.8, 64); drumstrack.addEvent(new Note(drumpads[j], int(120+random(7)), 80), auxposition); drumstrack.addEvent(new Note(drumpads[j], 0, 0), auxposition+1);

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

dobeat(auxposition, drumpads[j]); } } String hxtep = basspatterns[bassIndex].substring(i, i+1); if (!hxtep.equals("-")) { int note = 24+bassnotes[bassNoteIndex][i]; int postpos = 2; if (hxtep.equals("X")) { hxtep="0"; postpos = 3*3*8*2; } int pitx = note+unhex(hxtep); basstrack.addEvent(new Note(pitx, 120+(int)random(7), 80), auxposition);//int(100+random(20)) basstrack.addEvent(new Note(pitx, 0, 0), auxposition+postpos); //score.addNote(float(position+i)/4, 0, 38, pitx, 80+random(40), 0.25, 0.8, 64); } if (bells && (i%2==0 || random(2)>1)) { int pitch = (int)score.pcRandomWalk(60+3+2+12*1, 12, score.MINOR);//HARMONIC_MINOR );//MELODIC_MINOR );//TURKISH );//MINOR_PENTATONIC);//INDIAN); ////score.addNote(i/4, 1, 96, pitch, 60+random(20), random(.5,2.5), 0.5, 64); float v1 = 80+random(10); guitartrack.addEvent(new Note(pitch, int(v1), 80), auxposition); guitartrack.addEvent(new Note(pitch, 0, 0), auxposition+1); guitartrack.addEvent(new Note(pitch+5, int(v1*.5), 80), auxposition+1+1); guitartrack.addEvent(new Note(pitch+5, 0, 0), auxposition+1+1+1); guitartrack.addEvent(new Note(pitch+12, int(v1*.25), 80), auxposition+2+1); guitartrack.addEvent(new Note(pitch+12, 0, 0), auxposition+1+2+1);

176 177 178 179 180 181 182 183 184 185 186 187

//+(int)random(2,5)); //score.addNote(float(position+i)/4, 1, 38, pitch, 10+random(10), random(5,8), 0.1, 64); } //score.addCallback(float(position+i)/4, 1);// } if (singa) { ////vplayer.println(lyricsbase[lyricLine]); lyrics[int(position/16)][0] = lyricsbase[lyricLine]; lyricLine++; lyricLine%=lyrics.length; }

188 189 190 191 192 193 194

// position+=16; bars++; position+=quantization; } void definePatterns() { drumspatterns = new String[7][drumpads.length];

195 196 197 198 199 200 201 202

drumspatterns[0][0]="X-X---X--X--X--X"; drumspatterns[0][1]="----X--X--X-----"; drumspatterns[0][2]="--XX--XX--XX--XX"; drumspatterns[0][3]="----------------"; drumspatterns[0][4]="X-X------XX--X--"; drumspatterns[0][5]="----------------"; drumspatterns[0][6]="----------------";

203 204 205 206 207 208 209 210

drumspatterns[1][0]="X-X---X--X--X--X"; drumspatterns[1][1]="----X--X--X-----"; drumspatterns[1][2]="--XX--XX--XXXXXX"; drumspatterns[1][3]="----------------"; drumspatterns[1][4]="X-X------XX--X--"; drumspatterns[1][5]="----------------"; drumspatterns[1][6]="----------------";

211 212 213 214 215 216 217 218

drumspatterns[2][0]="X-X---X--X--X--X"; drumspatterns[2][1]="X---X--X--X--X--";//"X---X---X---X---"; drumspatterns[2][2]="--XX--XX--XX--XX"; drumspatterns[2][3]="X-X------XX--X--"; drumspatterns[2][4]="-X-X------XX--X-"; drumspatterns[2][5]="--X--X-X------XX"; drumspatterns[2][6]="----------------";

219 220

drumspatterns[3][0]="X-X---X--X--X--X";

23


drumspatterns[3][1]="X---X--X--X--X--"; drumspatterns[3][2]="XXXXXXXXXXXXXXXX"; drumspatterns[3][3]="----------------"; drumspatterns[3][4]="----------------"; drumspatterns[3][5]="----------------"; drumspatterns[3][6]="----------------";

221 222 223 224 225 226 227

drumspatterns[4][0]="----------------"; drumspatterns[4][1]="----------------"; drumspatterns[4][2]="----------------"; drumspatterns[4][3]="----------------"; drumspatterns[4][4]="----------------"; drumspatterns[4][5]="----------------"; drumspatterns[4][6]="X---X---X---X---";

228 229 230 231 232 233 234 235

drumspatterns[5][0]="X---------------"; drumspatterns[5][1]="X---------------"; drumspatterns[5][2]="X---------------"; drumspatterns[5][3]="X---------------"; drumspatterns[5][4]="X---------------"; drumspatterns[5][5]="X---------------"; drumspatterns[5][6]="----------------";

236 237 238 239 240 241 242 243

drumspatterns[6][0]="----------------"; drumspatterns[6][1]="----------------"; drumspatterns[6][2]="----------------"; drumspatterns[6][3]="----------------"; drumspatterns[6][4]="----------------"; drumspatterns[6][5]="----------------"; drumspatterns[6][6]="----------------";

244 245 246 247 248 249 250 251

basspatterns = new String[4]; basspatterns[0]= "0C3C0C5C0C3C0C7C";//"0-3-0-5-0-3-0-7-";//"0-0-0-0-0-0-0-0-"; basspatterns[1]= "0C3C0C5C0C3C0C7C";//"0-3-0-5-0-3-0-7-";//"0-CC0-CC0-CC0-CC"; basspatterns[2]= "----------------"; basspatterns[3]= "X---------------";

252 253 254 255 256 257

bassnotes = new int[5][16]; int[] b0 = { 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, }; int[] b1 = { 24, 24, 24, 24, 24, 24, 24, 24, 15, 15, 15, 15, };// //22,22,22,22,22,22,22,22,21,21,21,21,21,21,21,21 int [] b2 = { 21, 21, 21, 21, 21, 21, 21, 21, 22, 22, 22, 22, };// //20,20,20,20,20,20,20,20,24,24,24,24,24,24,24,24 int[] b3 = { 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, }; int[] b4 = { 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, }; //17,17,17,17,17,17,17,17,15,15,20,20,22,22,24,24 //9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9

258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277

17, 17, 17, 17

15, 15, 15, 15 };// 22, 22, 22, 22 };// 17, 17, 17, 17

17, 22, 22, 22 }; };

278

bassnotes[0] bassnotes[1] bassnotes[2] bassnotes[3] bassnotes[4]

279 280 281 282 283

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

24

b0; b1; b2; b3; b4;

}

284 285

= = = = =

} //

void rock(){ //score.play(); sequencer.start(); rocking = true; //vplayer.println("song "+name+" rocking!"); } void stop(){ sequencer.stop(); rocking = false; bar = 0; frame = 0; cframe = 0; //vplayer.println("song "+name+" stopped"); } void draw(){ //if(!//score.playing)stop(); } void checksong(){ if(rocking){ bar = int(sequencer.getTickPosition()/512); frame = int((sequencer.getTickPosition()%512)/32);

// // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // //

if(oldbar!=bar || oldframe!=frame){ if(lyrics[bar][frame]!=null){ donmiguel.sing(lyrics[bar][frame]); vadmin.cscreen.addLyric(lyrics[bar][frame]); } }; if(!false && bar<oldbar){ stop(); } oldbar=bar; oldframe=frame; } }


1 2 3 4 5

class AForest extends VZong { //Song song; Drummer drummer; Bassplayer bassplayer; Guitarplayer guitarplayer;

6 7 8 9

int[] drumpads = { 36, 38, 42, 44, 47, 48, 37 };//46,47,48,42};

10 11 12 13

String[][] drumspatterns; String[] basspatterns; int [][] bassnotes;

14 15 16

String[] kbpatterns; int [][] kbnotes;

17 18

int[] bellsnotes;

19 20

int position;

21 22 23

String[] lyricsbase; int lyricLine;

24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39

int part = -3; int auxposition; /******************************/ int basstab[][]; int basspattern[]; int basslevel, bassinstrument; int guitartab[][]; int guitarpattern[]; int guitarlevel, guitarinstrument; int drumpattern[]; int drumlevel; int voicetab[][]; String lyricurl; int tempo, bars; int mainlevel;

40 41

boolean loopeable;

42 43 44

//String name; int id;

45 46 47 48 49 50 51

String alllyrics[]; /******************************/ AForest() { drummer = new Drummer("drumpatterns.txt"); bassplayer = new Bassplayer("basspatterns.txt"); guitarplayer = new Guitarplayer("guitarpatterns.txt");

52 53 54 55 56 57 58 59 60 61 62

lyrics = new String[1024][16]; name = "aForest"; makeSong(); } void doAForestFromPast() { //this is a kover int initbars = 2; int endbars = 4; bars = initbars+(4+4+4)*4+((4)*4+8)+((4)*4+8)+4*4+((4)*4+8)+(16)*4+(2+4)*4+endbars;

63 64 65 66

int[] silent = { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 };

67 68 69 70 71 72 73 74 75 76 77 78 79

int[] aa = { 9, 9, 9, 9, }; int[] ab = { 12, 12, 12, }; int[] ac = { 5, 5, 5, 5, }; int[] ad = { 14, 14, 14, };

9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9

12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12

5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5

14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14

80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95

int[] ba = { 11, 11, 11, }; int[] bb = { 12, 12, 12, }; int[] bc = { 18, 18, 18, }; int[] bd = { 6, 6, 6, 6, }; int[] be = { 5, 5, 5, 5, };

11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11

12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12

18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18

6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6

5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5

96 97

int base, rembase;

98 99 100 101 102 103 104 105 106 107 108 109 110

basstab = new int[bars][16]; basspattern = new int[bars]; guitartab = new int[bars][16]; guitarpattern = new int[bars]; drumpattern = new int[bars]; voicetab = new int[bars][16]; lyricurl = "aforest_lyrics.txt"; alllyrics = loadStrings(lyricurl); //fill "defaults" guitarpattern[0] = 0; basspattern[0] = 0; drumpattern[0] = 0;

25


111 112

basstab[0] = silent; voicetab[0] = silent;

113 114 115 116 117 118

guitarpattern[1] = 0; basspattern[1] = 0; drumpattern[1] = 1; basstab[1] = silent; voicetab[1] = silent;

119 120 121 122 123 124 125 126 127 128 129 130 131

for (int i=initbars;i<bars-endbars;i++) { guitarpattern[i] = 1; basspattern[i] = 2; drumpattern[i] = 2; voicetab[i] = silent; }; for (int i=bars-endbars;i<bars;i++) { guitarpattern[i] = 0; basspattern[i] = 0; drumpattern[i] = 0; voicetab[i] = silent; };

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

base = initbars; //intro rembase = base; for (int i=0;i<4;i++) { basspattern[rembase+i*4+0] = basspattern[rembase+i*4+1] = basspattern[rembase+i*4+2] = basspattern[rembase+i*4+3] = basstab[rembase+i*4+0] = aa; basstab[rembase+i*4+1] = ab; basstab[rembase+i*4+2] = ac; basstab[rembase+i*4+3] = ad; base+=4; } rembase = base; for (int i=0;i<4;i++) { basstab[rembase+i*4+0] = aa; basstab[rembase+i*4+1] = ab; basstab[rembase+i*4+2] = ac; basstab[rembase+i*4+3] = ad; base+=4; } rembase = base; for (int i=0;i<4;i++) { basstab[rembase+i*4+0] = aa; basstab[rembase+i*4+1] = ab; basstab[rembase+i*4+2] = ac; basstab[rembase+i*4+3] = ad; base+=4; } //come closer and see... rembase = base; for (int i=0;i<4;i++) { basstab[rembase+i*4+0] = aa;

0; 0; 0; 0;

167

int[] aux = { 2*i, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 }; voicetab[rembase+i*4+0] = aux;

168 169 170 171 172

basstab[rembase+i*4+1] = ab; int[] aux2 = { -1, -1, -1, -1, -1, -1, -1, -1, 2*i+1, -1, -1, -1, -1, -1, -1, -1 }; voicetab[rembase+i*4+1] = aux2; basstab[rembase+i*4+2] = ac; basstab[rembase+i*4+3] = ad; base+=4;

173 174 175 176 177 178 179 180 181

}

182 183

rembase = base;

184 185 186 187 188 189 190 191 192 193

basstab[rembase+0] basstab[rembase+1] basstab[rembase+2] basstab[rembase+3] basstab[rembase+4] basstab[rembase+5] basstab[rembase+6] basstab[rembase+7] base+=8;

= = = = = = = =

ba; bb; bc; bb; ba; bb; bd; be;

194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212

//I hear her voice... rembase = base; for (int i=0;i<4;i++) { basstab[rembase+i*4+0] = aa; int[] aux = { 2*i+9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 }; voicetab[rembase+i*4+0] = aux; basstab[rembase+i*4+1] = ab; int[] aux2 = { -1, -1, -1, -1, -1, -1, -1, -1, 2*i+9+1, -1, -1, -1, -1, -1, -1, -1 }; voicetab[rembase+i*4+1] = aux2; basstab[rembase+i*4+2] = ac; basstab[rembase+i*4+3] = ad; base+=4; } rembase = base;

213 214 215 216 217 218 219 220

26

basstab[rembase+0] basstab[rembase+1] basstab[rembase+2] basstab[rembase+3] basstab[rembase+4] basstab[rembase+5] basstab[rembase+6]

= = = = = = =

ba; bb; bc; bb; ba; bb; bd;


221 222 223 224 225 226

basstab[rembase+7] = be; int[] aux4 = { -1, -1, -1, -1, -1, -1, -1, -1, 18, -1, -1, -1, -1, -1, -1, -1 }; voicetab[rembase+7] = aux4; base+=8;

227 228 229 230 231 232 233 234 235 236 237 238 239 240

//into the trees... rembase = base; for (int i=0;i<4;i++) { basstab[rembase+i*4+0] basstab[rembase+i*4+1] basstab[rembase+i*4+2] basstab[rembase+i*4+3] base+=4; } //suddenly i stop... rembase = base; for (int i=0;i<4;i++) { basstab[rembase+i*4+0]

= = = =

aa; ab; ac; ad;

= aa;

241

int[] aux = { 2*i+20, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 }; voicetab[rembase+i*4+0] = aux;

242 243 244 245 246

basstab[rembase+i*4+1] = ab; int[] aux2 = { -1, -1, -1, -1, -1, -1, -1, -1, 2*i+20+1, -1, -1, -1, -1, -1, -1, -1 }; voicetab[rembase+i*4+1] = aux2; basstab[rembase+i*4+2] = ac; basstab[rembase+i*4+3] = ad; base+=4;

247 248 249 250 251 252 253 254 255

}

256 257

rembase = base;

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

basstab[rembase+0] = ba; basstab[rembase+1] = bb; basstab[rembase+2] = bc; basstab[rembase+3] = bb; basstab[rembase+4] = ba; basstab[rembase+5] = bb; basstab[rembase+6] = bd; basstab[rembase+7] = be; base+=8; // rembase = base; for (int i=0;i<16;i++) { basstab[rembase+i*4+0] = aa; basstab[rembase+i*4+1] = ab; basstab[rembase+i*4+2] = ac; basstab[rembase+i*4+3] = ad; if ((i+1)%4==0)drumpattern[rembase+i*4+3] = 3; base+=4; } // rembase = base; for (int i=0;i<2;i++) { basstab[rembase+i*4+0] = aa; basstab[rembase+i*4+1] = ab; basstab[rembase+i*4+2] = ac; basstab[rembase+i*4+3] = ad; basspattern[rembase+i*4+0] = 7; basspattern[rembase+i*4+1] = 7; basspattern[rembase+i*4+2] = 7; basspattern[rembase+i*4+3] = 7; drumpattern[rembase+i*4+0] = 7; drumpattern[rembase+i*4+1] = 7; drumpattern[rembase+i*4+2] = 7; drumpattern[rembase+i*4+3] = 7; base+=4; } // rembase = base; for (int i=0;i<4;i++) { basstab[rembase+i*4+0] = aa; basstab[rembase+i*4+1] = ab; basstab[rembase+i*4+2] = ac; basstab[rembase+i*4+3] = ad; basspattern[rembase+i*4+0] = 7; basspattern[rembase+i*4+1] = 7; basspattern[rembase+i*4+2] = 7; basspattern[rembase+i*4+3] = 7; guitarpattern[rembase+i*4+0] = 0; guitarpattern[rembase+i*4+1] = 0; guitarpattern[rembase+i*4+2] = 0; guitarpattern[rembase+i*4+3] = 0; drumpattern[rembase+i*4+0] = 8; drumpattern[rembase+i*4+1] = 8; drumpattern[rembase+i*4+2] = 8; drumpattern[rembase+i*4+3] = 8; base+=4; }

316 317 318 319 320 321

quantization =16; rembase = base; drumpattern[base] = 9; basstab[base] = aa; basspattern[base] = 7;

322 323 324 325 326 327

guitartab = basstab; //guitarpattern = basspattern; tempo = 120;//160; mainlevel = 127;//80; loopeable = false;

328 329 330

basslevel = 127;//96; guitarlevel = 127;//64;

27


331

drumlevel = 127;

332 333 334

bassinstrument = 1; guitarinstrument = 29;

335 336 337 338 339 340 341 342 343 344

name = "aFOREST"; id = 2; } void renderAll() { bassplayer.tab = basstab; bassplayer.kurrent = basspattern; bassplayer.setVolume(basslevel); bassplayer.setInstrument(bassinstrument); bassplayer.parsePatterns();

345 346 347 348 349 350

guitarplayer.tab = guitartab; guitarplayer.kurrent = guitarpattern; guitarplayer.setVolume(guitarlevel); guitarplayer.setInstrument(guitarinstrument); guitarplayer.parsePatterns();

351 352 353 354

drummer.kurrent = drumpattern; drummer.setVolume(drumlevel); drummer.parsePatterns();

355 356 357 358 359 360 361 362 363 364 365

println("all rendered"); } void makeSong() { beatMap = new BeatMap(); //score.empty(); drumstrack = new promidi.Track("drums", drumsout); basstrack = new promidi.Track("bass", bassout); guitartrack = new promidi.Track("kboard", guitarout); bellstrack = new promidi.Track("bells", guitarout);

366 367 368 369 370

drumstrack.setQuantization(Q._1_16); basstrack.setQuantization(Q._1_16); guitartrack.setQuantization(Q._1_16); bellstrack.setQuantization(Q._1_16);

371 372 373

doAForestFromPast(); dolyrics();

374 375 376 377 378 379 380 381 382 383 384

//bassout.sendProgramChange(new ProgramChange(11)); drumsout.sendController(new Controller(0, 1)); drumsout.sendProgramChange(new ProgramChange(bassinstrument)); guitarout.sendProgramChange(new ProgramChange(guitarinstrument));//62)); //bellsout.sendProgramChange(new ProgramChange(76));//62));//76)); //score.empty(); quantization = 16; position = 0; //int tempo = 160;//140;

385 386 387

//metacompose(); //compose();

388 389 390 391 392 393 394 395 396 397

//now render 2014 renderAll(); //dolyrics(); // song = new Song(name, tempo); song.addTrack(drumstrack); song.addTrack(basstrack); song.addTrack(guitartrack); song.addTrack(bellstrack);

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

sequencer.setSong(song); sequencer.setLoopStartPoint(4); sequencer.setLoopEndPoint(512*bars);//512*position/quantization);//512*bars);// sequencer.setLoopCount(-1); sequencer.noLoop(); } void dolyrics() { println("-->do lyrics"); for (int i=0; i<bars; i++) { for (int j=0; j<quantization; j++) { checkLyrics(i, j); } } } void compose() { } void silence() { position+=quantization; bar=0; } void counter() { for (int i=0; i<quantization; i++) { if (i%4==0) { doDrums(position, i, 37, 120, 120); } } position+=quantization; }

427 428 429

/***************************/

430 431 432 433 434 435 436 437 438 439 440

28

void doDrums(int position, int i, int drumstrack.addEvent(new Note(pitch, drumstrack.addEvent(new Note(pitch, dobeat(position+i, pitch); } void doDrumsAForest(int position, int drumstrack.addEvent(new Note(pitch, drumstrack.addEvent(new Note(pitch, dobeat(position, pitch); }

pitch, int minv, int maxv) { (int)random(minv, maxv), 1), position+i); 0, 1), position+i+1);

pitch, int minv, int maxv) { (int)random(minv, maxv), 1), position); 0, 1), position+1);


441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456

void doBass(int position, int i, int pitch, int duration) { basstrack.addEvent(new Note(pitch, (int)random(100, 120), duration), position+i); basstrack.addEvent(new Note(pitch, 0, 1), position+i+duration); } void doBassAForest(int position, int pitch, int duration) { basstrack.addEvent(new Note(pitch, (int)random(100, 120), duration), position); basstrack.addEvent(new Note(pitch, 0, 1), position+duration); } void doKboardAForest(int position, int pitch, int duration) { guitartrack.addEvent(new Note(pitch, (int)random(100, 120), duration), position); guitartrack.addEvent(new Note(pitch, 0, 1), position+duration); } void checkLyrics(int i, int j) { int index = voicetab[i][j]; if (index!=-1) presing(i, j, alllyrics[index]);//,true? }

457 458 459 460

void presing(int i, int j, String l, boolean isfemale) { //i+=2;

461 462 463 464 465

lyrics[i][j] =l; //println(auxposition+" "+i+" "+l); } void presing(int i, int j, String l) {

466

lyrics[i][j] =l; //println(auxposition+" "+i+" "+l);

467 468 469

}

470 471 472 473 474 475 476 477 478 479 480

class // // // //

Bassplayer { Sequencer sequencer = new Sequencer(); MidiOut midiout = midiIO.getMidiOut(1,0); Track base; Song song;

481 482

String patterns[][];

483 484 485 486 487 488

int mastervolume = 127; int volume = 127; float tempo = 150; int quantization = 16; int kurrent[];

489 490 491 492

int mininstrument = 32; int maxinstrument = 39; int instrument = mininstrument;

493 494 495 496

int minnote = 24; int maxnote = minnote+12*3; int note = minnote;

497 498

int tab[][];

499 500 501

Bassplayer(String $1) { String txt[] = loadStrings($1);

502 503 504 505

patterns = new String[128][16]; int patterncounter = 0; int padcounter = 0;

506 507 508 509 510 511 512 513 514 515 516 517

for (int i=0; i<txt.length; i++) { String linex = txt[i]; if (linex.length()==(quantization)) { patterns[patterncounter][padcounter++] = linex; } else { patterncounter++; }; }; //luego carga un pattern x default tab = new int[1][16];

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

kurrent = new int[1]; kurrent[0] = 0; parsePatterns(); } void rawInstrument(int v) { setInstrument(int(mininstrument+(maxinstrument-mininstrument)*v/127)); } void setInstrument(int v) { instrument = v; parsePatterns(); } void rawNote(int v) { setNote(int(minnote+(maxnote-minnote)*v/127)); } void setNote(int v) { note = v; parsePatterns(); } void setMasterVolume(int v) { mastervolume = v; parsePatterns(); } void setVolume(int v) { volume = v; parsePatterns(); } void setTempo(float t) { tempo = t; song.setTempo(t); } void parsePatterns() { // base = new Track("bass", midiout);

29


// // //

551 552 553

base.setQuantization(Q._1_16); midiout.sendProgramChange(new ProgramChange(instrument));

554

for (int k=0; k<kurrent.length; k++) {

555 556

String[] pattern = patterns[kurrent[k]];

557 558

float a = float(mastervolume)/127; float b = float(volume)/127; float prevol = a*b;

559 560 561 562

for (int i=0; i<pattern.length; i++) { if (pattern[i]!=null) { String linex = pattern[i]; //int instrument = unhex(linex.substring(0,2)); for (int j=0; j<linex.length(); j++) { try { note = minnote+tab[k][j]; int pitx = note+unhex(linex.substring(j, j+1)); int vol = int(prevol*127);//int(prevol*127*unhex(linex.substring(j,j+1))/15); int dur = 40; //base.addEvent(new Note(pitx, vol, dur), j+quantization*k); doBassAForest(j+quantization*k, pitx, dur); //println("did i do a bass?"); } catch(Exception e) {//NullPointerException //println("crashed by "+e); }; }; }; };

563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 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

} } /* 33. 34. 35. 36. 37. 38. 39. 40. */

song = new Song("bass", tempo); song.addTrack(base); //song.setTempo(tempo); sequencer.setSong(song); sequencer.setLoopStartPoint(0); sequencer.setLoopEndPoint(512*tab.length); sequencer.setLoopCount(-1);

Acoustic Bass Electric Bass (finger) Electric Bass (pick) Fretless Bass Slap Bass 1 Slap Bass 2 Synth Bass 1 Synth Bass 2

604 605 606 607 608 609 610 611 612 613 614 615 616

class Guitarplayer { // Sequencer sequencer = new Sequencer(); // MidiOut midiout = midiIO.getMidiOut(0,0); // Track base; // Song song; // String patterns[][]; int mastervolume = 127; int volume = 127; float tempo = 150; int quantization = 16; int kurrent[];

617 618 619 620

int mininstrument = 24; int maxinstrument = 31; int instrument = 25;//mininstrument;

621 622 623 624

int minnote = 48; int maxnote = minnote+12*3; int note = minnote;

625 626

int tab[][];

627 628 629

Guitarplayer(String $1) { String txt[] = loadStrings($1);

630 631 632 633

patterns = new String[128][16]; int patterncounter = 0; int padcounter = 0;

634 635 636 637 638 639 640 641 642 643 644 645

for (int i=0; i<txt.length; i++) { String linex = txt[i]; if (linex.length()==(quantization)) { patterns[patterncounter][padcounter++] = linex; } else { patterncounter++; }; }; //luego carga un pattern x default tab = new int[1][16];

646 647 648 649 650 651 652 653 654 655 656 657 658 659 660

30

kurrent = new int[1]; kurrent[0] = 0; parsePatterns(); } void rawInstrument(int v) { setInstrument(int(mininstrument+(maxinstrument-mininstrument)*v/127)); } void setInstrument(int v) { instrument = v; parsePatterns(); } void rawNote(int v) { setNote(int(minnote+(maxnote-minnote)*v/127)); }


661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676

void setNote(int v) { note = v; parsePatterns(); } void setMasterVolume(int v) { mastervolume = v; parsePatterns(); } void setVolume(int v) { volume = v; parsePatterns(); } void setTempo(float t) { tempo = t; song.setTempo(t); }

677 678 679 680 681 682

void parsePatterns() { // base = new Track("guitar", midiout); // base.setQuantization(Q._1_16); // // midiout.sendProgramChange(new ProgramChange(instrument));

683

for (int k=0; k<kurrent.length; k++) {

684 685

String[] pattern = patterns[kurrent[k]];

686 687

float a = float(mastervolume)/127; float b = float(volume)/127; float prevol = a*b;

688 689 690 691

for (int i=0; i<pattern.length; i++) { if (pattern[i]!=null) { String linex = pattern[i]; //int instrument = unhex(linex.substring(0,2)); for (int j=0; j<linex.length(); j++) { try { note = minnote+tab[k][j]; int pitx = note+unhex(linex.substring(j, j+1)); int vol = int(prevol*127);//int(prevol*127*unhex(linex.substring(j,j+1))/15); int dur = 20; //base.addEvent(new Note(pitx, vol, dur), j+quantization*k); doKboardAForest(j+quantization*k, pitx, dur); } catch(Exception e) {//NullPointerException //println("crashed by "+e); }; }; }; };

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

} } /* 25. 26. 27. 28. 29. 30. 31. 32. */

song = new Song("guiatr", tempo); song.addTrack(base); //song.setTempo(tempo); sequencer.setSong(song); sequencer.setLoopStartPoint(0); sequencer.setLoopEndPoint(512*tab.length); sequencer.setLoopCount(-1);

Acoustic Guitar (nylon) Acoustic Guitar (steel) Electric Guitar (jazz) Electric Guitar (clean) Electric Guitar (muted) Overdriven Guitar Distortion Guitar Guitar harmonics

732 733 734 735 736 737 738 739 740 741 742 743 744

class Drummer { // Sequencer sequencer = new Sequencer(); // MidiOut midiout = midiIO.getMidiOut(9,0); // Track base; // Song song; // String patterns[][]; int mastervolume = 127; int volume = 127; float tempo = 150; int quantization = 16; int kurrent[];

745 746 747

Drummer(String $1) { String txt[] = loadStrings($1);

748

patterns = new String[128][128]; int patterncounter = 0; int padcounter = 0;

749 750 751 752

for (int i=0; i<txt.length; i++) { String linex = txt[i]; if (linex.length()==(2+1+quantization)) { patterns[patterncounter][padcounter++] = linex; } else { patterncounter++; }; }; //luego carga un pattern x default kurrent = new int[1]; kurrent[0] = 0; parsePatterns();

753 754 755 756 757 758 759 760 761 762 763 764 765 766

}

767 768 769 770

void setMasterVolume(int v) { mastervolume = v; parsePatterns();

31


771 772 773 774 775 776 777 778 779

} void setVolume(int v) { volume = v; parsePatterns(); } void setTempo(float t) { tempo = t; song.setTempo(t); }

780 781 782 783

void parsePatterns() { // base = new Track("drums", midiout); // base.setQuantization(Q._1_16);

784 785

for (int k=0; k<kurrent.length; k++) {

786

String[] pattern = patterns[kurrent[k]];

787 788

float a = float(mastervolume)/127; float b = float(volume)/127; float prevol = a*b;

789 790 791 792

for (int i=0; i<pattern.length; i++) { if (pattern[i]!=null) { String linex = pattern[i]; int instrument = unhex(linex.substring(0, 2));

793 794 795 796 797

for (int j=3; j<linex.length(); j++) { try { int vol = int(prevol*127*unhex(linex.substring(j, j+1))/15); //base.addEvent(new Note(instrument, vol, 80), j-3+quantization*k); doDrumsAForest(j-3+quantization*k, instrument, vol, vol); } catch(Exception e) {//NullPointerException //println("crashed by "+e); }; };

798 799 800 801 802 803 804 805 806 807

};

808

};

809 810

};

811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880

32

// // // // // // //

song = new Song("drums", tempo); song.addTrack(base); //song.setTempo(tempo); sequencer.setSong(song); sequencer.setLoopStartPoint(0); sequencer.setLoopEndPoint(512*kurrent.length); sequencer.setLoopCount(-1);

} } /*drums 27: punch breaker 28: clap? 29: skratch teki high 30: skratch teki low 31: baquetas 32: pt'k! 33: rim shot 34: cencerro? 35: bass drum low 36: bass drum 37: rim shot 2 38: snare drum 39: clap 2 40: high snare drum 41: high metallic tom 42: charles 43: mid metallic tom 44: charles open 45: low metallic tom 46: ride? 47: high tom? 48: mid tom? 49: crash 50: tom zaund 51: ride? + apagao 52: platisho shino 53: cymbal 54: pandero 55: platillo raro tipo crash apagao 56: cencerro? 57: crash? 58: kashta uelas 59: platisho doble? 60: otro tipo de cencerro o bong 61: tamborcillo sambero 62: borde de tambor apagao 63: tipo bong 64: tipo bong 65: conga 66: low conga 67: claves metalicas 68: weaitas 69: maraca 70: especie de maraka como grillo 71: pito 72: pito juerte 73: rascando? 74: rascando low 75: claves? 76: brazil este 77: brazil este low 78: brazil membrana tipo voz de mono 79: brazil membrana tipo voz de mono low 80: very brilliant brazil klaves 81: very very brilliant brazil klaves 82: kaskabeles 83: brazil kaskabel metaliico? 84: palitos o kizas q cosa 85: kasta eteo seko


86: cajon 87: timbal */

881 882 883 884

}

885 886 887

33


1 2 3 4

class Punkrocker extends VZong { int[] drumpads = { 36, 38, 42, 44, 47, 48, 37 };//46,47,48,42};

5 6 7 8

String[][] drumspatterns; String[] basspatterns; int [][] bassnotes;

9 10 11

String[] kbpatterns; int [][] kbnotes;

12 13

int[] bellsnotes;

14 15 16

//int quantization; int position;

17 18 19

String[] lyricsbase; int lyricLine;

20 21 22 23 24 25 26 27

Punkrocker() { lyrics = new String[1024][16]; name = "Punkrocker"; lyricsbase = loadStrings("punkrocker.txt"); definePatterns(); makeSong(); }

28 29 30 31 32 33 34 35

void makeSong() { beatMap = new BeatMap(); //score.empty(); drumstrack = new promidi.Track("drums", drumsout); basstrack = new promidi.Track("bass", bassout); guitartrack = new promidi.Track("kboard", guitarout); bellstrack = new promidi.Track("bells", bellsout);

36 37 38 39 40

drumstrack.setQuantization(Q._1_16); basstrack.setQuantization(Q._1_16); guitartrack.setQuantization(Q._1_16); bellstrack.setQuantization(Q._1_16);

41 42 43 44 45 46 47 48 49 50

//bassout.sendProgramChange(new ProgramChange(65)); drumsout.sendController(new Controller(0, 1)); drumsout.sendProgramChange(new ProgramChange(92)); guitarout.sendProgramChange(new ProgramChange(4)); bellsout.sendProgramChange(new ProgramChange(70)); //score.empty(); quantization = 16; position = 0; int tempo = 160;

51 52 53 54 55

makePattern(3, makePattern(3, makePattern(3, makePattern(1,

1, 1, 1, 1,

0, 0, 0, 0,

1, 1, 1, 1,

0, 0, 0, 0,

false, false, false, false,

false); false); false); false);

//intro makePattern(0, makePattern(0, makePattern(0, makePattern(0,

0, 0, 0, 0,

0, 1, 2, 2,

0, 0, 0, 0,

0, 1, 2, 2,

false, false, false, false,

false); false); false); false);

makePattern(0, makePattern(0, makePattern(0, makePattern(0,

0, 0, 0, 0,

0, 1, 2, 2,

0, 0, 0, 0,

0, 3, 4, 4,

false, false, false, false,

false); false); false); false);

makePattern(0, makePattern(0, makePattern(0, makePattern(0,

0, 0, 0, 0,

0, 1, 2, 2,

0, 0, 0, 0,

0, 1, 2, 2,

false, false, false, false,

false); false); false); false);

makePattern(0, makePattern(0, makePattern(0, makePattern(0,

0, 0, 0, 0,

0, 1, 2, 2,

0, 0, 0, 0,

0, 5, 4, 4,

false, false, false, false,

false); false); false); false);

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

//verse 1 for (int i=0; i<6; i++) { int d = i>=4 ? 4 : 0; boolean b = i>=2 ? true : false; makePattern(d, 0, 0, 1, 0, true, b); makePattern(d, 0, 1, 1, 0, false, b); makePattern(d, 0, 2, 1, 0, false, b); makePattern(d, 0, 2, 1, 0, false, b); } //chorus for (int i=0; i<2; i++) { makePattern(5, 0, 0, 1, 0, true, false); makePattern(5, 0, 1, 1, 0, false, false); makePattern(5, 0, 2, 1, 0, false, false); makePattern(5, 0, 2, 1, 0, false, false); } //bridge tmp makePattern(0, 0, 0, 0, 0, false, false); makePattern(0, 0, 1, 0, 3, false, false); makePattern(0, 0, 2, 0, 4, false, false); makePattern(0, 0, 2, 0, 4, false, false);

99 100 101 102 103 104 105 106 107 108 109 110

34

makePattern(0, 0, 0, 0, 0, false, false); makePattern(0, 0, 1, 0, 1, false, false); makePattern(0, 0, 2, 0, 2, false, false); makePattern(0, 0, 2, 0, 2, false, false); //verse 2 for (int i=0; i<6; i++) { int d = i>=4 ? 4 : 0; boolean b = i>=2 ? true : false; makePattern(d, 0, 0, 1, 0, true, b); makePattern(d, 0, 1, 1, 0, false, b); makePattern(d, 0, 2, 1, 0, false, b);


111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126

makePattern(d, 0, 2, 1, 0, false, b); } //chorus 2 for (int i=0; i<2; i++) { makePattern(5, 0, 0, 1, 0, true, false); makePattern(5, 0, 1, 1, 0, false, false); makePattern(5, 0, 2, 1, 0, false, false); makePattern(5, 0, 2, 1, 0, false, false); } // //makePattern(1, 1, 0, 1, 0, false, false); //++chorus 2 makePattern(5, 0, 0, 0, 0, true, false); makePattern(5, 0, 1, 0, 1, false, false); makePattern(5, 0, 2, 0, 2, false, false); makePattern(5, 0, 2, 0, 2, false, false);

127 128 129 130 131 132 133 134 135 136

makePattern(4, makePattern(4, makePattern(4, makePattern(4, //bridge 2 makePattern(0, makePattern(0, makePattern(0, makePattern(0,

0, 0, 0, 0,

0, 1, 2, 2,

0, 0, 0, 0,

0, 3, 4, 4,

true, false); false, false); false, false); false, false);

0, 0, 0, 0,

0, 1, 2, 2,

1, 1, 1, 1,

0, 0, 0, 0,

false, false, false, false,

false); false); false); false);

makePattern(0, makePattern(0, makePattern(0, makePattern(0,

0, 0, 0, 0,

0, 1, 2, 2,

1, 1, 1, 1,

0, 0, 0, 0,

false, false, false, false,

false); false); false); false);

makePattern(0, makePattern(0, makePattern(0, makePattern(0,

0, 0, 0, 0,

0, 1, 2, 2,

1, 1, 1, 1,

0, 0, 0, 0,

false, false, false, false,

false); false); false); false);

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

makePattern(0, 0, 0, 1, 0, false, false); makePattern(0, 0, 1, 1, 0, false, false); makePattern(0, 0, 2, 1, 0, false, false); makePattern(0, 0, 2, 1, 0, false, false); //verse 3 for (int i=0; i<6; i++) { int d = i>=4 ? 4 : 0; boolean b = i>=2 ? true : false; makePattern(d, 0, 0, 1, 0, true, b); makePattern(d, 0, 1, 1, 0, false, b); makePattern(d, 0, 2, 1, 0, false, b); makePattern(d, 0, 2, 1, 0, false, b); } //chorus for (int i=0; i<2; i++) { makePattern(5, 0, 0, 1, 0, true, false); makePattern(5, 0, 1, 1, 0, false, false); makePattern(5, 0, 2, 1, 0, false, false); makePattern(5, 0, 2, 1, 0, false, false); } //++chorus makePattern(5, 0, 0, 0, 0, true, false); makePattern(5, 0, 1, 0, 1, false, false); makePattern(5, 0, 2, 0, 2, false, false); makePattern(5, 0, 2, 0, 2, false, false);

173 174 175 176 177 178 179 180 181 182

makePattern(5, makePattern(5, makePattern(5, makePattern(5, //++to end makePattern(4, makePattern(4, makePattern(4, makePattern(4,

0, 0, 0, 0,

0, 1, 2, 2,

0, 0, 0, 0,

0, 3, 4, 4,

true, true); false, true); false, true); false, true);

0, 0, 0, 0,

0, 1, 2, 2,

0, 0, 0, 0,

0, 1, 2, 2,

false, false, false, false,

true); true); true); true);

183 184 185 186 187 188 189 190

makePattern(4, 0, 0, 0, 0, false, true); makePattern(4, 0, 1, 0, 3, false, true); makePattern(4, 0, 2, 0, 4, false, true); makePattern(4, 0, 2, 0, 4, false, true); //zuรกkate makePattern(2, 2, 0, 2, 0, false, false); for (int i=0;i<3;i++)makePattern(3, 1, 0, 1, 0, false, false);

191 192 193 194 195 196

song = new Song(name, tempo); song.addTrack(drumstrack); song.addTrack(basstrack); song.addTrack(guitartrack); song.addTrack(bellstrack);

197 198 199 200 201 202 203 204 205 206

sequencer.setSong(song); sequencer.setLoopStartPoint(0); sequencer.setLoopEndPoint(512*bars); sequencer.setLoopCount(-1); sequencer.noLoop(); } void makePattern(int drumIndex, int bassIndex, int bassNoteIndex, int kbIndex, int kbNoteIndex, boolean singa, boolean bells) {// for (int i=0; i<16; i++) { int auxposition = position+i;

207 208 209 210 211 212 213 214 215 216 217 218 219 220

for (int j=0; j<drumpads.length; j++) { if (!drumspatterns[drumIndex][j].substring(i, i+1).equals("-")) { //score.addNote(float(position+i)/4, 9, 0, drumpads[j], 80+random(40), 0.25, 0.8, 64); drumstrack.addEvent(new Note(drumpads[j], int(120+random(7)), 80), auxposition); drumstrack.addEvent(new Note(drumpads[j], 0, 0), auxposition+1); dobeat(auxposition, drumpads[j]); } } String hxtep = basspatterns[bassIndex].substring(i, i+1); if (!hxtep.equals("-")) { int note = 24+bassnotes[bassNoteIndex][i]; int pitx = note+unhex(hxtep); basstrack.addEvent(new Note(pitx, 120+(int)random(7), 80), auxposition);//int(100+random(20))

35


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

basstrack.addEvent(new Note(pitx, 0, 0), auxposition+1); } String xhxtep = kbpatterns[kbIndex].substring(i, i+1); if (!xhxtep.equals("-")) { int xnote = 48+kbnotes[kbNoteIndex][i]; int xpitx = xnote+unhex(xhxtep); guitartrack.addEvent(new Note(xpitx, 80+(int)random(7), 80), auxposition);//int(100+random(20)) guitartrack.addEvent(new Note(xpitx, 0, 0), auxposition+16); } if (bells) { int ypitx = 96; int zpitx = 0; if (i%2==0) { if (i==2 || i==6 || i==10 || i==14) { zpitx = bellsnotes[0]; } if (i==4 || i==12) { zpitx = bellsnotes[2]; } if (i==8 || i==0) { zpitx = bellsnotes[1]; } } ypitx+=zpitx; bellstrack.addEvent(new Note(ypitx, 50+(int)random(2), 80), auxposition);//int(100+random(20)) bellstrack.addEvent(new Note(ypitx, 0, 0), auxposition+1); } //score.addCallback(float(position+i)/4, 1);// } if (singa) { //vplayer.println(lyricsbase[lyricLine]); lyrics[int(position/16)][0] = lyricsbase[lyricLine]; lyricLine++; lyricLine%=lyrics.length; }

256 257 258 259 260 261 262

// position+=16; bars++; position+=quantization; } void definePatterns() { drumspatterns = new String[6][drumpads.length];

263 264 265 266 267 268 269 270

drumspatterns[0][0]="X-------X-X-----"; drumspatterns[0][1]="----X-------X---"; drumspatterns[0][2]="X-X-X-X-X-X-X-X-";//"----------------";//"X-X-X-X-X-X-X-X-"; drumspatterns[0][3]="----------------";//"X-X-X-X-X-X-X-X-"; drumspatterns[0][4]="----------------"; drumspatterns[0][5]="----------------"; drumspatterns[0][6]="----------------";

271 272 273 274 275 276 277 278

drumspatterns[1][0]="----------------"; drumspatterns[1][1]="----------------"; drumspatterns[1][2]="----------------"; drumspatterns[1][3]="----------------"; drumspatterns[1][4]="----------------"; drumspatterns[1][5]="----------------"; drumspatterns[1][6]="X---X---X---X---";

279 280 281 282 283 284 285 286

drumspatterns[2][0]="X---------------"; drumspatterns[2][1]="X---------------"; drumspatterns[2][2]="X---------------"; drumspatterns[2][3]="----------------"; drumspatterns[2][4]="----------------"; drumspatterns[2][5]="----------------"; drumspatterns[2][6]="----------------";

287 288 289 290 291 292 293 294

drumspatterns[3][0]="----------------"; drumspatterns[3][1]="----------------"; drumspatterns[3][2]="----------------"; drumspatterns[3][3]="----------------"; drumspatterns[3][4]="----------------"; drumspatterns[3][5]="----------------"; drumspatterns[3][6]="----------------";

295 296 297 298 299 300 301 302

drumspatterns[4][0]="X-------X-X-----"; drumspatterns[4][1]="X---X---X---X---"; drumspatterns[4][2]="X-X-X-X-X-X-X-X-";//"----------------";//"X-X-X-X-X-X-X-X-"; drumspatterns[4][3]="----------------";//"X-X-X-X-X-X-X-X-"; drumspatterns[4][4]="----------------"; drumspatterns[4][5]="----------------"; drumspatterns[4][6]="----------------";

303 304 305 306 307 308 309 310

drumspatterns[5][0]="X---X---X-X-----"; drumspatterns[5][1]="--X---X---X---X-"; drumspatterns[5][2]="X-X-X-X-X-X-X-X-";//"----------------";//"X-X-X-X-X-X-X-X-"; drumspatterns[5][3]="----------------";//"X-X-X-X-X-X-X-X-"; drumspatterns[5][4]="----------------"; drumspatterns[5][5]="----------------"; drumspatterns[5][6]="----------------";

311 312 313 314 315

basspatterns = new String[3]; basspatterns[0]= "0-0-0-0-0-0-0-0-"; basspatterns[1]= "----------------"; basspatterns[2]= "0---------------";

316 317 318 319 320 321 322 323 324 325 326

bassnotes = new int[3][16]; int[] b0 = { 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17 }; int[] b1 = { 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10 }; int[] b2 = { 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14 };

327 328 329 330

36

bassnotes[0] = b0; bassnotes[1] = b1; bassnotes[2] = b2;


331

kbpatterns = new String[3]; kbpatterns[0]= "0-0-0-0-0-0-0-0-"; kbpatterns[1]= "----------------"; kbpatterns[2]= "0---------------";

332 333 334 335 336

kbnotes = new int[] k0 = { 17, 17, 17, }; int[] k1 = { 21, 21, 21, }; int[] k2 = { 26, 26, 26, }; int[] k3 = { 10, 10, 10, }; int[] k4 = { 14, 14, 14, }; int[] k5 = { 10, 10, 10, };

337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355

int[6][16]; 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 19, 19, 19

21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 29, 29, 29

26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26

10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 17, 17, 17

14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14

10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 7, 7, 7

356 357

kbnotes[0] kbnotes[1] kbnotes[2] kbnotes[3] kbnotes[4] kbnotes[5]

358 359 360 361 362 363

= = = = = =

k0; k1; k2; k3; k4; k5;

364

bellsnotes = new int[3]; bellsnotes[0] = 9; bellsnotes[1] = 7; bellsnotes[2] = 5;

365 366 367 368

}

369 370

}

371 372 373 374 375 376 377 378 379 380

37


1 2

class Reptile extends VZong { //Song song;

3 4 5 6

int[] drumpads = { 36, 38, 42, 44, 47, 48, 37 };//46,47,48,42};

7 8 9 10

String[][] drumspatterns; String[] basspatterns; int [][] bassnotes;

11 12 13

String[] kbpatterns; int [][] kbnotes;

14 15

int[] bellsnotes;

16 17

int position;

18 19 20

String[] lyricsbase; int lyricLine;

21 22 23

int part = -3; int auxposition;

24 25 26 27 28 29

Reptile() { lyrics = new String[1024][16]; name = "Reptile"; makeSong(); }

30 31 32 33 34 35 36 37

void makeSong() { beatMap = new BeatMap(); //score.empty(); drumstrack = new promidi.Track("drums", drumsout); basstrack = new promidi.Track("bass", bassout); guitartrack = new promidi.Track("kboard", guitarout); bellstrack = new promidi.Track("bells", guitarout);

38 39 40 41 42

drumstrack.setQuantization(Q._1_16); basstrack.setQuantization(Q._1_16); guitartrack.setQuantization(Q._1_16); bellstrack.setQuantization(Q._1_16);

43 44 45 46 47 48 49 50 51 52

//bassout.sendProgramChange(new ProgramChange(11)); drumsout.sendController(new Controller(0, 1)); drumsout.sendProgramChange(new ProgramChange(3)); guitarout.sendProgramChange(new ProgramChange(5));//62)); //bellsout.sendProgramChange(new ProgramChange(76));//62));//76)); //score.empty(); quantization = 16; position = 0; int tempo = 140;//140;

53 54 55 56 57 58 59 60 61 62

//metacompose(); compose(); dolyrics(); // song = new Song(name, tempo); song.addTrack(drumstrack); song.addTrack(basstrack); song.addTrack(guitartrack); song.addTrack(bellstrack);

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

38

sequencer.setSong(song); sequencer.setLoopStartPoint(4); sequencer.setLoopEndPoint(512*position/quantization);//512*bars);// sequencer.setLoopCount(-1); sequencer.noLoop(); } void dolyrics() { for (int i=0; i<position/quantization; i++) { for (int j=0; j<quantization; j++) { checkLyrics(i, j); } } } void compose() { for (part = -1; part<14; part++) { switch(part) { case -1: //case 9: silence(); break; case 0: counter(); break; case 1: case 9: part000x(); break; case 2: case 5: case 10: part000xx(); break; case 3: case 6: case 11: part000(); break; case 4: case 7: case 12: part001(); break; case 8: part002(); break; default: part001();


break;

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

} } void silence() { position+=quantization; bar=0; } void counter() { for (int i=0; i<quantization; i++) { if (i%4==0) { doDrums(position, i, 37, 120, 120); } } position+=quantization; } void part000() { for (bar=0; bar<4*4; bar++) { if (bar%4==0)riff000a(); if (bar%4==1)riff000b(); if (bar%4==2)riff000c(); if (bar%4==3)riff000d(); } } void part000x() { for (bar=0; bar<4*2; bar++) { if (bar%4==0)riff000ax(); if (bar%4==1)riff000bx(); if (bar%4==2)riff000cx(); if (bar%4==3)riff000dx(); } } void part000xx() { for (bar=0; bar<4*2; bar++) { if (bar%4==0)riff000axx(); if (bar%4==1)riff000bxx(); if (bar%4==2)riff000cxx(); if (bar%4==3)riff000dxx(); } } void part001() { for (bar=0; bar<4*4; bar++) { if (bar%4==0)riff001a(); if (bar%4==1)riff001b(); if (bar%4==2)riff001c(); if (bar%4==3)riff001d(); } } void part002() { for (bar=0; bar<4*4; bar++) { if (bar%4==0)riff002a(); if (bar%4==1)riff002b(); if (bar%4==2)riff002c(); if (bar%4==3)riff002d(); } } void riff000a() { for (int i=0; i<quantization; i++) { drums000b(position, i); bass000a(position, i); kboard000a(position, i); } position+=quantization; } void riff000b() { for (int i=0; i<quantization; i++) { drums000b(position, i); bass000b(position, i); kboard000b(position, i); } position+=quantization; } void riff000c() { for (int i=0; i<quantization; i++) { drums000b(position, i); bass000c(position, i); kboard000c(position, i); } position+=quantization; } void riff000d() { for (int i=0; i<quantization; i++) { drums000b(position, i); bass000d(position, i); kboard000d(position, i); } position+=quantization; }

199 200 201 202

void riff000ax() { for (int i=0; i<quantization; i++) { drums000x(position, i);

203 204 205 206 207 208 209 210

kboard000a(position, i); } position+=quantization; } void riff000bx() { for (int i=0; i<quantization; i++) { drums000x(position, i);

211 212 213 214 215 216 217 218

kboard000b(position, i); } position+=quantization; } void riff000cx() { for (int i=0; i<quantization; i++) { drums000x(position, i);

219 220

kboard000c(position, i);

39


221 222 223 224 225 226

} position+=quantization; } void riff000dx() { for (int i=0; i<quantization; i++) { drums000x(position, i);

227

kboard000d(position, i); } position+=quantization;

228 229 230 231

}

232 233 234 235

void riff000axx() { for (int i=0; i<quantization; i++) { drums000xx(position, i);

236

kboard000a(position, i); } position+=quantization;

237 238 239 240 241 242 243

} void riff000bxx() { for (int i=0; i<quantization; i++) { drums000xx(position, i);

244

kboard000b(position, i); } position+=quantization;

245 246 247 248 249 250 251

} void riff000cxx() { for (int i=0; i<quantization; i++) { drums000xx(position, i);

252

kboard000c(position, i); } position+=quantization;

253 254 255 256 257 258 259

} void riff000dxx() { for (int i=0; i<quantization; i++) { drums000xx(position, i);

260

kboard000d(position, i); } position+=quantization;

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

void riff001a() { for (int i=0; i<quantization; drums000(position, i); bass001a(position, i); kboard000a(position, i); } position+=quantization; } void riff001b() { for (int i=0; i<quantization; drums000(position, i); bass001b(position, i); kboard000b(position, i); } position+=quantization; } void riff001c() { for (int i=0; i<quantization; drums000(position, i); bass001c(position, i); kboard000c(position, i); } position+=quantization; } void riff001d() { for (int i=0; i<quantization; drums000(position, i); bass001d(position, i); kboard000d(position, i); } position+=quantization; }

i++) {

i++) {

i++) {

i++) {

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

void riff002a() { for (int i=0; i<quantization; drums002(position, i); bass002a(position, i); } position+=quantization; } void riff002b() { for (int i=0; i<quantization; drums002(position, i); bass002b(position, i); } position+=quantization; } void riff002c() { for (int i=0; i<quantization; drums002(position, i); bass002c(position, i); } position+=quantization; } void riff002d() { for (int i=0; i<quantization; drums002(position, i); bass002d(position, i); } position+=quantization; }

327 328 329 330

40

/***************************/ int raska;

i++) {

i++) {

i++) {

i++) {


331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350

void drums000(int position, int i) { if (i%4==0) doDrums(position, i, 36, 110, 120); if (i%8==4) doDrums(position, i, 38, 110, 120); doDrums(position, i, 44, 110, 120); } void drums000b(int position, int i) { if (i%4==0) doDrums(position, i, 36, 110, 120); //if (i%8==4) doDrums(position, i, 38, 110, 120); doDrums(position, i, 44, 110, 120); } void drums000x(int position, int i) { //if (i%4==0) doDrums(position, i, 36, 110, 120); //if (i%8==4) doDrums(position, i, 38, 110, 120); doDrums(position, i, 44, 110, 120); } void drums000xx(int position, int i) { if (i%4==0) doDrums(position, i, 36, 110, 120); //if (i%8==4) doDrums(position, i, 38, 110, 120); doDrums(position, i, 44, 110, 120); }

351 352 353 354 355 356

void drums002(int position, int i) { if (i%8==0) doDrums(position, i, 36, 110, 120); if (i%16==8) doDrums(position, i, 38, 110, 120); doDrums(position, i, 44, 110, 120); }

357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377

void if if if if if } void if if if if } void if if if } void }

bass000a(int position, int i) { (i==0) doBass(position, i, 43-12, 4); (i==4) doBass(position, i, 43-12, 6); (i==10) doBass(position, i, 43+2-12, 2); (i==12) doBass(position, i, 43+5-12, 2); (i==14) doBass(position, i, 43+7-12, 6);

void if } void if } void if } void if }

bass001a(int position, int i) { (i%2==0) doBass(position, i, 43-12, 4);

void if } void if } void if } void if }

bass002a(int position, int i) { (i%4==0) doBass(position, i, 43-12, 4);

bass000b(int position, int i) { (i==4) doBass(position, i, 43+7-12, 4); (i==8) doBass(position, i, 43+7-12, 2); (i==10) doBass(position, i, 43+5-12, 4); (i==14) doBass(position, i, 43+3-12, 2); bass000c(int position, int i) { (i==0) doBass(position, i, 43+5-12, 2); (i==4) doBass(position, i, 43+8-12, 2); (i==6) doBass(position, i, 43-12, 10+16); bass000d(int position, int i) {

378 379 380 381 382 383 384 385 386 387 388 389 390

bass001b(int position, int i) { (i%2==0) doBass(position, i, 43-2-12, 4); bass001c(int position, int i) { (i%2==0) doBass(position, i, 43+8-12, 4); bass001d(int position, int i) { (i%2==0) doBass(position, i, 43+8-12, 4);

391 392 393 394 395 396 397 398 399 400 401 402 403

bass002b(int position, int i) { (i%4==0) doBass(position, i, 43+2-12, 4); bass002c(int position, int i) { (i%4==0) doBass(position, i, 43-2-12, 4); bass002d(int position, int i) { (i%4==0) doBass(position, i, 43-12, 4);

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

void kboard000a(int position, int i) { if (i==0) doKboard(position, i, 79, 1); if (i==4) doKboard(position, i, 79+3, 1); if (i==8) doKboard(position, i, 79+2, 1); if (i==12) doKboard(position, i, 79+3, 1); } void kboard000b(int position, int i) { if (i==0) doKboard(position, i, 79, 1); if (i==4) doKboard(position, i, 79+3, 1); if (i==6 || i==10) doKboard(position, i, 79+2, 1); if (i==12) doKboard(position, i, 79+3, 1); } void kboard000c(int position, int i) { if (i==0) doKboard(position, i, 79-4, 1); if (i==4) doKboard(position, i, 79+3, 1); if (i==8) doKboard(position, i, 79+2, 1); if (i==12) doKboard(position, i, 79+3, 1); } void kboard000d(int position, int i) { if (i==0) doKboard(position, i, 79-4, 1); if (i==4) doKboard(position, i, 79+3, 1); if (i==6 || i==10) doKboard(position, i, 79+2, 1); if (i==12) doKboard(position, i, 79+3, 1); } void doDrums(int positiom, int i, int pitch, int minv, int maxv) { drumstrack.addEvent(new Note(pitch, (int)random(minv, maxv), 1), position+i); drumstrack.addEvent(new Note(pitch, 0, 1), position+i+1); dobeat(position+i, pitch); } void doBass(int position, int i, int pitch, int duration) { basstrack.addEvent(new Note(pitch, (int)random(100, 120), duration), position+i); basstrack.addEvent(new Note(pitch, 0, 1), position+i+duration); } void doKboard(int position, int i, int pitch, int duration) { guitartrack.addEvent(new Note(pitch, (int)random(100, 120), duration), position+i); guitartrack.addEvent(new Note(pitch, 0, 1), position+i+duration);

41


} void checkLyrics(int i, int j) {

441 442 443

//if (i==18 && j==0)presing(i, j, "deben ser las decepciones");//,true? if (i==20 && j==0)presing(i, j, "Too dangerous to keep"); if (i==25 && j==0)presing(i, j, "Too feeble to let go"); if (i==29 && j==0)presing(i, j, "And you want to bite the hand"); if (i==32 && j==0)presing(i, j, "Shoulda stopped this long ago");

444 445 446 447 448 449 450 451 452 453 454 455 456

if if if if if if if

(i==34 (i==36 (i==38 (i==42 (i==44 (i==46 (i==48

&& && && && && && &&

j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i,

j, j, j, j, j, j, j,

"Go now, you've been set free"); "Another month or so you'll be poisoning me"); "Looooveeeeely smile"); "I see you slither away with your skin and your tail"); "Your flickering tounge and your rattling scales"); "Like a real"); "reptile");

if if if if

(i==40+20 (i==40+25 (i==40+29 (i==40+32

&& && && &&

j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i,

j, j, j, j,

"Had "How "How "But

if if if if if if if

(i==40+34 (i==40+36 (i==40+38 (i==40+42 (i==40+44 (i==40+46 (i==40+48

&& && && && && && &&

j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i,

j, j, j, j, j, j, j,

"Go now, you've been set free"); "Another month or so you'll be poisoning me"); "Looooveeeeely smile"); "I see you slither away with your skin and your tail"); "Your flickering tounge and your rattling scales"); "Like a real"); "reptile");

if if if if

(i==64+40+20+1-1 (i==64+40+25+1-1 (i==64+40+29+1-1 (i==64+40+32+1-1

&& && && &&

j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i,

j, j, j, j,

"And I should have believed Eve"); "She said we had to blow"); "She was the apple of my eye"); "It wasn't long ago");

if if if if if if if

(i==64+40+34+1-1 (i==64+40+36+1-1 (i==64+40+38+1-1 (i==64+40+42+1-1 (i==64+40+44+1-1 (i==64+40+46+1-1 (i==64+40+48+1-1

&& && && && && && &&

j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i,

j, j, j, j, j, j, j,

"Go now, you've been set free"); "Another month or so you'll be poisoning me"); "Looooveeeeely smile"); "I see you slither away with your skin and your tail"); "Your flickering tounge and your rattling scales"); "Like a real"); "reptile");

457 458 459 460 461

you coiled around my arm"); could you ever know"); I loved your diamond eyes"); that was long ago");

462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482

} void presing(int i, int j, String l, boolean isfemale) { lyrics[i][j] =l; } void presing(int i, int j, String l) { lyrics[i][j] =l; }

483 484 485 486 487 488 489 490 491 492 493 494

42

}


1 2 3 4

class SheLost extends VZong { int[] drumpads = { 36, 38, 42, 44, 47, 48, 31 };//46,47,48,42};

5 6 7 8

String[][] drumspatterns; String[] basspatterns; int [][] bassnotes;

9 10 11

//int quantization; int position;

12 13 14

String[] lyricsbase; int lyricLine;

15 16 17 18 19 20 21 22

SheLost() { lyrics = new String[1024][16]; name = "SheLost"; lyricsbase = loadStrings("shelostlyrics.txt"); definePatterns(); makeSong(); }

23 24 25 26 27 28 29

void makeSong() { beatMap = new BeatMap(); //score.empty(); drumstrack = new promidi.Track("drums", drumsout); basstrack = new promidi.Track("bass", guitarout);//bassout); guitartrack = new promidi.Track("guitar", bassout);//guitarout);

30 31 32 33

drumstrack.setQuantization(Q._1_16); basstrack.setQuantization(Q._1_16); guitartrack.setQuantization(Q._1_16);

34 35 36 37 38 39 40 41

drumsout.sendController(new Controller(0, 1)); drumsout.sendProgramChange(new ProgramChange(0)); guitarout.sendProgramChange(new ProgramChange(65)); //score.empty(); quantization = 16; position = 0; int tempo = 140;

42 43 44 45 46

makePattern(6, makePattern(6, makePattern(6, makePattern(4,

2, 2, 2, 2,

0, 0, 0, 0,

false, false, false, false,

true); true); true); true);

47 48 49 50 51

for (int i=0; i<2; i++) { makePattern(0, 2, 0, false, true); makePattern(1, 2, 0, false, true); }

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

for (int i=0; i<2; i++) { makePattern(0, 0, 0, false, true); makePattern(1, 0, 0, false, true); makePattern(0, 0, 0, false, true); makePattern(1, 0, 0, false, true); } for (int i=0; i<8;i++) { makePattern(0, 0, 0, true, false); makePattern(0, 0, 0, false, false); } for (int i=0; i<8;i++) { makePattern(0, 0, 0, true, false); makePattern(0, 0, 0, false, false); } for (int i=0; i<4;i++) { makePattern(2, 1, 0, true, true); makePattern(3, 1, 0, false, true); } for (int i=0; i<2;i++) {//makePattern(0, 0, 0); makePattern(1, 1, 1, false, false); makePattern(3, 1, 2, false, true); makePattern(1, 1, 3, false, false); makePattern(3, 1, 3, false, true);// makePattern(1, 1, 1, false, false); makePattern(3, 1, 2, false, true); makePattern(1, 1, 4, false, false); makePattern(3, 1, 4, false, true); }

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

for (int i=0; i<2; i++) { makePattern(0, 0, 0, false, true); makePattern(1, 0, 0, false, true); makePattern(0, 0, 0, false, true); makePattern(1, 0, 0, false, true); } for (int i=0; i<8;i++) { makePattern(0, 0, 0, true, false); makePattern(0, 0, 0, false, false); } for (int i=0; i<4;i++) { makePattern(2, 1, 0, true, true); makePattern(3, 1, 0, false, true); } for (int i=0; i<2;i++) {//makePattern(0, 0, 0); makePattern(1, 1, 1, false, false); makePattern(3, 1, 2, false, true); makePattern(1, 1, 3, false, false); makePattern(3, 1, 3, false, true);// makePattern(1, 1, 1, false, false); makePattern(3, 1, 2, false, true); makePattern(1, 1, 4, false, false); makePattern(3, 1, 4, false, true); } for (int i=0; i<2;i++) {//makePattern(0, 0, 0); makePattern(2, 1, 1, false, false); makePattern(3, 1, 2, false, true); makePattern(2, 1, 3, false, false); makePattern(3, 1, 3, false, true);//

43


111 112 113 114 115 116 117 118 119

makePattern(2, makePattern(3, makePattern(2, makePattern(3,

1, 1, 1, 1,

1, 2, 4, 4,

false, false, false, false,

true); true); true); true);

} for (int i=0; i<4;i++) { makePattern(2, 1, 0, true, true); makePattern(3, 1, 0, false, true); }

120 121 122

makePattern(5, 3, 0, false, true); for (int i=0;i<3;i++)makePattern(6, 2, 0, false, true);

123 124 125 126 127 128

song = new Song(name, tempo); song.addTrack(drumstrack); song.addTrack(basstrack); song.addTrack(guitartrack);

129 130 131 132 133 134 135 136 137 138

sequencer.setSong(song); sequencer.setLoopStartPoint(0); sequencer.setLoopEndPoint(512*bars); sequencer.setLoopCount(-1); sequencer.noLoop(); } void makePattern(int drumIndex, int bassIndex, int bassNoteIndex, boolean singa, boolean bells) { for (int i=0; i<16; i++) { int auxposition = position+i;

139 140 141 142 143 144

for (int j=0; j<drumpads.length; j++) { if (!drumspatterns[drumIndex][j].substring(i, i+1).equals("-")) { //score.addNote(float(position+i)/4, 9, 0, drumpads[j], 80+random(40), 0.25, 0.8, 64); drumstrack.addEvent(new Note(drumpads[j], int(120+random(7)), 80), auxposition); drumstrack.addEvent(new Note(drumpads[j], 0, 0), auxposition+1);

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

dobeat(auxposition, drumpads[j]); } } String hxtep = basspatterns[bassIndex].substring(i, i+1); if (!hxtep.equals("-")) { int note = 24+bassnotes[bassNoteIndex][i]; int pitx = note+unhex(hxtep); basstrack.addEvent(new Note(pitx, 120+(int)random(7), 80), auxposition);//int(100+random(20)) basstrack.addEvent(new Note(pitx, 0, 0), auxposition+1); //score.addNote(float(position+i)/4, 0, 38, pitx, 80+random(40), 0.25, 0.8, 64); } if (bells) { int pitch = (int)score.pcRandomWalk(60+2+12*3, 12, score.MINOR_PENTATONIC);//INDIAN); //println(pitch); ////score.addNote(i/4, 1, 96, pitch, 60+random(20), random(.5,2.5), 0.5, 64); float v1 = 48+random(20); guitartrack.addEvent(new Note(pitch, int(v1), 80), auxposition); guitartrack.addEvent(new Note(pitch, 0, 0), auxposition+1);//+(int)random(2,5)); //score.addNote(float(position+i)/4, 1, 38, pitch, 10+random(10), random(5,8), 0.1, 64); } //score.addCallback(float(position+i)/4, 1);// } if (singa) { ////vplayer.println(lyricsbase[lyricLine]); lyrics[int(position/16)][0] = lyricsbase[lyricLine]; lyricLine++; lyricLine%=lyrics.length; }

174 175 176 177 178 179 180

// position+=16; bars++; position+=quantization; } void definePatterns() { drumspatterns = new String[7][drumpads.length];

181 182 183 184 185 186 187 188

drumspatterns[0][0]="X-X-X---X-X-X---"; drumspatterns[0][1]="----X-------X-X-"; drumspatterns[0][2]="----------------"; drumspatterns[0][3]="----------------"; drumspatterns[0][4]="X-X------XX--X--"; drumspatterns[0][5]="----------------"; drumspatterns[0][6]="----------------";

189 190 191 192 193 194 195 196

drumspatterns[1][0]="X-X-X---X-X-X---"; drumspatterns[1][1]="----X-------X-X-"; drumspatterns[1][2]="--XX--XX--XX--XX"; drumspatterns[1][3]="----------------"; drumspatterns[1][4]="X-X------XX--X--"; drumspatterns[1][5]="----------------"; drumspatterns[1][6]="----------------";

197 198 199 200 201 202 203 204

drumspatterns[2][0]="X-X-X---X-X-X---"; drumspatterns[2][1]="X---X---X---X---"; drumspatterns[2][2]="--XX--XX--XX--XX"; drumspatterns[2][3]="X-X------XX--X--"; drumspatterns[2][4]="-X-X------XX--X-"; drumspatterns[2][5]="--X--X-X------XX"; drumspatterns[2][6]="----------------";

205 206 207 208 209 210 211 212

drumspatterns[3][0]="X-X-X---X-X-X---"; drumspatterns[3][1]="X---X--X-XX-X-X-"; drumspatterns[3][2]="XXXXXXXXXXXXXXXX"; drumspatterns[3][3]="----------------"; drumspatterns[3][4]="----------------"; drumspatterns[3][5]="----------------"; drumspatterns[3][6]="----------------";

213 214 215 216 217 218 219 220

44

drumspatterns[4][0]="----------------"; drumspatterns[4][1]="----------------"; drumspatterns[4][2]="----------------"; drumspatterns[4][3]="----------------"; drumspatterns[4][4]="----------------"; drumspatterns[4][5]="----------------"; drumspatterns[4][6]="X---X---X---X---";


221

drumspatterns[5][0]="X---------------"; drumspatterns[5][1]="X---------------"; drumspatterns[5][2]="X---------------"; drumspatterns[5][3]="X---------------"; drumspatterns[5][4]="X---------------"; drumspatterns[5][5]="X---------------"; drumspatterns[5][6]="----------------";

222 223 224 225 226 227 228 229

drumspatterns[6][0]="----------------"; drumspatterns[6][1]="----------------"; drumspatterns[6][2]="----------------"; drumspatterns[6][3]="----------------"; drumspatterns[6][4]="----------------"; drumspatterns[6][5]="----------------"; drumspatterns[6][6]="----------------";

230 231 232 233 234 235 236 237

basspatterns = new String[4]; basspatterns[0]= "0-0-0-0-0-0-0-0-"; basspatterns[1]= "0-CC0-CC0-CC0-CC"; basspatterns[2]= "----------------"; basspatterns[3]= "0---------------";

238 239 240 241 242 243

bassnotes = new int[5][16]; int[] b0 = { //14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 }; int[] b1 = { 7, 7, 7, 7, 7, 7, 7, 7, 9, 9, 9, 9, 9, 9, 9, 9 }; int [] b2 = { 10, 10, 10, 10, 10, 10, 10, 10, 12, 12, 12, 12, 12, 12, 12, 12 }; int[] b3 = { 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14 }; int[] b4 = { 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9 };

244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260

};

261

bassnotes[0] bassnotes[1] bassnotes[2] bassnotes[3] bassnotes[4]

262 263 264 265 266

b0; b1; b2; b3; b4;

} //void rock(){ // //score.play(); // sequencer.start(); // rocking = true; // //vplayer.println("song "+name+" rocking!"); // } // void stop(){ // sequencer.stop(); // rocking = false; // bar = 0; // frame = 0; // cframe = 0; // //vplayer.println("song "+name+" stopped"); // } // void draw(){ // //if(!//score.playing)stop(); // } // void checksong(){ // if(rocking){ // bar = int(sequencer.getTickPosition()/512); // frame = int((sequencer.getTickPosition()%512)/32); // // if(oldbar!=bar || oldframe!=frame){ // // if(lyrics[bar][frame]!=null){ // donmiguel.sing(lyrics[bar][frame]); // vadmin.cscreen.addLyric(lyrics[bar][frame]); // } // }; // if(!false && bar<oldbar){ // stop(); // } // // oldbar=bar; // oldframe=frame; // } // }

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

45


1 2 3 4

class AdaptiveRadiation extends VZong { int[] drumpads = { 36, 38, 42, 44, 47, 48, 37 };

5 6 7 8

String[][] drumspatterns; String[] basspatterns; int [][] bassnotes;

9 10 11

String[] kbpatterns; int [][] kbnotes;

12 13

int[] bellsnotes;

14 15

int position;

16 17 18

String[] lyricsbase; int lyricLine;

19 20 21

int part = -3; int auxposition;

22 23 24 25 26 27 28 29 30 31

int[] solM 71-1*12, }; int[] doM 72-1*12, }; int[] sim 71-1*12, };

= { 67-1*12, 74-1*12, 79-1*12 = { 64-1*12, 67-1*12, 60-1*12 = { 74-1*12, 66-1*12, 59+1*12

32 33 34 35 36 37

AdaptiveRadiation() { lyrics = new String[1024][16]; name = "AdaptativeRadiation"; makeSong(); }

38 39 40 41 42 43 44 45

void makeSong() { beatMap = new BeatMap(); //score.empty(); drumstrack = new promidi.Track("drums", drumsout); basstrack = new promidi.Track("bass", bassout); guitartrack = new promidi.Track("kboard", guitarout); bellstrack = new promidi.Track("bells", guitarout);

46 47 48 49 50

drumstrack.setQuantization(Q._1_16); basstrack.setQuantization(Q._1_16); guitartrack.setQuantization(Q._1_16); bellstrack.setQuantization(Q._1_16);

51 52 53 54

drumsout.sendController(new Controller(0, 1)); drumsout.sendProgramChange(new ProgramChange(1)); guitarout.sendProgramChange(new ProgramChange(69));

55 56 57 58 59

quantization = 16; position = 0; int tempo = 96;

60 61 62 63 64 65 66 67 68

compose(); dolyrics(); // song = new Song(name, tempo); song.addTrack(drumstrack); song.addTrack(basstrack); song.addTrack(guitartrack); song.addTrack(bellstrack);

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

46

sequencer.setSong(song); sequencer.setLoopStartPoint(0); sequencer.setLoopEndPoint(512*position/quantization);//512*bars);// sequencer.setLoopCount(0); sequencer.noLoop(); } void dolyrics() { for (int i=0; i<position/quantization; i++) { for (int j=0; j<quantization; j++) { checkLyrics(i, j); } } } void compose() { for (part = -1; part<24; part++) { switch(part) { case -1: silence(); break; case 0: counter(); break; case 1: case 3: //case 5: part001(); break; case 2: //case 4: part002(); //silence(); break; default: part003(); break; } } } void silence() { position+=quantization; bar=0;


111 112 113 114 115 116 117 118 119

} void counter() { for (int i=0; i<quantization; i++) { if (i%4==0) { doDrums(position, i, 37, 120, 120); } } position+=quantization; }

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

void prediend() { for (int i=0; i<quantization; i++) { if (i==0) { doBass(position, i, 45-12, 12); doKboard(position, i, solM[0], 160); doKboard(position, i, solM[1], 160); doKboard(position, i, solM[2], 160); } } position+=quantization; } void diend() { int i=0; doKboard(position, i, solM[0], 160); doKboard(position, i, solM[1], 160); doKboard(position, i, solM[2], 160); position+=quantization; } void part001() { for (bar=0; bar<4*4; bar++) { switch(bar%4) { default: riff000(); break; case 1: riff002(); break; } } } void part002() { for (bar=0; bar<4*2; bar++) { switch(bar%4) { case 0: riff001(); break; case 1: riff002(); break; default: riff000(); break; } } } void part003() { for (bar=0; bar<4*2; bar++) { riff001(); break; } } void riff000() { for (int i=0; i<quantization; i++) { drums001(position, i); bassSolM(position, i); kboardSolM(position, i); } position+=quantization; } void riff001() { for (int i=0; i<quantization; i++) { drums001(position, i); bassSim(position, i); kboardSim(position, i); } position+=quantization; } void riff002() { for (int i=0; i<quantization; i++) { drums001(position, i); bassDoM(position, i); kboardDoM(position, i); } position+=quantization; } /***************************/ void drums001(int position, int i) { if (i%4==0)// || i%10==0) doDrums(position, i, 36, i%6==0?127:96, i%6==0?127:96); if (i%3==0) { doDrums(position, i, 44, i%6==0?127:96, i%6==0?127:96); doDrums(position, i+1, 44, i%6==0?127:96, i%6==0?127:96); } else doDrums(position, i, 42, i%6==0?127:96, i%6==0?127:96);

206 207 208 209 210 211 212 213 214 215 216 217 218 219 220

if (i%8==4) doDrums(position, i, 38, 96, 100); } void drums002(int position, int i) { if (i%4==0 )//|| i%10==0) doDrums(position, i, 36, i%6==0?127:96, i%6==0?127:96); if (i%3==0) doDrums(position, i, 44, i%6==0?127:96, i%6==0?127:96); else //if(i%4==2) doDrums(position, i, 42, 110, 120); if (i%8==4) doDrums(position, i, 38, 96, 100); } void drums003(int position, int i) {

47


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

if (i%8==0) doDrums(position, i, 38, 96, 100); else if (i%4==0 || i%10==0) doDrums(position, i, 36, i%6==0?127:96, i%6==0?127:96); if (i%3==0) doDrums(position, i, 44, i%6==0?127:96, i%6==0?127:96); else if (i%4==2) doDrums(position, i, 42, 110, 120); } // void bassSolM(int position, int i) { int xtra = random(100)>90?0:(random(100)>40)?3:(random(100)>50)?7:5; if (i%2==0) { doBass(position, i, 43-12, 1); } else doBass(position, i, 43, 1);//doBass(position, i, 43-24, 1); } void bassSim(int position, int i) { int xtra = random(100)>90?0:(random(100)>40)?3:(random(100)>50)?7:5; if (i%2==0) { doBass(position, i, 47-12, 1); } //else doBass(position, i, 47, 1);//doBass(position, i, 47-24, 1); } void bassDoM(int position, int i) { int xtra = random(100)>90?0:(random(100)>40)?3:(random(100)>50)?7:5; if (i%2==0) { doBass(position, i, 36-12, 1); } else doBass(position, i, 36, 1);//doBass(position, i, 36-12, 1); } // void kboardSolM(int position, int i) { //if(i%2==0)// || i%3==0) //doKboard(position, i%quantization, solM[3-i%4], 8); //if(i%2==1) // if(i==0) // doKboard(position, i, solM[0], 16); int xtra = random(100)>90?0:(random(100)>40)?3:(random(100)>50)?7:5; if (i%6==0) { doKboard(position, i, 43-12+24, 1); } else if (i==0 || i==6 || i==10 || i==13) { doKboard(position, i, 43+xtra+24, 2); } //else if(i%3==0) doKboard(position, i+1, 43+24, 1); } void kboardSim(int position, int i) { //if(i%2==1) // if(i==0) // doKboard(position, i, sim[0], 16); int xtra = random(100)>90?0:(random(100)>40)?3:(random(100)>50)?7:5; if (i%3==0) { doKboard(position, i, 47-12+24, 1); } else if (i==6) {//2 || i==6 || i==10 || i==13) { doKboard(position, i, 47+xtra+24, 1); if (xtra!=0) { xtra = random(100)>90?0:(random(100)>40)?3:(random(100)>50)?7:5; doKboard(position, i+1, 47+xtra+24, 1); } } else doKboard(position, i+1, 47+xtra+24, 1);//doBass(position, i, 47-24, 1); } void kboardDoM(int position, int i) { //if(i%2==0 || i%3==0) // if(i==0) // doKboard(position, i, doM[0], 16); int xtra = random(100)>90?0:(random(100)>40)?3:(random(100)>50)?7:5; if (i%3==0) { doKboard(position, i, 36+24, 1); } else if (i==2 || i==6 || i==10 || i==13) { doKboard(position, i, 36+12+xtra+24, 2); } //else doKboard(position, i, 36+7+24, 1); }

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

void doDrums(int positiom, int i, int pitch, int minv, int maxv) { drumstrack.addEvent(new Note(pitch, (int)random(minv, maxv), 1), position+i); drumstrack.addEvent(new Note(pitch, 0, 1), position+i+1); dobeat(position+i, pitch); } void doBass(int position, int i, int pitch, int duration) { basstrack.addEvent(new Note(pitch, (int)random(100, 120), duration), position+i); basstrack.addEvent(new Note(pitch, 0, 1), position+i+duration); } void doKboard(int position, int i, int pitch, int duration) { guitartrack.addEvent(new Note(pitch, (int)random(100, 120), duration), position+i); guitartrack.addEvent(new Note(pitch, 0, 1), position+i+duration); } void checkLyrics(int i, int j) { //18 //22 //26?30?34?48 //42 --> //50 //60 last if (i==14 && j==0)presing(i, j, "hijos de la luz"); if (i==15 && j==0)presing(i, j, "benditos hijos míos"); if (i==16 && j==0)presing(i, j, "pequeños y sabrosos"); if (i==17 && j==0)presing(i, j, "alegrense hoy");

323 324 325 326 327

if if if if

(i==18 (i==20 (i==22 (i==24

&& && && &&

j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i,

j, j, j, j,

"Elevaremos los brazos hacia el sol"); "y abriremos los caminos y los futuros"); "y radiaremos en espiral nuestros caminos "); "como hojas de un mismo árbol");

328 329 330

48

if (i==38 && j==0)presing(i, j, "hijos de la luz"); if (i==39 && j==0)presing(i, j, "benditos hijos míos");


if (i==40 && j==0)presing(i, j, "pequeños y sabrosos"); if (i==41 && j==0)presing(i, j, "alegrense hoy");

331 332 333

if if if if if if if if if if if if if if if if if

334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350

&& && && && && && && && && && && && && && && && &&

j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i,

j, j, j, j, j, j, j, j, j, j, j, j, j, j, j, j, j,

"Elevaremos los brazos hacia el sol"); "y abriremos los caminos y los futuros"); "y radiaremos en espiral nuestros caminos "); "como hojas al viento"); "hijos de la luz"); "benditos hijos míos"); "pequeños y sabios"); "alegrense que hoy"); "hijos de la luz"); "benditos hijos míos"); "pequeños y sabios"); "alegrense que hoy"); "hijos de la luz"); "benditos hijos míos"); "pequeños y sabios"); "alegrense que hoy"); "somos como el choclo");

} void presing(int i, int j, String l, boolean isfemale) { lyrics[i][j] =l; } void presing(int i, int j, String l) { lyrics[i][j] =l; }

351 352 353 354 355 356 357 358

(i==42 (i==44 (i==46 (i==48 (i==49 (i==50 (i==51 (i==52 (i==53 (i==54 (i==55 (i==56 (i==57 (i==58 (i==59 (i==60 (i==61

}

359

49


1 2 3 4

class AnimalConciousness extends VZong { int[] drumpads = { 36, 38, 42, 44, 47, 48, 37 };

5 6 7 8

String[][] drumspatterns; String[] basspatterns; int [][] bassnotes;

9 10 11

String[] kbpatterns; int [][] kbnotes;

12 13

int[] bellsnotes;

14 15

int position;

16 17 18

String[] lyricsbase; int lyricLine;

19 20 21

int part = -3; int auxposition;

22 23 24 25 26 27

AnimalConciousness() { lyrics = new String[1024][16]; name = "Animal Conciousness"; makeSong(); }

28 29 30 31 32 33 34 35

void makeSong() { beatMap = new BeatMap(); //score.empty(); drumstrack = new promidi.Track("drums", drumsout); basstrack = new promidi.Track("bass", bassout); guitartrack = new promidi.Track("kboard", guitarout); bellstrack = new promidi.Track("bells", guitarout);

36 37 38 39 40

drumstrack.setQuantization(Q._1_16); basstrack.setQuantization(Q._1_16); guitartrack.setQuantization(Q._1_16); bellstrack.setQuantization(Q._1_16);

41 42 43 44

drumsout.sendController(new Controller(0, 1)); drumsout.sendProgramChange(new ProgramChange(3)); guitarout.sendProgramChange(new ProgramChange(77));//62));

45 46 47 48

quantization = 16; position = 0; int tempo = 90;

49 50 51 52 53 54 55 56 57

compose(); dolyrics(); // song = new Song(name, tempo); song.addTrack(drumstrack); song.addTrack(basstrack); song.addTrack(guitartrack); song.addTrack(bellstrack);

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

50

sequencer.setSong(song); sequencer.setLoopStartPoint(0); sequencer.setLoopEndPoint(512*position/quantization);//512*bars);// sequencer.setLoopCount(0); sequencer.noLoop(); } void dolyrics() { for (int i=0; i<position/quantization; i++) { for (int j=0; j<quantization; j++) { checkLyrics(i, j); } } } void compose() { for (part = -1; part<11; part++) { switch(part) { case -1: silence(); break; case 0: counter(); break; default: part001(); break; case 2: case 4: case 6: part002(); break; case 9: part003(); break; case 10: finalx(); break; } } } void silence() { position+=quantization; bar=0; } void counter() { for (int i=0; i<quantization; i++) { if (i%4==0) { doDrums(position, i, 37, 120, 120); } } position+=quantization; } void finalx() {


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

for (int i=0; i<quantization; i++) { if (i==0) { doDrums(position, i, 36, 120, 127); doDrums(position, i, 38, 120, 127); doDrums(position, i, 49, 120, 127); doKboard(position, i, 33, 16); } } position+=quantization; } void part001() { for (bar=0; bar<4*2; bar++) { switch(bar%2) { default: riff001a(); break; case 1: riff001b(); } } } void part002() { for (bar=0; bar<4*2; bar++) { switch(bar%2) { default: riff002a(); break; case 1: riff002b(); } } } void part003() { for (bar=0; bar<4*2; bar++) { switch(bar%2) { default: riff003a(); break; case 1: riff003b(); } } } void riff001a() { for (int i=0; i<quantization; i++) { drums001(position, i); bass001a(position, i); kboard001a(position, i); } position+=quantization; } void riff001b() { for (int i=0; i<quantization; i++) { drums001(position, i); bass001b(position, i); kboard001b(position, i); } position+=quantization; } void riff002a() { for (int i=0; i<quantization; i++) { drums002(position, i); //bass001a(position, i); kboard001a(position, i); } position+=quantization; } void riff002b() { for (int i=0; i<quantization; i++) { drums002(position, i); //bass001b(position, i); kboard001b(position, i); } position+=quantization; } void riff003a() { for (int i=0; i<quantization; i++) { drums004(position, i); //bass001a(position, i); kboard001a(position, i); } position+=quantization; } void riff003b() { for (int i=0; i<quantization; i++) { drums004(position, i); //bass001b(position, i); kboard001b(position, i); } position+=quantization; } /***************************/ void drums001(int position, int i) { if (i==0 || i==40 || i==6 || i==8 || i==11 || i==14) doDrums(position, i, 36, 120, 127); if (i==3 || i==5 || i==10 || i==13) {// ||i%12==2){ doDrums(position, i, 38, 127, 100); doDrums(position, i, 46, 100, 100); } else { doDrums(position, i, 42, i%6==0?127:96, i%6==0?127:96); } } void drums002(int position, int i) { if (i==0 || i==40 || i==6 || i==8 || i==12 || i==14) doDrums(position, i, 36, 120, 127); if (i==3 || i==5 || i==11 || i==13) {// ||i%12==2){ doDrums(position, i, 38, 127, 100); doDrums(position, i, 46, 100, 100); }

51


else { doDrums(position, i, 42, i%6==0?127:96, i%6==0?127:96); }

221 222 223

} void drums003(int position, int i) { if (i==0 || i==40 || i==6 || i==8 || i==12 || i==14) doDrums(position, i, 36, 120, 127); if (i==3 || i==5 || i==11 || i==13) {// ||i%12==2){ doDrums(position, i, 38, 127, 100); doDrums(position, i, 46, 100, 100); } else if (i%2==0 || i==15) { doDrums(position, i, 42, i%6==0?127:96, i%6==0?127:96); } } void drums004(int position, int i) { if (i==0 || i==40 || i==6 || i==8 || i==11 || i==14) doDrums(position, i, 36, 120, 127); if (i==3 || i==5 || i==10 || i==13) {// ||i%12==2){ //doDrums(position, i, 38, 127, 100); doDrums(position, i, 46, 100, 100); } else if (i%2==0 || i==15) { doDrums(position, i, 42, i%6==0?127:96, i%6==0?127:96); } } void bass001a(int position, int i) { if (i==0) { doBass(position, -2, 28+24, 1); doBass(position, i, 31+24, 1); } else if (i==1 || i==9) doBass(position, i, 33+24, 2); else if (i==3 || i==10) doBass(position, i, 40+24, 3); else if (i==6 ) doBass(position, i, 31+24, 1); else if (i==7) doBass(position, i, 33+24, 8); else if (i==14) doBass(position, i, 28+24, 1); } void bass001b(int position, int i) { if (i==0) { doBass(position, i, 31+24, 1); } else if (i==1 || i==9) doBass(position, i, 33+24, 2); else if (i==3 || i==10) doBass(position, i, 31+5+24, 3); else if (i==6 ) doBass(position, i, 31+2+24, 1); else if (i==7) doBass(position, i, 33+24, 8); }

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

void kboard001a(int position, int i) { if (i==0) doKboard(position, i, 33, 16); } void kboard001b(int position, int i) { if (i==0) doKboard(position, i, 33+3, 12); if (i==12) doKboard(position, i, 33+3+2, 4); } void doDrums(int positiom, int i, int pitch, int minv, int maxv) { drumstrack.addEvent(new Note(pitch, (int)random(minv, maxv), 1), position+i); drumstrack.addEvent(new Note(pitch, 0, 1), position+i+1); dobeat(position+i, pitch); } void doBass(int position, int i, int pitch, int duration) { basstrack.addEvent(new Note(pitch, (int)random(100, 120), duration), position+i); basstrack.addEvent(new Note(pitch, 0, 1), position+i+duration); } void doKboard(int position, int i, int pitch, int duration) { guitartrack.addEvent(new Note(pitch, (int)random(100, 120), duration), position+i); guitartrack.addEvent(new Note(pitch, 0, 1), position+i+duration); } void checkLyrics(int i, int j) { if (i==2 && j==0)presing(i, j, "Evidencia convergente indica que los animales no humanos"); if (i==4 && j==0)presing(i, j, "poseen los substratos neuroanatómicos,"); if (i==6 && j==0)presing(i, j, "neuroquímicos y neurofisiológicos de estados conscientes"); if (i==8 && j==0)presing(i, j, "así como la capacidad de exhibir comportamientos deliberados.");

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

if if if if

(i==18 (i==20 (i==22 (i==24

&& && && &&

j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i,

j, j, j, j,

"Por consiguiente, el peso de la evidencia"); "indica que los seres humanos"); "no son los únicos que poseen"); "los sustratos neurológicos necesarios para generar conciencia");

if if if if

(i==34 (i==36 (i==38 (i==40

&& && && &&

j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i,

j, j, j, j,

"Evidencia convergente indica que los animales no humanos"); "poseen los substratos neuroanatómicos,"); "neuroquímicos y neurofisiológicos de estados conscientes"); "así como la capacidad de exhibir comportamientos deliberados.");

if if if if

(i==50 (i==52 (i==54 (i==56

&& && && &&

j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i,

j, j, j, j,

"Por consiguiente, el peso de la evidencia"); "indica que los seres humanos"); "no son los únicos que poseen"); "los sustratos neurológicos necesarios para generar conciencia");

if if if if

(i==58 (i==60 (i==62 (i==64

&& && && &&

j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i,

j, j, j, j,

"Animales no humanos,"); "incluyendo todos los mamíferos y pájaros,"); "y muchas otras criaturas, incluyendo los pulpos,"); "también poseen estos sustratos neurológicos");

298 299 300 301 302 303 304 305 306 307 308 309 310 311 312

} void presing(int i, int j, String l, boolean isfemale) { lyrics[i][j] =l; } void presing(int i, int j, String l) { lyrics[i][j] =l; }

313 314 315 316 317 318 319 320 321

52

}


1 2

class Aparecido extends VZong { //Song song;

3 4 5 6

int[] drumpads = { 36, 38, 42, 44, 47, 48, 37 };//46,47,48,42};

7 8 9 10

String[][] drumspatterns; String[] basspatterns; int [][] bassnotes;

11 12 13

String[] kbpatterns; int [][] kbnotes;

14 15

int[] bellsnotes;

16 17 18

//int quantization; int position;

19 20 21

String[] lyricsbase; int lyricLine;

22 23 24 25 26 27

int part = -3; //int bar; //int frame; //int bar = 0, frame = 0, cframe = 0; int auxposition;

28 29 30 31 32 33 34

Aparecido() { lyrics = new String[1024][16]; name = "elAparecido"; makeSong(); // vplayer.println("song "+name+" loaded!"); }

35 36 37 38 39 40 41 42

void makeSong() { beatMap = new BeatMap(); //score.empty(); drumstrack = new promidi.Track("drums", drumsout); basstrack = new promidi.Track("bass", bassout); guitartrack = new promidi.Track("kboard", guitarout); bellstrack = new promidi.Track("bells", guitarout);

43 44 45 46 47

drumstrack.setQuantization(Q._1_16); basstrack.setQuantization(Q._1_16); guitartrack.setQuantization(Q._1_16); bellstrack.setQuantization(Q._1_16);

48 49 50 51 52 53 54 55 56 57

//bassout.sendProgramChange(new ProgramChange(11)); drumsout.sendController(new Controller(0, 1)); drumsout.sendProgramChange(new ProgramChange(0)); guitarout.sendProgramChange(new ProgramChange(5));//62)); //bellsout.sendProgramChange(new ProgramChange(76));//62));//76)); //score.empty(); quantization = 12; position = 0; int tempo = 90;

58 59

metacompose();

60 61 62 63 64 65

song = new Song(name, tempo); song.addTrack(drumstrack); song.addTrack(basstrack); song.addTrack(guitartrack); song.addTrack(bellstrack);

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

sequencer.setSong(song); sequencer.setLoopStartPoint(0); sequencer.setLoopEndPoint(384*auxposition/quantization);//512*bars);// sequencer.setLoopCount(-1); sequencer.noLoop(); } void metacompose() { for (int j=-3; j<133-24-6; j++) { for (int i=0; i<quantization; i++) { compose(i); checkLyrics(i); auxposition++; } bar++; } } void compose(int i) { switch(part) { case -2: case -3: default: silencex(i); break; case -1: phrase0x(i); break; case 0: case 1: case 5: case 6: case 10: case 11: case 14-2: case 15-2: //case 16-2: //case 17-2: phrase0(i);//0(i); break; case 2: case 7: phrase1(i); break; case 3: case 8:

53


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

54

//case 12: phrase1_2(i); break; case 4: case 9: //case 13: phrase2(i); break; case 18-2-1-1: phrase3(i); break; } } void silencex(int i) { if (i==11) { bar=0; part++; } } void phrase0x(int i) { riff009(i); if (i==11) { bar=0; part++; } } void phrase0(int i) { switch((bar-1)%4) { case 0: default: riff001_2(i); break; case 1: riff004(i); break; case 2: riff002_3(i); break; case 3: riff001_2(i); if (i==11) { bar=0; part++; } break; } } void phrase1(int i) { switch((bar-1)%10) { case 0: default: riff001(i); break; case 1: riff001(i); break; case 2: riff002(i); break; case 3: riff001(i); break; // case 4: riff002(i); break; case 5: riff003(i); break; case 6: riff001(i); break; case 7: riff001(i); break; // case 8: riff004(i); break; case 9: riff001(i); if (i==11) { bar=0; part++; } break; } } void phrase1_2(int i) { switch((bar-1)%8) { case 0: default: riff001(i); break; case 1: riff001(i); break; case 2: riff002(i); break; case 3: riff001(i); break; // case 4: riff002(i); break; case 5: riff003(i); break;


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

case 6: riff001(i); break; case 7: riff001(i); if (i==11) { bar=0; part++; } break; } } void phrase2(int i) { switch((bar-1)%15) { case 0: case 2: case 4: case 6: case 8: case 10: case 12: default: riff005(i); break; case 1: case 3: case 5: case 7: case 9: case 11: riff006(i); break; case 13: riff001(i); break; case 14: riff001(i); if (i==11) { bar=0; part++; } break; } } void phrase3(int i) { if (bar==1)riff008(i); if (bar==4 && i==11) { bar=0; part++; } }

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

void riff001(int i) {//mim doDrums(i, 0); doBass(i, 0, 4); doGuitar(i, 1, 5, 4, 0); } void riff008(int i) {//mim doDrums(i, 0); if (i==0) { doBass(i, 0, 4); doGuitar(i, 1, 5, 4, 0); } } void riff001_2(int i) {//mim otro doDrums(i, 0); doBass(i, 1, 4); doGuitar(i, 1, 5, 4, 0); } void riff002(int i) {//LaM doDrums(i, 0); doBass(i, 0, 9); doGuitar(i, 1, 5, 9, 1); } void riff002_3(int i) {//Lam doDrums(i, 0); doBass(i, 0, 9); doGuitar(i, 0, 5, 9, 0); } void riff002_2(int i) {//LaM otro doDrums(i, 0); doBass(i, 0, 9); doGuitar(i, 0, 5, 9, 1); } void riff003(int i) {//SolM otro doDrums(i, 0); doBass(i, 0, 7); doGuitar(i, 0, 5, 7, 1); } void riff004(int i) {//Sim doDrums(i, 0); doBass(i, 0, 11); doGuitar(i, 0, 5, 11, 0); } void riff005(int i) {//DoM doDrums(i, 0); doBass(i, 1, 0); doGuitar(i, 1, 5, 0, 1); } void riff006(int i) {//ReM doDrums(i, 0); doBass(i, 1, 2); doGuitar(i, 1, 5, 2, 1); } void riff007(int i) {//DoM -Mim boolean cond = i<12; doDrums(i, 0); doBass(i, 1, cond?0:4); doGuitar(i, 1, 5, cond?0:4, cond?1:0); }

55


331 332 333

void riff009(int i) {//just drums doDrums(i, 0); }

334 335 336 337 338 339 340

void doDrums(int i, int mode) { if (i%2==0) { //drums.sendNote(new Note(42, (int)random(80,100) , 1)); //score.addNote(i/4, 9, 0, 42, , 0.25, 0.8, 64);

341

drumstrack.addEvent(new Note(42, (int)random(80, 100), 1), auxposition); drumstrack.addEvent(new Note(42, 0, 0), auxposition+1); dobeat(auxposition, 42); } else { //drums.sendNote(new Note(44, (int)random(100,127) , 1)); //score.addNote(i/4, 9, 0, 44, i%2==0?random(80,100):random(70,80), 0.25, 0.8, 64);

342 343 344 345 346 347 348 349

drumstrack.addEvent(new Note(44, (int)random(100, 127), 1), auxposition); drumstrack.addEvent(new Note(44, 0, 0), auxposition+1); dobeat(auxposition, 44); } if (i%3==0 || i%3==0 || i%3==0 || (random(10)>5 && false)) { //if(true){ //if(part>3) //drums.sendNote(new Note(38, int(i%2==0?random(100,110):random(110,125)), 1)); //score.addNote(1*i/4+0*.125, 9, 0, 38, i%2==0?random(80,100):random(70,80), 0.25, 0.8, 64); //score.addNote(1*i/4+2*.125, 9, 0, 38, i%2==0?random(80,100):random(70,80), 0.25, 0.8, 64); //score.addNote(1*i/4+4*.125, 9, 0, 38, i%2==0?random(80,100):random(70,80), 0.25, 0.8, 64);

350 351 352 353 354 355 356 357 358 359 360 361

drumstrack.addEvent(new Note(38, int(i%2==0?random(100, 110):random(110, 125)), 1), auxposition); drumstrack.addEvent(new Note(38, 0, 0), auxposition+1); dobeat(auxposition, 38);

362 363 364

} if (i==2||i==4||i==8||i==10) {//|| (part>4 && i==1) || (part>9 && i==5) || (part>11 && i==9) ){ //drums.sendNote(new Note(36, (int)random(100,127), 1)); //score.addNote(i/4, 9, 0, 36, random(120,127), 0.25, 0.8, 64); drumstrack.addEvent(new Note(36, (int)random(100, 127), 1), auxposition); drumstrack.addEvent(new Note(36, 0, 0), auxposition+1); dobeat(auxposition, 36); }

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

} void doBass(int i, int mode, int note) { int pitx; if (i%2==0 || i%3==0) { //bass.sendNote(new Note(+36+note+12*(i%3!=0?0:1), (int)random(80,100), 1 )); pitx = +36+note+12*(i%3!=0?0:1); basstrack.addEvent(new Note(pitx, (int)random(80, 100), 1), auxposition);//int(100+random(20)) basstrack.addEvent(new Note(pitx, 0, 0), auxposition+1); } else if (mode==1) { pitx = +36+note; basstrack.addEvent(new Note(pitx, (int)random(80, 100), 1), auxposition);//int(100+random(20)) basstrack.addEvent(new Note(pitx, 0, 0), auxposition+1); } } void doGuitar(int i, int mode, int scalle, int note, int gmode) { int xpitx; scalle--; //if(i%2==1)//random(100)>50) //if(i==0) xpitx = scalle*12+note+12*(i%3!=0?0:1);

394

//kboard.sendNote(new Note(scalle*12+note+12*(i%3!=0?0:1), (int)random(80,100), 24));//32 )); guitartrack.addEvent(new Note(xpitx, (int)random(80, 100), 24), auxposition);//int(100+random(20)) guitartrack.addEvent(new Note(xpitx, 0, 0), auxposition+1);

395 396 397 398

if (mode!=1) { xpitx = scalle*12+note+3+(gmode==0?0:1)+12*(i%2!=0?0:1); //kboard.sendNote(new Note(scalle*12+note+3+(gmode==0?0:1)+12*(i%2!=0?0:1), (int)random(80,100), 16));//24 )); guitartrack.addEvent(new Note(xpitx, (int)random(80, 100), 16), auxposition);//int(100+random(20)) guitartrack.addEvent(new Note(xpitx, 0, 0), auxposition+1); } xpitx = scalle*12+note+7+12*(i%4!=0?0:1); //kboard.sendNote(new Note(, (int)random(80,100), 1));//16 )); guitartrack.addEvent(new Note(xpitx, (int)random(80, 100), 1), auxposition);//int(100+random(20)) guitartrack.addEvent(new Note(xpitx, 0, 0), auxposition+1);

399 400 401 402 403 404 405 406 407 408 409

if (mode!=1) { xpitx = scalle*12+note+12+12*(i%4!=0?0:1); //kboard.sendNote(new Note(scalle*12+note+12+12*(i%4!=0?0:1), (int)random(80,100), 8));//8 )); guitartrack.addEvent(new Note(xpitx, (int)random(80, 100), 8), auxposition);//int(100+random(20)) guitartrack.addEvent(new Note(xpitx, 0, 0), auxposition+1); }

410 411 412 413 414 415 416

}

417 418 419 420 421 422 423 424 425 426

void if if if if

checkLyrics(int i) (part==2 && bar==1 (part==2 && bar==3 (part==2 && bar==5 (part==2 && bar==7

{ && && && &&

i==0)presing(i, i==0)presing(i, i==0)presing(i, i==0)presing(i,

"abre sendas por los cerros"); "deja su huella en el viento"); "el aguila le da el vuelo"); "y lo cobija el silencio");

if if if if

(part==3 (part==3 (part==3 (part==3

&& && && &&

bar==1 bar==3 bar==5 bar==7

&& && && &&

i==0)presing(i, i==0)presing(i, i==0)presing(i, i==0)presing(i,

"nunka se quejo del frio"); "nunka se quejo del suegno"); "el pobre siente su paso"); "y lo sigue como ciego");

if if if if if if if

(part==4 (part==4 (part==4 (part==4 (part==4 (part==4 (part==4

&& && && && && && &&

bar==1 && i==0)presing(i, "correle, correle, correla"); bar==3 && i==0)presing(i, "por aqui, por alli, por alla"); bar==5 && i==0)presing(i, "correle, correle, correla"); bar==7 && i==0)presing(i, "correle que te van a matar"); bar==9 && i==0)presing(i, "correle, correle, correla"); bar==11 && i==0)presing(i, "correle que te van a matar"); bar==13 && i==0)presing(i, "correle, correle, correlaaaa");

427 428 429 430 431 432 433 434 435 436 437 438 439 440

56


441 442 443 444

if if if if

(part==7 (part==7 (part==7 (part==7

&& && && &&

bar==1 bar==3 bar==5 bar==7

&& && && &&

i==0)presing(i, i==0)presing(i, i==0)presing(i, i==0)presing(i,

"su cabeza es rematada"); "por cuervos con garras de oro"); "como lo ha crucificado"); "la furia del poderoso");

if if if if

(part==8 (part==8 (part==8 (part==8

&& && && &&

bar==1 bar==3 bar==5 bar==7

&& && && &&

i==0)presing(i, i==0)presing(i, i==0)presing(i, i==0)presing(i,

"hijo de la rebeldia"); "lo siguen veinte mas veinte"); "porque regala su viiiiidaa"); "ellos le quieren dar muerte");

if if if if if if if

(part==9 (part==9 (part==9 (part==9 (part==9 (part==9 (part==9

&& && && && && && &&

bar==1 && i==0)presing(i, "correle, correle, correla"); bar==3 && i==0)presing(i, "por aqui, por alli, por alla"); bar==5 && i==0)presing(i, "correle, correle, correla"); bar==7 && i==0)presing(i, "correle que te van a matar"); bar==9 && i==0)presing(i, "correle, correle, correla"); bar==11 && i==0)presing(i, "correle que te van a matar"); bar==13 && i==0)presing(i, "correle, correle, correlaaaa");

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

&& && && &&

bar==1 bar==3 bar==5 bar==7

&& && && &&

i==0)presing(i,"hijo de la rebeldia"); i==0)presing(i,"lo siguen 20 mas 20"); i==0)presing(i,"porque regala su viiiiidaa"); i==0)presing(i,"ellos le quieren dar muerte");

if(part==13 if(part==13 if(part==13 if(part==13 if(part==13 if(part==13 if(part==13

&& && && && && && &&

bar==1 && i==0)presing(i,"correle, correle, correla"); bar==3 && i==0)presing(i,"por aqui, por allii, por alla"); bar==5 && i==0)presing(i,"correle, correle, correla"); bar==7 && i==0)presing(i,"correle que te van a matar"); bar==9 && i==0)presing(i,"correle, correle, correla"); bar==11 && i==0)presing(i,"correle que te van a matar"); bar==13 && i==0)presing(i,"correle, correle, correlaaa");

} void presing(int i, String l) { lyrics[auxposition/quantization][i] =l; //println(auxposition+" "+i+" "+l); }

471 472 473 474 475 476

if(part==12 if(part==12 if(part==12 if(part==12

}

477

57


1 2

class Escaleras extends VZong { //Song song;

3 4 5 6

int[] drumpads = { 36, 38, 42, 44, 47, 48, 37 };//46,47,48,42};

7 8 9 10

String[][] drumspatterns; String[] basspatterns; int [][] bassnotes;

11 12 13

String[] kbpatterns; int [][] kbnotes;

14 15

int[] bellsnotes;

16 17 18

//int quantization; int position;

19 20 21

String[] lyricsbase; int lyricLine;

22 23 24 25 26 27

int part = -3; //int bar; //int frame; //int bar = 0, frame = 0, cframe = 0; int auxposition;

28 29 30 31 32 33 34 35 36 37 38 39 40

int[] 69, }; int[] 67, }; int[] 67, }; int[] 71, };

lam = { 72, 76 mim = { 71, 76 doM = { 72, 76 sim = { 74, 78

41 42 43 44 45 46 47

Escaleras() { lyrics = new String[1024][12]; name = "escaleras"; makeSong(); //vplayer.println("song "+name+" loaded!"); }

48 49 50 51 52 53 54 55

void makeSong() { beatMap = new BeatMap(); //score.empty(); drumstrack = new promidi.Track("drums", drumsout); basstrack = new promidi.Track("bass", bassout); guitartrack = new promidi.Track("kboard", guitarout); bellstrack = new promidi.Track("bells", guitarout);

56 57 58 59 60

drumstrack.setQuantization(Q._1_16); basstrack.setQuantization(Q._1_16); guitartrack.setQuantization(Q._1_16); bellstrack.setQuantization(Q._1_16);

61 62 63 64 65 66 67 68 69 70

//bassout.sendProgramChange(new ProgramChange(11)); drumsout.sendController(new Controller(0, 1)); drumsout.sendProgramChange(new ProgramChange(0)); guitarout.sendProgramChange(new ProgramChange(5));//62)); //bellsout.sendProgramChange(new ProgramChange(76));//62));//76)); //score.empty(); quantization = 12; position = 0; int tempo = 120;

71 72 73 74 75 76 77 78 79 80

//metacompose(); compose(); dolyrics(); // song = new Song(name, tempo); song.addTrack(drumstrack); song.addTrack(basstrack); song.addTrack(guitartrack); song.addTrack(bellstrack);

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

58

sequencer.setSong(song); sequencer.setLoopStartPoint(0); sequencer.setLoopEndPoint(384*position/quantization);//512*bars);// sequencer.setLoopCount(-1); sequencer.noLoop(); } void dolyrics() { for (int i=0; i<position/quantization; i++) { for (int j=0; j<quantization; j++) { checkLyrics(i, j); } } } void compose() { for (part = -1; part<19; part++) { switch(part) { case -1: silence(); break; case 0: counter(); break; case 1: part001(); break; case 2: part002(); break; case 3:


111 112 113 114 115 116 117 118 119 120

part002b(); case 4: part003(); break; case 5: part004(); break; case 6: part005(); break;

121 122 123 124 125 126 127 128 129 130 131 132 133 134 135

case 7: part002a(); break; case 8: part002b(); case 9: part003b(); break; case 10: part004b(); break; case 11: part005b(); break;

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

/* case 12: case 13: part002(); case 14: part003(); break; case 15: part004b(); break; case 16: case 17: part006b(); break; */ case 12: part003(); break; case 13: case 14: case 15: case 16: part004bmx(); break; //part006b(); //break; case 17://18: prediend(); break; case 18: diend(); default: silence(); break; } } } void silence() { position+=quantization; bar=0; } void counter() { for (int i=0; i<quantization; i++) { if (i%4==0) { doDrums(position, i, 37, 120, 120); } } position+=quantization; } void prediend() { for (int i=0; i<quantization; i++) { if (i==0) {//quantization){ //int i=0; /* doDrums(position, i, 36, 120, 120); doDrums(position, i, 38, 96, 120); doDrums(position, i, 44, 110, 120); */ doBass(position, i, 45-12, 12); //doKboard(position, i, mim[0], 12);doKboard(position, i, mim[1], 12);doKboard(position, i, mim[2], 12); doKboard(position, i, lam[0], 160); doKboard(position, i, lam[1], 160); doKboard(position, i, lam[2], 160); //}else{ //riff000c(); } } position+=quantization; } void diend() { //for(int i=0; i<quantization; i++){ //if(i==quantization){ int i=0; /* doDrums(position, i, 36, 120, 127); doDrums(position, i, 38, 96, 120); doDrums(position, i, 44, 110, 120);*/ doBass(position, i, 45-12, 160); doKboard(position, i, lam[0], 160); doKboard(position, i, lam[1], 160); doKboard(position, i, lam[2], 160); //}else{ //riff000c();

59


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

60

//} //} position+=quantization; } void part001() { for (bar=0; bar<4*4*1; bar++) riff000(); } } void part002() { //for(int i=0; i<2;i++){ for (bar=0; bar<8; bar++) { if (bar<4)riff000b(); else riff001b(); } //} } void part002a() { //for(int i=0; i<2;i++){ for (bar=0; bar<8; bar++) { if (bar<4)riff000c(); else riff001c(); } //} } void part002b() { for (int i=0; i<2;i++) { for (bar=0; bar<8; bar++) { if (bar<4)riff000c(); else riff001c(); } } } void part003() { for (bar=0; bar<8; bar++) { if (bar<4)riff002b(); else riff001b(); } } void part003b() { for (bar=0; bar<8; bar++) { if (bar<4)riff002c();//2c else riff001c(); } } void part004() { for (bar=0; bar<8; bar++) { if (bar<4)riff002b(); else if (bar<6)riff003b(); else riff000b(); } } void part004b() { for (bar=0; bar<8; bar++) { if (bar<4)riff002c(); else if (bar<6)riff003c(); else riff000c(); } } void part004bmx() { for (bar=2; bar<8; bar++) { if (bar<4)riff002c(); else if (bar<6)riff003c(); else riff000c(); } } void part005() { for (bar=0; bar<4*2; bar++) { riff001b(); } } void part005b() { for (bar=0; bar<4*2; bar++) { riff001c(); } } void part006() { for (bar=0; bar<4*4; bar++) { riff001(); } } void part006b() { for (bar=0; bar<4*4; bar++) { riff001b(); } } void part006c() { for (bar=0; bar<4*4; bar++) { riff001c(); } } void riff000() { for (int i=0; i<quantization; drums001(position, i); bassLam(position, i); kboardLam(position, i); } position+=quantization; } void riff000b() { for (int i=0; i<quantization; drums002(position, i); bassLam(position, i); //kboardLam(position, i); } position+=quantization; } void riff000c() { for (int i=0; i<quantization; drums003(position, i);

{

i++) {

i++) {

i++) {


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

bassLam(position, i); kboardLam(position, i); } position+=quantization; } void riff001() { for (int i=0; i<quantization; i++) { drums001(position, i); bassMim(position, i); kboardMim(position, i); } position+=quantization; } void riff001b() { for (int i=0; i<quantization; i++) { drums002(position, i); bassMim(position, i); //kboardMim(position, i); } position+=quantization; } void riff001c() { for (int i=0; i<quantization; i++) { drums003(position, i); bassMim(position, i); kboardMim(position, i); } position+=quantization; } void riff002() { for (int i=0; i<quantization; i++) { drums001(position, i); bassDoM(position, i); //kboardDoM(position, i); } position+=quantization; } void riff002b() { for (int i=0; i<quantization; i++) { drums002(position, i); bassDoM(position, i); //kboardDoM(position, i); } position+=quantization; } void riff002c() { for (int i=0; i<quantization; i++) { drums003(position, i); bassDoM(position, i); kboardDoM(position, i); } position+=quantization; } void riff002d() { for (int i=0; i<quantization; i++) { drums003(position, i); bassDoM(position, i); kboardDoMb(position, i); } position+=quantization; } void riff003() { for (int i=0; i<quantization; i++) { drums001(position, i); bassSim(position, i); kboardSim(position, i); } position+=quantization; } void riff003b() { for (int i=0; i<quantization; i++) { drums002(position, i); bassSim(position, i); kboardSim(position, i); } position+=quantization; } void riff003c() { for (int i=0; i<quantization; i++) { drums003(position, i); bassSim(position, i); kboardSim(position, i); } position+=quantization; } /***************************/ void drums001(int position, int i) { if (i%4==0 || i%10==0) doDrums(position, i, 36, i%6==0?127:96, } void drums002(int position, int i) { if (i%4==0 || i%10==0) doDrums(position, i, 36, i%6==0?127:96, if (i%4==0) doDrums(position, i, 44, i%6==0?127:96, else if (i%4==2) doDrums(position, i, 44, 110, 120); } void drums003(int position, int i) { if (i%6==0) doDrums(position, i, 38, 96, 100); else if (i%4==0 || i%10==0) doDrums(position, i, 36, i%6==0?127:96, if (i%4==0) doDrums(position, i, 44, i%6==0?127:96, else if (i%4==2) doDrums(position, i, 44, 110, 120); } // void bassLam(int position, int i) {

i%6==0?127:96);

i%6==0?127:96); i%6==0?127:96);

i%6==0?127:96); i%6==0?127:96);

61


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

//if(i==0 || i==4 || i==8 || i==12){ if (i%4==0 || i%3==0) { doBass(position, i, 45-12, 1); } if (i==2 || i==6 || i==10 || i==14) { doBass(position, i, 45+12-12, 1); } } void bassSim(int position, int i) { //if(i==0 || i==4 || i==8 || i==12){ if (i%4==0 || i%3==0) { doBass(position, i, 45+2-12, 1); } if (i==2 || i==6 || i==10 || i==14) { doBass(position, i, 45+12+2-12, 1); } } void bassMim(int position, int i) { //if(i==0 || i==4 || i==8 || i==12){ if (i%4==0 || i%3==0) { doBass(position, i, 40+12-12, 1); } if (i==2 || i==6 || i==10 || i==14) { doBass(position, i, 40+12+12-12, 1); } } void bassDoM(int position, int i) { //if(i==0 || i==4 || i==8 || i==12){ if (i%4==0 || i%3==0) { doBass(position, i, 40+12-4-12, 1); } if (i==2 || i==6 || i==10 || i==14) { doBass(position, i, 40+12+12-4-12, 1); } } // void kboardLam(int position, int i) { i*=2; doKboard(position, i%quantization, lam[2-i%3], 8); i*=2; doKboard(position, i%quantization, lam[2-i%3], 8); } void kboardSim(int position, int i) { i*=4; doKboard(position, i%quantization, sim[2-i%3], 8); } void kboardMim(int position, int i) { i*=2; doKboard(position, i%quantization, mim[2-i%3], 8); doKboard(position, (i+2)%quantization, mim[2-i%3]+12, 8); } void kboardDoM(int position, int i) { i*=2; doKboard(position, i%quantization, doM[2-i%3], 8); } void kboardDoMb(int position, int i) { doKboard(position, i%quantization, doM[2-i%3], 8); }

499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521

void doDrums(int positiom, int i, int pitch, int minv, int maxv) { drumstrack.addEvent(new Note(pitch, (int)random(minv, maxv), 1), position+i); drumstrack.addEvent(new Note(pitch, 0, 1), position+i+1); dobeat(position+i, pitch); } void doBass(int position, int i, int pitch, int duration) { basstrack.addEvent(new Note(pitch, (int)random(100, 120), duration), position+i); basstrack.addEvent(new Note(pitch, 0, 1), position+i+duration); } void doKboard(int position, int i, int pitch, int duration) { guitartrack.addEvent(new Note(pitch, (int)random(100, 120), duration), position+i); guitartrack.addEvent(new Note(pitch, 0, 1), position+i+duration); } void checkLyrics(int bar, int frame) { if (bar==8 && frame==0)presing(bar, frame, "rapiña coronada de rapiña", true); if (bar==10 && frame==0)presing(bar, frame, "devora todo a tu paso", true); if (bar==12 && frame==0)presing(bar, frame, "te desmembras y caes", true); if (bar==14 && frame==0)presing(bar, frame, "desde el cielo envenenado", true); if (bar==16 && frame==0)presing(bar, frame, "en nuestra ambición", true); if (bar==18 && frame==0)presing(bar, frame, "las columnas c levantan", true); if (bar==20 && frame==0)presing(bar, frame, "sobre el valle", true); if (bar==22 && frame==0)presing(bar, frame, "de agua irrespirable", true);

522 523 524 525 526 527 528 529 530

if if if if if if if if

(bar==24 (bar==26 (bar==28 (bar==30 (bar==32 (bar==34 (bar==36 (bar==38

&& && && && && && && &&

frame==0)presing(bar, frame==0)presing(bar, frame==0)presing(bar, frame==0)presing(bar, frame==0)presing(bar, frame==0)presing(bar, frame==0)presing(bar, frame==0)presing(bar,

frame, frame, frame, frame, frame, frame, frame, frame,

"condoro arcano", false); "error preconcebido", false); "ungido en tu emblema", false); "de muerte", false); "cobija el grito", false); "impronunciable de la vida", false); "abre tus alas y guía", false); "mi caminar ciego en las escaleras", false);

if if if if

(bar==56 (bar==58 (bar==60 (bar==62

&& && && &&

frame==0)presing(bar, frame==0)presing(bar, frame==0)presing(bar, frame==0)presing(bar,

frame, frame, frame, frame,

"la ambicion marcada en la sangre"); "devora todo a su paso"); "te desmembra y caes"); "desde un cielo envenenado");

if if if if if if if if

(bar==72 (bar==74 (bar==76 (bar==78 (bar==80 (bar==82 (bar==84 (bar==86

&& && && && && && && &&

frame==0)presing(bar, frame==0)presing(bar, frame==0)presing(bar, frame==0)presing(bar, frame==0)presing(bar, frame==0)presing(bar, frame==0)presing(bar, frame==0)presing(bar,

frame, frame, frame, frame, frame, frame, frame, frame,

"condoro arcano", true); "error preconcebido", true); "ungido en tu emblema", true); "de muerte", true); "cobija el grito", true); "impronunciable de la vida", true); "abre tus alas y guía", true); "mi caminar ciego en las escaleras", true);

if if if if

(bar==88 (bar==90 (bar==92 (bar==94

&& && && &&

frame==0)presing(bar, frame==0)presing(bar, frame==0)presing(bar, frame==0)presing(bar,

frame, frame, frame, frame,

"la ambicion marcada en la sangre", false); "devora todo a su paso", false); "te desmembra y caes", false); "desde un cielo envenenado", false);

531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550

62


551 552 553 554

if if if if

(bar==112 (bar==114 (bar==116 (bar==118

&& && && &&

frame==0)presing(bar, frame==0)presing(bar, frame==0)presing(bar, frame==0)presing(bar,

frame, frame, frame, frame,

"cobija el grito", true); "impronunciable de la vida", true); "abre tus alas y guĂ­a", true); "mi caminar ciego en las escaleras", true);

if if if if if if if if

(bar==128 (bar==130 (bar==132 (bar==134 (bar==136 (bar==138 (bar==140 (bar==142

&& && && && && && && &&

frame==0)presing(bar, frame==0)presing(bar, frame==0)presing(bar, frame==0)presing(bar, frame==0)presing(bar, frame==0)presing(bar, frame==0)presing(bar, frame==0)presing(bar,

frame, frame, frame, frame, frame, frame, frame, frame,

"rapiĂąa coronada de rapiĂąa", true); "devora todo a tu paso", false); "te desmembras y caes", true); "desde el cielo envenenado", false); "en nuestra ambiciĂłn", true); "las columnas c levantan", false); "sobre el valle", true); "de agua irrespirable", false);

if if if if if if if if

(bar==144 (bar==146 (bar==148 (bar==150 (bar==152 (bar==154 (bar==156 (bar==158

&& && && && && && && &&

frame==0)presing(bar, frame==0)presing(bar, frame==0)presing(bar, frame==0)presing(bar, frame==0)presing(bar, frame==0)presing(bar, frame==0)presing(bar, frame==0)presing(bar,

frame, frame, frame, frame, frame, frame, frame, frame,

"condoro arcano", false); "error preconcebido", true); "ungido en tu emblema", false); "de muerte", true); "cobija el grito", false); "impronunciable de la vida", true); "abre tus alas y guĂ­a", false); "mi caminar ciego en las escaleras", true);

555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572

} //158

573 574 575

void presing(int i, int j, String l, boolean isfemale) { i+=2; lyrics[i][j] =l; //println(auxposition+" "+i+" "+l); } void presing(int i, int j, String l) { i+=2; lyrics[i][j] =l; //println(auxposition+" "+i+" "+l); }

576 577 578 579 580 581 582 583 584 585 586

}

587

63


1 2 3

class Features extends VZong { //int quantization; int position;

4 5 6

String[] lyricsbase; int lyricLine;

7 8 9

int part = -3; int auxposition;

10 11

int bars = 93;

12 13 14 15 16 17 18

Features() { lyrics = new String[1024][16]; name = "features"; makeSong(); //vplayer.println("song "+name+" loaded!"); }

19 20 21 22 23 24 25 26

void makeSong() { beatMap = new BeatMap(); //score.empty(); drumstrack = new promidi.Track("drums", drumsout); basstrack = new promidi.Track("bass", bassout); guitartrack = new promidi.Track("kboard", guitarout); bellstrack = new promidi.Track("bells", guitarout);

27 28 29 30 31

drumstrack.setQuantization(Q._1_16); basstrack.setQuantization(Q._1_16); guitartrack.setQuantization(Q._1_16); bellstrack.setQuantization(Q._1_16);

32 33 34 35 36 37 38 39 40 41

//bassout.sendProgramChange(new ProgramChange(11)); drumsout.sendController(new Controller(0, 1)); drumsout.sendProgramChange(new ProgramChange(3)); guitarout.sendProgramChange(new ProgramChange(29));//62)); //bellsout.sendProgramChange(new ProgramChange(76));//62));//76)); //score.empty(); quantization = 16; position = 0; int tempo = 117;

42 43

featuresCompose();//metacompose();

44 45 46 47 48 49

song = new Song(name, tempo); song.addTrack(drumstrack); song.addTrack(basstrack); song.addTrack(guitartrack); song.addTrack(bellstrack);

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

sequencer.setSong(song); sequencer.setLoopStartPoint(0); sequencer.setLoopEndPoint(512*bars);//512*bars);// sequencer.setLoopCount(-1); sequencer.noLoop(); } void featuresCompose() { for (part = -1; part<2; part++) { switch(part) { case -1: silence(); break; case 0: counter(); break; default: demopart(); break; } } } void silence() { position+=quantization; bar=0; } void counter() { for (int i=0; i<quantization; i++) { if (i%4==0) { doDrums(position, i, 37, 120);//, 120); } } position+=quantization; } void demopart() { int gbasePitch = 24+12*0+2; int gpitches[] = { 0, 2, 3, 5, 8, 10, 12, 14, 15, 17, 20, 22 }; boolean ncase, bcase, kcase, vcase; int n, b, k; int mode =0;

92 93 94

ncase=bcase=kcase=vcase=false; n=b=k=0;

95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110

64

int mainsqnce[] = {//5,5,5,5,5,5,5,5, //2,2,2,2,2,2,2,2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, //6,6,6,6,6,6,6,6, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, //6,6,6,6,6,6,6,6, //0,0,0,0,0,0,0,0, 1, 4, 0, 4, 1, 4, 0, 4, 1, 4, 0, 4, 1, 4, 0, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,


//4,4,4,4,4,4,4,4, 1, 4, 0, 4, 1, 4, 0, 4, 1, 4, 0, 4, 1, 4, 0, 4,

111 112 113 114 115 116

6, 6, 6, 6, 6, 6, 6, 6

117 118

};

119 120 121 122 123 124 125 126 127 128 129

for (bar=0; bar<mainsqnce.length; bar++) { mode = mainsqnce[bar]; int shift = 4; for (int i=shift; i<quantization+shift; i++) { boolean kcondition = i%3==0 || mode%2!=0 || mode==6; switch(mode) { case 0: n = i%8==0?38:i%4==0?36:random(10)>3?46:44; b = gbasePitch+((i%3)==0?12:0);//+gpitches[random(6)]; k = gbasePitch+48+gpitches[(int)random(12)];

130 131 132 133 134 135 136 137 138 139

ncase = true; bcase = true;//i%2==0 || i%3==0; kcase = false; vcase = i==0; break; case 1: n = i%8==0?38:i%4==0?36:44; b = gbasePitch+((i%3)==0?12:0);//+gpitches[random(6)]; k = gbasePitch+48+gpitches[(int)random(12)];

140 141 142 143 144 145 146 147 148 149

ncase = true; bcase = true;//i%2==0 || i%3==0; kcase = kcondition;//i%3==0;//i%4!=0; vcase = i==0; break; case 2: n = i%8==0?38:i%4==0?36:44; b = gbasePitch;//+gpitches[random(6)]; k = gbasePitch+48+gpitches[(int)random(12)];

150 151 152 153 154 155 156 157 158 159 160

ncase = i%2==0 || i%3==0; bcase = true; kcase = false;//kcondition;//i%3==0;//i%4!=0; vcase = i==0; break; case 3: n = i%8==0?38:i%4==0?36:44; //b = gbasePitch+gpitches[(int)random(6)]; b = gbasePitch+((i%3)==0?12:0);//+gpitches[random(6)]; k = gbasePitch+48+gpitches[(int)random(12)];

161 162 163 164 165 166 167 168 169 170

ncase = i%8==0;//i%2==0 || i%3==0; bcase = true; kcase = false;//i%4!=0; vcase = i==0; break; case 9: n = i%8==0?38:i%4==0?36:44; b = gbasePitch+gpitches[(int)random(6)]; k = gbasePitch+48+gpitches[(int)random(12)];

171 172 173 174 175 176 177 178 179 180

ncase = i%8==0;//i%2==0 || i%3==0; bcase = true; kcase = kcondition;//false;//i%4!=0; vcase = i==0; break; case 4: n = i%4==0?36:44; b = gbasePitch+gpitches[(int)random(6)]; k = gbasePitch+48+gpitches[(int)random(12)];

181 182 183 184 185 186 187 188 189 190

ncase = true; bcase = true; kcase = kcondition;//i%3==0;//i%4!=0; vcase = i==0; break; case 5: n = i%3==0? 46:44; b = gbasePitch+gpitches[(int)random(6)]; k = gbasePitch+48+gpitches[(int)random(12)];

191 192 193 194 195 196 197 198 199 200 201

ncase = true; bcase = true; kcase = kcondition;//i%3==0;//i%4!=0; vcase = i==0; break; case 6: n = i%3==0? 38:44; //b = gbasePitch+gpitches[(int)random(6)]; b = gbasePitch+((i%3)==0?12:0);//+gpitches[random(6)]; k = gbasePitch+48+gpitches[(int)random(12)];

202 203 204 205 206 207 208 209 210 211

ncase = true; bcase = true; kcase = false;//kcondition;//i%3==0;//i%4!=0; vcase = i==0; break; case 7: n = i%3==0? 38:36+(int)random(12); b = gbasePitch+gpitches[(int)random(6)]; k = gbasePitch+48+gpitches[(int)random(12)];

212 213 214 215 216 217 218 219 220

ncase = true; bcase = true; kcase = false;//kcondition;//i%3==0;//i%4!=0; vcase = i==0; break; case 8: n = 36+(int)random(12); b = gbasePitch+gpitches[(int)random(6)];

65


k = gbasePitch+48+gpitches[(int)random(12)];

221 222

ncase = bcase = kcase = vcase = break;

223 224 225 226 227

} if (ncase) doDrums(position, i-shift, n, n==36?127:(int)random(100, (int)random(100, 127))); if (bcase) doBass(position, i-shift, b, (int)random(100, (int)random(64, 127))); if (kcase)doKboard(position, i-shift, k, (int)random(100, (int)random(64, 127))); //if(vcase) speakjet.println(random(255)); checkLyrics(bar, i-shift);

228 229 230 231 232 233

} //bar++; position+=quantization;

234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251

true; true; true; i==0;

} } void doDrums(int position, int i, int pitch, int vel) { drumstrack.addEvent(new Note(pitch, vel, 1), position+i); drumstrack.addEvent(new Note(pitch, 0, 1), position+i+1); dobeat(position+i, pitch); } void doBass(int position, int i, int pitch, int vel) { basstrack.addEvent(new Note(pitch, vel, 1), position+i); basstrack.addEvent(new Note(pitch, 0, 1), position+i+1); } void doKboard(int position, int i, int pitch, int vel) { guitartrack.addEvent(new Note(pitch, vel, (int)pow(2, (int)random(4))), position+i); guitartrack.addEvent(new Note(pitch, 0, 1), position+i+1); }

252 253 254 255 256 257 258 259 260 261

void if if if if if if if if

checkLyrics(int bar, int frame) { (bar==10 && frame==0)presing("come on!"); (bar==11 && frame==0)presing("our voices are vices"); (bar==12 && frame==0)presing("cheating us"); (bar==13 && frame==0)presing("with the purpose of disguise"); (bar==14 && frame==0)presing("it's all okey"); (bar==15 && frame==0)presing("we are just screaming"); (bar==16 && frame==0)presing("and crying for nothing"); (bar==17 && frame==0)presing("surrounded by sirens and tear gases");

262 263 264 265 266 267 268 269 270

if if if if if if if if

(bar==26 (bar==27 (bar==28 (bar==29 (bar==30 (bar==31 (bar==32 (bar==33

&& && && && && && && &&

frame==0)presing("behind your face"); frame==0)presing("behind your words"); frame==0)presing("i will protect and hide you again 'cause"); frame==0)presing("it's just a harm fool"); frame==0)presing("it's just a harmful time"); frame==0)presing("I'm gonna be your scream"); frame==0)presing("I'm gonna be your shouting mouth"); frame==0)presing("I’ll take your breath and make it song");

if if if if

(bar==34 (bar==35 (bar==36 (bar==37

&& && && &&

frame==0)presing("this is a harm fool"); frame==0)presing("and this a harmful time"); frame==0)presing("it's just a harm fool"); frame==0)presing("it's just a harmful time");

if if if if

(bar==38 (bar==39 (bar==40 (bar==41

&& && && &&

frame==0)presing("this is a harm fool"); frame==0)presing("and this a harmful time"); frame==0)presing("it's just a harm fool"); frame==0)presing("it's just a harmful time");

if if if if

(bar==42 (bar==43 (bar==44 (bar==45

&& && && &&

frame==0)presing("this is a harm fool"); frame==0)presing("and this a harmful time"); frame==0)presing("it's just a harm fool"); frame==0)presing("hey!");

if if if if

(bar==46 (bar==47 (bar==48 (bar==49

&& && && &&

frame==0)presing("this is a harm fool"); frame==0)presing("and this a harmful time"); frame==0)presing("it's just a fool!"); frame==0)presing("it's just time!");

271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291

if (bar>=58 && bar<66 && frame==0)presing("hey!"); if (bar>=58 && bar<66 && frame==8)presing("hooo");

292 293 294 295 296 297 298

if if if if

(bar==66 (bar==67 (bar==68 (bar==69

&& && && &&

frame==0)presing("this is a harm fool"); frame==0)presing("and this a harmful time"); frame==0)presing("it's just a harm fool"); frame==0)presing("it's just a harmful time");

if if if if

(bar==70 (bar==71 (bar==72 (bar==73

&& && && &&

frame==0)presing("this is a harm fool"); frame==0)presing("and this a harmful time"); frame==0)presing("it's just a harm fool"); frame==0)presing("it's just a harmful time");

if if if if

(bar==74 (bar==75 (bar==76 (bar==77

&& && && &&

frame==0)presing("this is a harm fool"); frame==0)presing("and this a harmful time"); frame==0)presing("it's just a harm fool"); frame==0)presing("hey!");

if if if if

(bar==78 (bar==79 (bar==80 (bar==81

&& && && &&

frame==0)presing("this is a harm fool"); frame==0)presing("and this a harmful time"); frame==0)presing("it's just a fool!"); frame==0)presing("it's just time! just time!");

if if if if if if if if

(bar==82 (bar==83 (bar==84 (bar==85 (bar==86 (bar==87 (bar==88 (bar==89

&& && && && && && && &&

frame==0)presing("repeat frame==0)presing("repeat frame==0)presing("repeat frame==0)presing("repeat frame==0)presing("repeat frame==0)presing("repeat frame==0)presing("repeat frame==0)presing("repeat

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

until until until until until until until until

you you you you you you you you

ceased ceased ceased ceased ceased ceased ceased ceased

hearing hearing hearing hearing hearing hearing hearing hearing

}

324 325 326 327 328 329 330

66

void presing(String l) { lyrics[bar][0] =l;// lyrics[auxposition/quantization][i] =l; //println(auxposition+" "+i+" "+l); } void presing(String l, boolean f) {

me!", me!", me!", me!", me!", me!", me!", me!",

false); true); false); true); false); true); false); true);


lyrics[bar][0] =l;// lyrics[auxposition/quantization][i] =l; //println(auxposition+" "+i+" "+l);

331 332

}

333 334

}

335

67


1 2 3 4

class GeometricAttraction extends VZong { int[] drumpads = { 36, 38, 42, 44, 47, 48, 37 };

5 6 7 8

String[][] drumspatterns; String[] basspatterns; int [][] bassnotes;

9 10 11

String[] kbpatterns; int [][] kbnotes;

12 13

int[] bellsnotes;

14 15 16

//int quantization; int position;

17 18 19

String[] lyricsbase; int lyricLine;

20 21

int part = -1;

22 23 24 25 26 27

GeometricAttraction() { lyrics = new String[1024][16]; name = "Geometric Attraction"; makeSong(); }

28 29 30 31 32 33 34 35

void makeSong() { beatMap = new BeatMap(); //score.empty(); drumstrack = new promidi.Track("drums", drumsout); basstrack = new promidi.Track("bass", bassout); guitartrack = new promidi.Track("kboard", guitarout); bellstrack = new promidi.Track("bells", guitarout);

36 37 38 39 40

drumstrack.setQuantization(Q._1_16); basstrack.setQuantization(Q._1_16); guitartrack.setQuantization(Q._1_16); bellstrack.setQuantization(Q._1_16);

41 42 43 44 45 46 47

drumsout.sendController(new Controller(0, 1)); drumsout.sendProgramChange(new ProgramChange(3)); guitarout.sendProgramChange(new ProgramChange(42)); quantization = 16; position = 0; int tempo = 170;

48 49 50 51 52 53 54 55 56

compose(); dolyrics(); // song = new Song(name, tempo); song.addTrack(drumstrack); song.addTrack(basstrack); song.addTrack(guitartrack); song.addTrack(bellstrack);

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

sequencer.setSong(song); sequencer.setLoopStartPoint(0); sequencer.setLoopEndPoint(512*(position)/quantization);// sequencer.setLoopCount(-1); sequencer.noLoop(); } void dolyrics() { for (int i=0; i<position/quantization; i++) { for (int j=0; j<quantization; j++) { checkLyrics(i, j); } } } void compose() { for (part = -1; part<30; part++) { switch(part) { case -1: silence(); break; case 0: counter(); break; case 1: case 2: case 3: part001(); break; case 4: part001b(); break; case 5: case 6: case 7: part001(); break; case 8: part001b(); break; case 9: case 10: case 11: case 12: part002(); break;

102 103 104 105 106 107 108 109 110

68

case 13: case 14: case 15: part001(); break; case 16: part001b(); break;


111 112

case 17: case 18: case 19: part002(); break; case 20: part003(); break;

113 114 115 116 117 118 119 120 121

case 21: case 22: case 23: part001(); break; case 24: part001b(); break; // part001(); // break; case 25: case 26: case 27: case 28: part001b(); break;

122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138

case 29: part001f(); break; }

139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160

} } void silence() { position+=quantization; bar=0; } void counter() { for (int i=0; i<quantization; i++) { if (i%4==0) { doDrums(position, i, 37, 120, 120); } } position+=quantization; } void part00() { position+=quantization; bar=0; }

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

void part001() { for (bar=0; bar<4; bar++) if (bar==0)riff000(); if (bar==1)riff000(); if (bar==2)riff001(); if (bar==3)riff002(); } } void part001b() { for (bar=0; bar<4; bar++) if (bar==0)riff000(); if (bar==1)riff000(); if (bar==2)riff001b(); if (bar==3)riff002b(); } } void part002() { for (bar=0; bar<4; bar++) if (bar==0)riff002(); if (bar==1)riff003(); if (bar==2)riff000b(); if (bar==3)riff000b(); } } void part003() { for (bar=0; bar<8; bar++) if (bar==0)riff002(); if (bar==1)riff003(); if (bar==2)riff002(); if (bar==3)riff003();

{

{

{

{

192

if if if if

193 194 195 196

}

197 198

(bar==4)riff002(); (bar==5)riff003(); (bar==6)riff000bx(); (bar==7)riff000bx();

}

199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220

void part001f() { for (bar=0; bar<4; bar++) { if (bar==0)riff000(); if (bar==1)riff001(); if (bar==2)riff002(); if (bar==3)riff002f(); } } void riff000() { for (int i=0; i<quantization; i++) { drums001(position, i); bass001(position, i); keyb002(position, i); } position+=quantization; } void riff000b() { for (int i=0; i<quantization; i++) { drums001(position, i); bass001b(position, i); keyb001(position, i);

69


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

} position+=quantization; } void riff000bx() { for (int i=0; i<quantization; i++) { drums001f(position, i); bass001b(position, i); keyb001(position, i); } position+=quantization; } void riff001() { for (int i=0; i<quantization; i++) { drums001(position, i); bass002(position, i); keyb002(position, i); } position+=quantization; } void riff001b() { for (int i=0; i<quantization; i++) { drums001f(position, i); bass002(position, i); } position+=quantization; } void riff002() { for (int i=0; i<quantization; i++) { drums001(position, i); bass003(position, i); keyb002(position, i); } position+=quantization; } void riff002b() { for (int i=0; i<quantization; i++) { drums001f(position, i); bass003(position, i); keyb001(position, i); } position+=quantization; } void riff003() { for (int i=0; i<quantization; i++) { drums001(position, i); bass004(position, i); keyb002(position, i); } position+=quantization; } void riff002f() { for (int i=0; i<quantization+1; i++) { drums001f(position, i); bass003f(position, i); } position+=quantization; } /***************************/

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

void drums001(int position, int i) { if (i%8==0 || i%16==10) {//(i==0 || i==8 || i==10){ doDrums(position, i, 36, 110, 120); } if (i==4 || i==12) { doDrums(position, i, 38, 110, 120); } if (i%2==0) { //doDrums(position, i, 42, 110, 120); doDrums(position, i, 44, 110, 120); } //raska++; } void drums001f(int position, int i) { if (i%4==0) {//(i==0 || i==8 || i==10){ doDrums(position, i, 36, 110, 120); } doDrums(position, i, 38, 110+int(random(16)), 120); if (true) { doDrums(position, i, i%4==3?42:44, 110, 120); } } void bass001(int position, int i) { if (i%2==0) doBass(position, i, 38+2, 1); } void bass001b(int position, int i) { if (i%2==0) doBass(position, i, 38-12+2, 1); } void bass002(int position, int i) { if (i%2==0) doBass(position, i, 31+2, 1); } void bass003(int position, int i) { if (i%2==0) doBass(position, i, 34+2, 1); } void bass004(int position, int i) { if (i%2==0) doBass(position, i, 33+2, 1); }

322 323 324 325 326 327 328 329 330

70

void bass003f(int position, int i) { if (i%2==0) doBass(position, i, 38+2, 8); } void bass004f(int position, int i) { if (i%2==0) doBass(position, i, 34+2, 1); }


331

void keyb001(int position, int i) { if (i%3==0) doGuitar(position, i, 59+24, 1); } void keyb002(int position, int i) { if (i%3==0) doGuitar(position, i, 59+24, 1); else if (i%2==0) if (random(100)>30) doGuitar(position, i, 59+24+12, 1); else if (random(100)>50) doGuitar(position, i, 59+24+12-2, 1); else doGuitar(position, i, 59+24+12-5, 1); } void doBass(int position, int i, int pitch, int duration) { basstrack.addEvent(new Note(pitch, (int)random(100, 120), duration), position+i); basstrack.addEvent(new Note(pitch, 0, 1), position+i+duration); } void doGuitar(int position, int i, int pitch, int duration) { guitartrack.addEvent(new Note(pitch, (int)random(100, 120), duration), position+i); guitartrack.addEvent(new Note(pitch, 0, 1), position+i+duration); } void doDrums(int positiom, int i, int pitch, int minv, int maxv) { drumstrack.addEvent(new Note(pitch, (int)random(minv, maxv), 1), position+i); drumstrack.addEvent(new Note(pitch, 0, 1), position+i+1); dobeat(position+i, pitch); }

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

void presing(int i, int j, String l, boolean isfemale) { //i+=1; lyrics[i][j] =l; } void presing(int i, int j, String l) { //i+=1; lyrics[i][j] =l; }

361 362 363 364 365 366 367 368 369

void checkLyrics(int i, int j) //i-=2; if (i==34 && j==0)presing(i, if (i==36 && j==0)presing(i, if (i==38 && j==0)presing(i, if (i==40 && j==0)presing(i, if (i==42 && j==0)presing(i, if (i==44 && j==0)presing(i, if (i==46 && j==0)presing(i, if (i==48 && j==0)presing(i,

370 371 372 373 374 375 376 377 378 379

{ j, j, j, j, j, j, j, j,

"I'm always impressed by you"); "and your colorfully forms"); "the way your contours curves"); "and starts again"); "It's that your hair?"); "or is the sun shining"); "exceptionally today"); "around you and your teeths");

380 381 382 383 384 385 386 387 388

if if if if if if if if

(i==50 (i==52 (i==54 (i==56 (i==58 (i==60 (i==62 (i==64

&& && && && && && && &&

j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i,

j, j, j, j, j, j, j, j,

"in a flaming shape"); "you turn my sweetness"); "and in a growing wave"); "we spin my sweetness"); "and as the night embraces the earth"); "we kiss the shore and rest"); "and in a flaming shape"); "my love will spin my sweetness");

if if if if if if if if if if

(i==66 (i==68 (i==70 (i==72 (i==74 (i==76 (i==78 (i==80 (i==82 (i==84

&& && && && && && && && && &&

j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i,

j, j, j, j, j, j, j, j, j, j,

"I really like the way we fits"); "the palette we mix"); "the mountains and seas we draw"); "yo make me start again"); "Are those your eyes?"); "or is the sky shining"); "exceptionally tonight"); "around you and your teeths"); "and your tongue and your lips"); "and the fire in your clit");

if if if if if if if if if if

(i==102 (i==104 (i==106 (i==108 (i==110 (i==112 (i==114 (i==116 (i==118 (i==120

389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410

j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i,

j, j, j, j, j, j, j, j, j, j,

"in a flaming shape"); "you turn my sweetness"); "and in a growing wave"); "we spin my sweetness"); "and as the night embraces the earth"); "we kiss the shore and rest"); "and in a flaming shape"); "my love will spin my sweetness"); "and in a flaming shape"); "my love will spin my sweetness");

}

411 412

&& && && && && && && && && &&

}

413

71


1 2 3 4

class IntricateSpatioTemporalOrganizations extends VZong { int[] drumpads = { 36, 38, 42, 44, 47, 48, 37 };

5 6 7 8

String[][] drumspatterns; String[] basspatterns; int [][] bassnotes;

9 10 11

String[] kbpatterns; int [][] kbnotes;

12 13

int[] bellsnotes;

14 15

int position;

16 17 18

String[] lyricsbase; int lyricLine;

19 20 21

int part = -3; int auxposition;

22 23 24 25 26 27

IntricateSpatioTemporalOrganizations() { lyrics = new String[1024][16]; name = "Intrincate Spatio Temporal Organizations"; makeSong(); }

28 29 30 31 32 33 34 35

void makeSong() { beatMap = new BeatMap(); //score.empty(); drumstrack = new promidi.Track("drums", drumsout); basstrack = new promidi.Track("bass", bassout); guitartrack = new promidi.Track("kboard", guitarout); bellstrack = new promidi.Track("bells", guitarout);

36 37 38 39 40

drumstrack.setQuantization(Q._1_16); basstrack.setQuantization(Q._1_16); guitartrack.setQuantization(Q._1_16); bellstrack.setQuantization(Q._1_16);

41 42 43 44

drumsout.sendController(new Controller(0, 1)); drumsout.sendProgramChange(new ProgramChange(1)); guitarout.sendProgramChange(new ProgramChange(109));//62));

45 46 47 48

quantization = 16; position = 0; int tempo = 110;

49 50 51 52 53 54 55 56 57

compose(); dolyrics(); // song = new Song(name, tempo); song.addTrack(drumstrack); song.addTrack(basstrack); song.addTrack(guitartrack); song.addTrack(bellstrack);

58 59 60 61 62 63 64 65 66 67 68 69 70 71

sequencer.setSong(song); sequencer.setLoopStartPoint(0); sequencer.setLoopEndPoint(512*position/quantization);//512*bars);// sequencer.setLoopCount(0); sequencer.noLoop(); } void dolyrics() { for (int i=0; i<position/quantization; i++) { for (int j=0; j<quantization; j++) { checkLyrics(i, j); } } }

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

72

void compose() { for (part = -1; part<12; part++) { switch(part) { case -1: silence(); break; case 0: counter(); break; default: part001(); break; case 1: case 4: case 8: part001x(); break; case 3: case 5: part002(); break; } } } void silence() { position+=quantization; bar=0; } void counter() { for (int i=0; i<quantization; i++) { if (i%4==0) { doDrums(position, i, 37, 120, 120); } } position+=quantization; } void part001() { for (bar=0; bar<4*2; bar++) {


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

switch(bar%2) { default: riff001a(); break; case 1: riff001b(); } } } void part001x() { for (bar=0; bar<4*1; bar++) { switch(bar%2) { default: riff001c(); break; case 1: riff001d(); } } } void part002() { for (bar=0; bar<4*2; bar++) { switch(bar%2) { default: riff002a(); break; case 1: riff002b(); } } } void riff001a() { for (int i=0; i<quantization; i++) { drums001(position, i); bass001a(position, i); kboard001b(position, i); } position+=quantization; } void riff001b() { for (int i=0; i<quantization; i++) { drums001(position, i); bass001b(position, i); kboard001a(position, i); } position+=quantization; } void riff001c() { for (int i=0; i<quantization; i++) { drums001(position, i); bass001a(position, i); //kboard001a(position, i); } position+=quantization; } void riff001d() { for (int i=0; i<quantization; i++) { drums001(position, i); bass001a(position, i);//b //kboard001b(position, i); } position+=quantization; } void riff002a() { for (int i=0; i<quantization; i++) { drums001(position, i); bass001a(position, i); kboard002a(position, i); } position+=quantization; } void riff002b() { for (int i=0; i<quantization; i++) { drums001(position, i); bass001b(position, i); kboard002b(position, i); } position+=quantization; } /***************************/ void drums001(int position, int i) { if (i%4==0 || i==1 || i==2 || i==9 || i==10 || i==12 || i==14 ) //if(i==0 || i==3 || i==6 || i==7 || i==10 || i==13 || i==14 || i==15) doDrums(position, i, 36, i%6==0?127:96, i%6==0?127:96); //if(i% if (i%3==1 || i%7==6) { doDrums(position, i, 39, 96, 96); doDrums(position, i+1, 39, 64, 64); } if (i%3==0) doDrums(position, i, 37, 100, 120); doDrums(position, i, 42, i%6==0?127:96, i%6==0?127:96); if (i%8==4) {// ||i%12==2){ doDrums(position, i, 38, 127, 100); doDrums(position, i, 44, 100, 100); } } void bass001a(int position, int i) { if (i==0) doBass(position, i, 38, 3); else if (i==3) doBass(position, i, 41, 2); else if (i==5) doBass(position, i, 38, 1); else if (i==6) doBass(position, i, 41, 1); else if (i==7) doBass(position, i, 45, 1); else if (i==10) doBass(position, i, 43, 2); else if (i==12) doBass(position, i, 41, 1); else if (i==13) doBass(position, i, 43, 3); else if (i%3==0 && i<12) { doBass(position, i, 38-12, 1); doBass(position, i+2, 38, 1); } }

73


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

74

void bass001b(int position, int i) { if (i==0) doBass(position, i, 40, 3); else if (i==3) doBass(position, i, 45, 2); else if (i==5) doBass(position, i, 40, 4); else if (i==6) doBass(position, i, 38, 1); else if (i==7) doBass(position, i, 40, 2); else if (i==9) doBass(position, i, 41, 3); else if (i==12) doBass(position, i, 41, 4); else if (i%3==0 && i<12) { doBass(position, i, 40-12, 1); doBass(position, i+2, 40, 1); } } void bass002a(int position, int i) { if (i==0) doBass(position, i, 38, 1); else if (i==1) doBass(position, i, 50, 1); else if (i==2) doBass(position, i, 45, 3); else if (i==5) doBass(position, i, 38, 2); else if (i==7) doBass(position, i, 45, 2); else if (i==10) doBass(position, i, 43, 2); else if (i==12) doBass(position, i, 38, 2); else if (i==13) doBass(position, i, 41, 2); //else if(i==10) doBass(position, i, 43, 2); //else if(i==12) doBass(position, i, 41, 1); //else if(i==13) doBass(position, i, 43, 3); else if (i%3==0) { doBass(position, i, 38, 1); doBass(position, i+2, 38+12, 1); } } void bass002b(int position, int i) {//0 4 6 10 12 if (i==0) doBass(position, i, 38, 4); else if (i==3) doBass(position, i, 45-12, 2); else if (i==5) doBass(position, i, 38-12, 4); else if (i==7) doBass(position, i, 45, 2); else if (i==10) doBass(position, i, 43-12, 2); else if (i==12) doBass(position, i, 38, 2); else if (i==13) doBass(position, i, 41, 2); else if (i%3==0) { doBass(position, i, 38, 1); doBass(position, i+2, 38+12, 1); } } void kboard001(int position, int i) { if (i%6==0) doKboard(position, i, 38+24, 1); if (i%3==1)doKboard(position, i, 38+24+(random(100)>50?3:7), 1); else if (i==0 || i==9 || i==12 || i==7) { doKboard(position, i, 38+12, 1); doKboard(position, i+2, 38+12, 2); } } void kboard001a(int position, int i) { if (i==0+1) doKboard(position, i, 38+24, 4); // else if(i==6+1) doKboard(position, i, 41+24, 4); // else if(i==10+1) doKboard(position, i, 38+24, 2); // else if(i==12+1) doKboard(position, i, 45+24, 2); // else if(i==14+1) doKboard(position, i, 43+24, 2); // //else if(i==10) doBass(position, i, 43, 2); // //else if(i==12) doBass(position, i, 41, 1); // //else if(i==13) doBass(position, i, 43, 3); // else if (i%3==0 && i<12) { doKboard(position, i, 38+24, 1); doKboard(position, i+2, 38+12+24, 1); } } void kboard001b(int position, int i) {//0 4 6 10 12 if (i==0) doKboard(position, i, 38+24, 4); // else if(i==4) doKboard(position, i, 45-12+24, 2); // else if(i==6) doKboard(position, i, 38-12+24, 4); // else if(i==10) doKboard(position, i, 40-12+24, 2); // else if(i==14) doKboard(position, i, 41-12+24, 2); // //else if(i==12) doBass(position, i, 41, 4); // else if (i%3==0 && i<12) {//){ doKboard(position, i, 38+24, 1); doKboard(position, i+2, 38+12+24, 1); } } void kboard002a(int position, int i) { if (i==0) { doKboard(position, i, 45+24+12, 3); doKboard(position, i+1, 38+24+12+12, 3); } // else if(i==4) doKboard(position, i, 40+24, 4); else if (i==6) { doKboard(position, i, 41+24+12+12, 1); doKboard(position, i+1, 38+24+12+12+12, 1); } // else if(i==7) doKboard(position, i, 40+24, 2); else if (i==9) doKboard(position, i, 38+24+12, 3); else if (i==13) doKboard(position, i, 45+24+12+12, 3); // else if(i==12) doKboard(position, i, 41+24, 4); // else if (i%3==0 && i<12) { doKboard(position, i, 41-12+24+12, 1); doKboard(position, i+1, 38+24+12, 1); } } void kboard002b(int position, int i) { if (i==0) { doKboard(position, i, 38+24+12, 3); doKboard(position, i+1, 38+24+12+12, 3); } // else if(i==4) doKboard(position, i, 40+24, 4); else if (i==6) { doKboard(position, i, 38+24+12+12, 1); doKboard(position, i+1, 38+24+12+12+12, 1); }


// else if(i==7) doKboard(position, i, 40+24, 2); else if (i==9) doKboard(position, i, 41+24+12, 3); else if (i==13) doKboard(position, i, 45+24+12+12, 3); // else if(i==12) doKboard(position, i, 41+24, 4); // else if (i%3==0 && i<12) { doKboard(position, i, 38-12+24+12, 1); doKboard(position, i+1, 38+24+12, 1); }

331 332 333 334 335 336 337 338 339

}

340 341

void doDrums(int positiom, int i, int pitch, int minv, int maxv) { drumstrack.addEvent(new Note(pitch, (int)random(minv, maxv), 1), position+i); drumstrack.addEvent(new Note(pitch, 0, 1), position+i+1); dobeat(position+i, pitch); } void doBass(int position, int i, int pitch, int duration) { basstrack.addEvent(new Note(pitch, (int)random(100, 120), duration), position+i); basstrack.addEvent(new Note(pitch, 0, 1), position+i+duration); } void doKboard(int position, int i, int pitch, int duration) { guitartrack.addEvent(new Note(pitch, (int)random(100, 120), duration), position+i); guitartrack.addEvent(new Note(pitch, 0, 1), position+i+duration); } void checkLyrics(int i, int j) { if (i==14 && j==0)presing(i, j, "Intricate is just a word to say");//,true? if (i==16 && j==0)presing(i, j, "that is not easy to talk about this"); if (i==18 && j==0)presing(i, j, "that nobody knows how we reach this point"); if (i==20 && j==0)presing(i, j, "and still is a secret we reach the shore"); // if (i==26 && j==0)presing(i, j, "Spatial is just a word to define"); if (i==28 && j==0)presing(i, j, "our embodied and bleeding condition"); if (i==30 && j==0)presing(i, j, "our aim on stay togeher"); if (i==32 && j==0)presing(i, j, "and still the secret shore we reached"); // if (i==54 && j==0)presing(i, j, "Temporal is just a word to refer"); if (i==56 && j==0)presing(i, j, "that time has being doing his work here"); if (i==58 && j==0)presing(i, j, "that rain and wind have fallen enogh"); if (i==60 && j==0)presing(i, j, "to reach those secrets stills after the storm");

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

if if if if

371 372 373 374

(i==62 (i==64 (i==66 (i==68

&& && && &&

j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i,

j, j, j, j,

"Organization is just a word to say"); "here we found much more than chaos"); "your smell remind me futures"); "and something real emerges");

375

if (i==74 && j==0)presing(i, j, if (i==76 && j==0)presing(i, j, } void presing(int i, int j, String lyrics[i][j] =l; } void presing(int i, int j, String lyrics[i][j] =l; }

376 377 378 379 380 381 382 383 384 385

"that rain and wind have fallen enogh"); "to reach those secrets stills after the storm"); l, boolean isfemale) {

l) {

}

386

75


1 2

class LEteIndien extends VZong { //Song song;

3 4 5 6

int[] drumpads = { 36, 38, 42, 44, 47, 48, 37 };//46,47,48,42};

7 8 9 10

String[][] drumspatterns; String[] basspatterns; int [][] bassnotes;

11 12 13

String[] kbpatterns; int [][] kbnotes;

14 15

int[] bellsnotes;

16 17 18

//int quantization; int position;

19 20 21

String[] lyricsbase; int lyricLine;

22 23 24 25 26 27

int part = -1; //int bar; //int frame; //int bar = 0, frame = 0, cframe = 0; int auxposition;

28 29 30 31 32 33 34 35 36 37 38 39 40

int[] 69, }; int[] 67, }; int[] 67, }; int[] 71, };

lam = { 72, 76 mim = { 71, 76 doM = { 72, 76 sim = { 74, 78

41 42 43 44 45 46 47

LEteIndien() { lyrics = new String[1024][16]; name = "LEteIndien"; makeSong(); //vplayer.println("song "+name+" loaded!"); }

48 49 50 51 52 53 54 55

void makeSong() { beatMap = new BeatMap(); //score.empty(); drumstrack = new promidi.Track("drums", drumsout); basstrack = new promidi.Track("bass", bassout); guitartrack = new promidi.Track("kboard", guitarout); bellstrack = new promidi.Track("bells", guitarout);

56 57 58 59 60

drumstrack.setQuantization(Q._1_16); basstrack.setQuantization(Q._1_16); guitartrack.setQuantization(Q._1_16); bellstrack.setQuantization(Q._1_16);

61 62 63 64

drumsout.sendController(new Controller(0, 1)); drumsout.sendProgramChange(new ProgramChange(0)); guitarout.sendProgramChange(new ProgramChange(5));

65 66 67 68

quantization = 16; position = 0; int tempo = 110;

69 70 71 72 73 74 75 76 77 78

//metacompose(); compose(); dolyrics(); // song = new Song(name, tempo); song.addTrack(drumstrack); song.addTrack(basstrack); song.addTrack(guitartrack); song.addTrack(bellstrack);

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

76

sequencer.setSong(song); sequencer.setLoopStartPoint(0); sequencer.setLoopEndPoint(512*(position)/quantization);// sequencer.setLoopCount(-1); sequencer.noLoop(); } void dolyrics() { for (int i=0; i<position/quantization; i++) { for (int j=0; j<quantization; j++) { checkLyrics(i, j); } } } void compose() { for (part = -2; part<11; part++) { switch(part) { case -1: counter(); break; case 6: part00(); break; case 0: case 3: case 7: part01(); break; case 1: case 2: case 4: case 5:


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

case 8: part02(); break; case 9: part00x(); break; case 10: case -2: silence(); break; } } } void silence() { position+=quantization; bar=0; } void counter() { for (int i=0; i<quantization; i++) { if (i%4==0) { doDrums(position, i, 37, 120, 120); } } position+=quantization; } void part00() { position+=quantization; bar=0; } void part00x() { riff000x();//rem } void part01() { for (bar=0; bar<8; bar++) { if (bar==0)riff000();//rem if (bar==1)riff000();//rem if (bar==2)riff001();//solm if (bar==3)riff002();//laM if (bar==4)riff000();//rem if (bar==5)riff000();//rem if (bar==6)riff001();//solm if (bar==7)riff002();//laM } } void part02() { for (bar=0; bar<16; bar++) { if (bar==0)riff000();//rem if (bar==1)riff000();//rem if (bar==2)riff002();//laM if (bar==3)riff002();//laM if (bar==4)riff000M();//reM if (bar==5)riff000M();//reM if (bar==6)riff001();//solm if (bar==7)riff001();//solm if (bar==8)riff003();//sib if (bar==9)riff003();//sib if (bar==10)riff000();//rem if (bar==11)riff000();//rem if (bar==12)riff004();//mi if (bar==13)riff004();//mi if (bar==14)riff002();//la7 if (bar==15)riff002();//la7 } } void danceDrum(int position, int i) { if (i%4==0)doDrums(position, i, 36, 110, 120); if (i%4==2) { doDrums(position, i, 44, 110, 120); doDrums(position, i+1, 44, 110, 120); } else { doDrums(position, i, 44, 110, 120); } if (i%8==4)doDrums(position, i, 38, 110, 120); } void danceBass(int position, int i, int pitch, int mode) { if (i%4==0) { doBass(position, i, pitch, mode==9?16:1); doBass(position, i+1, pitch, mode==9?16:1); } if (i%4==2) { doBass(position, i, pitch+12, 1); doBass(position, i+1, pitch+12, 1); } } void riff000() {//rem for (int i=0; i<quantization; i++) { if (i==0) { doGuitar(position, i, 2, 16); doGuitar(position, i, 2+3, 16); doGuitar(position, i, 2+7, 16); } danceBass(position, i, 2, 0); danceDrum(position, i); } position+=quantization; } void riff000x() {//rem for (int i=0; i<quantization; i++) { if (i==0) { doGuitar(position, i, 2, 16); doGuitar(position, i, 2+3, 16); doGuitar(position, i, 2+7, 16); danceBass(position, i, 2, 9); //danceDrum(position,i); } } position+=quantization; } void riff000M() {//reM

77


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

for (int i=0; i<quantization; i++) { if (i==0) { doGuitar(position, i, 2, 16); doGuitar(position, i, 2+4, 16); doGuitar(position, i, 2+7, 16); } danceBass(position, i, 2, 0); danceDrum(position, i); } position+=quantization; } void riff001() {//solm for (int i=0; i<quantization; i++) { if (i==0) { doGuitar(position, i, -5, 16); doGuitar(position, i, -5+3, 16); doGuitar(position, i, -5+7, 16); } danceBass(position, i, -5, 0); danceDrum(position, i); } position+=quantization; } void riff001M() {//solM for (int i=0; i<quantization; i++) { if (i==0) { doGuitar(position, i, -5, 16); doGuitar(position, i, -5+4, 16); doGuitar(position, i, -5+7, 16); } danceBass(position, i, -5, 0); danceDrum(position, i); } position+=quantization; } void riff002() {//laM for (int i=0; i<quantization; i++) { if (i==0) { doGuitar(position, i, -3, 16); doGuitar(position, i, -3+4, 16); doGuitar(position, i, -3+7, 16); } danceBass(position, i, -3, 0); danceDrum(position, i); } position+=quantization; } void riff002m() {//lam for (int i=0; i<quantization; i++) { if (i==0) { doGuitar(position, i, -3, 16); doGuitar(position, i, -3+3, 16); doGuitar(position, i, -3+7, 16); } danceBass(position, i, -3, 0); danceDrum(position, i); } position+=quantization; } void riff003() {//sibM for (int i=0; i<quantization; i++) { if (i==0) { doGuitar(position, i, -2, 16); doGuitar(position, i, -2+4, 16); doGuitar(position, i, -2+7, 16); } danceBass(position, i, -2, 0); danceDrum(position, i); } position+=quantization; } void riff004() {//miM for (int i=0; i<quantization; i++) { if (i==0) { doGuitar(position, i, 4, 1); doGuitar(position, i, 4+4, 16); doGuitar(position, i, 4+7, 16); } danceBass(position, i, 4, 0); danceDrum(position, i); } position+=quantization; } void doDrums(int positiom, int i, int pitch, int minv, int maxv) { drumstrack.addEvent(new Note(pitch, (int)random(minv, maxv), 1), position+i); drumstrack.addEvent(new Note(pitch, 0, 1), position+i+1); dobeat(position+i, pitch); } void doBass(int position, int i, int pitch, int duration) { int basescale = 36; int nn = basescale+pitch; basstrack.addEvent(new Note(nn, (int)random(100, 120), duration), position+i); basstrack.addEvent(new Note(nn, 0, 1), position+i+duration); } void doGuitar(int position, int i, int pitch, int duration) { int basescale = 36+36; int nn = basescale+pitch; guitartrack.addEvent(new Note(nn, (int)random(100, 120), duration), position+i); guitartrack.addEvent(new Note(nn, 0, 1), position+i+duration); }

321 322

void checkLyrics(int i, int j) {

323 324 325 326

if (i==1 && j==0)presing(i, j, "Ya sabes,"); if (i==2 && j==0)presing(i, j, "que esta noche me siento tan solo y perdido"); if (i==3 && j==8)presing(i, j, "cuando no estรกs");

327 328 329 330

78

if (i==5 && j==0)presing(i, j, "y esos recuerdos"); if (i==6 && j==0)presing(i, j, "estan llenos de ti, "); if (i==7 && j==8)presing(i, j, "de tu primavera..");


331 332 333 334 335 336 337 338 339 340 341

if if if if if if if if if if

(i==9 && j==0)presing(i, j, "una playa nuestra"); (i==10 && j==0)presing(i, j, "donde fui arena para sostenerte"); (i==13 && j==0)presing(i, j, "un mar nuestro"); (i==14 && j==0)presing(i, j, "donde fui la ola que te llevaba,"); (i==17 && j==0)presing(i, j, "esencia"); (i==18 && j==0)presing(i, j, "peque単as cosas"); (i==19 && j==0)presing(i, j, "y ahora este vacio"); (i==21 && j==0)presing(i, j, "sin poder mirar hacia el futuro,"); (i==23 && j==0)presing(i, j, "solo"); (i==24 && j==0)presing(i, j, "sin ti..");

if if if if if if if if

(i==25 (i==26 (i==29 (i==31 (i==33 (i==34 (i==37 (i==38

342 343 344 345 346 347 348 349 350

&& && && && && && && &&

j==0)presing(i, j==8)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==8)presing(i,

j, j, j, j, j, j, j, j,

"hacia atras"); "solo puedo mirar atras"); "y sentir que vuelvo a estar"); "aun vivo para el amor,"); "una voz,"); "que viene de un atardecer "); "me hace ver"); "que aun puede ser...");

351

if (i==40+1 && j==0)presing(i, j, "Ya sabes,"); if (i==40+2 && j==0)presing(i, j, "estoy muy lejos de esos recuerdos,"); if (i==40+3 && j==8)presing(i, j, "donde estas?");

352 353 354 355

if (i==40+5 && j==0)presing(i, j, "te acuerdas de mi "); if (i==40+6 && j==0)presing(i, j, "o te habras olvidado..?"); //if(i==40+7 && j==8)presing(i, j,"de tu primavera..");

356 357 358 359

if (i==40+9 && j==0)presing(i, j, "tal vez piensas "); if (i==40+10 && j==0)presing(i, j, "que fue una tonteria conocerme "); if (i==40+13 && j==0)presing(i, j, "que aquella arena y aquel mar "); if (i==40+14 && j==0)presing(i, j, "solo fueron recuerdos.."); if (i==40+17 && j==0)presing(i, j, "cierro los ojos y te imagino!"); if (i==40+18 && j==0)presing(i, j, "esperare un mes,un a単o,toda la vida"); //if(i==40+19 && j==0)presing(i, j," "); if (i==40+21 && j==0)presing(i, j, "por que lo que siento"); if (i==40+23 && j==0)presing(i, j, "no tiene tiempo,"); if (i==40+24 && j==0)presing(i, j, " llama Amor!!");

360 361 362 363 364 365 366 367 368 369 370

if if if if if if if if

371 372 373 374 375 376 377 378

(i==40+25 (i==40+26 (i==40+29 (i==40+31 (i==40+33 (i==40+34 (i==40+37 (i==40+38

&& && && && && && && &&

j==0)presing(i, j==8)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i, j==8)presing(i,

j, j, j, j, j, j, j, j,

"hacia atras"); "solo puedo mirar atras"); "y sentir que vuelvo a estar"); "aun vivo para el amor,"); "una voz,"); "que viene de un atardecer "); "me hace ver"); "que aun puede ser...");

}

379 380

void presing(int i, int j, String l, boolean isfemale) { i+=1; lyrics[i][j] =l; //println(auxposition+" "+i+" "+l); } void presing(int i, int j, String l) { i+=1; lyrics[i][j] =l; //println(auxposition+" "+i+" "+l); }

381 382 383 384 385 386 387 388 389 390 391

}

392

79


1 2 3 4

class TheEternalCitySong extends VZong { int[] drumpads = { 36, 38, 42, 44, 47, 48, 37 };

5 6 7 8

String[][] drumspatterns; String[] basspatterns; int [][] bassnotes;

9 10 11

String[] kbpatterns; int [][] kbnotes;

12 13

int[] bellsnotes;

14 15

int position;

16 17 18

String[] lyricsbase; int lyricLine;

19 20 21

int part = -3; int auxposition;

22 23 24 25 26 27

TheEternalCitySong() { lyrics = new String[1024][16]; name = "The Eternal City Song"; makeSong(); }

28 29 30 31 32 33 34 35

void makeSong() { beatMap = new BeatMap(); //score.empty(); drumstrack = new promidi.Track("drums", drumsout); basstrack = new promidi.Track("bass", bassout); guitartrack = new promidi.Track("kboard", guitarout); bellstrack = new promidi.Track("bells", guitarout);

36 37 38 39 40

drumstrack.setQuantization(Q._1_16); basstrack.setQuantization(Q._1_16); guitartrack.setQuantization(Q._1_16); bellstrack.setQuantization(Q._1_16);

41 42 43 44

drumsout.sendController(new Controller(0, 1)); drumsout.sendProgramChange(new ProgramChange(0)); guitarout.sendProgramChange(new ProgramChange(42));//62));

45 46 47 48

quantization = 16; position = 0; int tempo = 117;

49 50 51 52 53 54 55 56 57

compose(); dolyrics(); // song = new Song(name, tempo); song.addTrack(drumstrack); song.addTrack(basstrack); song.addTrack(guitartrack); song.addTrack(bellstrack);

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

sequencer.setSong(song); sequencer.setLoopStartPoint(0); sequencer.setLoopEndPoint(512*position/quantization);//512*bars);// sequencer.setLoopCount(0); sequencer.noLoop(); } void dolyrics() { for (int i=0; i<position/quantization; i++) { for (int j=0; j<quantization; j++) { checkLyrics(i, j); } } } void compose() { for (part = -1; part<22; part++) { switch(part) { case -1: silence(); break; case 0: counter(); break; case 1: case 2: case 3: case 4:

85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101

case 9: case 10: case 11: case 12: part001(); break; case 17: case 18: case 19: case 20: part001(); break; case 5: case 6: case 7: case 8:

102 103 104 105 106 107 108 109 110

80

case 13: case 14: case 15: case 16: part002(); break; case 21: part001f();


break;

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

} } void silence() { position+=quantization; bar=0; } void counter() { for (int i=0; i<quantization; i++) { if (i%4==0) { doDrums(position, i, 37, 120, 120); } } position+=quantization; } void part001() { for (bar=0; bar<4; bar++) { if (bar==0)riff000(); if (bar==1)riff001(); if (bar==2)riff002(); if (bar==3)riff002(); } } void part002() { for (bar=0; bar<4; bar++) { if (bar==0)riff003(); if (bar==1)riff001(); if (bar==2)riff002(); if (bar==3)riff002(); } } void part001f() { for (bar=0; bar<4; bar++) { if (bar==0)riff000(); if (bar==1)riff001(); if (bar==2)riff002(); if (bar==3)riff002f(); } } void riff000() { for (int i=0; i<quantization; i++) { drums001(position, i); bass001(position, i); } position+=quantization; } void riff001() { for (int i=0; i<quantization; i++) { drums001(position, i); bass002(position, i); } position+=quantization; } void riff002() { for (int i=0; i<quantization; i++) { drums001(position, i); bass003(position, i); } position+=quantization; } void riff002f() { for (int i=0; i<quantization+1; i++) { drums001f(position, i); bass003f(position, i); } position+=quantization; } void riff003() { for (int i=0; i<quantization; i++) { drums001(position, i); bass004(position, i); } position+=quantization; } /***************************/ int raska;

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

void drums001(int position, int i) { if ((raska/16)%2==0) { if (i%4==0) {//(i==0 || i==8 || i==10){ doDrums(position, i, 36, 110, 120); } } else { if (i%4==0 || i==14) {//(i==0 || i==8 || i==10){ doDrums(position, i, 36, 110, 120); } } if (i==4 || i==12) { doDrums(position, i, 38, 110, 120); } if (true) { //doDrums(position, i, 42, 110, 120); doDrums(position, i, 44, 110, 120); } raska++; } void drums001f(int position, int i) { if (i%4==0) {//(i==0 || i==8 || i==10){ doDrums(position, i, 36, 110, 120); } if (i==4 || i==12 || i==8 || i==0) { doDrums(position, i, 38, 110, 120); } if (true) { doDrums(position, i, i%4==3?42:44, 110, 120); } } void bass001(int position, int i) {

81


if (i==0 || i==4 || i==8 || i==12) { doKboard(position, i, 45, 1); doBass(position, i, 45, 1); } if (i==2 || i==6 || i==10 || i==14) { doKboard(position, i, 45+12, 1); doBass(position, i, 45+12, 1); }

221 222 223 224 225 226 227 228

} void bass002(int position, int i) { if (i==0 || i==4 || i==8 || i==12) { doKboard(position, i, 50, 1); doBass(position, i, 50, 1); } if (i==2 || i==6 || i==10 || i==14) { doKboard(position, i, 50+12, 1); doBass(position, i, 50+12, 1); } } void bass003(int position, int i) { if (i==0 || i==4 || i==8 || i==12) { doKboard(position, i, 42, 1); doBass(position, i, 42, 1); } if (i==2 || i==6 || i==10 || i==14) { doKboard(position, i, 42+12, 1); doBass(position, i, 42+12, 1); } } void bass003f(int position, int i) { if (i==0 || i==4 || i==8 || i==12) { doKboard(position, i, 42, 8); doBass(position, i, 42, 8); } if (i==2 || i==6 || i==10 || i==14) { doKboard(position, i, 42+12, 1); doBass(position, i, 42+12, 1); } } void bass004(int position, int i) { if (i==0 || i==4 || i==8 || i==12) { doKboard(position, i, 49, 1); doBass(position, i, 49, 1); } if (i==2 || i==6 || i==10 || i==14) { doKboard(position, i, 49+12, 1); doBass(position, i, 49+12, 1); } } void doDrums(int positiom, int i, int pitch, int minv, int maxv) { drumstrack.addEvent(new Note(pitch, (int)random(minv, maxv), 1), position+i); drumstrack.addEvent(new Note(pitch, 0, 1), position+i+1); dobeat(position+i, pitch); } void doBass(int position, int i, int pitch, int duration) { basstrack.addEvent(new Note(pitch, (int)random(100, 120), duration), position+i); basstrack.addEvent(new Note(pitch, 0, 1), position+i+duration); } void doKboard(int position, int i, int pitch, int duration) { guitartrack.addEvent(new Note(pitch, (int)random(100, 120), duration), position+i); guitartrack.addEvent(new Note(pitch, 0, 1), position+i+duration); } void checkLyrics(int i, int j) { if (i==18 && j==0)presing(i, j, "deben ser las decepciones");//,true? if (i==20 && j==0)presing(i, j, "habituales de un domingo"); if (i==22 && j==0)presing(i, j, "o las fluctuations lunares"); if (i==24 && j==0)presing(i, j, "o el atardecer sin ti");

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

if if if if

(i==26 (i==28 (i==30 (i==32

&& && && &&

j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i,

j, j, j, j,

"pero esta ciudad se hace eterna"); "cuando no estás"); "y sueña crecer hasta alkanzarte"); "y sueña florecer cada vez q vuelvas");

if if if if

(i==50 (i==52 (i==54 (i==56

&& && && &&

j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i,

j, j, j, j,

"la vida diaria es un viaje"); "una residencia que oscila"); "y en las fluctuaciones lunares"); "sueña el atardecer que ven tus ojos");

if if if if

(i==58 (i==60 (i==62 (i==64

&& && && &&

j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i,

j, j, j, j,

"en esta ciudad me vuelvo eterno"); "a medida que no estás"); "y sueño crecer hasta alkanzarte"); "y florecer cuando estés de vuelta");

293 294 295 296 297 298 299 300 301 302

} void presing(int i, int j, String l, boolean isfemale) { lyrics[i][j] =l; } void presing(int i, int j, String l) { lyrics[i][j] =l; }

303 304 305 306 307 308 309 310 311

82

}


1 2 3 4

class TuFiesta extends VZong { int[] drumpads = { 36, 38, 42, 44, 47, 48, 37 };

5 6 7 8

String[][] drumspatterns; String[] basspatterns; int [][] bassnotes;

9 10 11

String[] kbpatterns; int [][] kbnotes;

12 13

int[] bellsnotes;

14 15

int position;

16 17 18

String[] lyricsbase; int lyricLine;

19 20 21

int part = -3; int auxposition;

22 23 24 25 26 27

TuFiesta() { lyrics = new String[1024][16]; name = "Tu Fiesta"; makeSong(); }

28 29 30 31 32 33 34 35

void makeSong() { beatMap = new BeatMap(); //score.empty(); drumstrack = new promidi.Track("drums", drumsout); basstrack = new promidi.Track("bass", bassout); guitartrack = new promidi.Track("kboard", guitarout); bellstrack = new promidi.Track("bells", guitarout);

36 37 38 39 40

drumstrack.setQuantization(Q._1_16); basstrack.setQuantization(Q._1_16); guitartrack.setQuantization(Q._1_16); bellstrack.setQuantization(Q._1_16);

41 42 43 44

drumsout.sendController(new Controller(0, 1)); drumsout.sendProgramChange(new ProgramChange(0)); guitarout.sendProgramChange(new ProgramChange(102));//62));

45 46 47 48

quantization = 16; position = 0; int tempo = 117;

49 50 51 52 53 54 55 56 57

compose(); dolyrics(); // song = new Song(name, tempo); song.addTrack(drumstrack); song.addTrack(basstrack); song.addTrack(guitartrack); song.addTrack(bellstrack);

58 59 60 61 62 63 64 65 66 67 68 69 70 71

sequencer.setSong(song); sequencer.setLoopStartPoint(0); sequencer.setLoopEndPoint(512*position/quantization);//512*bars);// sequencer.setLoopCount(0); sequencer.noLoop(); } void dolyrics() { for (int i=0; i<position/quantization; i++) { for (int j=0; j<quantization; j++) { checkLyrics(i, j); } } }

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

void compose() { for (part = -1; part<5; part++) { switch(part) { case -1: silence(); break; case 0: counter(); break; default: part001(); break; case 2: //case 4: part002(); case 4: part002b(); break; } } } void silence() { position+=quantization; bar=0; } void counter() { for (int i=0; i<quantization; i++) { if (i%4==0) { doDrums(position, i, 37, 120, 120); } } position+=quantization; } void part001() { for (bar=0; bar<4*4; bar++) { switch(bar%4) { default: riff000();

83


break; case 2: //case 3: riff000b(); break; }

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

} } void part002() { for (bar=0; bar<4*2; bar++) { switch(bar%4) { default: riff000c(); break; case 2: riff001b(); break; case 3: riff002b(); break; } } } void part002b() { for (bar=0; bar<4*4; bar++) { switch(bar%4) { default: riff000c(); break; case 2: riff001b(); break; case 3: riff002b(); break; } } } void riff000() { for (int i=0; i<quantization; i++) { drums001(position, i); bass001(position, i); kboard001(position, i); } position+=quantization; } void riff000b() { for (int i=0; i<quantization; i++) { drums001b(position, i); bass001(position, i); kboard001(position, i); } position+=quantization; } void riff000c() { for (int i=0; i<quantization; i++) { drums002b(position, i); bass001(position, i); kboard001b(position, i); } position+=quantization; } void riff001() { for (int i=0; i<quantization; i++) { drums002(position, i); bass002(position, i); kboard001(position, i); } position+=quantization; } void riff001b() { for (int i=0; i<quantization; i++) { drums002b(position, i); bass002(position, i); kboard002(position, i); } position+=quantization; } void riff002() { for (int i=0; i<quantization; i++) { drums002(position, i); bass003(position, i); kboard003(position, i); } position+=quantization; } void riff002b() { for (int i=0; i<quantization; i++) { drums002b(position, i); bass003(position, i); kboard003(position, i); } position+=quantization; } /***************************/ void drums001(int position, int i) { //if (i%4==0) if (i==0 || i==3 || i==6 || i==7 || i==10 || i==13 || i==14 || i==15) doDrums(position, i, 36, i%6==0?127:96, i%6==0?127:96); // if (i%4==2){ doDrums(position, i, 42, i%6==0?127:96, i%6==0?127:96); //} //if (i%8==4) //doDrums(position, i, 38, 96, 100);

215

if (i%8==4) {// ||i%12==2){ doDrums(position, i, 38, 120, 100); //doDrums(position, i+2, 38, 96, 100); }

216 217 218 219 220

84

}


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

void drums001b(int position, int i) { //if (i%4==0) if (i==0 || i==3 || i==6 || i==7 || i==10 || i==13 || i==14 || i==15) doDrums(position, i, 36, i%6==0?127:96, i%6==0?127:96); //if (i%4==2){ doDrums(position, i, 42, i%6==0?127:96, i%6==0?127:96); //} if (i%8==4) doDrums(position, i, 38, 96, 100); // if(i%2==0) doDrums(position, i, random(100)>50?53:56, 120, 127); } void drums002(int position, int i) { //if (i%4==0) if (i==0 || i==3 || i==6 || i==7 || i==10 || i==13 || i==14 || i==15) doDrums(position, i, 36, i%6==0?127:96, i%6==0?127:96); if (i%8==4) {//(i%4==2){ doDrums(position, i, 42, i%6==0?127:96, i%6==0?127:96); } if (i%2==0) doDrums(position, i, random(100)>50?53:56, 120, 127); //if (i%8==4)doDrums(position, i, 38, 96, 100); //doDrums(position, i, 38, int(random(80,127)), 100); } void drums002b(int position, int i) { //if (i%4==0) if (i==0 || i==3 || i==6 || i==7 || i==10 || i==13 || i==14 || i==15) doDrums(position, i, 36, i%6==0?127:96, i%6==0?127:96); //if (i%2==0){//(i%4==2){ doDrums(position, i, 42, i%6==0?127:96, i%6==0?127:96); //} if (i%8==4)doDrums(position, i, 38, 100, 127); else //doDrums(position, i, 38, 64, 100); doDrums(position, i, random(100)>50?53:56, 120, 127); } void bass001(int position, int i) { //if (i%2==0){ if (i==0 || i==3 || i==6 || i==7 || i==10 || i==13 || i==14 || i==15) doBass(position, i, 38+(i%4==2?12:0)-12, 1); else if (i%5==0)doBass(position, i, 38, 1); else if (i==9 || i==12) { doBass(position, i, 38+12, 1); doBass(position, i+2, 38+12, 2); } } void bass002(int position, int i) { //if (i%2==0){ if (i==0 || i==3 || i==6 || i==7 || i==10 || i==13 || i==14 || i==15) doBass(position, i, 41+(i%4==2?12:0)-12, 1); else if (i%5==0)doBass(position, i, 41, 1); else if (i==9 || i==12) { doBass(position, i, 41+12, 1); doBass(position, i+2, 41+12, 2); } } void bass003(int position, int i) { //if (i%2==0){ if (i==0 || i==3 || i==6 || i==7 || i==10 || i==13 || i==14 || i==15) doBass(position, i, 40+(i%4==2?12:0)-12, 1); else if (i%5==0)doBass(position, i, 40, 1); else if (i==9 || i==12) { doBass(position, i, 40+12, 1); doBass(position, i+2, 40+12, 2); } } void kboard001(int position, int i) { //doKboard(position, i+1, 49+xtra+24, 1);//doBass(position, i, 47-24, 1); if (i%6==0) doKboard(position, i, 38+24, 1); //else if(i%12==2 || i%5==0) doKboard(position, i, 38+24, 1); //else doKboard(position, i, 38+24+7, 1); if (i%3==1)doKboard(position, i, 38+24+(random(100)>50?3:7), 1); else if (i==0 || i==9 || i==12 || i==7) { doKboard(position, i, 38+12, 1); doKboard(position, i+2, 38+12, 2); } }

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

void // // // // // // // // // // // } void // // // // // // // // // // // } void // // // // // // //

kboard001b(int position, int i) { //doKboard(position, i+1, 49+xtra+24, 1);//doBass(position, i, 47-24, 1); if(i%6==0) //doKboard(position, i, 38+24, 1); else if(i%4==3) //doKboard(position, i, 38+12+24+12, 1); else if(i%3==1)doKboard(position, i, 38+7+24, 1); //else doKboard(position, i, 38+7, 1); else if (i==0 || i==9 || i==7){//|| i==12 //doKboard(position, i, 38+12, 1); //doKboard(position, i+2, 38+12, 2); } kboard002(int position, int i) { //doKboard(position, i+1, 49+xtra+24, 1);//doBass(position, i, 47-24, 1); if(i%6==0) //doKboard(position, i, 38+24, 1); else if(i%4==3) //doKboard(position, i, 12+41+24+12, 1); else if(i%2==1) doKboard(position, i, 41+12+24, 1); // else doKboard(position, i, 41+7, 1); else if (i==0 || i==9 || i==7){//|| i==12 //doKboard(position, i, 38+12, 1); //doKboard(position, i+2, 41+12, 2); } kboard003(int position, int i) { //doKboard(position, i+1, 49+xtra+24, 1);//doBass(position, i, 47-24, 1); if(i%6==0) //doKboard(position, i, 38+24, 1); else if(i%4==3) //doKboard(position, i, 12+40+24+12, 1); else if(i%2==1)doKboard(position, i, 38+12+24, 1); //else doKboard(position, i, 40+7, 1);

85


// // // //

331 332 333 334

else if (i==0 || i==9 || i==7){//|| i==12 //doKboard(position, i, 38+12, 1); //doKboard(position, i+2, 40+12, 2); }

}

335 336 337 338

void doDrums(int positiom, int i, int pitch, int minv, int maxv) { drumstrack.addEvent(new Note(pitch, (int)random(minv, maxv), 1), position+i); drumstrack.addEvent(new Note(pitch, 0, 1), position+i+1); dobeat(position+i, pitch); } void doBass(int position, int i, int pitch, int duration) { basstrack.addEvent(new Note(pitch, (int)random(100, 120), duration), position+i); basstrack.addEvent(new Note(pitch, 0, 1), position+i+duration); } void doKboard(int position, int i, int pitch, int duration) { guitartrack.addEvent(new Note(pitch, (int)random(100, 120), duration), position+i); guitartrack.addEvent(new Note(pitch, 0, 1), position+i+duration); } void checkLyrics(int i, int j) { if (i==18 && j==0)presing(i, j, "mueve las caderas morena"); if (i==20 && j==0)presing(i, j, "es por ti que bailan los breakers"); if (i==22 && j==0)presing(i, j, "muestra tu sonrisa morena"); if (i==24 && j==0)presing(i, j, "que en tu fiesta bailan los breakers");

339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361

if if if if

(i==26 (i==28 (i==30 (i==32

&& && && &&

j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i,

j, j, j, j,

"mueve las caderas morena"); "es por ti que bailan los sikuris"); "muestra tu sonrisa morena"); "que en tu fiesta bailan los sikuris");

if if if if

(i==34 (i==36 (i==38 (i==40

&& && && &&

j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i,

j, j, j, j,

"mueve las caderas morena"); "es por ti que tokan los bronces"); "muestra tu sonrisa morena"); "que en tu fiesta tokan los bronces");

if if if if

(i==58 (i==60 (i==62 (i==64

&& && && &&

j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i,

j, j, j, j,

"mueve las caderas morena"); "es por ti que bailan los breakers"); "muestra tu sonrisa morena"); "que en tu fiesta bailan los breakers");

if if if if

(i==66 (i==68 (i==70 (i==72

&& && && &&

j==0)presing(i, j==0)presing(i, j==0)presing(i, j==0)presing(i,

j, j, j, j,

"mueve las caderas morena"); "es por ti que bailan los sikuris"); "muestra tu sonrisa morena"); "que en tu fiesta bailan los sikuris");

362 363 364 365 366 367 368 369 370 371 372 373 374 375 376

} void presing(int i, int j, String l, boolean isfemale) { lyrics[i][j] =l; } void presing(int i, int j, String l) { lyrics[i][j] =l; }

377 378 379 380 381 382 383 384 385

86

}


1 2 3 4

class FlowRZong extends VZong { int[] drumpads = { 35, 44, 46, 47, 48, 42 };

5

int int int int

6 7 8 9

quantization; basepitch = 60;//2; pitch = 60; position;

10

FlowRZong() {//first in oct2009, recoded jun 2010 // now oct2014 lyrics = new String[1024][16]; name = "FlowRZong!"; makeSong(); //vplayer.println("song "+name+" loaded!"); } void makeSong() { beatMap = new BeatMap(); drumstrack = new promidi.Track("drums", drumsout); basstrack = new promidi.Track("bass", bassout); guitartrack = new promidi.Track("guitar", guitarout);

11 12 13 14 15 16 17 18 19 20 21 22

drumstrack.setQuantization(Q._1_16); basstrack.setQuantization(Q._1_16); guitartrack.setQuantization(Q._1_16);

23 24 25 26

// //

27 28

bassout.sendProgramChange(new ProgramChange(82)); guitarout.sendProgramChange(new ProgramChange(69));

29

drumsout.sendController(new Controller(0, 1)); drumsout.sendProgramChange(new ProgramChange(3)); guitarout.sendProgramChange(new ProgramChange(106));//62));

30 31 32 33

//score.empty(); quantization = 16; position = 0; int tempo = 130;

34 35 36 37 38

for (int i=0;i<128;i++) { makePattern(i); //position+=quantization; }

39 40 41 42 43

song = new Song(name, tempo); song.addTrack(drumstrack); song.addTrack(basstrack); song.addTrack(guitartrack);

44 45 46 47 48

sequencer.setSong(song); sequencer.setLoopStartPoint(0); sequencer.setLoopEndPoint(512*(bars+4)); sequencer.setLoopCount(-1); sequencer.noLoop(); //score.tempo(130); //score.addCallbackListener(p);

49 50 51 52 53 54 55

} void makePattern(int bar) { for (int i=0; i<16; i++) { int auxposition = position+i;//)/4; if (i%4== 0) { addDrum(auxposition, 36, 120); addDrum(auxposition+2, 36, 100); addHighNote(auxposition+i); } else if (i%8==6) {//%4==3//%8==6 addDrum(auxposition, 38, 120); addHighNote(auxposition);//+i); } else if (random(1)<.8) { addDrum(auxposition, drumpads[(int)random(drumpads.length)], (int)random(80)+40); addHighNote(auxposition);//+i); } else if (random(1)<.9) { addDrum(auxposition, drumpads[(int)random(drumpads.length)]-24, (int)random(80)+40); } } position+=16; bars++; } void addDrum(int i, int pad, int vol) { drumstrack.addEvent(new Note(pad, vol, 80), i); drumstrack.addEvent(new Note(pad, 0, 0), i+1); dobeat(i, pad); } void addHighNote(int i) { pitch = (int)score.pcRandomWalk(36+12, 12, score.MINOR_PENTATONIC);//INDIAN);

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

basstrack.addEvent(new Note(pitch, int(90+random(20)), 1), i); basstrack.addEvent(new Note(pitch, 0, 0), i+1);

88 89 90

basstrack.addEvent(new Note(pitch, int(2*15+40+random(40)), 1), i+2); basstrack.addEvent(new Note(pitch, 0, 0), i+2);

91 92 93

guitartrack.addEvent(new Note(pitch+12*2, int(30+random(20)), 2), i); guitartrack.addEvent(new Note(pitch+12*2, 0, 0), i+2);

94 95

}

96 97

}

98 99 100 101 102 103 104 105

87


1 2 3 4 5

class BeatMap { Boolean[] kicklist, snarelist, hatlist, rimlist; Boxy kick, snare, hat; Texty rim; int cpos;

6

BeatMap() { kicklist snarelist hatlist rimlist

7 8 9 10 11

= = = =

new new new new

Boolean[1024*16]; Boolean[1024*16]; Boolean[1024*16]; Boolean[1024*16];

12

kick snare hat rim

13 14 15 16

= = = =

new new new new

Boxy(-50, 0, 0, 100, color(0, 256, 256)); Boxy(50, 0, 0, 100, color(128, 256, 256)); Boxy(0, 0, 0, 100, color(64, 256, 256)); Texty(0, 0, 0, 100, color(0, 0, 255));

17

for (int i=0; i<kicklist.length; i++) { kicklist[i]=false; snarelist[i]=false; hatlist[i]=false; rimlist[i]=false; } cpos = -1;

18 19 20 21 22 23 24

} void addKick(int pos) { kicklist[pos] = true; } void addSnare(int pos) { snarelist[pos] = true; } void addHat(int pos) { hatlist[pos] = true; } void addRim(int pos) { rimlist[pos] = true; } void update(int pos) { kick.update(); snare.update(); hat.update(); rim.update();

25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43

if (pos>=0 && cpos!= pos) { arduinoManager.doPote(); if (kicklist[pos]) { kick.beat(); arduinoManager.doKick(); } else { arduinoManager.muteKick(); } if (snarelist[pos]) { snare.beat(); arduinoManager.doSnare(); } else { arduinoManager.muteSnare(); } if (hatlist[pos]) { hat.beat(); arduinoManager.doHat(); } else { arduinoManager.muteHat(); } if (rimlist[pos])rim.beat(); cpos = pos; }

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

} void draw(PGraphics pg) { kick.draw(pg); snare.draw(pg); hat.draw(pg); rim.draw(cpos, pg); } void drawrim(PGraphics pg) { rim.draw(cpos, pg); }

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

88

class Boxy { int x, y, z; float maxside, minside, currentside; color kolor; Boxy() { } Boxy(int x, int y, int z, float maxside, color kolor) { this.x = x; this.y = y; this.z = z; this.maxside = maxside; this.kolor = kolor; minside = 0;//maxside/10; currentside = minside; } void draw(PGraphics pg) { /**/ float alfa = map(currentside, minside, maxside, 0, 96); //z = int(currentside-minside); pg.noSmooth(); pg.pushMatrix(); pg.translate(x, y, z); pg.noStroke(); pg.fill(kolor, alfa); pg.box(currentside); pg.fill(kolor, alfa*.5); pg.box(currentside*.6); pg.popMatrix();/**/


//update(); } void update() { currentside*=0.6; if (currentside<minside)currentside=minside; } void beat() { currentside = maxside; }

111 112 113 114 115 116 117 118 119 120 121 122

} class Texty extends Boxy { PFont font;

123

Texty(int x, int y, int z, float maxside, color kolor) { this.x = x; this.y = y; this.z = z; this.maxside = maxside; this.kolor = kolor; minside = 0;//maxside/10; currentside = minside; font = loadFont("CoyarzunAtarinormal-100.vlw"); } void draw(int pos, PGraphics pg) { /**/ float alfa = map(currentside, minside, maxside, 0, 96); //z = int(currentside-minside); pg.noSmooth(); pg.pushMatrix(); pg.translate(x, y, z); pg.noStroke(); pg.fill(kolor, alfa); pg.textFont(font, currentside); String t = nf( 3-(pos%16)/4, 1); pg.text(t, -currentside/2, currentside/2);//-128*fs, -128*fs); pg.popMatrix(); } void beat() { currentside = maxside; }

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

89


1 2 3

class Tmp extends VScreen { color bgcolor; PFont font;

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

Tmp(int _x, int _y, int _width, int _height, color bg) { x = _x; y = _y; width = _width; height = _height; bgcolor = bg; font = loadFont("CoyarzunAtarinormal-8.vlw"); } void draw(PGraphics pg) { pg.beginDraw(); pg.colorMode(HSB); pg.background(bgcolor);//0,0); pg.translate(pg.width/2, pg.height/2); if (stageManager.daSong.sequencer.isRunning()) { //int pos = stageManager.bar*stageManager.daSong.quantization + stageManager.daSong.frame; ////stageManager.daSong.beatMap.update(pos); pg.pushMatrix(); pg.scale(4); stageManager.daSong.beatMap.draw(pg); pg.popMatrix(); if (vl>0) { tw = pg.width/vl; pg.fill(0, 0, lyricop, lyricop); pg.textFont(font, tw); pg.text(vislyric, -pg.width/2, tw/2);

30

lyricop*=lyricd; if (lyricop>255 && lyricd>1) { lyricd = .97; }

31 32 33 34

} } pg.endDraw();

35 36 37 38 39 40 41 42 43 44

} } class VElAparecido extends VScreen { color bgcolor; PFont font; Wipala wipala; Muybridge zqnce;

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

VElAparecido(int _x, int _y, int _width, int _height, color bg) { x = _x; y = _y; width = _width; height = _height; bgcolor = bg; font = loadFont("CoyarzunAtarinormal-8.vlw"); wipala = new Wipala(_width, _height); zqnce = new Muybridge(_width, _height); } void draw(PGraphics pg) { pg.beginDraw(); pg.colorMode(RGB); pg.background(bgcolor);//0,0); //pg.translate(pg.width/2,pg.height/2); if (stageManager.daSong.sequencer.isRunning()) { //int pos = stageManager.bar*stageManager.daSong.quantization + stageManager.daSong.frame; ////stageManager.daSong.beatMap.update(pos); pg.pushMatrix(); //pg.scale(4); //stageManager.daSong.beatMap.draw(pg); wipala.draw(pg); zqnce.draw(pg); pg.popMatrix(); if (vl>0) { tw = pg.width/vl; pg.fill(0, 0, lyricop, lyricop); //pg.textFont(font, tw); //pg.text(vislyric,-pg.width/2,tw/2);

75 76 77 78 79 80 81 82 83 84 85 86 87 88

lyricop*=lyricd; if (lyricop>255 && lyricd>1) { lyricd = .97; } } } pg.endDraw(); } } class Muybridge { int cols, rows; float cell; PImage[] zqnce;

89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110

90

Muybridge(int w, int h) { update(w, h, 4); zqnce = new PImage[11]; for (int i=0; i<zqnce.length; i++) { zqnce[i] = loadImage("visuals/elAparecido/horseInMotion_"+nf(i, 3)+".png"); } } void update(int w, int h, int f) { cols = w/f; rows = h/f; cell = w/float(cols); } boolean gimmeCondition(int i, int j, boolean xc) { PImage tmp = zqnce[int(frameCount*0.2)%zqnce.length]; int ii = int(map(i, 0, cols, 0, tmp.width)); int jj = int(map(xc?j:i, 0, rows, 0, tmp.height)); color pixel = tmp.get(ii, jj); return brightness(pixel)<255; } void draw(PGraphics pg) { //background(colors[frameCount%colors.length]);


pg.noStroke(); boolean xc = random(100)>20; for (int i=0; i<cols; i++) { for (int j=0; j<rows; j++) {//frameCount pg.fill(0, gimmeCondition(i, j, xc)?255:0); pg.rect(i*cell, j*cell, cell, cell); //println(i*cell); } }

111 112 113 114 115 116 117 118 119 120 121 122 123 124 125

} } class Wipala { color[] colors; int cols, rows; float cell;

126

Wipala(int w, int h) { //size(1280, 720,P3D); //size(400, 300,P3D); int f = 32; cols = w/f; rows = h/f; cell = w/float(cols); println(cols); colors = new color[7]; colorMode(RGB); colors[0] = color(255, 255, 255); colors[1] = color(255, 255, 0); colors[2] = color(255, 128, 0); colors[3] = color(255, 0, 0); colors[4] = color(255, 0, 255); colors[5] = color(0, 0, 255); colors[6] = color(0, 255, 0); colorMode(HSB); } void draw(PGraphics pg) { //background(colors[frameCount%colors.length]); pg.noStroke(); boolean xc = random(100)>20; for (int i=0; i<cols; i++) { for (int j=0; j<rows; j++) {//frameCount pg.fill(colors[(i+(xc?j:i)+frameCount)%colors.length]); pg.rect(i*cell, j*cell, cell, cell); //println(i*cell); } } }

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

class VFeatures extends VScreen { VApokalipticLandscape landscape; color bgcolor; PFont font;

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

VFeatures(int _x, int _y, int _width, int _height, color bg) { x = _x; y = _y; width = _width; height = _height; bgcolor = bg; font = loadFont("CoyarzunAtarinormal-100.vlw"); landscape = new VApokalipticLandscape(); } void draw(PGraphics pg) { pg.beginDraw(); pg.colorMode(HSB); pg.background(0);//bgcolor);//0,0); pg.translate(pg.width/2, pg.height/2); //println(stageManager.daSong.sequencer.isRunning()); if (stageManager.daSong.sequencer.isRunning()) { //int pos = stageManager.bar*stageManager.daSong.quantization + stageManager.daSong.frame; ////stageManager.daSong.beatMap.update(pos); /*if(stageManager.bar<2){ pg.pushMatrix(); pg.scale(4); stageManager.daSong.beatMap.draw(pg); pg.popMatrix(); } else{*/ landscape.draw(pg); //} } pg.endDraw(); } } class VApokalipticLandscape { ArrayList halloes; Walker[] walkers; Fog[] fog; Grid grid; color bgcolor; float windx, windy, windz; Water water; int width = 512;

205 206 207 208

VApokalipticLandscape() { // size(720,384,P3D);

209 210 211 212 213 214 215 216 217 218 219 220

bgcolor = color(106, 80, 204); water = new Water(); walkers = new Walker[100]; for (int i=0; i<walkers.length; i++) { walkers[i] = new Walker(random(-width, width), 0, random(-width, width)); } fog = new Fog[1000]; for (int i=0; i<fog.length; i++) { fog[i] = new Fog(); } halloes = new ArrayList();

91


221 222 223 224 225

grid = new Grid(); } void draw(PGraphics pg) { pg.colorMode(HSB); pg.background(bgcolor);

226 227 228 229 230

pg.rotateX(PI/2+radians(30)+radians(frameCount)*0.1); pg.translate(0, -100, 0); pg.rotateY(PI); pg.rectMode(CENTER);

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

windx = 0.2; windy = -0.1; windz = -0.2; for (int i=0; i<fog.length; i++) { fog[i].update(); fog[i].draw(pg); } for (int i=0; i<walkers.length; i++) { walkers[i].update(); walkers[i].draw(pg); } for (int i=0; i<halloes.size(); i++) { Hallo tmp = (Hallo)halloes.get(i); tmp.update(); tmp.draw(pg); if (tmp.life<0)halloes.remove(i); } //grid.update(); grid.draw(pg); water.update(); water.draw(pg); } class Water { float depth, z;

256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279

Water() { z = 0; } void update() { depth = abs(z+stageManager.daSong.beatMap.kick.currentside); } void draw(PGraphics pg) { pg.colorMode(HSB); pg.pushMatrix(); pg.translate(0, z+depth/2, 0); pg.noStroke(); //if(random(100)>90)fill(0,255,255,128); //else //fill(bgcolor,200); pg.fill(240, 255, 255, 16); pg.box(4*width, depth, 4*width); pg.popMatrix(); } } class Grid { int rows, cols; float cellw, cellh; float gridlevel;

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

Grid() { rows = cols = 32; cellw = 5*width/rows; cellh = 5*height/cols; } void update() { gridlevel = -100;//water.z; } void draw(PGraphics pg) { pg.pushMatrix(); pg.rotateY(radians(frameCount)*.02); pg.translate(-float(rows)*cellw/2.0, gridlevel, -float(cols)*cellh/2.0); for (int i=0; i<rows; i++) { for (int j=0; j<cols; j++) { pg.pushMatrix(); pg.translate(i*cellw, 0, j*cellh); if (j%2==0) pg.translate(cellw/2.0, 0, 0); pg.noStroke(); pg.fill(random(2)>0?bgcolor:color(0, 25, 255), 64); pg.stroke(240, 255, 255); //box(4); pg.rotateY(PI/4); //rotateX(PI/4); pg.scale(1+stageManager.daSong.beatMap.snare.currentside/2); pg.box(2); pg.popMatrix(); } } pg.popMatrix(); } } class Hallo { float x, z; float size; int life, maxlife;

316 317 318 319 320 321 322 323 324 325 326 327 328 329 330

92

Hallo(float _x, float _z, int _maxlife) { x = _x; z = _z; life = 30; size = 24; maxlife = _maxlife; } void update() { life--; size*=1.01; } void draw(PGraphics pg) { pg.pushMatrix(); pg.translate(x, 0, z);


pg.scale(1+stageManager.daSong.beatMap.hat.currentside/20); pg.rotateX(HALF_PI); pg.stroke(255, map(life, 0, maxlife, 0, 255)); pg.noFill(); pg.rect(0, 0, size, size); pg.scale(0.9); pg.rect(0, 0, size, size); pg.scale(0.5); pg.rect(0, 0, size, size); pg.popMatrix();

331 332 333 334 335 336 337 338 339 340

} } class Fog { float x, y, z; int fdiff; float angle;

341 342 343 344 345 346 347

Fog() { define(); } void define() { x = random(-width, width); y = -random(width); z = random(width); fdiff = int(random(12)); } void redefine() { define(); y=0; } void update() { x += windx; y += windy; z += windz; if (x<-width || x>width || y>0 || y<-width || z<-width || z>width) redefine(); } void draw(PGraphics pg) { pg.pushMatrix(); pg.translate(x, y, z); pg.rotateX(radians(frameCount+fdiff)); pg.rotateY(radians(frameCount+fdiff)); pg.stroke(hue(bgcolor), saturation(bgcolor), map(y, 0, -width, 204, 0)); pg.fill(bgcolor, map(y, 0, width, 255, 0)); pg.scale(1+stageManager.daSong.beatMap.hat.currentside/2); pg.box(4); pg.popMatrix(); }

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

} class Walker { float x, y, z; float xspeed, yspeed, zpeed; float ystep; float size; int fdiff; float wstep, wspeed; float wsin, oldwsin;

380 381 382 383 384 385 386 387 388 389 390

Walker(float _x, float _y, float _z) { x = _x; y = _y; z = _z; ystep = 32; zpeed = 1;//.25; size = 32;//random(20,30); fdiff = int(random(12)); wspeed = 4;//100;//4;//0.2; } void update() { wsin = sin(radians(wspeed*(frameCount+fdiff))); if ((wsin>=0 && oldwsin<=0)||(wsin<=0 && oldwsin>=0)) halloes.add(new Hallo(x, z, (int)map(wspeed, 1, 100, 100, 10))); wstep = -abs(ystep*wsin); z += zpeed; if (z>width)z-=2*width; oldwsin = wsin; } void draw(PGraphics pg) { pg.noStroke(); pg.fill(hue(bgcolor), saturation(bgcolor), map(z, -width, width, 204, 0));

391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413

pg.pushMatrix(); pg.translate(x, y, z); pg.pushMatrix(); pg.translate(0, wstep/2, 0); pg.scale(1+stageManager.daSong.beatMap.kick.currentside/20); pg.box(6, wstep, 6); pg.popMatrix(); pg.translate(0, -size/2, 0); pg.translate(0, wstep); pg.box(20, size, 10); pg.popMatrix();

414 415 416 417 418 419 420 421 422 423 424

}

425

}

426 427

}

428 429 430 431 432 433 434 435 436 437

class VFreshwidow extends VScreen { color bgcolor; float noiseScale1=.1;//01;//0.02;//.01;//0.02; float noiseScale2=.01; int w, h; float cell; float playerx, playery; float xpos, ypos; float friction = .24;

438 439 440

VFreshwidow(int _x, int _y, int _width, int _height, color bg) { x = _x;

93


441 442 443 444 445

y = _y; width = _width; height = _height; bgcolor = bg; font = loadFont("CoyarzunAtarinormal-100.vlw");

446 447 448 449 450 451 452 453

w = 24; h = 48; cell = width/w; playerx = 0; playery = 50; } void draw(PGraphics pg) {

454 455 456 457 458 459 460 461 462 463 464 465

pg.beginDraw(); pg.colorMode(HSB); pg.background(0);//bgcolor);//0,0); pg.translate(pg.width/2, pg.height/2); if (stageManager.daSong.sequencer.isRunning()) { int pos = stageManager.bar*16 + stageManager.daSong.frame; ////stageManager.daSong.beatMap.update(pos); //pg.pushMatrix(); //pg.scale(4); //stageManager.daSong.beatMap.draw(pg); //pg.popMatrix();

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

/*if(vl>0){ tw = pg.width/vl; pg.fill(0,0,lyricop,lyricop); pg.textFont(font, tw); pg.text(vislyric,-pg.width/2,tw/2); lyricop*=lyricd; if(lyricop>255 && lyricd>1){ lyricd = .97; } }*/ // if(stageManager.bar<4){ // pg.pushMatrix(); // pg.scale(4); // stageManager.daSong.beatMap.drawrim(pg); // pg.popMatrix(); // } // else{ doLandscape(pg); // } } pg.endDraw(); } void doLandscape(PGraphics pg) { //background(0); //noiseScale = log(1000*mouseX); //println(log(mouseX)); pg.noStroke(); pg.lights(); //pg.translate(width/2,height/2); pg.rotateX(-radians(2));

497 498 499 500

float val; float val1= stageManager.daSong.beatMap.kick.currentside; float val2 = -frameCount+stageManager.daSong.beatMap.snare.currentside;

501 502 503 504 505 506 507 508 509 510

float pnoiseVal = noise((val1+w/2)*noiseScale2, (val2+h/2+15)*noiseScale2); playery = cell*pow(.5+pnoiseVal, 12)/2+50; //println(playery); float dx = (playerx-xpos)*friction; float dy = (playery-ypos)*friction; xpos+=dx; ypos+=dy; pg.translate(xpos, ypos, 0); pg.translate(-w*cell/2, 0, -h*cell*.75);

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

for (int j=0; j<h; j++) { for (int i=0; i<w; i++) { float noiseVal; noiseVal = noise((val1+i)*noiseScale1, (val2+j)*noiseScale1); pg.pushMatrix(); pg.translate(i*cell, 0, j*cell); //if(i!=w/2){ pg.fill(((200+int(noiseVal*128))%256+frameCount)%256, 200, 255*stageManager.daSong.beatMap.hat.currentside/100); //if(random(1)>.9) pg.box(cell*.8, cell*pow(.5+noiseVal, 12), cell*.8); /*}else{ noiseVal = noise((val1+i)*noiseScale2, (val2+j)*noiseScale2); pg.fill(int(noiseVal*128)%256,200,255); pg.box(cell*.8,cell*pow(.5+noiseVal,12),cell*.8); }*/ pg.popMatrix(); } } } } class VOkeyMickey extends VScreen { ArrayList keymi; color bgcolor; PFont font;

536 537 538 539 540 541 542 543

VOkeyMickey(int _x, int _y, int _width, int _height, color bg) { x = _x; y = _y; width = _width; height = _height; bgcolor = bg; font = loadFont("CoyarzunAtarinormal-100.vlw");

544 545 546 547 548 549 550

94

keymi = new ArrayList(); keymiRoutine(); } void keymiRoutine() { BlobWorld blobworld;


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 578 579 580 581 582 583 584 585 586 587 588 589 590 591

blobworld = new BlobWorld("visuals/okeymickeyclub/keymi_logo.xml"); for (int i=0; i<blobworld.blobs.length; i++) { //blobs[i].draw(); VShape tmp = new VShape(); for (int j=0; j<blobworld.blobs[i].points.length; j++) { tmp.addLine( blobworld.blobs[i].points[j].x, blobworld.blobs[i].points[j].y, blobworld.blobs[i].points[(j+1)%blobworld.blobs[i].points.length].x+random(-10, blobworld.blobs[i].points[(j+1)%blobworld.blobs[i].points.length].y+random(-10, ); } tmp.translate(-blobworld._width/2, -blobworld._height/2);//auxyoff); tmp.scale(1.5); tmp.setStrokeWeight(8); tmp.startRun(60, tmp.perimeter*.8); keymi.add(tmp); } blobworld = new BlobWorld("visuals/okeymickeyclub/kuernos_logo.xml"); for (int i=0; i<blobworld.blobs.length; i++) { //blobs[i].draw(); VShape tmp = new VShape(); for (int j=0; j<blobworld.blobs[i].points.length; j++) { tmp.addLine( blobworld.blobs[i].points[j].x, blobworld.blobs[i].points[j].y, blobworld.blobs[i].points[(j+1)%blobworld.blobs[i].points.length].x+random(-10, blobworld.blobs[i].points[(j+1)%blobworld.blobs[i].points.length].y+random(-10, ); } tmp.translate(-blobworld._width/2, -blobworld._height/2);//auxyoff); tmp.scale(1.5); tmp.setStrokeWeight(8); tmp.startRun(10, tmp.perimeter*.8); keymi.add(tmp); }

10), 10)

10), 10)

} void draw(PGraphics pg) { color bgcolor = color(0); pg.beginDraw(); pg.colorMode(HSB);

592 593

pg.translate(pg.width/2, pg.height/2);

594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612

if (stageManager.daSong.beatMap.snare.currentside>80) { screendiv=2; pg.scale(random(2, 4)); bgcolor = color(random(255), 255, 255); } else if (stageManager.daSong.beatMap.kick.currentside>80) { screendiv=4; pg.scale(random(4, 8)); bgcolor = color(random(0, 32), 255, 255); } else if (stageManager.daSong.beatMap.hat.currentside>80) { screendiv=8; pg.scale(random(8, 12)); bgcolor = color(random(85, 128), 255, 255); } else { screendiv=1; }

613 614

pg.background(bgcolor);//bgcolor);//0,0);

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

if (stageManager.daSong.sequencer.isRunning()) { int pos = stageManager.bar*16 + stageManager.daSong.frame; ////stageManager.daSong.beatMap.update(pos); pg.pushMatrix(); pg.scale(4); //stageManager.daSong.beatMap.draw(pg); pg.popMatrix(); if (vl>0) { lyricsRing(pg); } for (int i=0; i<keymi.size(); i++) { VShape tmp = (VShape)keymi.get(i); tmp.draw(pg); } } pg.endDraw(); } void lyricsRing(PGraphics pg) { float r = pg.width/4; String ts = vislyric; ts+=ts; float da = TWO_PI/(ts.length()+1); tw = (TWO_PI*r)/(2*vl+1); //0,0,lyricop,lyricop); pg.textFont(font, tw); for (int i=0; i<ts.length()-1; i++) { String tmp = ts.substring(i, i+1); pg.pushMatrix(); pg.rotateY(i*da-radians((frameCount*2)%360)); pg.translate(0, 40, r); pg.fill(random(255), 255, 255, lyricop); pg.text(tmp, -tw/2, tw/2); pg.popMatrix(); } /*

651 652

pg.text(vislyric,-pg.width/2,tw/2);*/

653 654 655 656 657 658 659 660

lyricop*=lyricd; if (lyricop>255 && lyricd>1) { lyricd = .99; } } } class VFlowR extends VScreen {

95


color bgcolor;

661 662

VFlowR(int _x, int _y, int _width, int _height, color bg) { x = _x; y = _y; width = _width; height = _height; bgcolor = bg; font = loadFont("CoyarzunAtarinormal-100.vlw"); } void draw(PGraphics pg) {

663 664 665 666 667 668 669 670 671 672

pg.beginDraw(); pg.colorMode(HSB); pg.background(0);//bgcolor);//0,0); pg.translate(pg.width/2, pg.height/2); if (stageManager.daSong.sequencer.isRunning()) { int pos = stageManager.bar*16 + stageManager.daSong.frame; ////stageManager.daSong.beatMap.update(pos); pg.pushMatrix(); pg.scale(4); stageManager.daSong.beatMap.draw(pg); pg.popMatrix(); if (vl>0) { tw = pg.width/vl; pg.fill(0, 0, lyricop, lyricop); //pg.textFont(font, tw); //pg.text(vislyric,-pg.width/2,tw/2); lyricop*=lyricd; if (lyricop>255 && lyricd>1) { lyricd = .97; } } } pg.endDraw();

673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700

} } class VSheLost extends VScreen { color bgcolor; PFont font;

701

VSheLost(int _x, int _y, int _width, int _height, color bg) { x = _x; y = _y; width = _width; height = _height; bgcolor = bg; font = loadFont("CoyarzunAtarinormal-100.vlw"); } void draw(PGraphics pg) {

702 703 704 705 706 707 708 709 710 711

pg.beginDraw(); pg.colorMode(HSB); pg.background(0);//bgcolor);//0,0); pg.translate(pg.width/2, pg.height/2); if (stageManager.daSong.sequencer.isRunning()) { int pos = stageManager.bar*16 + stageManager.daSong.frame; ////stageManager.daSong.beatMap.update(pos); pg.pushMatrix(); pg.scale(4); stageManager.daSong.beatMap.draw(pg); pg.popMatrix();

712 713 714 715 716 717 718 719 720 721 722 723 724 725

if (vl>0) { tw = pg.width/vl; pg.fill(0, 0, lyricop, lyricop); pg.textFont(font, tw); pg.text(vislyric, -pg.width/2, tw/2);

726 727 728 729 730 731

//tmp = vislyric.substring(0, 1); //vislyric = vislyric.substring(1, vl); //vislyric+=tmp;

732 733 734 735

lyricop*=lyricd; if (lyricop>255 && lyricd>1) { lyricd = .97; }

736 737 738 739

} } pg.endDraw();

740 741 742

}

743 744

}

745 746 747 748 749 750 751

class VSongzero extends VScreen { color bgcolor; PFont font; NewTunnel tunnel; Alebrije alebrije;

752 753 754 755 756 757 758 759 760 761 762 763

VSongzero(int _x, int _y, int _width, int _height, color bg) { x = _x; y = _y; width = _width; height = _height; bgcolor = bg; font = loadFont("CoyarzunAtarinormal-100.vlw"); tunnel = new NewTunnel(); alebrije = new Alebrije(0, 100, 0); } void draw(PGraphics pg) {

764 765 766 767 768 769 770

96

pg.beginDraw(); pg.colorMode(HSB); pg.background(16, 255, 255*stageManager.daSong.beatMap.kick.currentside/100);//,bgcolor);//0,0); pg.translate(pg.width/2, pg.height/2); if (stageManager.daSong.sequencer.isRunning()) { int pos = stageManager.bar*16 + stageManager.daSong.frame;


////stageManager.daSong.beatMap.update(pos);

771 772

if (stageManager.bar<4) { pg.pushMatrix(); pg.scale(4); stageManager.daSong.beatMap.draw(pg); pg.popMatrix(); } else { tunnel.draw(pg); } //println("vl:"+vl+" "+vislyric); if (vl>0) { tw = pg.width/vl; pg.fill(0, 0, lyricop, lyricop); pg.textFont(font, tw*10); pg.textMode(SCREEN);// //println("tw:"+tw+" vl:"+vl); pg.text(vislyric, -pg.width/2, tw/2+200);

773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790

tmp = vislyric.substring(0, 1); vislyric = vislyric.substring(1, vl); vislyric+=tmp;

791 792 793 794

lyricop*=lyricd; if (lyricop>255 && lyricd>1) { lyricd = .99; }

795 796 797 798

} } pg.endDraw();

799 800 801

}

802 803

}

804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819

class NewTunnel { float[] anglex, angley, anglez; float[] ratios; color[] colors; boolean[] areboxes; float[] boxes; boolean[] arerings; int cycle; int mars; float ringangle = 0; int cspeed = -2; Mono mono; Alebrije alebrije; float wwe = 0;

820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880

NewTunnel() { mars = 100; anglex = new float[mars]; angley = new float[mars]; anglez = new float[mars]; ratios = new float[mars]; colors = new color[mars]; areboxes = new boolean[mars]; boxes = new float[mars]; arerings = new boolean[mars]; float ax = 0; float ay = 0; float az = 0; float toax = 0; float toay = 0; float toaz = 0; float dax = 0; float dAy = 0; float daz = 0; int fixsteps = 100; for (int i=0; i<ratios.length; i++) { if (i%fixsteps==0) { toax = random(-PI/180, PI/180); toay = random(-PI/180, PI/180); toaz = random(-PI/180, PI/180); dax = (toax-ax)/fixsteps; dAy = (toay-ay)/fixsteps; daz = (toaz-az)/fixsteps; }; ax+=dax; ay+=dAy; az+=daz; anglex[i] = ax; angley[i] = ay; anglez[i] = az; ratios[i] = random(100, 120); colors[i] = color(16, 255, 255);//color(0,128,255);//color(int(random(255))); if (true) {//random(10)>8 areboxes[i] = true; boxes[i] = random(ratios[i])-ratios[i]*.5; } else { areboxes[i] = false; }; if (i%80==0) { arerings[i] = true; } else { arerings[i] = false; } }; cycle = 0; mono = new Mono(0, 0, 0); alebrije = new Alebrije(0, 0, 0); } void draw(PGraphics pg) { pg.pushMatrix(); pg.scale(map(stageManager.bar, 0, 132, .5, 10)); pg.pushStyle(); //pg.colorMode(RGB);

97


//translate(width*.5, height*.5+20, 300); //pg.background(16,255,255);//255,128,0); //lights();

881 882 883 884

pg.translate(0, 20, 300);//20,300);//width*.5, height*.5+20, 300); pg.rotate(wwe); wwe+=PI/60; pg.scale(1.5); pg.strokeWeight(1); pg.noStroke(); //noFill();

885 886 887 888 889 890 891 892

//float percent=max(0,(zpectral.myFFT.max-zpectral.minLimit)/zpectral.limitDiff); //pg.scale(1+percent/20);

893 894 895

for (int i=0; i<ratios.length; i++) { //println((i+cycle)%ratios.length); int j = abs((i+cycle)%ratios.length); float r = ratios[j]; float depthf = (1-float(i)/(ratios.length-1)); color k = blendColor(colors[j], color(8+int(16*depthf), 255, 255*depthf), BLEND);//int(205*depthf), int(51*depthf)), BLEND pg.stroke(16, 255, 255);//255,128,0); //noStroke(); pg.fill(k); //rectMode(CENTER); float ff = 1; //rect(0,0,r,r*ff); if (areboxes[j]) { pg.pushMatrix(); //translate(boxes[j], ratios[j]*.5*ff, 0); //translate(boxes[j], 0, 0);//ratios[j]*.5*ff pg.rotateZ(boxes[j]); pg.translate(0, ratios[j]*.5*ff, 0);

896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914

//stroke(255);

915 916

pg.scale(2.5, .1, 6); pg.box(10); pg.popMatrix();

917 918 919

};

920 921

if (arerings[j]) { int ringsteps = 6; for (int rk=0; rk<ringsteps; rk++) { pg.pushMatrix(); //translate(boxes[j], ratios[j]*.5*ff, 0); pg.rotateZ(rk*TWO_PI/ringsteps+ringangle); pg.translate(0, 100, 0); //scale(1,1,1); pg.box(20); float rr = 20+40*cos(ringangle); pg.translate(0, rr, 0); pg.scale(1, 40, 1); pg.box(2); pg.popMatrix(); }; }; if (i==20) { pg.pushMatrix(); pg.rotate(-wwe); pg.translate(0, 15, 0); pg.scale(0.6); if (stageManager.daSong.beatMap.snare.currentside<50)//bar%2==0) mono.draw(pg); else alebrije.draw(pg); pg.popMatrix(); } pg.translate(0, 0, -10); pg.rotateX(anglex[j]); pg.rotateY(angley[j]); pg.rotateZ(anglez[j]);

922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952

} ringangle+=PI/60; cycle+=cspeed; pg.popStyle(); pg.popMatrix();

953 954 955 956 957

}

958 959

}

960 961 962 963

class Mono { float x, y, z; float caminangulo;

964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990

98

Mono(float x, float y, float z) { this.x=x; this.y=y; this.z=z; } void draw(PGraphics pg) { //colorMode(RGB); pg.ambientLight(16, 255, 64);//128, 64, 0); pg.spotLight(16, 255, 128, 80, 20, 40, -1, 0, 0, PI/2, 2);//255, 128, 0, 80, 20, 40, -1, 0, 0, PI/2, 2); //directionalLight(51, 102, 126, 0, -1, 0); pg.pointLight(96/2, 255/2, 240, 0, -500, 1000);//255/2, 200/2, 30/2, 0, -500, 1000); //if(random(100)>70);pointLight(240+random(15), 0,0, 0, 0, 2000); pg.stroke(16, 255, 255);//255,128,0); float f = 9;//4; caminangulo = radians(90*sin(radians(f*frameCount%360))); float eleva = 40*sin(radians(f*frameCount%360)); fill(255); pg.pushMatrix(); //scale(0.25); pg.scale(.8); //rotateZ(radians(.5*frameCount%360)); pg.translate(0, -abs(eleva), 0); //torso pg.box(30, 40, 10); //right napier pg.pushMatrix();

);


pg.translate(10, 20, 0); pg.rotateX(caminangulo); pg.translate(0, 20, 0); pg.box(10, 40, 10); pg.popMatrix(); //left napier pg.pushMatrix(); pg.translate(-10, 20, 0); pg.rotateX(-caminangulo); pg.translate(0, 20, 0); pg.box(10, 40, 10); pg.popMatrix(); //middle leg pg.pushMatrix(); float erektangulo = radians(145);//+caminangulo*.2; float dotation = 20;//12;//20;//6;//15;//6;//15;//20; float contrapeso = dotation/5; float grip = 6;//3;//4;//6; pg.translate(0, 20, 5);

991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010

pg.pushMatrix(); pg.rotateX(erektangulo); //if(erektangulo<PI/2) pg.rotateX(map(erektangulo, radians(15), radians(145), 1, 0)*abs(caminangulo)); pg.translate(0, (dotation+contrapeso)/2-contrapeso, -grip/2); pg.box(grip, dotation+contrapeso, grip); pg.popMatrix();

1011 1012 1013 1014 1015 1016 1017 1018

pg.pushMatrix(); pg.translate(-2.5, 2.25, -2.5); pg.rotateX(caminangulo); pg.box(4.5); pg.popMatrix();

1019 1020 1021 1022 1023 1024

pg.pushMatrix(); pg.translate(2.5, 2.25, -2.5); pg.rotateX(-caminangulo); pg.box(4.5); pg.popMatrix(); pg.popMatrix(); //right arm pg.pushMatrix(); pg.translate(20, -20, 0); pg.rotateX(-caminangulo); pg.rotateZ(-caminangulo/2); pg.translate(0, 20, 0); pg.box(10, 40, 10); pg.popMatrix(); //left arm pg.pushMatrix(); pg.translate(-20, -20, 0); pg.rotateX(caminangulo); pg.rotateZ(-caminangulo/2); pg.translate(0, 20, 0); pg.box(10, 40, 10); pg.popMatrix(); //kabeza pg.pushMatrix(); pg.translate(0, -30, 0); pg.rotateY(caminangulo/4); pg.box(20); pg.translate(0, 0, 12); //pointLight(200, 0, 30, 5, -5, 0); pg.fill(255, 0, 0); pg.ellipse(5, -5, 5, 5); pg.ellipse(-5, -5, 5, 5); pg.popMatrix();

1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058

pg.popMatrix();

1059

}

1060 1061

}

1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075

class VAntarctic extends VScreen { color bgcolor; //PFont font;

1076 1077 1078 1079 1080 1081 1082

HollowEarth earth; Flag flag; Lnr lnr; AntarcticLogo antarcticLogo; Antarctic antarctic; WOklr woklr;

1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098

VAntarctic(int _x, int _y, int _width, int _height, color bg) { x = _x; y = _y; width = _width; height = _height; bgcolor = bg; font = loadFont("CoyarzunAtarinormal-100.vlw"); earth = new HollowEarth("visuals/antarctic/blobworld.xml"); antarctic = new Antarctic(); antarcticLogo = new AntarcticLogo(); flag = new Flag(); lnr = new Lnr(); woklr = new WOklr(); } void draw(PGraphics pg) {

1099 1100

pg.beginDraw();

99


pg.colorMode(HSB); pg.background(bgcolor);//0,0); pg.translate(pg.width/2, pg.height/2); if (stageManager.daSong.sequencer.isRunning()) { int pos = stageManager.bar*16 + stageManager.daSong.frame; int bar = stageManager.bar; ////stageManager.daSong.beatMap.update(pos);

1101 1102 1103 1104 1105 1106 1107 1108

if (bar<4) { pg.pushMatrix(); pg.scale(4); stageManager.daSong.beatMap.draw(pg); pg.popMatrix(); } else if (bar<20) { mode00(pg); } else if (bar<28) { mode01(pg); } else if (bar<44) { mode02(pg); } else if (bar<52) { mode03(pg); } else if (bar<68) { mode04(pg); } else if (bar<76) { mode01(pg); } else if (bar<92) { mode02(pg); } else if (bar<100) { mode03(pg); } else { mode05(pg); }

1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141

} pg.endDraw(); } void mode00(PGraphics pg) { flag.draw(pg); if (stageManager.daSong.beatMap.kick.currentside>30)lnr.draw(pg); if (stageManager.daSong.beatMap.snare.currentside>80)antarcticLogo.draw(pg); } void mode01(PGraphics pg) { if (stageManager.daSong.beatMap.kick.currentside>30) { lnr.draw(pg); } else { flag.draw(pg); } if (stageManager.daSong.beatMap.snare.currentside>80)antarcticLogo.draw(pg); } void mode02(PGraphics pg) { if (stageManager.daSong.beatMap.kick.currentside>30) { antarctic.draw(pg); woklr.draw(pg); } else { flag.draw(pg); if (stageManager.daSong.beatMap.hat.currentside>30)lnr.draw(pg); } } void mode03(PGraphics pg) {

1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170

if (stageManager.daSong.beatMap.snare.currentside>80) { antarcticLogo.draw(pg); } else if (stageManager.daSong.beatMap.kick.currentside>30) { flag.draw(pg); lnr.draw(pg); }

1171 1172 1173 1174 1175 1176 1177

} void mode04(PGraphics pg) { pg.pushMatrix(); pg.scale(2*stageManager.daSong.beatMap.kick.currentside/100);

1178 1179 1180 1181 1182

if (stageManager.daSong.beatMap.snare.currentside>80) { antarcticLogo.draw(pg); } else if (stageManager.daSong.beatMap.kick.currentside>30) { earth.draw(pg); } else { antarctic.draw(pg); } pg.popMatrix();

1183 1184 1185 1186 1187 1188 1189 1190 1191 1192

} void mode05(PGraphics pg) { pg.pushMatrix(); pg.scale(.5+2.5*stageManager.daSong.beatMap.kick.currentside/100); earth.draw(pg); if (stageManager.daSong.beatMap.snare.currentside>80) { antarcticLogo.draw(pg); } pg.popMatrix(); }

1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203

}

1204 1205 1206

class HollowEarth { BlobWorld blobworld;

1207 1208 1209 1210

100

HollowEarth(String url) { blobworld = new BlobWorld(url);//"blobworld.xml"); }


1211

void draw(PGraphics pg) { //background(0); //translate(width/2,height/2); pg.pushMatrix(); pg.scale(2.5); pg.rotateZ(radians(30)); pg.rotateY(radians(-frameCount%360)); for (int i=0; i<255; i+=8) { pg.stroke((255-i+16*frameCount)%256, 255, 255, 255-i); pg.scale(1.01); blobworld.draw(pg); } pg.popMatrix(); }

1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226

}

1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244

class VSunlight extends VScreen { color bgcolor; float noiseScale=0.3;//0.3;//0.1;//.005;//.01;//0.02;//.01;//0.02; float w, h; float cellw, cellh; float val1, val2;

1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262

VSunlight(int _x, int _y, int _width, int _height, color bg) { x = _x; y = _y; width = _width; height = _height; bgcolor = bg; font = loadFont("CoyarzunAtarinormal-100.vlw"); w = 40;//(1+4*stageManager.daSong.frame%16);//64;//width/10; h = 30;//(1+4*stageManager.daSong.frame%16);//48;//height/10; cellw = 800/w;//width/w; cellh = 600/h;//height/h; } void draw(PGraphics pg) { pg.beginDraw(); pg.colorMode(HSB); pg.background(0);//0,0); pg.translate(pg.width/2, pg.height/2);

1263 1264 1265 1266

if (stageManager.daSong.sequencer.isRunning()) { int pos = stageManager.bar*16 + stageManager.daSong.frame; ////stageManager.daSong.beatMap.update(pos);

1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289

if (stageManager.bar<1) { pg.pushMatrix(); pg.scale(4); stageManager.daSong.beatMap.draw(pg); pg.popMatrix(); } else { likuid(pg); } } pg.endDraw(); } void likuid(PGraphics pg) { pg.rectMode(CENTER); pg.pushMatrix(); pg.noStroke(); pg.scale(stageManager.daSong.beatMap.kick.currentside>80 ? 2 : 1); pg.translate(cellw/2, cellh/2); for (int i=0; i<w/2; i++) { for (int j=0; j<h/2; j++) { int m = int((i+j*w)%w); float spc = 0;//2*zpectral.myFFT.spectrum[m];//*PI;

1290 1291 1292

val1 += stageManager.daSong.beatMap.kick.currentside/100;//-frameCount*.2;//.2;//random(width);//w/2*(1+sin(radians(frameCount%360)));//frameCount; val2 += stageManager.daSong.beatMap.snare.currentside/100;//h/2*(1+sin(radians(frameCount%360)));

1293 1294 1295 1296 1297 1298 1299 1300

float noiseVal1, noiseVal2, noiseVal3; noiseVal1 = noise((val1+i)*noiseScale, (val2+j)*noiseScale); noiseVal2 = noise((val1+j)*noiseScale, (val2+i)*noiseScale); noiseVal3 = noise((val2+i)*noiseScale, (val1+i)*noiseScale); int n = int((noiseVal1+noiseVal2+noiseVal3)*256); n%=256; color k = color (map(n, 0, 255, 196, 240), 255, 255, 256-stageManager.daSong.beatMap.kick.currentside*2.56);//*noiseVal2);//,255,255

1301 1302 1303 1304 1305

boolean boolean boolean boolean

cond1 cond2 cond3 cond4

= = = =

stageManager.daSong.frame%2==0; (i-frameCount)%(stageManager.bar+1)==0 || (j-frameCount/2)%(stageManager.daSong.frame+1)==0; cond1 && !cond2; !cond1 && cond2;

1306 1307 1308 1309 1310 1311 1312

if (cond3 || cond4) { pg.pushMatrix(); pg.translate(i*cellw, j*cellh); pg.scale(1+spc); dddot(k, pg); pg.popMatrix();

1313 1314 1315 1316 1317 1318

pg.pushMatrix(); pg.translate((-i-1)*cellw, j*cellh);//(w-1-i)*cellw,j*cellh); pg.scale(1+spc); dddot(k, pg); pg.popMatrix();

1319 1320

pg.pushMatrix();

101


pg.translate(i*cellw, (-1-j)*cellh);//(h-1-j)*cellh); pg.scale(1+spc); dddot(k, pg); pg.popMatrix(); pg.pushMatrix(); pg.translate((-1-i)*cellw, (-1-j)*cellh);//(w-1-i)*cellw,(h-1-j)*cellh); pg.scale(1+spc); dddot(k, pg); pg.popMatrix();

1321 1322 1323 1324 1325 1326 1327 1328 1329

} } } //filter(POSTERIZE, 4); pg.popMatrix(); pg.endDraw();

1330 1331 1332 1333 1334 1335

} void dddot(color k, PGraphics pg) { pg.fill(k); pg.scale(.8); ddot(pg); pg.fill(0); pg.scale(.6); ddot(pg); pg.fill(k); pg.scale(.6); ddot(pg); } void ddot(PGraphics pg) { pg.rect(0, 0, cellw, cellh); }

1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351

}

1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367

class VAhardplace extends VScreen { color bgcolor; PFont font; GuemboiV guemboi; GFlag gflag;

1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379

VAhardplace(int _x, int _y, int _width, int _height, color bg) { x = _x; y = _y; width = _width; height = _height; bgcolor = bg; font = loadFont("CoyarzunAtarinormal-100.vlw"); guemboi = new GuemboiV();//("visuals/antarctic/blobworld.xml"); gflag = new GFlag(); } void draw(PGraphics pg) {

1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430

102

pg.beginDraw(); pg.colorMode(HSB); pg.background(bgcolor);//0,0); pg.translate(pg.width/2, pg.height/2); if (stageManager.daSong.sequencer.isRunning()) { int pos = stageManager.bar*16 + stageManager.daSong.frame; ////stageManager.daSong.beatMap.update(pos); int bar = stageManager.bar; if (bar<4) { pg.pushMatrix(); pg.scale(4); stageManager.daSong.beatMap.draw(pg); pg.popMatrix(); } else if (bar<20) { if (random(10)>2) mode00(pg); else mode01(pg); } else if (bar<36) { if (random(10)<2) mode00(pg); else mode01(pg); } else if (bar<44) { if (random(10)>2) mode00(pg); else mode01(pg); } else if (bar<60) { if (random(10)<2) mode00(pg); else mode01(pg); } else if (bar<68) { if (random(10)<5) mode00(pg); else mode01(pg); } else if (bar<76) { if (random(10)>2) mode00(pg); else mode01(pg); }


else if (bar<92) { if (random(10)<2) mode00(pg); else mode01(pg); } else if (bar<100) { if (random(1)>.8) { if (random(10)>2) { mode00(pg); } else { if (stageManager.daSong.frame%2==0) pg.background(gflag.colors[stageManager.daSong.frame%gflag.colors.length]); mode01(pg); } } else { pg.background(gflag.colors[stageManager.daSong.frame%gflag.colors.length]); } } else if (bar<117) { if (random(10)>5) { mode00(pg); } else { pg.background(gflag.colors[stageManager.daSong.frame%gflag.colors.length]); mode01(pg); } } else { pg.background(gflag.colors[stageManager.daSong.frame%gflag.colors.length]); mode01(pg); }

1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464

} pg.endDraw(); } void mode00(PGraphics pg) { gflag.draw(pg); } void mode01(PGraphics pg) { guemboi.draw(pg); }

1465 1466 1467 1468 1469 1470 1471 1472 1473 1474

}

1475 1476 1477 1478 1479 1480 1481 1482 1483 1484

class VAnemic extends VScreen { color bgcolor; //PFont font; Anemiko anemic; TScreen tscreen;

1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500

VAnemic(int _x, int _y, int _width, int _height, color bg) { x = _x; y = _y; width = _width; height = _height; bgcolor = bg; font = loadFont("CoyarzunAtarinormal-100.vlw"); color[] tmp = new color[3]; tmp[0] = color(0, 255, 255); tmp[1] = color(0); tmp[2] = color(255); anemic = new Anemiko(tmp);// tscreen = new TScreen(tmp); } void draw(PGraphics pg) {

1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540

pg.beginDraw(); pg.colorMode(HSB); pg.background(bgcolor);//0,0); pg.translate(pg.width/2, pg.height/2); if (stageManager.daSong.sequencer.isRunning()) { int pos = stageManager.bar*16 + stageManager.daSong.frame; ////stageManager.daSong.beatMap.update(pos); int bar = stageManager.bar; if (bar<2) { pg.pushMatrix(); pg.scale(4); stageManager.daSong.beatMap.draw(pg); pg.popMatrix(); } else if (bar<12) { if (random(1)>.5) mode00(pg); else mode01(pg); } else if (bar<20) { if (random(1)>.5) mode01(pg); else mode00(pg); } else if (bar<28) { if (random(1)>.1) mode00(pg); else mode01(pg); } else if (bar<36) { if (random(1)>.1) mode01(pg); else mode00(pg); } else if (bar<44) {

103


if (random(1)>.2) mode00(pg); else mode01(pg);

1541 1542 1543 1544

} else if (bar<52) { if (random(1)>.2) mode01(pg); else mode00(pg); } else if (bar<64) { if (random(1)>.4) mode00(pg); else mode01(pg); } else if (bar<70) { if (random(1)>.4) mode01(pg); else mode00(pg); } else { if (random(1)>.5) mode00(pg); else mode01(pg); }

1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569

} pg.endDraw(); } void mode00(PGraphics pg) { anemic.draw(pg); } void mode01(PGraphics pg) { tscreen.setCell(8*(1+stageManager.bar%4)); tscreen.setText(vislyric); tscreen.draw(pg); }

1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581

}

1582 1583 1584 1585 1586 1587 1588 1589

class VSilverstein extends VScreen { color bgcolor; PFont font; Anemiko anemic; TScreen tscreen; SapoLivingstone sapo;

1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606

VSilverstein(int _x, int _y, int _width, int _height, color bg) { x = _x; y = _y; width = _width; height = _height; bgcolor = bg; font = loadFont("CoyarzunAtarinormal-100.vlw"); color[] tmp = new color[7]; tmp[0] = color(0);//0,0,0); tmp[1] = color( map(194, 0, 360, 0, 255), map(48, 0, 100, 0, 255), map(99, 0, 100, 0, 255) );//color(0x81E0FF);//129, 224,255); tmp[2] = color(map(330, 0, 360, 0, 255), map(85, 0, 100, 0, 255), map(98, 0, 100, 0, 255) );//color(0xFD228C);//253, 34, 140); tmp[3] = color(map(206, 0, 360, 0, 255), map(54, 0, 100, 0, 255), map(86, 0, 100, 0, 255) );//color(0x64A6DE);//100, 166, 222); tmp[4] = color(map(358, 0, 360, 0, 255), map(99, 0, 100, 0, 255), map(95, 0, 100, 0, 255) );//color(0xF50001);//245, 0, 1); tmp[5] = color(map(140, 0, 360, 0, 255), map(27, 0, 100, 0, 255), map(78, 0, 100, 0, 255) );//color(0x92CBA6);//146, 203, 166); tmp[6] = color(map(321, 0, 360, 0, 255), map(6, 0, 100, 0, 255), map(99, 0, 100, 0, 255) );//color(0xFFEFF9);//255, 239, 249); anemic = new Anemiko(tmp);//

1607 1608 1609 1610 1611

tscreen = new TScreen(tmp); sapo = new SapoLivingstone(); } void draw(PGraphics pg) {

1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650

104

pg.beginDraw(); pg.colorMode(HSB); pg.background(bgcolor);//0,0); pg.translate(pg.width/2, pg.height/2); if (stageManager.daSong.sequencer.isRunning()) { int pos = stageManager.bar*16 + stageManager.daSong.frame; ////stageManager.daSong.beatMap.update(pos); int bar = stageManager.bar; if (bar<0) { pg.pushMatrix(); pg.scale(4); stageManager.daSong.beatMap.draw(pg); pg.popMatrix(); } else if (bar<20) { if (random(1)>.5) mode00(pg); else mode01(pg); } else if (bar<36) { if (random(1)>.5) mode01(pg); else mode00(pg); } else if (bar<44) { if (random(1)>.1) mode00(pg); else mode01(pg); } else if (bar<52) { if (random(1)>.1) mode01(pg); else mode00(pg); }


else if (bar<68) { if (random(1)>.2) mode00(pg); else mode01(pg); } else if (bar<84) { if (random(1)>.2) mode01(pg); else mode00(pg); } else if (bar<92) { if (random(1)>.4) mode00(pg); else mode01(pg); } else if (bar<94) { if (random(1)>.4) mode01(pg); else mode00(pg); } else { if (random(1)>.5) mode00(pg); else mode01(pg); } //sapo.draw(pg);

1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681

} pg.endDraw(); } void mode00(PGraphics pg) { anemic.draw(pg); } void mode01(PGraphics pg) { tscreen.setCell(8*(1+stageManager.bar%4)); tscreen.setText(vislyric); tscreen.draw(pg); }

1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693

}

1694 1695 1696 1697 1698 1699

class VPunkrocker extends VScreen { color bgcolor; PFont font; Emo emo;

1700

VPunkrocker(int _x, int _y, int _width, int _height, color bg) { x = _x; y = _y; width = _width; height = _height; bgcolor = bg; font = loadFont("CoyarzunAtarinormal-100.vlw"); emo = new Emo();//("visuals/antarctic/blobworld.xml"); } void draw(PGraphics pg) {

1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711

pg.beginDraw(); pg.colorMode(HSB); pg.background(bgcolor);//0,0); pg.translate(pg.width/2, pg.height/2); if (stageManager.daSong.sequencer.isRunning()) { int pos = stageManager.bar*16 + stageManager.daSong.frame; ////stageManager.daSong.beatMap.update(pos);

1712 1713 1714 1715 1716 1717 1718 1719

if (stageManager.bar<4) { pg.pushMatrix(); pg.scale(4); stageManager.daSong.beatMap.draw(pg); pg.popMatrix(); } else { emo.draw(pg); }

1720 1721 1722 1723 1724 1725 1726 1727 1728

} pg.endDraw();

1729 1730

}

1731 1732

}

1733 1734

class GuemboiV {

1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746

Slideclip Slideclip Slideclip Slideclip Slideclip Slideclip Slideclip Slideclip Slideclip Slideclip Slideclip

cosmos = new Slideclip("visuals/ahardplace/cosmos.png", 0, -960); cordillera = new Slideclip("visuals/ahardplace/cordillera.png", 0, -200*.64); edificiosatras = new Slideclip("visuals/ahardplace/edificiosatras.png", 0, -100*.64); edificios = new Slideclip("visuals/ahardplace/edificios.png", 0, -75*.64); arbolesatras = new Slideclip("visuals/ahardplace/arbolesatras.png", 0, -100*.64); postes = new Slideclip("visuals/ahardplace/postes.png", 0, 10*.64); panderetas = new Slideclip("visuals/ahardplace/panderetas.png", 0, 60*.64); arbolesfrente = new Slideclip("visuals/ahardplace/arbolesfrente.png", 0, -150*.64); primerplano = new Slideclip("visuals/ahardplace/primerplano.png", 0, -67*.64); rejas = new Slideclip("visuals/ahardplace/rejas.png", 0, -62*.64); groundx = new Slideclip("visuals/ahardplace/groundx.png", 0, 76*.64);

1747 1748 1749 1750

Slideclip[] planes_array = { cosmos, cordillera, edificiosatras, edificios, arbolesatras, postes, panderetas, arbolesfrente, primerplano, rejas, groundx };

1751 1752 1753 1754 1755 1756 1757 1758 1759 1760

float[] planes_faktor = { 1, .9, .6, .55, .36, .25, .18, .14, 0, -.5, -.5 }; float[] planes_skroll = { 0, 1024, 1024, 1024, 1024, 1024, 1024, 832, 722, 960, 1024 }; float[] planes_xx = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };

105


1761 1762

Slideclip pivote;

1763 1764 1765

float cam_xoff, cam_yoff, dcam_xoff, dcam_yoff, cam_friction; float xx, speed, dspeed, tospeed, maxspeed, speedfriction;

1766 1767

float direction, olddirection;

1768 1769 1770 1771

Pacos pacos; Encapuxaos encapuxaos; Molotovs molotovs;

1772 1773 1774 1775 1776 1777 1778

GuemboiV() { cam_xoff = 0; cam_yoff = 0; dcam_xoff = 0; dcam_yoff = 0; cam_friction = .2;

1779

xx = 0; speed = 0; dspeed = 0; tospeed = 10; maxspeed = 20; speedfriction = .12;

1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794

pacos = new Pacos(200, 5); encapuxaos = new Encapuxaos(-200, 5); molotovs = new Molotovs(); } void draw(PGraphics pg) { pg.pushMatrix(); //pg.scale(2); pg.translate(-pg.width/2, -pg.height/2);

1795

//pg.scale(.5); dcam_xoff = (0-cam_xoff)*cam_friction; dcam_yoff = (0-cam_yoff)*cam_friction; cam_xoff += dcam_xoff; cam_yoff += dcam_yoff;

1796 1797 1798 1799 1800 1801

//direction = -1;//int(-joypadA.xslider.getValue());

1802 1803

direction = -(pacos.x+encapuxaos.x)/200;

1804 1805

dspeed = (tospeed*direction-speed)*speedfriction; speed += dspeed;

1806 1807 1808

//player.direction = -direction; olddirection = direction; float zzka = 1+random(10); for (int i=0;i<planes_array.length;i++) {

1809 1810 1811 1812 1813

planes_array[i].x = cam_xoff*planes_faktor[i]; planes_array[i].y = cam_yoff*planes_faktor[i]; // float pfaktor = -(planes_faktor[i]-1); planes_xx[i] += speed*pfaktor; if (planes_xx[i]<-planes_skroll[i])planes_xx[i]+=planes_skroll[i]; if (planes_xx[i]>0)planes_xx[i]-=planes_skroll[i]; //planes_mcxx[i]._x = planes_xx[i]; planes_array[i].xtra_x = planes_xx[i]; if (i==8) { pacos.draw(pg); encapuxaos.draw(pg); molotovs.draw(pg); }; /*if(i==0){ planes_array[i].draw(pg); }else if(random(10)>8){*/ planes_array[i].draw(pg); if (i==10) { pg.fill(0);//64,255,255); pg.noStroke(); pg.rectMode(CORNER); pg.rect(0, 500, 800, 100); } //}

1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838

}

1839 1840

cosmos.rotation-=radians(20); pg.popMatrix();

1841 1842 1843

}

1844 1845 1846 1847 1848 1849 1850 1851 1852

class Slideclip { float x = 0; float xtra_x = 0; float y = 0; PImage img; String name; float xoff, yoff; float rotation = 0;

1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870

106

Slideclip(String $1, float $2, float $3) { img = loadImage($1); xoff = $2; yoff = $3; } void draw(PGraphics pg) { pg.pushMatrix(); pg.translate(400, 300); pg.rotateZ(rotation); pg.translate(xoff, yoff); pg.translate(-img.width*.5, -img.height*.5); pg.translate(x+xtra_x, y); pg.translate(0, img.height); pg.image(img, 0, 0); pg.image(img, img.width, 0); pg.popMatrix(); }


1871

}

1872 1873 1874 1875 1876 1877 1878 1879 1880

class Encapuxaos { ArrayList grupo; float xbase; float x, tox, dx, friction; int cuantos; int current; boolean attackFlag;

1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931

Encapuxaos(float xbase, int cuantos) { this.xbase = xbase; x = 0; tox = x; dx = 0; friction = .6;//.16; this.cuantos = cuantos; grupo = new ArrayList(); for (int i=0; i<cuantos; i++) { grupo.add(new Encapuxao(random(-100, 100))); } } void draw(PGraphics pg) { update(); pg.pushMatrix(); pg.translate(400, 300+84); pg.translate(xbase+x, 0); boolean areCurrent=false; for (int i=0; i<grupo.size(); i++) { Encapuxao tmp = (Encapuxao)grupo.get(i); if (tmp.isDead) { grupo.remove(i); } else { if (tmp.isCurrent) { areCurrent = true; } else { tmp.draw(pg); } } } if (!areCurrent)setCurrent(); Encapuxao upper = (Encapuxao)grupo.get(current); upper.draw(pg); pg.popMatrix(); } void setCurrent() { int ncurrent = current; while (ncurrent ==current) { ncurrent = (int)random(grupo.size()); } current = ncurrent; Encapuxao tmp = (Encapuxao)grupo.get(current); tmp.isCurrent = true; } void update() { dx = tox - x; if (abs(dx)<1)tox = random(-200, 0); x += dx*friction;

1932 1933 1934 1935 1936 1937 1938 1939 1940 1941

if (!attackFlag && random(100)>95) { attack(); } } void attack() { Encapuxao tmp = (Encapuxao)grupo.get(current); tmp.attack(); attackFlag = true; }

1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952

class Encapuxao { PImage[] skin; float x, tox, dx, friction; boolean isDead; int direction = 1; int olddirection = 1; int pdirection = 1; boolean isCurrent = false; boolean isAttacking = false; int attackframe;

1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975

Encapuxao(float x) { this.x = x; tox = x; dx = 0; friction = .96; skin = new PImage[3]; skin[0] = loadImage("visuals/ahardplace/encapuchao_nada.png"); skin[1] = loadImage("visuals/ahardplace/encapuchao.png"); skin[2] = loadImage("visuals/ahardplace/encapuchao_throw.png"); } void draw(PGraphics pg) { update(); pg.pushMatrix(); pg.translate(x, 0); pg.scale(.4); if ((olddirection==-1 && direction==0)||direction==-1) { pdirection=-1; } else if ((olddirection==1 && direction==0)||direction==1) { pdirection=1; } if (pdirection==-1)pg.rotateY(-PI);

1976 1977 1978 1979 1980

if (isCurrent) { pg.noTint(); pg.noStroke(); pg.fill(255);

107


pg.triangle(0, -170, -20, -200, 20, -200); pg.pushMatrix(); if (pdirection==-1)pg.rotateY(-PI); pg.text("P1", -32, -200); pg.popMatrix();

1981 1982 1983 1984 1985

} else { if (frameCount%3==0) { pg.tint(255, 0, 0); } else if (frameCount%3==1) { pg.tint(255); } else { pg.tint(0); } }

1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998

PImage cskin; if (isCurrent) { if (attackframe>20) { cskin = skin[1]; } else if (attackframe>10) { cskin = skin[2]; } else { cskin = skin[0]; } } else { cskin = skin[0]; } pg.translate(-cskin.width*.5, -cskin.height); pg.image(cskin, 0, 0); pg.popMatrix(); olddirection = direction; pg.noTint();

1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018

} void update() { if (!isAttacking) { if ((dx>=0 && x>=tox) || (dx<=0 && x<=tox)) { tox = random(-100, 100); if (tox>x) { dx=4; direction = 1; } else if (tox<x) { dx=-4; direction = -1; } else { dx=0; direction = 0; } } x += dx; } else { if (attackframe==20)molotovs.addMolotov(x); if (attackframe>6)x += dx; attackframe--; if (attackframe<=0)endAttack(); } } void attack() { isAttacking = true; direction = 1; dx = 8; attackframe = 40; } void endAttack() { isCurrent = false; isAttacking = false; direction = -1; tox = -100; attackframe = 0; attackFlag = false; }

2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059

}

2060 2061

}

2062 2063 2064 2065 2066 2067 2068 2069 2070 2071

class Pacos { ArrayList grupo; float xbase; float x, tox, dx, friction; int cuantos; int current; boolean attackFlag;

2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090

108

Pacos(float xbase, int cuantos) { this.xbase = xbase; x = 0; tox = x; dx = 0; friction = .6; this.cuantos = cuantos; grupo = new ArrayList(); for (int i=0; i<cuantos; i++) { grupo.add(new Paco(random(-100, 100))); } } void draw(PGraphics pg) { update(); pg.pushMatrix(); pg.translate(400, 300+84); pg.translate(xbase+x, 0); boolean areCurrent=false;


2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126

for (int i=0; i<grupo.size(); i++) { Paco tmp = (Paco)grupo.get(i); if (tmp.isDead) { grupo.remove(i); } else { if (tmp.isCurrent) { areCurrent = true; } else { tmp.draw(pg); } } } if (!areCurrent)setCurrent(); if (current>=grupo.size())current=grupo.size()-1; Paco upper = (Paco)grupo.get(current); upper.draw(pg); pg.popMatrix(); } void setCurrent() { int ncurrent = current; while (ncurrent ==current ) { ncurrent = (int)random(grupo.size()); } current = ncurrent; Paco tmp = (Paco)grupo.get(current); if (!tmp.isDead) tmp.isCurrent = true; else setCurrent(); } void update() { dx = tox - x; if (abs(dx)<1)tox = random(-50, 200); x += dx*friction;

2127 2128 2129 2130 2131 2132 2133 2134 2135 2136

if (!attackFlag && random(100)>95) { attack(); } } void attack() { Paco tmp = (Paco)grupo.get(current); tmp.attack(); attackFlag = true; }

2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150

class Paco { PImage[] skin; float x, tox, dx, friction; float y, toy, dy; boolean isDead; int direction = 1; int olddirection = 1; int pdirection = 1; boolean isCurrent = false; boolean isAttacking = false; int attackframe; boolean isGoneToHeaven; int life = 10;

2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173

Paco(float x) { this.x = x; tox = x; dx = 0; friction = .96; skin = new PImage[3]; skin[0] = loadImage("visuals/ahardplace/ffee.png"); skin[1] = loadImage("visuals/ahardplace/ffee_2.png"); skin[2] = loadImage("visuals/ahardplace/ffee.png"); } void draw(PGraphics pg) { update(); pg.pushMatrix(); pg.translate(x, 0); pg.scale(.4); if ((olddirection==-1 && direction==0)||direction==-1) { pdirection=-1; } else if ((olddirection==1 && direction==0)||direction==1) { pdirection=1; } if (pdirection==-1)pg.rotateY(-PI);

2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195

if (isCurrent) { pg.noTint(); pg.noStroke(); pg.fill(255); pg.triangle(0, -170, -20, -200, 20, -200); pg.pushMatrix(); if (pdirection==-1)pg.rotateY(-PI); pg.text("P2", -32, -200); pg.popMatrix(); } else { if (frameCount%3==0) { pg.tint(255, 0, 0); } else if (frameCount%3==1) { pg.tint(255); } else { pg.tint(0); } }

2196 2197 2198 2199 2200

PImage cskin; if (isCurrent) { if (attackframe>2) { if (frameCount%10<=5) {

109


cskin = skin[1]; } else { cskin = skin[0]; }

2201 2202 2203 2204 2205

} else { cskin = skin[0]; }

2206 2207 2208 2209

} else { cskin = skin[0]; } pg.translate(-cskin.width*.5, -cskin.height); pg.image(cskin, 0, 0); pg.popMatrix(); olddirection = direction; pg.noTint();

2210 2211 2212 2213 2214 2215 2216 2217 2218

} void update() { if (!isAttacking) { if ((dx>=0 && x>=tox) || (dx<=0 && x<=tox)) { tox = random(-100, 100); if (tox>x) { dx=4; direction = 1; } else if (tox<x) { dx=-4; direction = -1; } else { dx=0; direction = 0; } } x += dx; } else { if (attackframe>6)x += dx; attackframe--; if (attackframe<=0)endAttack(); } } void attack() { isAttacking = true; direction = -1; dx = -8; attackframe = 60; } void endAttack() { isCurrent = false; isAttacking = false; direction = 1; tox = 100; attackframe = 0; attackFlag = false; } void goneToHeaven() { isGoneToHeaven = true; isCurrent = false; isAttacking = false; } void damage() { life--; if (life<=0) { isDead = true; isCurrent = false; isAttacking = false; } }

2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271

}

2272 2273

}

2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304

class Molotovs { ArrayList mismolotovs; Molotovs() { mismolotovs = new ArrayList(); } void draw(PGraphics pg) { for (int i=0; i<mismolotovs.size(); i++) { Molotov tmp = (Molotov)mismolotovs.get(i); if (tmp.isDead) { mismolotovs.remove(i); } else { tmp.draw(pg); } } } void addMolotov(float x) { try { mismolotovs.add(new Molotov(x)); } catch(Exception e) { println("fiuu"); } } class Molotov { float x, y; float tox, toy, dx, dy, friction; PImage[] skin; boolean isDead, isXplode; int xplodelife;

2305 2306 2307 2308 2309 2310

110

Molotov(float x) { this.x = x+encapuxaos.x; tox = this.x + 300; friction = .4; skin = new PImage[3];


skin[0] = loadImage("visuals/ahardplace/molotov.png"); skin[1] = loadImage("visuals/ahardplace/molotovxplode1.png"); skin[2] = loadImage("visuals/ahardplace/molotovxplode2.png");

2311 2312 2313

} void draw(PGraphics pg) { pg.pushMatrix(); pg.translate(400, 300+84); pg.translate(encapuxaos.xbase+encapuxaos.x, 0); pg.translate(x, y); pg.scale(.4); PImage cskin; if (!isXplode) { cskin = skin[0]; } else { cskin = skin[1+frameCount%2]; } pg.translate(-cskin.width*.5, -cskin.height); pg.image(cskin, 0, 0); pg.popMatrix(); update(); } void update() { dx = tox-x; dy = (1-dx/300)*20; x+= dx*friction; if (y<=24) { y+=dy; } else if (!isXplode) { xplode(); } else { xplodelife--; if (xplodelife<=0)isDead = true; } //check collisions for (int i=0; i<pacos.grupo.size();i++) { Pacos.Paco tmp = (Pacos.Paco)pacos.grupo.get(i); float cx = pacos.x+tmp.x; if (x>=cx-40 && x<=cx+40) { xplode(); //tmp.damage(); break; } } } void xplode() { isXplode = true; xplodelife = 200; }

2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361

}

2362

}

2363 2364

}

2365 2366 2367 2368 2369

class Anemiko { int cycles; float rotation, faktor, ratio; int frameaux = 0;

2370 2371 2372 2373

String ticker; String txt = ""; float txtslide = 0;

2374 2375

color[] colors;

2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386

Anemiko(color[] c) {//1, color c2, color c3){ rotation = 0; cycles = 32;//zpectral.bufferSize; faktor = .8; ratio = width*.75; colors = c;/*new color[3]; colors[0] = c1; colors[1] = c2; colors[2] = c3;*/ }

2387 2388 2389 2390 2391 2392 2393

void draw(PGraphics pg) { pg.pushMatrix(); //colorMode(RGB, 255); //background(0); //translate(width*.5, height*.8); pg.translate(width*.0, height*.3);

2394 2395 2396

pg.pushMatrix(); pg.rotateZ(rotation);

2397 2398 2399

//float percent=0;//max(0,(zpectral.myFFT.max-zpectral.minLimit)/zpectral.limitDiff); pg.scale(6);//+percent/100);

2400 2401 2402 2403 2404 2405 2406 2407 2408

for (int i=0; i<cycles; i++) { int sign; if (i%2==0) { sign=1; } else { sign=-1; };

2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420

for (int j=0; j<colors.length; j++) { if (i%colors.length==j) { for (int k=0; k<colors.length; k++) { if (frameaux%colors.length==k) { pg.fill(colors[j]); break; } } break; } }

111


2421

pg.noStroke(); if (i>0 && i%3!=0) { pg.scale(faktor); pg.translate(0, sign*ratio*.25*.9); } else { pg.scale(faktor);//.95); }

2422 2423 2424 2425 2426 2427 2428 2429 2430

//float spc = 1;//+zpectral.myFFT.spectrum[i]; float spc = 2; if (i%3==0) { spc-=stageManager.daSong.beatMap.kick.currentside/100; } else if (i%3==1) { spc-=stageManager.daSong.beatMap.snare.currentside/100; } else { spc-=stageManager.daSong.beatMap.hat.currentside/100; } pg.ellipse(0, 0, 2*ratio*spc, 2*ratio*spc);

2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442

} rotation+=PI/30;

2443 2444 2445

pg.popMatrix(); pg.popMatrix();

2446 2447

}

2448 2449

}

2450 2451 2452 2453 2454 2455 2456

class Emo { int w, h; float cellw, cellh; PImage[] zqnce; int frame = 0;

2457

Emo() { w = 100; h = 50; cellw = 800/w; cellh = 600/h; zqnce = new PImage[28]; for (int i=0; i<zqnce.length; i++) { zqnce[i]=loadImage("visuals/punkrocker/donfrancischavo_"+nf(i+1, 4)+".gif"); } } void draw(PGraphics pg) { pg.pushMatrix(); pg.translate(-zqnce[0].width*cellw/2, -zqnce[0].height*cellh/2); pg.noStroke(); pg.translate(cellw/2, cellh/2); zqnce[frame].loadPixels(); for (int i=0; i<w; i++) { for (int j=0; j<h; j++) { int m = int((i+j*w)%random(50)); //float spc = 0;//2*zpectral.myFFT.spectrum[m];//*PI; float spc = i<w/2 ? stageManager.daSong.beatMap.kick.currentside/100 : stageManager.daSong.beatMap.snare.currentside/100; color k = zqnce[frame].pixels[i+j*w]; pg.pushMatrix(); pg.translate(i*cellw, j*cellh); pg.scale(spc); dddot(k, pg); pg.popMatrix(); } } pg.filter(POSTERIZE, 4); frame++; if (frame>zqnce.length-1)frame=0; pg.popMatrix(); } void dddot(color k, PGraphics pg) { //k = 255; pg.fill(k); //pg.scale(.8); ddot(pg); /* pg.fill(0); pg.scale(.6); ddot(pg); pg.fill(k); pg.scale(.6); ddot(pg);*/ } void ddot(PGraphics pg) { pg.ellipse(0, 0, cellw, cellh); }

2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508

}

2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525

class Flag { PImage[] flags; PImage world; int total, kurrent; int w, h; int spacing; int f = 0; PFont myFont; String txt; float txtslide = 0; PFont font;

2526 2527 2528 2529 2530

112

Flag() { myFont = loadFont("CoyarzunAtarinormal-8.vlw"); world = loadImage("visuals/antarctic/flag/world_bn.gif");


total = 245; flags = new PImage[total]; for (int i=0; i<total; i++) { String tmp = ""; tmp+= i; if (i<10)tmp="0"+tmp; if (i<100)tmp="0"+tmp; tmp+="_48.gif"; tmp = "visuals/antarctic/flag/"+tmp; flags[i] = loadImage(tmp); }; kurrent = int(random(total));

2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543

txt = "CON LA AUTORIDAD QUE NOS DA EL BUEN JUICIO Y EN PLENO USO DE NUESTRA RAZON, DECLARAMOS ROMPER EN FORMA OFICIAL LOS LAZOS QUE NOS PUDIERON ATAR ALGUNA VEZ A UNA SOLA INSTITUCION O FORMA DE REPRESENTACI } void draw(PGraphics pg) { pg.pushMatrix(); pg.translate(-pg.width/2, -pg.height/2); pg.noStroke(); pg.rectMode(CENTER);

2544 2545 2546 2547 2548 2549 2550 2551

//pg.textFont(mono,8);

2552 2553

if (random(100)>90)kurrent = int(random(total)); w = flags[kurrent].width; h = flags[kurrent].height; int xspacing = pg.width/(w-4); int yspacing = pg.height/(h-4);

2554 2555 2556 2557 2558 2559

txtslide++;

2560 2561

for (int i=1; i<w-1; i++) { for (int j=1; j<h-1; j++) { pg.pushMatrix(); int sz; pg.translate(-w*.5+(i)*xspacing, -h*.5+(j)*yspacing); sz = 2;

2562 2563 2564 2565 2566 2567 2568

color c = flags[kurrent].pixels[i+j*w]; color k = world.pixels[i+j*w];

2569 2570 2571

if (k==-15132391) { pg.fill(c); sz*=1; } else { pg.fill(c, 64); sz*=.6; } int txtoff = int(txtslide)%flags[kurrent].pixels.length; int indec = (i+j*w+txtoff)%txt.length(); String shar = txt.substring(indec, indec+1); pg.scale(sz); //pg.scale(pg.width/800,pg.height/600); pg.textFont(myFont, 8);//pg.textMode(MODEL); //println(shar); pg.text(shar, 2, 10); // pg.fill(255); // pg.noStroke();pg.ellipse(0,0,100,100); //pg.ellipse(0,0,8,8); pg.popMatrix();

2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591

} } pg.popMatrix();

2592 2593 2594

}

2595 2596

}

2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607

class Antarctic { PImage[] flags; PImage world; int total, kurrent; int w, h; int spacing; PFont myFont; String txt; float txtslide = 0;

2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624

Antarctic() { myFont = loadFont("CoyarzunAtarinormal-8.vlw"); world = loadImage("visuals/antarctic/flag/world_bn.gif"); total = 245; flags = new PImage[total]; for (int i=0; i<total; i++) { String tmp = ""; tmp+= i; if (i<10)tmp="0"+tmp; if (i<100)tmp="0"+tmp; tmp+="_48.gif"; tmp = "visuals/antarctic/flag/"+tmp; flags[i] = loadImage(tmp); }; kurrent = int(random(total));

2625

txt = "CON LA AUTORIDAD QUE NOS DA EL BUEN JUICIO Y EN PLENO USO DE NUESTRA RAZON, DECLARAMOS ROMPER EN FORMA OFICIAL LOS LAZOS QUE NOS PUDIERON ATAR ALGUNA VEZ A UNA SOLA INSTITUCION O FORMA DE REPRESENTACI

2626 2627

}

2628 2629 2630 2631 2632 2633 2634 2635

void draw(PGraphics pg) { if (random(100)>90)kurrent = int(random(total)); w = flags[kurrent].width; h = flags[kurrent].height; int xspacing = pg.width/(w-4); int yspacing = pg.height/(h-4); float percent=1;

2636 2637 2638 2639 2640

pg.pushMatrix(); //pg.translate(-pg.width/2,-pg.height/2); pg.noStroke(); pg.rectMode(CENTER);

113


2641

pg.rotateX(-8*PI/90); pg.rotateZ(8*PI/90); pg.rotateY(-2*(PI/180)*(frameCount)); pg.scale(1+.2*percent);

2642 2643 2644 2645 2646

txtslide++;

2647 2648

for (int i=1; i<w-1; i++) { for (int j=1; j<h-1; j++) { pg.pushMatrix(); int sz;

2649 2650 2651 2652 2653

float f = TWO_PI/(w-2); float ff = PI/(h-1); pg.rotateY(i*f); pg.rotateZ(j*ff-HALF_PI); pg.translate(w*.2*xspacing, 0); pg.rotateY(HALF_PI); sz = 1;

2654 2655 2656 2657 2658 2659 2660 2661

color c = flags[kurrent].pixels[i+j*w]; color k = world.pixels[i+j*w];

2662 2663 2664

if (k==-15132391) { pg.fill(c); sz*=1; } else { pg.fill(c, 64); sz*=.6; } int txtoff = int(txtslide)%flags[kurrent].pixels.length; int indec = (i+j*w+txtoff)%txt.length(); String shar = txt.substring(indec, indec+1);

2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676

pg.scale(sz); pg.scale(pg.width/800, pg.height/600); //pg.textFont(mono,100); //println(shar); //pg.text(shar, 2, 10); //pg.fill(255); //pg.noStroke();pg.ellipse(0,0,100,100); pg.ellipse(0, 0, 8, 8); pg.popMatrix();

2677 2678 2679 2680 2681 2682 2683 2684 2685

} } pg.popMatrix();

2686 2687 2688

}

2689 2690

}

2691 2692

class WOklr {

2693

WOklr() { } void draw(PGraphics pg) { pg.pushMatrix();

2694 2695 2696 2697 2698

pg.rotateX(-8*PI/90); pg.rotateZ(8*PI/90); pg.rotateY(-2*(PI/180)*(frameCount)); pg.scale(1+.2*1);

2699 2700 2701 2702 2703 2704

pg.pushMatrix(); float r = height*.6, amp=PI/90; float dangle = TWO_PI/64; for (int i=0;i<64;i++) {//zpectral.bufferSize;i++){ pg.pushMatrix(); float left=0; float right=0; //if (i+zpectral.wave_interp+1<zpectral.myInput.buffer2.length) { left-=random(-.2, .2);//zpectral.myInput.buffer2[i+zpectral.wave_interp]; right-=random(-.2, .2);//zpectral.myInput.buffer2[i+1+zpectral.wave_interp]; //} pg.rotateY(i*dangle); pg.rotateZ(left*amp); pg.translate(r, 0, 0); //stroke(255, 96, 0); pg.stroke(0, 0, 0); pg.fill(255); pg.box(2); pg.popMatrix(); // pg.pushMatrix(); float spc = random(PI/10);//zpectral.myFFT.spectrum[i]*PI; //rotateX(-ang*2); pg.rotateY(i*dangle*.5); pg.stroke(i*255/64, 255, 204); pg.noFill(); float w = 2*r*.6; float h = 2*r*.6; float fa = (TWO_PI-spc)*.5; float ta = fa+spc; pg.strokeWeight(1);//.5); pg.arc(0, 0, w, h, fa, ta); pg.rotateY(TWO_PI-(i)*dangle); pg.arc(0, 0, w, h, fa, ta); pg.popMatrix(); // pg.fill(128); //box(30); } pg.popMatrix(); pg.popMatrix();

2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745

}

2746 2747

}

2748 2749 2750

114

class Lnr {


Lnr() { } void draw(PGraphics pg) {

2751 2752 2753 2754

pg.pushMatrix(); pg.translate(-pg.width*.5, -pg.height*.5); pg.pushMatrix(); float r = pg.height*.6, amp=PI; float dangle = TWO_PI/64; float xpc = pg.width/64; float ii = random(pg.width); float jj = random(pg.height);

2755 2756 2757 2758 2759 2760 2761 2762 2763

for (int i=0;i<64;i++) { pg.pushMatrix(); float spc = random(1);//i/64;//(i+1)/64;//i/64;//i/100; pg.stroke(spc*255, 255, 255, random(255)); pg.noFill(); float w = 2*r*.6; float h = 2*r*.6; float fa = (TWO_PI-spc)*.5; float ta = fa+spc; pg.strokeWeight(1); pg.translate(ii, jj, 0); pg.ellipse(0, 0, w*spc, h*spc); pg.popMatrix(); pg.fill(128); } pg.popMatrix(); pg.popMatrix();

2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780

}

2781 2782

}

2783 2784 2785

class AntarcticLogo { PImage splash;

2786

AntarcticLogo() { splash = loadImage("visuals/antarctic/flag/antarctic_flagx.jpg"); } void draw(PGraphics pg) {

2787 2788 2789 2790 2791

pg.pushMatrix(); pg.translate(-splash.width*.5, -splash.height*.5); pg.scale(pg.width/splash.width, pg.height/splash.height); pg.image(splash, 0, 0); pg.popMatrix();

2792 2793 2794 2795 2796

}

2797 2798

}

2799 2800 2801 2802 2803 2804 2805

class TScreen { String mytext; int cols, rows; int cell = 8*1; int vel = 16; color[] colors;

2806

TScreen(color[] c) { cols = 800/cell; rows = 600/cell; colors = c; } void setCell(int k) { cell = k; cols = 800/cell; rows = 600/cell; } void setText(String t) { mytext=t; } void setVel(int v) { vel = v; } void draw(PGraphics pg) { pg.pushMatrix(); pg.translate(-pg.width/2, -pg.height/2); for (int i=0; i<cols;i++) { for (int j=0; j<rows; j++) { int k = i+j*cols;

2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829

//pg.fill(colors[k%colors.length]);

2830 2831

k+=frameCount*(j+rows/4)/vel;//+j; int l = mytext.length()-1; String tmp = l>1? mytext.substring(k%l, k%l+1) : "";

2832 2833 2834 2835

pg.fill(colors[k%colors.length]);

2836 2837

pg.pushMatrix(); pg.translate(i*cell, j*cell+cell); pg.scale(cell/8); // pg.textFont(stageManager.font, 8); pg.text(tmp, 0, 0);//i*8,j*8+8); //pg.ellipse(0,-4,8,8);pg.fill(0);pg.ellipse(0,-4,4,4);

2838 2839 2840 2841 2842 2843 2844 2845

// pg.rotate(radians(45)); // pg.rectMode(CENTER); // pg.rect(0,-8,8*1.41/2,8*1.41/2); // pg.fill(0); // pg.rect(0,-8,8*0.4,8*.4); pg.popMatrix();

2846 2847 2848 2849 2850 2851

} } pg.popMatrix();

2852 2853 2854

}

2855 2856

}

2857 2858 2859 2860

115


2861 2862 2863 2864 2865

class Alebrije { float x, y, z; float caminangulo;

2866 2867 2868

PImage[] t; int tframes;

2869 2870

Head head;

2871 2872 2873 2874 2875

Alebrije(float x, float y, float z) { this.x=x; this.y=y; this.z=z;

2876 2877

head = new Head();

2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906

tframes = 18; t = new PImage[tframes]; for (int i=0; i<tframes;i++) { t[i] = loadImage("visuals/songzero/twinkling/twinkling_100_f"+nf(i+1, 2)+".gif"); } } void draw(PGraphics pg) { PImage current = t[frameCount%tframes]; pg.pushMatrix(); //pg.translate(x,y,z); //pg.ambientLight(51, 102, 126); //pg.spotLight(255, 128, 0, 80, 20, 40, -1, 0, 0, PI/2, 2); //pg.directionalLight(51, 102, 126, 0, -1, 0); //pg.pointLight(255/2, 200/2, 30/2, 0, -500, 1000); //pg.stroke(32,255,255);//255,128,0); // //pg.noStroke(); pg.ambientLight(16, 255, 64);//128, 64, 0); pg.spotLight(16, 255, 128, 80, 20, 40, -1, 0, 0, PI/2, 2);//255, 128, 0, 80, 20, 40, -1, 0, 0, PI/2, 2); //directionalLight(51, 102, 126, 0, -1, 0); pg.pointLight(96/2, 255/2, 240, 0, -500, 1000);//255/2, 200/2, 30/2, 0, -500, 1000); //if(random(100)>70);pointLight(240+random(15), 0,0, 0, 0, 2000); pg.stroke(16, 255, 255);//255,128,0); float f = 9;//4; //caminangulo = radians(60*sin(radians(f*frameCount%360))); //float eleva = 20*sin(radians(f*frameCount%360)); caminangulo = radians(90*sin(radians(f*frameCount%360))); float eleva = 40*sin(radians(f*frameCount%360));

2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926

pg.fill(255); pg.pushMatrix(); pg.translate(0, 20-abs(eleva), 0); //torso textureBox(pg, current, 30, 40, 10); //right napier pg.pushMatrix(); pg.translate(10, 20, 0); pg.rotateX(caminangulo); pg.translate(0, 10, 0); textureBox(pg, current, 10, 20, 10); pg.popMatrix(); //left napier pg.pushMatrix(); pg.translate(-10, 20, 0); pg.rotateX(-caminangulo); pg.translate(0, 10, 0); textureBox(pg, current, 10, 20, 10); pg.popMatrix();

2927 2928 2929 2930 2931 2932 2933 2934 2935

//middle leg pg.pushMatrix(); float erektangulo = radians(145); float dotation = 20;//6;//15;//6;//15;//20; float contrapeso = dotation/5; float grip = 6;//3;//4;//6; pg.translate(0, 20, 5);

2936 2937 2938 2939 2940 2941 2942 2943

pg.pushMatrix(); pg.rotateX(erektangulo); //if(erektangulo<PI/2) pg.rotateX(map(erektangulo, radians(15), radians(145), 1, 0)*abs(caminangulo)); pg.translate(0, (dotation+contrapeso)/2-contrapeso, -grip/2); textureBox(pg, current, grip, dotation+contrapeso, grip); pg.popMatrix();

2944 2945 2946 2947 2948 2949

pg.pushMatrix(); pg.translate(-2.5, 2.25, -2.5); pg.rotateX(caminangulo); textureBox(pg, current, 4.5); pg.popMatrix();

2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970

116

pg.pushMatrix(); pg.translate(2.5, 2.25, -2.5); pg.rotateX(-caminangulo); textureBox(pg, current, 4.5); pg.popMatrix(); pg.popMatrix(); //right arm pg.pushMatrix(); pg.translate(20, -20, 0); pg.rotateX(-caminangulo); pg.rotateZ(-caminangulo/2); pg.translate(0, 25, 0); textureBox(pg, current, 10, 50, 10); pg.popMatrix(); //left arm pg.pushMatrix(); pg.translate(-20, -20, 0); pg.rotateX(caminangulo); pg.rotateZ(-caminangulo/2); pg.translate(0, 25, 0);


textureBox(pg, current, 10, 50, 10); pg.popMatrix(); //kabeza

2971 2972 2973 2974

pg.pushMatrix(); pg.translate(0, -20-5, 5); //pg.rotateX(caminangulo/4); head.draw(pg);

2975 2976 2977 2978 2979

pg.popMatrix(); pg.popMatrix(); pg.popMatrix();

2980 2981 2982

}

2983 2984 2985 2986

void textureBox(PGraphics pg, PImage $1, float $2) { //textureBox(pg, $1, $2, $2, $2); pg.box($2); } void textureBox(PGraphics pg, PImage $1, float $2, float $3, float $4) { pg.box($2, $3, $4); } void textureBox(PGraphics pg, PImage $1, float $2, float $3, float $4, boolean $5) { float xratio, yratio, zratio; xratio = $2*.5; yratio = $3*.5; zratio = $4*.5; //front face pg.pushMatrix(); pg.translate(-$2*.5, -$3*.5, zratio); pg.image($1, 0, 0, $2, $3); pg.popMatrix(); //top face pg.pushMatrix(); pg.rotateX(HALF_PI); pg.translate(-$2*.5, -$4*.5, yratio); pg.image($1, 0, 0, $2, $4); pg.popMatrix(); //rear face pg.pushMatrix(); pg.rotateX(PI); pg.translate(-$2*.5, -$3*.5, zratio); pg.image($1, 0, 0, $2, $3); pg.popMatrix(); //bottom face pg.pushMatrix(); pg.rotateX(-HALF_PI); pg.translate(-$2*.5, -$4*.5, yratio); pg.image($1, 0, 0, $2, $4); pg.popMatrix(); //left face pg.pushMatrix(); pg.rotateY(-HALF_PI); pg.translate(-$4*.5, -$3*.5, xratio); pg.image($1, 0, 0, $4, $3); pg.popMatrix(); //right face pg.pushMatrix(); pg.rotateY(HALF_PI); pg.translate(-$4*.5, -$3*.5, xratio); pg.image($1, 0, 0, $4, $3); pg.popMatrix(); }

2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035

}

3036 3037 3038 3039 3040 3041 3042 3043 3044

class Head { Head() { } void draw(PGraphics pg) { float anchodehociko = 16; float salidadeojos = 4+10*stageManager.daSong.beatMap.snare.currentside/100;//*abs(in.left.get(0)); float aperturadehociko = 3+10*stageManager.daSong.beatMap.kick.currentside/100;//*abs(in.left.get(0));

3045 3046 3047 3048 3049 3050 3051 3052

pg.pushMatrix(); //kabeza pg.pushMatrix(); pg.translate(0, -15, -5); //rotateY(caminangulo/4); pg.fill(255); pg.box(20, 30, 30);//,30,20);

3053 3054 3055 3056 3057 3058 3059

pg.pushMatrix();//alerones pg.translate(0, 5, 0); pg.box(30, 10, 20);//,30,20); pg.box(50, 4, 15); pg.popMatrix();

3060 3061 3062 3063 3064 3065 3066 3067

pg.pushMatrix(); pg.translate(0, 10, 12+5); //pointLight(200, 0, 30, 5, -5, 0); pg.pushMatrix(); pg.translate(0, -17, -1); corolla(pg, 12); pg.popMatrix();

3068 3069 3070 3071 3072 3073 3074 3075 3076

pg.pushMatrix();//kresta pg.translate(0, -26, -4); pg.box(2, 6, 10); pg.translate(0, 0, -14); pg.box(2, 10, 14); pg.translate(0, 3+2, -14); pg.box(2, 16, 10); pg.popMatrix();

3077 3078 3079 3080

float cachangulo = -radians(30); pg.pushMatrix();//kachos pg.translate(-10, -26, -2);

117


pg.rotateZ(cachangulo); pg.rotateX(cachangulo); pg.box(6, 12, 6); pg.box(4, 24, 4); pg.box(2, 50, 2); pg.popMatrix(); pg.pushMatrix();//kachos pg.translate(10, -26, -2); pg.rotateZ(-cachangulo); pg.rotateX(cachangulo); pg.box(6, 12, 6); pg.box(4, 24, 4); pg.box(2, 50, 2); pg.popMatrix(); pg.pushMatrix();//kachos pg.translate(-10, -26, -2-30); pg.rotateZ(cachangulo); pg.rotateX(-cachangulo); pg.box(6, 12, 6); pg.box(4, 24, 4); pg.box(2, 50, 2); pg.popMatrix(); pg.pushMatrix();//kachos pg.translate(10, -26, -2-30); pg.rotateZ(-cachangulo); pg.rotateX(-cachangulo); pg.box(6, 12, 6); pg.box(4, 24, 4); pg.box(2, 50, 2); pg.popMatrix();

3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111

pg.fill(0, 255, 255);//255,0,0); pg.pushMatrix(); pg.translate(5, -5, 0); pg.box(5, 5, salidadeojos); pg.rotateZ(radians(45)); pg.box(5, 5, salidadeojos); pg.popMatrix(); pg.pushMatrix(); pg.translate(-5, -5, 0); pg.box(5, 5, salidadeojos); pg.rotateZ(radians(45)); pg.box(5, 5, salidadeojos); pg.popMatrix();

3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125

pg.popMatrix();

3126 3127

pg.popMatrix();

3128 3129

pg.pushMatrix(); pg.fill(255);

3130 3131 3132

pg.stroke(32, 255, 255);//255,128,0);

3133 3134

pg.translate(0, 4, 3); pg.translate(-anchodehociko/2+1, -3, 6); for (int i=0; i<10; i++) { pg.box(1.5, 2, 1); pg.translate(anchodehociko/10, 0, 0); } pg.popMatrix();

3135 3136 3137 3138 3139 3140 3141 3142

pg.pushMatrix(); pg.translate(0, 2.5, 2.5);//-5);

3143 3144 3145

pg.translate(0, aperturadehociko, 0); pg.fill(255); pg.box(anchodehociko, 5, 15);

3146 3147 3148 3149

pg.pushMatrix(); pg.translate(-anchodehociko/2+1, -3, 6); for (int i=0; i<10; i++) { pg.box(1.5, 2, 1); pg.translate(anchodehociko/10, 0, 0); } pg.popMatrix();

3150 3151 3152 3153 3154 3155 3156 3157

pg.pushMatrix();// pg.translate(anchodehociko/2-2.5, -aperturadehociko/2-2.5, -2.5); pg.box(5, aperturadehociko, 10); pg.popMatrix(); pg.pushMatrix();// pg.translate(-anchodehociko/2+2.5, -aperturadehociko/2-2.5, -2.5); pg.box(5, aperturadehociko, 10); //box( pg.popMatrix();

3158 3159 3160 3161 3162 3163 3164 3165 3166 3167

pg.popMatrix();

3168 3169

pg.popMatrix();

3170 3171

}

3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190

118

void corolla(PGraphics pg, float diam) { pg.pushMatrix(); pg.pushStyle(); pg.rotateZ(radians(2*frameCount%360)); pg.noStroke(); pg.fill(0, 255, 255); pg.ellipse(0, 0, diam, diam); pg.translate(diam/6, 0, .01); diam*=.6; pg.fill(255); pg.ellipse(0, 0, diam, diam); pg.translate(-diam/6, 0, .01); diam*=.6; pg.fill(0); pg.ellipse(0, 0, diam, diam); pg.translate(diam/6, 0, .01); diam*=.6; pg.fill(0, 255, 255);//,0,0);


pg.ellipse(0, 0, diam, diam); pg.popStyle(); pg.popMatrix();

3191 3192 3193

}

3194 3195

}

3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234

class GFlag { PImage[] flags; int total, kurrent; int w, h; int spacing; int f = 0; PFont myFont; String txt; float txtslide = 0; color[] colors;// = new color[3];

3235 3236 3237

GFlag() { myFont = loadFont("CoyarzunAtarinormal-32.vlw");

3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250

total = 5; flags = new PImage[total]; for (int i=0; i<total; i++) { String tmp = ""; tmp+= i; if (i<10)tmp="0"+tmp; if (i<100)tmp="0"+tmp; tmp+=".png"; tmp = "visuals/ahardplace/gflag/"+tmp; flags[i] = loadImage(tmp); }; kurrent = int(random(total));

3251 3252

txt = "NO ES COMODO ESTE LUGAR; TIENDO A PENSAR Q ESTA REUNION ES ANACRONICA O Q MI MIRADA SOBRE ELLA LO ES; MI MIRADA SIN DUDA LO ES; GGGGTTTT; DE LO Q HABIA Q SAKAR LECCIONES NO SE HA SACADO NADA; GGGGTTTT

3253 3254 3255 3256 3257 3258 3259

colors = new color[3]; colors[0] = color(0, 255, 255); colors[1] = color(0); colors[2] = color(255); } void draw(PGraphics pg) {

3260 3261 3262 3263 3264 3265

pg.pushMatrix(); pg.background(colors[stageManager.daSong.frame%colors.length]); pg.translate(-pg.width/2, -pg.height/2); pg.noStroke(); pg.rectMode(CENTER);

3266 3267

//pg.textFont(myFont,8);

3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279

//if(random(100)>90) if (stageManager.daSong.beatMap.snare.currentside>90) { int prev = kurrent; while (kurrent==prev) { kurrent = int(random(total)); } } w = flags[kurrent].width; h = flags[kurrent].height; int xspacing = pg.width/(w-4); int yspacing = pg.height/(h-4);

3280 3281

txtslide++;

3282 3283 3284 3285 3286 3287 3288

for (int i=1; i<w-1; i++) { for (int j=1; j<h-1; j++) { pg.pushMatrix(); int sz; pg.translate(-w*.5+(i)*xspacing, -h*.5+(j)*yspacing); sz = 2;

3289 3290

color c = flags[kurrent].pixels[i+j*w];

3291 3292 3293

pg.fill(c); sz*=1;

3294 3295 3296 3297 3298 3299 3300

int txtoff = int(txtslide)%flags[kurrent].pixels.length; int indec = (i+j*w+txtoff)%txt.length(); String shar = txt.substring(indec, indec+1); pg.scale(sz); //pg.scale(pg.width/800,pg.height/600); pg.textFont(myFont, 8);

119


pg.text(shar, 2, 10); //pg.ellipse(0,-4,8,8); pg.popMatrix();

3301 3302 3303

} } pg.popMatrix();

3304 3305 3306

}

3307 3308

}

3309 3310 3311 3312 3313 3314 3315 3316

class SapoLivingstone { PImage sapo;

3317

SapoLivingstone() { sapo = loadImage("visuals/silverstein/sapolivingstone.gif"); } void draw(PGraphics pg) { pg.pushMatrix(); pg.translate(-sapo.width/2, -sapo.height/2); pg.image(sapo, 0, 0); pg.popMatrix(); }

3318 3319 3320 3321 3322 3323 3324 3325 3326 3327

}

3328 3329 3330 3331

class VLostmanSuperstar extends VScreen { color bgcolor;

3332 3333 3334 3335

FlyingCamera flyer; World daworld; Esfera landscape;

3336 3337

Flock flock;

3338 3339 3340 3341 3342 3343 3344 3345 3346

VLostmanSuperstar(int _x, int _y, int _width, int _height, color bg) { x = _x; y = _y; width = _width; height = _height; bgcolor = bg; font = loadFont("CoyarzunAtarinormal-100.vlw"); Ani.init(p);

3347 3348 3349

flyer daworld

= new FlyingCamera(); = new World(64000);

3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371

flock = new Flock(); // Add an initial set of boids into the system for (int i = 0; i < 200; i++) { flock.addBoid(new Boid(new PVector(0, 0), 300, 0.05*.4, daworld.lim)); } } void unkontrol() { if (frameCount%100==0 || random(100)>90) { int key = int(random(0, 9)); if (key==1)flyer.lookdown(); if (key==2)flyer.lookfront(); if (key==3)flyer.lookup(); if (key==4)flyer.turnleft(); if (key==5)flyer.turnright(); if (key==6)flyer.turnback(1); if (key==7)flyer.turnaround(1); if (key==8)flyer.walkto(-daworld.lim); if (key==9)flyer.walkto(0); if (key==0)flyer.walkto(daworld.lim*1.5); } }

3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384

void draw(PGraphics pg) { unkontrol(); pg.beginDraw(); pg.colorMode(HSB); pg.background(0);//16,255,255*stageManager.daSong.beatMap.kick.currentside/100);//,bgcolor);//0,0); pg.translate(pg.width/2, pg.height/2); daworld.draw(pg); flock.run(pg); flyer.update(); flyer.draw(pg); pg.endDraw(); }

3385 3386 3387 3388

class World { PVector[] rocks; float lim;

3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410

120

World(float l) { lim = l; init(); } void init() { rocks = new PVector[6000]; for (int i=0; i<rocks.length; i++) { //rocks[i] = new PVector(random(-lim,lim), random(-lim,lim), random(-lim,lim)); rocks[i] = new PVector(random(TWO_PI), random(-PI, PI), random(lim));//long,lat,radius } } void draw(PGraphics pg) { int poliphony = 8; for (int i=0; i<rocks.length; i++) { pg.pushMatrix(); //translate(rocks[i].x,rocks[i].y,rocks[i].z); float a = map(rocks[i].z, 0, lim, radians(8), radians(0.1)); a*=a; rocks[i].x+=a; rocks[i].y+=a; pg.rotateY(rocks[i].x);


pg.rotateX(rocks[i].y); pg.translate(0, 0, rocks[i].z);

3411 3412 3413 3414

float distcam = dist(flyer.x, flyer.y, flyer.z-100, pg.modelX(0, 0, 0), pg.modelY(0, 0, 0), pg.modelZ(0, 0, 0)); color cc = color(map(rocks[i].z, 0, lim, 0, 255), 255, 255); if (random(100)>99.5 && poliphony>0) { int nn = int(map(rocks[i].z, 0, daworld.lim, 0, 127)); nn = constrain(nn, 0, 127); pg.scale(10); pg.fill(cc, 64); pg.noStroke(); pg.box(20); pg.scale(.5); pg.fill(cc, 64); pg.noStroke(); pg.box(20);

3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428

poliphony--; } else { pg.fill(cc, 200); pg.stroke(cc); pg.box(20); } pg.popMatrix();

3429 3430 3431 3432 3433 3434 3435 3436

}

3437

}

3438

}

3439 3440

}

3441 3442 3443 3444

class Esfera { float radio; PImage t;

3445

Esfera (float r, String nombre) { radio = r; t= loadImage(nombre); } void draw(PGraphics pg) { pg.textureMode(NORMAL); int pasosH = 56;//horizontales int pasosV = 38;//paralelos float dangulo1 = TWO_PI/pasosH; float dangulo2 = PI/pasosV; pg.noStroke(); pg.beginShape(QUADS); pg.texture(t); for (int i=0; i<pasosH;i++) { float angulo1 = i*dangulo1; float angulo3 = (i+1)*dangulo1; for (int j=0; j<pasosV;j++) { //fill(random(255),random(255),random(255)); float angulo2 = j*dangulo2; float angulo4 = (j+1)*dangulo2; //angulo2 es la latitud float r = radio*sin(angulo2); float rr = radio*sin(angulo4);

3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468

float tx, ty; float x = r*cos(angulo1); float y = radio*cos(angulo2); float z = r*sin(angulo1); tx=map(angulo1, 0, TWO_PI, 1, 0); ty=map(angulo2, 0, PI, 1, 0); pg.vertex(x, y, z, tx, ty);

3469 3470 3471 3472 3473 3474 3475 3476

x = r*cos(angulo3); y = radio*cos(angulo2); z = r*sin(angulo3); tx=map(angulo3, 0, TWO_PI, 1, 0); ty=map(angulo2, 0, PI, 1, 0); pg.vertex(x, y, z, tx, ty);

3477 3478 3479 3480 3481 3482 3483

x = rr*cos(angulo3); y = radio*cos(angulo4); z = rr*sin(angulo3); tx=map(angulo3, 0, TWO_PI, 1, 0); ty=map(angulo4, 0, PI, 1, 0); pg.vertex(x, y, z, tx, ty);

3484 3485 3486 3487 3488 3489 3490

x = rr*cos(angulo1); y = radio*cos(angulo4); z = rr*sin(angulo1); tx=map(angulo1, 0, TWO_PI, 1, 0); ty=map(angulo4, 0, PI, 1, 0); pg.vertex(x, y, z, tx, ty);

3491 3492 3493 3494 3495 3496

}

3497

}

3498 3499

pg.endShape();

3500

}

3501 3502

}

3503 3504 3505 3506

// The Flock (a list of Boid objects)

3507 3508 3509

class Flock { ArrayList boids; // An arraylist for all the boids

3510

Flock() { boids = new ArrayList(); // Initialize the arraylist

3511 3512 3513

}

3514 3515 3516 3517 3518 3519 3520

void run(PGraphics pg) { pg.pushMatrix(); pg.rotateX(PI/2); for (int i = 0; i < boids.size(); i++) { pg.pushMatrix(); Boid b = (Boid) boids.get(i);

121


pg.rotateY(map(i, 0, boids.size(), 0, PI)); color k = color(map(i, 0, boids.size(), 0, 255), 64, 255); pg.stroke(k); pg.fill(k, 32);//random(255),255,255);//,100);

3521 3522 3523 3524 3525

b.run(boids, pg); // Passing the entire list of boids to each boid individually pg.popMatrix();

3526 3527 3528

} pg.popMatrix();

3529 3530

}

3531 3532

void addBoid(Boid b) { boids.add(b); }

3533 3534 3535 3536

}

3537 3538 3539 3540

// The Boid class

3541 3542

class Boid {

3543 3544 3545 3546 3547 3548 3549 3550

PVector loc; PVector vel; PVector acc; float r; float maxforce; float maxspeed; float daworldlim;

// Maximum steering force // Maximum speed

3551 3552 3553 3554 3555 3556 3557 3558 3559 3560

Boid(PVector l, float ms, float mf, float dwl) { daworldlim = dwl; acc = new PVector(0, 0); vel = new PVector(random(-300, 300), random(-300, 300)); loc = l.get(); r = 200; maxspeed = ms; maxforce = mf; }

3561 3562 3563 3564 3565 3566 3567

void run(ArrayList boids, PGraphics pg) { flock(boids); update(); borders(); render(pg); }

3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582

// We accumulate a new acceleration each time based on three rules void flock(ArrayList boids) { PVector sep = separate(boids); // Separation PVector ali = align(boids); // Alignment PVector coh = cohesion(boids); // Cohesion // Arbitrarily weight these forces sep.mult(1.5); ali.mult(1.0); coh.mult(1.0); // Add the force vectors to acceleration acc.add(sep); acc.add(ali); acc.add(coh); }

3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593

// Method to update location void update() { // Update velocity vel.add(acc); // Limit speed vel.limit(maxspeed); loc.add(vel); // Reset accelertion to 0 each cycle acc.mult(0); }

3594 3595 3596 3597

void seek(PVector target) { acc.add(steer(target, false)); }

3598 3599 3600 3601

void arrive(PVector target) { acc.add(steer(target, true)); }

3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624

// A method that calculates a steering vector towards a target // Takes a second argument, if true, it slows down as it approaches the target PVector steer(PVector target, boolean slowdown) { PVector steer; // The steering vector PVector desired = target.sub(target, loc); // A vector pointing from the location to the target float d = desired.mag(); // Distance from the target is the magnitude of the vector // If the distance is greater than 0, calc steering (otherwise return zero vector) if (d > 0) { // Normalize desired desired.normalize(); // Two options for desired vector magnitude (1 -- based on distance, 2 -- maxspeed) if ((slowdown) && (d < 100.0)) desired.mult(maxspeed*(d/100.0)); // This damping is somewhat arbitrary else desired.mult(maxspeed); // Steering = Desired minus Velocity steer = target.sub(desired, vel); steer.limit(maxforce); // Limit to maximum steering force } else { steer = new PVector(0, 0); } return steer; }

3625 3626 3627 3628 3629 3630

122

void render(PGraphics pg) { // Draw a triangle rotated in the direction of velocity float theta = vel.heading2D() + PI/2; //stroke(255); //noStroke();


pg.pushMatrix(); pg.translate(loc.x, loc.y); pg.rotate(theta);

3631 3632 3633 3634

/* beginShape(TRIANGLES); vertex(0, -r*2); vertex(-r, r*2); vertex(r, r*2); endShape();*/ pg.box(r*.2, 2*r, r*.2); pg.popMatrix();

3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667

} // Wraparound void borders() { /* if (loc.x < -r-daworld.lim){ loc.x = 2*daworld.lim+r; } if (loc.y < -r-daworld.lim){ loc.y = 2*daworld.lim+r; } if (loc.x > daworld.lim+r){ loc.x = -r-2*daworld.lim; } if (loc.y > daworld.lim+r){ loc.y = -r-2*daworld.lim; } */ if (dist(0, 0, loc.x, loc.y)>daworldlim) { loc.x*=-1; loc.y*=-1; int nn = int(map(loc.y, -daworldlim, daworldlim, 35, 35+6)); nn = constrain(nn, 35, 35+36); //drums.sendNote(new Note(nn, (int)random(100,127), 1)); } }

3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692

// Separation // Method checks for nearby boids and steers away PVector separate (ArrayList boids) { float desiredseparation = 20.0; PVector steer = new PVector(0, 0, 0); int count = 0; // For every boid in the system, check if it's too close for (int i = 0 ; i < boids.size(); i++) { Boid other = (Boid) boids.get(i); float d = PVector.dist(loc, other.loc); // If the distance is greater than 0 and less than an arbitrary amount (0 when you are yourself) if ((d > 0) && (d < desiredseparation)) { // Calculate vector pointing away from neighbor PVector diff = PVector.sub(loc, other.loc); diff.normalize(); diff.div(d); // Weight by distance steer.add(diff); count++; // Keep track of how many } } // Average -- divide by how many if (count > 0) { steer.div((float)count); }

3693

// As long as the vector is greater than 0 if (steer.mag() > 0) { // Implement Reynolds: Steering = Desired - Velocity steer.normalize(); steer.mult(maxspeed); steer.sub(vel); steer.limit(maxforce); } return steer;

3694 3695 3696 3697 3698 3699 3700 3701 3702 3703

}

3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721

// Alignment // For every nearby boid in the system, calculate the average velocity PVector align (ArrayList boids) { float neighbordist = 25.0; PVector steer = new PVector(0, 0, 0); int count = 0; for (int i = 0 ; i < boids.size(); i++) { Boid other = (Boid) boids.get(i); float d = PVector.dist(loc, other.loc); if ((d > 0) && (d < neighbordist)) { steer.add(other.vel); count++; } } if (count > 0) { steer.div((float)count); }

3722

// As long as the vector is greater than 0 if (steer.mag() > 0) { // Implement Reynolds: Steering = Desired - Velocity steer.normalize(); steer.mult(maxspeed); steer.sub(vel); steer.limit(maxforce); } return steer;

3723 3724 3725 3726 3727 3728 3729 3730 3731 3732

}

3733 3734 3735 3736 3737 3738 3739 3740

// Cohesion // For the average location (i.e. center) of all nearby boids, calculate steering vector towards that location PVector cohesion (ArrayList boids) { float neighbordist = 25.0; PVector sum = new PVector(0, 0); // Start with empty vector to accumulate all locations int count = 0; for (int i = 0 ; i < boids.size(); i++) {

123


Boid other = (Boid) boids.get(i); float d = loc.dist(other.loc); if ((d > 0) && (d < neighbordist)) { sum.add(other.loc); // Add location count++; }

3741 3742 3743 3744 3745 3746

} if (count > 0) { sum.div((float)count); return steer(sum, false); } return sum;

3747 3748 3749 3750 3751 3752

}

3753 3754

// Steer towards the location

}

3755 3756 3757

//

3758 3759 3760 3761 3762 3763 3764

class FlyingCamera { float x, y, z;

3765 3766 3767

float roll, yaw, pitch; float lspeed;

3768 3769 3770

float dx, dy, dz; float droll, dyaw, dpitch;

3771 3772 3773 3774 3775 3776 3777 3778

FlyingCamera() { init(); } void init() { x=0; y=0; z=0;

3779 3780 3781 3782

roll = 0; yaw = 0; pitch =0 ;

3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801

droll = //radians(.20); dyaw = //radians(.20);//.2); dpitch = 0;//radians(-.80);//-.20);//-.2);//-1); } void update() { //yaw%=TWO_PI; } void draw(PGraphics pg) { pg.beginCamera(); pg.camera(); pg.pushMatrix(); pg.translate(x, y, z); pg.rotateY(yaw); pg.rotateZ(roll); pg.rotateX(pitch); pg.popMatrix(); pg.endCamera(); }

3802 3803

/*behaviours*/

3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833

void lookdown() { Ani.to(this, 30, "pitch", PI/2, Ani.CIRC_OUT); } void lookup() { Ani.to(this, 30, "pitch", -PI/2, Ani.CIRC_OUT); } void lookfront() { Ani.to(this, 30, "pitch", 0, Ani.CIRC_OUT); } void turnleft() { Ani.to(this, 30, "yaw", yaw-PI/2, Ani.CIRC_OUT); } void turnright() { Ani.to(this, 30, "yaw", yaw+PI/2, Ani.CIRC_OUT); } void turnaround(int sign) { Ani.to(this, 40, "yaw", yaw+sign*TWO_PI, Ani.CIRC_OUT); } void turnback(int sign) { Ani.to(this, 30, "yaw", yaw+sign*PI, Ani.CIRC_OUT); } void walkto(float limite) { Ani.to(this, 180, "y", limite, Ani.LINEAR);//EXPO_IN_OUT); } } class BlobWorld { float ratio; int _width, _height; Blob[] blobs;

3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850

124

BlobWorld(String url) { XML xml = loadXML(url);//new XML(p, url); _width = xml.getInt("width"); _height = xml.getInt("height"); ratio = float(_width)/TWO_PI; blobs = new Blob[xml.getChild(0).getChildCount()]; for (int i=0; i<blobs.length; i++) { blobs[i]=new Blob(xml.getChild(0).getChild(i)); } } void draw(PGraphics pg) { for (int i=0; i<blobs.length; i++) { blobs[i].draw(pg); } } class Blob {


boolean isHole; float area, circumference; Rectangle bounding_rect; Point centroid; Point[] points; PVector[] vectors;

3851 3852 3853 3854 3855 3856 3857

Blob(XML xml) { isHole = xml.getString("isHole")=="true"? true:false; area = xml.getFloat("area"); circumference = xml.getFloat("circumference"); bounding_rect = new Rectangle(); bounding_rect.x = xml.getChild(0).getInt("x"); bounding_rect.y = xml.getChild(0).getInt("y"); bounding_rect.width = xml.getChild(0).getInt("width"); bounding_rect.height = xml.getChild(0).getInt("height"); centroid = new Point(); centroid.x = xml.getChild(1).getInt("x"); centroid.y = xml.getChild(1).getInt("y"); points = new Point[xml.getChild(2).getChildCount()]; vectors = new PVector[xml.getChild(2).getChildCount()]; for (int i=0; i<points.length; i++) { int x = xml.getChild(2).getChild(i).getInt("x"); int y = xml.getChild(2).getChild(i).getInt("y"); points[i] = new Point(x, y); vectors[i] = vectorFromPoint(points[i]); } } PVector vectorFromPoint(Point pp) { /*float a = map(pp.x,0,_width,TWO_PI,0); float x = ratio*cos(a); float z = ratio*sin(a); float y = pp.y-_height/2;*/ float longitud = map(pp.x, 0, _width, 0, TWO_PI); float latitud = map(pp.y, 0, _height, PI, 0);

3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886

float x = ratio*sin(latitud)*sin(longitud); float y = ratio*cos(latitud); float z = ratio*sin(latitud)*cos(longitud);

3887 3888 3889 3890

PVector vector = new PVector(x, y, z); return vector; } void draw(PGraphics pg) { pg.noFill();//stroke(255); pg.beginShape(); for (int i=0; i<points.length; i++) { pg.vertex(vectors[i].x, vectors[i].y, vectors[i].z); } pg.endShape(CLOSE); }

3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901

}

3902 3903

}

3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915

class Poligon { PVector[] vertices;

3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960

Poligon(float cx, float cy, float ratio, int $sides) { vertices = new PVector[$sides]; float da = TWO_PI/$sides; float a = 0; for (int i=0; i<vertices.length; i++) { float r = random(0.4*ratio, ratio); float x = cx+r*cos(a); float y = cy+r*sin(a); vertices[i] = new PVector(x, y); a+=da; } } Poligon(PVector[] bertices) { vertices = new PVector[bertices.length]; for (int i=0; i<vertices.length; i++) { vertices[i] = bertices[i]; } } Poligon(Point[] bertices) { vertices = new PVector[bertices.length]; for (int i=0; i<vertices.length; i++) { vertices[i] = new PVector(bertices[i].x, bertices[i].y); } } Poligon(ArrayList bertices) { vertices = new PVector[bertices.size()]; for (int i=0; i<vertices.length; i++) { PVector tmp = (PVector)bertices.get(i); vertices[i] = tmp;//new PVector(tmp.x, tmp.y); } } void draw(PGraphics pg) { pg.beginShape(); for (int i=0; i<vertices.length; i++) { //if(vertices[i].y>=0) if (i>0 && dist(vertices[i].x, vertices[i].y, vertices[i-1].x, vertices[i-1].y)<100) pg.vertex(vertices[i].x, vertices[i].y); } pg.endShape(); } void vertexDraw(PGraphics pg) { for (int i=0; i<vertices.length; i++) { float sz=2; pg.noFill();

125


pg.pushMatrix(); pg.translate(vertices[i].x, vertices[i].y); pg.strokeWeight(1); stroke(255, random(96, 128)); pg.rect(0, 0, sz, sz); pg.popMatrix();

3961 3962 3963 3964 3965 3966

} } void cycle(PGraphics pg) { int i = int(1*frameCount)%vertices.length; float sz=8; pg.noFill(); pg.pushMatrix(); pg.translate(vertices[i].x, vertices[i].y); pg.strokeWeight(1); stroke(255, random(192, 240)); pg.rect(0, 0, sz, sz); pg.popMatrix(); }

3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980

}

3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991

PVector[] calcInners(Poligon polig, float zTep) { PVector[] vertices = polig.vertices; PVector[] inners = new PVector[vertices.length]; for (int i=0; i<vertices.length; i++) { PVector prev, midprev, me, midnext, next; prev = new PVector(vertices[(vertices.length+i-1)%vertices.length].x, vertices[(vertices.length+i-1)%vertices.length].y); me = new PVector(vertices[i].x, vertices[i].y); next = new PVector(vertices[(i+1)%vertices.length].x, vertices[(i+1)%vertices.length].y); midprev = new PVector((me.x+prev.x)/2, (me.y+prev.y)/2); midnext = new PVector((me.x+next.x)/2, (me.y+next.y)/2);

3992

float float float float

3993 3994 3995 3996

aprev = atan2((me.y-prev.y), (me.x-prev.x)); antiAprev = aprev+PI/2; anext = atan2((next.y-me.y), (next.x-me.x)); antiAnext = anext+PI/2;

3997

PVector auxprev1 = new PVector(); auxprev1.x = midprev.x+zTep*cos(antiAprev); auxprev1.y = midprev.y+zTep*sin(antiAprev);

3998 3999 4000 4001

PVector auxprev2 = new PVector(); auxprev2.x = me.x+zTep*cos(antiAprev); auxprev2.y = me.y+zTep*sin(antiAprev);

4002 4003 4004 4005

PVector auxnext3 = new PVector(); auxnext3.x = me.x+zTep*cos(antiAnext); auxnext3.y = me.y+zTep*sin(antiAnext);

4006 4007 4008 4009

PVector auxnext4 = new PVector(); auxnext4.x = midnext.x+zTep*cos(antiAnext); auxnext4.y = midnext.y+zTep*sin(antiAnext);

4010 4011 4012 4013

//inners[i] = new PVector((auxnext.x+auxprev.x)/2, (auxnext.y+auxprev.y)/2); float x1, x2, x3, x4, y1, y2, y3, y4;

4014 4015 4016

x1 y1 x2 y2 x3 y3 x4 y4

4017 4018 4019 4020 4021 4022 4023 4024

= = = = = = = =

auxprev1.x; auxprev1.y; auxprev2.x; auxprev2.y; auxnext3.x; auxnext3.y; auxnext4.x; auxnext4.y;

4025 4026

float ua = ((x4-x3)*(y1-y3)-(y4-y3)*(x1-x3))/((y4-y3)*(x2-x1)-(x4-x3)*(y2-y1)); float ub = ((x2-x1)*(y1-y3)-(y2-y1)*(x1-x3))/((y4-y3)*(x2-x1)-(x4-x3)*(y2-y1));

4027 4028 4029

float x = x1+ua*(x2-x1); float y = y1+ua*(y2-y1);

4030 4031 4032

if (((y4-y3)*(x2-x1)-(x4-x3)*(y2-y1))!=0) { inners[i] = new PVector(x, y); } else { if (i>0) inners[i] = inners[i-1]; else inners[i] = new PVector(360, 240);//width/2,height/2);//0,0);// }

4033 4034 4035 4036 4037 4038 4039 4040 4041

} return(inners);

4042 4043 4044 4045

126

}


1 2 3 4 5 6 7 8 9 10 11 12

class VScreen extends Rectangle { PFont font;// = loadFont("CoyarzunAtarinormal-100.vlw");; PGraphics pg; boolean showCursor; float alfa, toalfa, dalfa; String lastlyric = ""; String vislyric = ""; String tmp = ""; float lyricop = 0; float lyricd = .975; float tw = 32; int vl = 0;

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

VScreen() { } VScreen(int _x, int _y, int _width, int _height) { x = _x; y = _y; width = _width; height = _height; pg = createGraphics((int)width, (int)height, P2D); } void draw(PGraphics pg) { } void mouseMoved() { if (mouseX>=x && mouseX<x+width && mouseY>=y && mouseY<y+height) { if (showCursor) { noCursor(); } else { noCursor(); } } } void fadein() { toalfa = 255; } void fadeout() { toalfa = 0; } void fade() { dalfa = (toalfa-alfa)*.12; alfa+=dalfa; } void addLyric(String l) { lastlyric = l; vislyric = " "+lastlyric+" ";

48

vl = vislyric.length(); vislyric+=" *** ";

49 50 51

lyricop = 180; lyricd = 1.012;

52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75

} } class Rectangle { float x, y, width, height; Rectangle() { } } class Point { float x, y; Point() { } Point(float _x, float _y) { x = _x; y = _y; } } class VShape extends VGeom { ArrayList vgeoms; boolean run; float perimeter; float runpos, runstep, runspeed; int runpath;

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

VShape() { vgeoms = new ArrayList(); } void add(VGeom vg) { vgeoms.add(vg); perimeter+=vg.perimeter; } void addArc(float _x, float _y, float _width, float _height, float _start, float _stop) { VArc tmp = new VArc(_x, _y, _width, _height, _start, _stop); vgeoms.add(tmp); perimeter+=tmp.perimeter; } void addLine(float _x1, float _y1, float _x2, float _y2) { VLine tmp = new VLine(_x1, _y1, _x2, _y2); vgeoms.add(tmp); perimeter+=tmp.perimeter; } void translate(float x, float y) { for (int i=0; i<vgeoms.size(); i++) { VGeom tmp = (VGeom)vgeoms.get(i); tmp.translate(x, y); } } void scale(float s) { for (int i=0; i<vgeoms.size(); i++) { VGeom tmp = (VGeom)vgeoms.get(i); tmp.scale(s); } } void startRun(float speed, float step) { runspeed = speed;//perimeter*speed; runstep = step;//perimeter*step; //println(runstep); run = true;

127


111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130

} void startRun(float speed, float step, float pos) { runspeed = speed;//perimeter*speed; runstep = step;//perimeter*step; runpos = pos; //println(runstep); run = true; } void stopRun() { runpos = 0; runpath = 0; run = false; } void pauseRun() { runpos = 0; runpath = 0; run = false; } void draw(PGraphics pg) { // pg.beginDraw();

131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154

if (run && vgeoms.size()>1) { runRoutine(pg); } else { for (int i=0; i<vgeoms.size(); i++) { VGeom tmp = (VGeom)vgeoms.get(i); tmp.draw(pg); } } // pg.endDraw(); } void setStrokeWeight(float sw) { strokeW = sw; for (int i=0; i<vgeoms.size(); i++) { VGeom tmp = (VGeom)vgeoms.get(i); tmp.setStrokeWeight(sw); } } void runRoutine(PGraphics pg) { float remstep = runstep; float rempos = runpos; float remperimeter = 0; int index = 0;

155 156 157 158 159 160 161 162 163 164 165 166

ArrayList points = new ArrayList(); while (remstep>0) { try { VGeom tmp = (VGeom)vgeoms.get(index%vgeoms.size()); float ipos, epos; ipos = rempos-remperimeter; epos = ipos+remstep; if (epos>tmp.perimeter)epos=tmp.perimeter; float dpos = epos-ipos; boolean drawcondition = ipos >=0 && ipos <= tmp.perimeter;

167

if (drawcondition) { float mv = map(rempos, 0, perimeter, 0, 255)%255; tmp.setcolor(color(mv, 255, 255)); PVector[] vv = tmp.draw(ipos, epos, pg); remstep-=dpos; rempos +=dpos; points.add(vv[0]); if (remstep<=0)points.add(vv[1]); } remperimeter+=tmp.perimeter; index++;

168 169 170 171 172 173 174 175 176 177 178

} catch(Exception e) { }

179 180 181 182

}

183 184

halloesRoutine(points, pg);

185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203

runpos+=runspeed; runpos%=perimeter; } void halloesRoutine(ArrayList points, PGraphics pg) { //Point[] points = blobs[i].points; Poligon somePoligon = new Poligon(points); Poligon[] inners, halloes; inners = new Poligon[4]; halloes = new Poligon[6]; pg.noFill(); pg.strokeWeight(1); for (int j=0; j<inners.length; j++) { inners[j] = new Poligon(calcInners(somePoligon, -2*(j+1))); } for (int j=0; j<halloes.length; j++) { halloes[j] = new Poligon(calcInners(somePoligon, -pow((j+1)/2, 1.2*1))); }

204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220

128

if (innerOn) { for (int j=0; j<inners.length; j++) { pg.stroke(0, 255, map(j, 0, inners.length, 255, 0)); inners[j].draw(pg); } } if (halloesOn) { for (int j=0; j<halloes.length; j++) { pg.stroke(map((halloes.length-j+0.2*frameCount)%halloes.length, 0, halloes.length, 256, 0), 255, 255, map(j, 0, halloes.length, 256, 0)); halloes[j].draw(pg); } } if (outLineOn) { pg.stroke(255); somePoligon.draw(pg); }


221 222 223 224 225 226 227 228 229 230 231 232

if (vertexOn) { pg.stroke(255); somePoligon.vertexDraw(pg); } if (cycleOn) { pg.stroke(255); somePoligon.cycle(pg); } } } class VArc extends VGeom { float x, y, width, height, start, stop;

233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255

VArc(float _x, float _y, float _width, float _height, float _start, float _stop) { x=_x; y=_y; width=_width; height=_height; start=_start; stop=_stop; //s贸lo x mientras asumiendo q es un arco de circunferencia //2*PI*ratio perimeter = (stop-start)*(width/2); } void draw() { arc(x, y, width, height, start, stop); } void translate(float _x, float _y) { x+=_x; y+=_y; } } class VLine extends VGeom { float x1, y1, x2, y2; float angle;

256 257 258 259 260 261

VLine(float _x1, float _y1, float _x2, float _y2) { x1=_x1; y1=_y1; x2=_x2; y2=_y2;

262 263 264

perimeter = dist(x1, y1, x2, y2); angle = atan2((y2-y1), x2-x1);

265 266 267 268 269 270 271 272 273 274

//println(perimeter); } void draw(PGraphics pg) { pg.strokeWeight(1); pg.stroke(keylineKolor); //pg.line(x1,y1,x2,y2); } PVector[] draw(float frompos, float topos, PGraphics pg) { PVector[] a = new PVector[2];

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

float xx1, yy1, xx2, yy2; xx1 = x1+frompos*cos(angle); yy1 = y1+frompos*sin(angle); xx2 = xx1+(topos-frompos)*cos(angle); yy2 = yy1+(topos-frompos)*sin(angle); //println("-->"+(topos-frompos)); pg.strokeWeight(strokeW); pg.stroke(strokeKolor); //pg.line(xx1,yy1,xx2,yy2); /* pg.strokeWeight(1); pg.stroke(keylineKolor); pg.noFill(); ellipse(xx2,yy2,6,6);*/ a[0] = new PVector(xx1, yy1); a[1] = new PVector(xx2, yy2); return a; } void translate(float x, float y) { x1+=x; x2+=x; y1+=y; y2+=y; } void scale(float s) { x1*=s; x2*=s; y1*=s; y2*=s; } } class VGeom { float perimeter; color strokeKolor = color(255); color keylineKolor = color(0, 255, 255); float strokeW = 1;

312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330

VGeom() { } void draw() { } void draw(PGraphics pg) { } PVector[] draw(float frompos, float topos) { PVector[] a = new PVector[0]; return a; } PVector[] draw(float frompos, float topos, PGraphics pg) { PVector[] a = new PVector[0]; return a; } void translate(float x, float y) { } void scale(float s) { }

129


void setStrokeWeight(float sw) { strokeW = sw; } void setcolor(color k) { strokeKolor = k; }

331 332 333 334 335 336 337

}

338 339 340 341 342

class VLoogoo extends VScreen { ArrayList glows; BlobWorld blobworld;

343 344 345 346 347 348 349

boolean logon, glowson; boolean morelineson; PGraphics pg; float scalevalue; float auxxoff, auxyoff; float outerscalevalue = 1;

350 351 352 353 354 355 356

VLoogoo(int _x, int _y, int _width, int _height) { x = _x; y = _y; width = _width; height = _height;

357 358 359 360 361

//pg = createGraphics(_width,_height,P2D);//1024, 768, P2D); scalevalue = 2;//1.2;//.5;//1.0; auxxoff = -222/2;//145;//(256/scalevalue-222*scalevalue/2);// = 145;//512/2;//(720-pg.width)/4; auxyoff = -112/2;//136;//(192/scalevalue-112*scalevalue/2);// = 136;//384/2;//(768-pg.height)/4;

362 363 364 365

logon = true; glowson = true; morelineson=true;

366 367

glowsRoutine();

368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390

alfa = 0; toalfa = 255; } void outerscale(float s) { outerscalevalue = s; } void glowsRoutine() { //glows = new VShape(); glows = new ArrayList(); blobworld = new BlobWorld("visuals/loogoo.xml"); for (int i=0; i<blobworld.blobs.length; i++) { //blobs[i].draw(); VShape tmp = new VShape(); for (int j=0; j<blobworld.blobs[i].points.length; j++) { tmp.addLine( blobworld.blobs[i].points[j].x, blobworld.blobs[i].points[j].y, blobworld.blobs[i].points[(j+1)%blobworld.blobs[i].points.length].x, //+random(-10,10), blobworld.blobs[i].points[(j+1)%blobworld.blobs[i].points.length].y//+random(-10,10) ); } tmp.setStrokeWeight(1);

391 392

//tmp.translate(auxxoff,auxyoff);

393 394 395 396 397 398

//tmp.translate(-120/(2/scalevalue),-(250-100)/(2/scalevalue)); //tmp.translate(auxxoff,auxyoff); float sscalevalue = 1; tmp.scale(sscalevalue/2);//;//-120,-(250-100));

399 400 401 402

tmp.translate(-120/(2*sscalevalue), -(250-100)/(2*sscalevalue)); tmp.translate(auxxoff*sscalevalue, auxyoff*sscalevalue); //tmp.translate(pg.width/2,pg.height/2);

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

tmp.startRun(2, tmp.perimeter*.3); glows.add(tmp); } } void draw(PGraphics pg) { pg.beginDraw(); pg.colorMode(HSB); pg.background(0, alfa); pg.translate(pg.width/2, pg.height/2); pg.pushMatrix(); pg.scale(outerscalevalue); pg.scale(scalevalue); pg.pushMatrix(); pg.noSmooth(); for (int i=0; i<glows.size(); i++) { VShape tmp = (VShape)glows.get(i); //pg.translate(-(720-512)/2,-(768-384)/2); //pg.translate((720-pg.width)/4,(768-pg.height)/4); // //pg.scale(scalevalue);// tmp.draw(pg);//, outerscalevalue); } pg.stroke(255); pg.popMatrix();

428 429 430

if (logon) { pg.pushMatrix();

431 432 433 434 435 436 437 438 439 440

130

//pg.scale(scalevalue); pg.translate(auxxoff, auxyoff); //pg.translate(auxxoff/scalevalue,auxyoff/scalevalue); //pg.translate(auxxoff,auxyoff);//(720-pg.width)/4,(768-pg.height)/4); //pg.smooth(); loogoo(pg); pg.popMatrix(); } //vplayer.draw(pg);


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

pg.popMatrix(); } void loogoo(PGraphics pg) { pg.pushMatrix(); pg.strokeJoin(ROUND); pg.strokeCap(ROUND); //pg.scale(2); for (int j=0; j<2; j++) { pg.stroke(j==0? color(4*frameCount%255, 255, 255, 220) :255);// color(random(100,120),255,random(128,255),128):0);//color(random(255),255,255));//color(255,0,0)); pg.noFill(); //pg.fill(0);//,255,255); //if(j==0)//pg.fill(0);else pg.noFill(); pg.strokeWeight(2-j);//*2); //V pg.pushMatrix(); //pg.stroke(255); //pg.fill(0);// pg.translate(5, 5); pg.beginShape(); pg.vertex(10-5, 0+10-10); pg.vertex(20, 20+10); pg.vertex(35+5, 20+10); pg.vertex(45, 40); pg.vertex(55, 40); //pg.vertex(50,50); pg.vertex(72.5, 5); pg.vertex(107.5, 5); pg.vertex(105, 0); pg.vertex(75, 0); pg.vertex(65, 0); pg.vertex(50, 30); pg.vertex(35+5-5, 0+10-10); pg.endShape(CLOSE);

476 477 478 479 480 481 482 483 484 485 486 487 488 489

if (morelineson) { //pg.stroke(255,0,0); pg.noFill(); for (int i=1; i<5;i++) { pg.beginShape(); pg.vertex(10+5+1.1*(5-i), 20+2*(5-i)); pg.vertex(40+1.1*i, 20+2*(5-i)); pg.vertex(50, 50-4*i); pg.vertex(50+15-2*i, 20); pg.endShape(); } }

490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513

pg.popMatrix(); //O pg.pushMatrix(); //pg.stroke(255); //pg.fill(0);// pg.translate(5, 5); pg.translate(70, 10); pg.beginShape(); pg.vertex(5, 0); pg.vertex(0, 10); pg.vertex(10, 30); pg.vertex(20, 30); //pg.vertex(15,40); pg.vertex(30, 10); pg.vertex(25, 0); pg.endShape(CLOSE); //o calatto //pg.fill(255);// pg.beginShape(); pg.vertex(8, 10); pg.vertex(15, 24); pg.vertex(22, 10); pg.endShape(CLOSE);

514 515 516 517 518 519 520 521 522 523 524 525 526

if (morelineson) { //pg.stroke(255,0,0); pg.noFill(); for (int i=1; i<4;i++) { pg.beginShape(); pg.vertex(0+2*i, 10); pg.vertex(15, 40-4*i); pg.vertex(15+15-2*i, 10); pg.endShape(); } } pg.popMatrix();

527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550

//O 2 pg.pushMatrix(); //pg.fill(0);// //pg.stroke(255); pg.translate(5, 5); pg.translate(95, 10); pg.beginShape(); pg.vertex(10, 10); //pg.vertex(15,0); pg.vertex(0, 30); pg.vertex(5, 40); pg.vertex(25, 40); pg.vertex(30, 30); pg.vertex(20, 10); pg.endShape(CLOSE); //pg.fill(255);// //o calatto pg.beginShape(); pg.vertex(8, 30); pg.vertex(22, 30); pg.vertex(15, 16); pg.endShape(CLOSE);

131


551 552 553 554 555 556 557 558 559 560 561 562 563

if (morelineson) { //pg.stroke(255,0,0); pg.noFill(); for (int i=1; i<4;i++) { pg.beginShape(); pg.vertex(0+2*i, 10+20); pg.vertex(15, 0+4*i); pg.vertex(15+15-2*i, 10+20); pg.endShape(); } } pg.popMatrix();

564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585

//D pg.pushMatrix(); //pg.fill(0);// //pg.stroke(255); pg.translate(5, 5); pg.translate(70+40, 0); pg.beginShape(); pg.vertex(0, 0); pg.vertex(20, 40); pg.vertex(30, 40); //pg.vertex(25,50); pg.vertex(45, 10); pg.vertex(40, 0); pg.endShape(CLOSE); //D calatto //pg.fill(255);// pg.beginShape(); pg.vertex(10+8, 10+10); pg.vertex(10+15, 10+24); pg.vertex(10+22, 10+10); pg.endShape(CLOSE);

586 587 588 589 590 591 592 593 594 595 596 597

if (morelineson) { //pg.stroke(255,0,0); pg.noFill(); for (int i=1; i<4;i++) { pg.beginShape(); pg.vertex(10+2*i, 10+10); pg.vertex(25, 40+10-4*i); pg.vertex(25+15-2*i, 10+10); pg.endShape(); } }

598 599

pg.popMatrix();

600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622

//O 3 pg.pushMatrix(); //pg.fill(0);// //pg.stroke(255); pg.translate(5, 5); pg.translate(60+75+10, 10); pg.beginShape(); pg.vertex(10, 10); //pg.vertex(15,0); pg.vertex(0, 30); pg.vertex(5, 40); pg.vertex(25, 40); pg.vertex(30, 30); pg.vertex(20, 10); pg.endShape(CLOSE); //o calatto //pg.fill(255);// pg.beginShape(); pg.vertex(8, 30); pg.vertex(22, 30); pg.vertex(15, 16); pg.endShape(CLOSE);

623 624 625 626 627 628 629 630 631 632 633 634 635

if (morelineson) { //pg.stroke(255,0,0); pg.noFill(); for (int i=1; i<4;i++) { pg.beginShape(); pg.vertex(0+2*i, 10+20); pg.vertex(15, 0+4*i); pg.vertex(15+15-2*i, 10+20); pg.endShape(); } } pg.popMatrix();

636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658

//O4 pg.pushMatrix(); //pg.fill(0);// //pg.stroke(255); pg.translate(5, 5); pg.translate(85+75+10, 10); pg.beginShape(); pg.vertex(5, 0); pg.vertex(0, 10); pg.vertex(10, 30); pg.vertex(20, 30); //pg.vertex(15,40); pg.vertex(30, 10); pg.vertex(25, 0); pg.endShape(CLOSE); //o calatto //pg.fill(255);// pg.beginShape(); pg.vertex(8, 10); pg.vertex(15, 24); pg.vertex(22, 10); pg.endShape(CLOSE);

659 660

132

if (morelineson) {


661 662 663 664 665 666 667 668 669 670 671

//pg.stroke(255,0,0); pg.noFill(); for (int i=1; i<4;i++) { pg.beginShape(); pg.vertex(0+2*i, 10); pg.vertex(15, 40-4*i); pg.vertex(15+15-2*i, 10); pg.endShape(); } } pg.popMatrix();

672 673 674 675 676 677 678 679 680 681 682 683 684 685

//C pg.pushMatrix(); //pg.fill(0);// //pg.stroke(255); pg.translate(5, 5); pg.translate(55, 55); pg.beginShape(); pg.vertex(5, 0); pg.vertex(0, 10); pg.vertex(15, 40); pg.vertex(25, 40); //pg.vertex(20,50); pg.vertex(25, 40);

686 687 688 689 690 691 692 693 694

pg.vertex(30, 30); pg.vertex(20, 30); pg.vertex(10, 10); pg.vertex(15, 10); pg.vertex(20, 20); pg.vertex(35, 20); pg.vertex(45, 0); pg.endShape(CLOSE);

695 696 697 698 699 700 701 702 703 704

if (morelineson) { //pg.stroke(255,0,0); pg.noFill(); for (int i=1; i<5;i++) { pg.beginShape(); pg.vertex(5+2*i, 10+10); pg.vertex(20, 40+10-4*i); pg.vertex(25-i, 30+10-2*i);//20,40+10-4*i); pg.vertex(25+i, 30+10-2*i);

705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721

pg.endShape(); } } pg.popMatrix(); //hI pg.pushMatrix(); //pg.fill(0);// //pg.stroke(255); pg.translate(5, 5); pg.translate(55+40, 55); pg.beginShape(); pg.vertex(10, 0); pg.vertex(7.5, 5); pg.vertex(32.5, 5); pg.vertex(35, 0); pg.endShape(CLOSE);

722 723 724 725 726 727 728

pg.beginShape(); pg.vertex(20-15, 10); pg.vertex(0-15, 50); pg.vertex(10-15, 50); pg.vertex(10-15+5, 50-10); pg.vertex(10-15+5+5, 50-10);

729 730 731 732 733

pg.vertex(0, 50); pg.vertex(10, 50); pg.vertex(30, 10); pg.vertex(20, 10);

734 735 736 737 738

pg.vertex(10-15+5+5+5, 50-10-10); pg.vertex(10-15+5+5, 50-10-10); pg.vertex(30-15, 10); pg.endShape(CLOSE);

739 740 741 742 743 744 745 746 747 748 749 750 751 752

if (morelineson) { //pg.stroke(255,255,255); pg.noFill(); for (int i=1; i<12; i++) { //pg.line(); if (!(i>=4 && i<=8)) { pg.line(+2.1*i-1, 10+10+2, -15+2.1*i, 50 ); } } //pg.line(9+2*(1-i),50-2,22+.2+2*(1-i),10+2+10); }

753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770

pg.popMatrix(); //L pg.pushMatrix(); //pg.fill(0);// //pg.stroke(255); pg.translate(5, 5); pg.translate(55+40+15, 55); pg.beginShape(); pg.beginShape(); pg.vertex(20, 10); pg.vertex(5, 40); pg.vertex(10, 50); //pg.vertex(0,50); pg.vertex(35, 50); pg.vertex(40, 40); pg.vertex(15, 40); pg.vertex(30, 10);

133


pg.endShape(CLOSE);

771 772

if (morelineson) { //pg.stroke(255,0,0); pg.noFill(); for (int i=1; i<5; i++) { pg.beginShape(); pg.vertex(22+.2+2*(1-i), 10+2+10); pg.vertex(9+3*(2-i), 42-2*(1-i)); pg.vertex(37 + (1-i), 42-2*(1-i)); pg.endShape(); } }

773 774 775 776 777 778 779 780 781 782 783 784

pg.popMatrix();

785 786

//D pg.pushMatrix(); //pg.fill(0);// //pg.stroke(255); pg.translate(5, 5); pg.translate(55+40+30+15, 55); pg.beginShape(); pg.vertex(0, 0); pg.vertex(20, 40); pg.vertex(30, 40); //pg.vertex(25,50); pg.vertex(45, 10); pg.vertex(40, 0); pg.endShape(CLOSE); //D calatto //pg.fill(255);// pg.beginShape(); pg.vertex(10+8, 10+10); pg.vertex(10+15, 10+24); pg.vertex(10+22, 10+10); pg.endShape(CLOSE);

787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808

if (morelineson) { //pg.stroke(255,0,0); pg.noFill(); for (int i=1; i<4;i++) { pg.beginShape(); pg.vertex(10+2*i, 10+10); pg.vertex(25, 40+10-4*i); pg.vertex(25+15-2*i, 10+10); pg.endShape(); } } pg.popMatrix();

809 810 811 812 813 814 815 816 817 818 819 820

} pg.popMatrix();

821 822 823

pg.endDraw();

824

}

825 826

void if if if if }

827 828 829 830 831 832 833

keyPressed() { (key=='z')logon=!logon; (key=='x')halloesOn=!halloesOn; (key=='c')innerOn=!innerOn; (key=='v')morelineson=!morelineson;

}

834 835 836 837 838

class FlowR { int lastx = -1; int lasty = -1;

839 840 841 842 843 844 845

ArrayList v, w; FlowR() { } void flowrRoutine() { v = new ArrayList(); w = new ArrayList();

846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862

float ratio = 100+stageManager.daSong.beatMap.snare.currentside; float cx = 0;//width/2; float cy = -20;//height/2-20; float da = radians(10)/10; float sw = 6; for (int j=0; j<3; j++) { VShape tmp = new VShape(); ratio-=10; for (float i=0; i<TWO_PI; i+=da) { float x0, y0, x1, y1; float r = pfn(ratio, i); x0 = cx+r*cos(i+PI/2); y0 = cy+r*sin(i+PI/2); r = pfn(ratio, (i+da)); x1 = cx+r*cos(i+da+PI/2); y1 = cy+r*sin(i+da+PI/2);

863 864 865 866 867 868 869 870 871 872 873 874 875 876

tmp.addLine(x0, y0, x1, y1); } tmp.setStrokeWeight(sw); tmp.startRun(10, tmp.perimeter*.9, (frameCount*10)%tmp.perimeter); sw*=.8; w.add(tmp);

} } float pfn(float r, float a) { return r*(stageManager.daSong.beatMap.snare.currentside/20+cos((3+stageManager.daSong.beatMap.kick.currentside/20)*(a*(1+stageManager.daSong.beatMap.hat.currentside/20))));//*random(.9,1);//-radians(2*frameC } void draw(PGraphics pg) { flowrRoutine();

877 878 879 880

134

//pg.background(0); pg.strokeCap(ROUND); for (int i=0; i<v.size(); i++) {


VShape tmp = (VShape)v.get(i); tmp.draw(pg); } for (int i=0; i<w.size(); i++) { VShape tmp = (VShape)w.get(i); tmp.draw(pg); }

881 882 883 884 885 886 887

}

888 889

}

890 891 892 893

class OldVFlowR extends VScreen { color bgcolor; FlowR flower;

894

OldVFlowR(int _x, int _y, int _width, int _height, color bg) { x = _x; y = _y; width = _width; height = _height; bgcolor = bg; font = loadFont("CoyarzunAtarinormal-100.vlw"); flower = new FlowR(); } void draw(PGraphics pg) { pg.beginDraw(); pg.colorMode(HSB); //pg.background(0);//bgcolor);//0,0); int kk = int(10*sin(radians((1+stageManager.daSong.beatMap.snare.currentside/20)*frameCount%360))); pg.pushMatrix(); pg.translate(pg.width/2, pg.height/2); pg.rotate(radians(10*sin(radians(4*frameCount%360)))); pg.translate(-pg.width/2, -pg.height/2); pg.image(pg, -kk, -kk, pg.width+2*kk+1, pg.height+2*kk+1); pg.popMatrix();

895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915

pg.noStroke(); pg.fill(0, 32); pg.rect(0, 0, pg.width, pg.height); pg.translate(pg.width/2, pg.height/2); if (stageManager.daSong.rocking) { int pos = stageManager.daSong.bar*16 + stageManager.daSong.frame; stageManager.daSong.beatMap.update(pos); flower.draw(pg); } pg.endDraw();

916 917 918 919 920 921 922 923 924 925

}

926 927

}

928 929 930 931 932 933 934 935 936 937 938

class VTheEternalCity extends VScreen { color bgcolor; float noiseScale1=.1;//01;//0.02;//.01;//0.02; float noiseScale2=.01; int w, h; float cell; float playerx, playery; float xpos, ypos; float friction = .24;

939 940 941 942 943 944 945 946

VTheEternalCity(int _x, int _y, int _width, int _height, color bg) { x = _x; y = _y; width = _width; height = _height; bgcolor = bg; font = loadFont("CoyarzunAtarinormal-100.vlw");

947 948 949 950 951 952 953 954

w = 24; h = 48; cell = width/w; playerx = 0; playery = 50; } void draw(PGraphics pg) {

955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972

pg.beginDraw(); pg.colorMode(HSB); pg.background(255);//bgcolor);//0,0); pg.translate(pg.width/2, pg.height/2); if (stageManager.rocking) { doLandscape(pg); } pg.endDraw(); } void doLandscape(PGraphics pg) { //background(0); //noiseScale = log(1000*mouseX); //println(log(mouseX)); pg.noStroke(); pg.lights(); //pg.translate(width/2,height/2); pg.rotateX(-radians(2));

973 974 975 976

float val; float val1= stageManager.daSong.beatMap.kick.currentside; float val2 = -frameCount+stageManager.daSong.beatMap.snare.currentside;

977 978 979 980 981 982 983 984 985 986

float pnoiseVal = noise((val1+w/2)*noiseScale2, (val2+h/2+15)*noiseScale2); playery = cell*pow(.5+pnoiseVal, 12)/2+50; //println(playery); float dx = (playerx-xpos)*friction; float dy = (playery-ypos)*friction; xpos+=dx; ypos+=dy; pg.translate(xpos, ypos, 0); pg.translate(-w*cell/2, 0, -h*cell*.75);

987 988 989 990

for (int j=0; j<h; j++) { for (int i=0; i<w; i++) { float noiseVal;

135


noiseVal = noise((val1+i)*noiseScale1, (val2+j)*noiseScale1); pg.pushMatrix(); pg.translate(i*cell, 0, j*cell); //if(i!=w/2){ pg.fill(255*stageManager.daSong.beatMap.hat.currentside/100);//(200+int(noiseVal*128))%256+frameCount)%256,200, //if(random(1)>.9) pg.box(cell*.8, cell*pow(.5+noiseVal, 12), cell*.8); /*}else{ noiseVal = noise((val1+i)*noiseScale2, (val2+j)*noiseScale2); pg.fill(int(noiseVal*128)%256,200,255); pg.box(cell*.8,cell*pow(.5+noiseVal,12),cell*.8); }*/ pg.popMatrix();

991 992 993 994 995 996 997 998 999 1000 1001 1002 1003

}

1004

}

1005

}

1006 1007

}

1008 1009 1010 1011 1012

class FlowRVisuals extends VScreen { color bgcolor; Venus venus; PImage prev;

1013 1014

FlowRVisuals(int _x, int _y, int _width, int _height, color bg) {

1015 1016 1017 1018 1019 1020 1021

x = _x; y = _y; width = _width; height = _height; bgcolor = bg; font = loadFont("CoyarzunAtarinormal-100.vlw");

1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053

venus = new Venus(0, 0, 0, 50); prev = createImage(int(width), int(height), HSB); } void draw(PGraphics pg) { pg.beginDraw(); pg.colorMode(HSB); pg.background(bgcolor, 64);//255,0,64); pg.pushMatrix(); pg.translate(width/2, height/2); pg.scale(4); //scale(.8); pg.rotateX(radians(2*frameCount%360)); pg.rotateZ(radians(frameCount%360)); doLights(pg); glitch(pg); venus.draw(pg); pg.popMatrix(); int ad = -10;////-10; prev.copy(pg, 0, 0, int(width), int(height), ad, ad, int(width)-2*ad, int(height)-2*ad);//<<200 pg.endDraw(); } void doLights(PGraphics pg) { pg.ambientLight(190, 255, 155+stageManager.daSong.beatMap.kick.currentside); pg.spotLight(240, 255, 155+stageManager.daSong.beatMap.hat.currentside, 0, -200, 0, 0, 1, 0, PI/2, 2); // //pg.directionalLight(51, 102, 126, 0, -1, 0); pg.pointLight(160, 255, 155+stageManager.daSong.beatMap.snare.currentside, 0, 500, 0); } class Venus { float x, y, z; float r; Turururu[] turururus;

1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093

Venus(float x, float y, float z, float r) { this.x=x; this.y=y; this.z=z; this.r=r; turururus = new Turururu[50]; for (int i=0; i<turururus.length; i++) { float rr = random(r); float a = random(TWO_PI); float xx = rr*cos(a); float aa = map(rr, 0, r, 0, PI/2); float yy = rr*sin(aa); float zz = rr*sin(a); float rotx = 0;//atan2(x,y)+PI; float roty = -a-PI/2;//a-PI/2; float rotz = 0; float baseH = map(rr, 0, r, r/10, r/5); turururus[i] = new Turururu(xx, yy, zz, rotx, roty, rotz, baseH); } } void draw(PGraphics pg) { pg.pushMatrix(); //translate(width/2, height/2); pg.translate(x, y, z); pg.scale(0.3+stageManager.daSong.beatMap.snare.currentside/100); pg.rotateY(radians(frameCount%360)); for (int i=0; i<turururus.length; i++) { turururus[i].draw(pg); } pg.popMatrix(); } } class Turururu { float x, y, z; float rotx, roty, rotz; int parts; float baseH; float scalef; float dAngle;

1094 1095 1096 1097 1098 1099 1100

136

Turururu(float x, float y, float z, float rotx, float roty, float rotz, float baseH) { this.x=x; this.y=y; this.z = z; this.rotx=rotx; this.roty=roty;


this.rotz=rotz; parts = 40;//40; this.baseH = baseH; scalef = .9;

1101 1102 1103 1104

} void draw(PGraphics pg) { dAngle = radians(20)*(-.4+sin(radians(frameCount%360))*cos(radians(frameCount%360))); pg.pushMatrix(); pg.translate(x, y, z); pg.rotateX(rotx); pg.rotateY(roty); pg.rotateZ(rotz); for (int i=0; i<parts;i++) { pg.stroke(0);//0,0,255);//noStroke(); //fill(224,64,54); float cyclingval = ((parts-i+frameCount*.25)%3)*255/3;//frameCount%256;//random(160,240);// cyclingval = map(cyclingval, 0, 255, 220, 240); pg.fill(cyclingval, 255, 255); //line(0,0,0,baseH); pg.pushMatrix(); pg.translate(0, baseH/2); pg.rectMode(CENTER); pg.rect(0, 0, baseH, baseH); pg.popMatrix(); pg.translate(0, baseH); pg.rotateX(dAngle); pg.scale(scalef); //if(i%30==0)dAngle=-dAngle; } pg.popMatrix(); }

1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131

} void glitch(PGraphics pg) { float percent = map(stageManager.daSong.beatMap.kick.currentside, 0, 100, 100, 0); float spc = map(stageManager.daSong.beatMap.snare.currentside, 0, 100, 100, 0); int shiftH = -200+(int)percent; int shiftV = -200+(int)spc; int vvv = 2*int(random(3, 4)); pg.loadPixels(); for (int i=0;i<pg.pixels.length;i++) {

1132 1133 1134 1135 1136 1137 1138 1139 1140 1141

int x = i%(int)pg.width; int y = (i-x)/(int)pg.width; int shift = shiftH+shiftV*pg.width; int shiftedPosition = (pg.pixels.length+i-shift)%pg.pixels.length; pg.pixels[i] = prev.pixels[abs(shiftedPosition%prev.pixels.length)]<<vvv;

1142 1143 1144 1145 1146

} pg.updatePixels();

1147 1148

}

1149 1150

}

1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171

137


138


1 2 3 4 5 6 7 8

COME CLOSER AND SEE SEE INTO THE TREES FIND THE GIRL WHILE YOU CAN COME CLOSER AND SEE SEE INTO THE DARK JUST FOLLOW YOUR EYES JUST FOLLOW YOUR EYES

9 10 11 12 13 14 15 16 17

I HEAR HER VOICE CALLING MY NAME THE SOUND IS DEEP IN THE DARK I HEAR HER VOICE AND START TO RUN INTO THE TREES INTO THE TREES

18 19

INTO THE TREES

20 21 22 23 24 25 26 27 28

SUDDENLY I STOP BUT I KNOW IT'S TOO LATE I'M LOST IN A FOREST ALL ALONE THE GIRL WAS NEVER THERE IT'S ALWAYS THE SAME I'M RUNNING TOWARDS NOTHING AGAIN, AND AGAIN, AND AGAIN, AGAAAAIN, AND AGAIIIIN, AND AGAIN, AGAIN, AND AAAAAAAAGAIN, AND AGAIN, AGAIN, AND AGAIN, AND AGAIN, AGAAAAIN, AND AGAIIIIN, AND AGAIN, AGAIN, AND AAAAAAAAGAIN, AND AGAIIIIIIIN

139


1

----------------

2 3

0-0-0-0-0-0-0-0-

4 5

0-C-0-C-0-C-0-C-

6 7 8

0---0---0---0----C---C---C---C-

9 10

0-CC0-CC0-CC0-CC

11 12

0-0-000-0-0-000-

13 14

0---------------

15 16

140

0-0-------------


1

1F|----------------

2 3

1F|F---F---F---F---

4 5 6 7

23|F---F---F---F--26|----F-------F--2C|99FF99FF99FF99FF

8 9 10 11 12

23|F---F---F---F--26|----F-----F-F-F2C|99FF99FF99FF99FF 31|9---F---9---F---

13 14 15 16 17

23|F---F---F---F--26|----F-------F--2C|99FF99FF99FF99FF 31|--------F---9---

18 19 20 21

23|F---F---F---F--26|----F-------F--2C|--FF--FF--FF--FF

22 23 24 25

23|F---F---F---F--26|99FF99FF99FF99FF 2C|99FF99FF99FF99FF

26 27 28

23|F---F---F---F--2C|99FF99FF99FF99FF

29 30

23|F---F---F---F---

31 32 33 34

23|F--------------26|F--------------31|F---------------

35 36 37 38 39

23|F-F-----F-F----26|----F-F-----F-F31|----6-6-----6-62C|--69--69--69--69

40 41 42 43 44

23|F-F-----F-F----26|FFFFF-F-FFFFF-F31|----F-F-----6-F2C|99FF99FF99FF99FF

45 46 47 48 49

23|F---F---F---F--26|----F-------F--2C|99FF99FF99FF99FF 31|F---------------

50 51 52 53

23|F-F-----F-F----26|FFFFF-F-FFFFFFFF 2C|----F-F---F-F-F-

54 55 56 57 58

23|F---F---F---F--26|F---F---F---F--31|F---F---F---F--2C|99FF99FF99FF99FF

59 60 61 62 63

23|F---F---F---F--26|FFFFF-F-FFFFFFFF 31|F---F---F---F--2C|99FF99FF99FF99FF

141


1

----------------

2 3 4

0-0-0-0-0-0-0-07-7-7-7-7-7-7-7-

5 6 7

-0-0-0-0-0-0-0-0 -7-7-7-7-7-7-7-7

8 9 10

0000000000000000 7777777777777777

11 12

0-CC0-CC0-CC0-CC

13 14

0-0-000-0-0-000-

15 16

0---------------

17 18 19

142

0-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

See me drivin down the street, I'm bored with looking good. I got both hands off the wheel, The cops are coming. I'm listening to the music with no fear, You can hear it too if your sincere... Coz I'm a punk rocker yes I am. Well I'm a punk rocker yes I am. I see you stagger in the street, And you can't stay on your feet. And your faking in your sleep, You wish that you were deep. You can't hear me laughing to myself, If you could you would be someone else. Coz I'm a punk rocker yes I am. Well I'm a punk rocker yes I am. Coz I'm a punk rocker yes I am. Well I'm a punk rocker yes I am. See me die on bleaker street, I'm bored with being god, See me sneering in my car, I'm driving to my star. I'm listening to the music with no fear, You can hear it too if your sincere... Coz I'm a punk rocker yes I am. Well I'm a punk rocker yes I am. Coz I'm a punk rocker yes I am. Well I'm a punk rocker yes I am. Coz I'm a punk rocker yes I am. Well I'm a punk rocker yes I am.

143


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

144

CONFUSION IN HER EYES THAT SAYS IT ALL SHE'S LOST CONTROL AND SHE'S CLINGING TO THE NEAREST PASSER BY SHE'S LOST CONTROL AND SHE GAVE AWAY THE SECRETS OF HER PAST AND SAID I'VE LOST CONTROL AGAIN AND A VOICE THAT TOLD HER WHEN AND WHERE TO ACT SHE SAID I'VE LOST CONTROL AGAIN AND SHE TURNED TO ME AND TOOK ME BY THE HAND AND SAID I'VE LOST CONTROL AGAIN AND HOW I'LL NEVER KNOW JUST WHY OR UNDERSTAND SHE SAID I'VE LOST CONTROL AGAIN AND SHE SCREAMED OUT KICKING ON HER SIDE AND SAID I'VE LOST CONTROL AGAIN AND SEIZED UP ON THE FLOOR, I THOUGHT SHE'D DIE SHE SAID I'VE LOST CONTROL SHE'S LOST CONTROL AGAIN SHE'S LOST CONTROL SHE'S LOST CONTROL AGAIN SHE'S LOST CONTROL WELL I HAD TO 'PHONE HER FRIEND TO STATE MY CASE AND SAY SHE'S LOST CONTROL AGAIN AND SHE SHOWED UP ALL THE ERRORS AND MISTAKES AND SAID I'VE LOST CONTROL AGAIN BUT SHE EXPRESSED HERSELF IN MANY DIFFERENT WAYS UNTIL SHE LOST CONTROL AGAIN AND WALKED UPON THE EDGE OF NO ESCAPE AND LAUGHED I'VE LOST CONTROL SHE'S LOST CONTROL AGAIN SHE'S LOST CONTROL SHE'S LOST CONTROL AGAIN SHE'S LOST CONTROL SHE'S LOST CONTROL AGAIN SHE'S LOST CONTROL SHE'S LOST CONTROL AGAIN SHE'S LOST CONTROL


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

Who's the leader of the club That's made for you and me M-I-C-K-E-Y M-O-U-S-E Hey! there, Hi! there, Ho! there You're as welcome as can be M-I-C-K-E-Y M-O-U-S-E Mickey Mouse! Mickey Mouse! Forever let us hold our banner High! High! High! High! Come along and sing a song And join the jamboree! M-I-C-K-E-Y M-O-U-S-E Mickey Mouse club We'll have fun We'll be new faces High! High! High! High! We'll do things and We'll go places All around the world We'll go marching Who's the leader of the club That's made for you and me M-I-C-K-E-Y M-O-U-S-E Hey! there, Hi! there, Ho! there You're as welcome as can be M-I-C-K-E-Y M-O-U-S-E Mickey Mouse! Mickey Mouse! Forever let us hold our banner High! High! High! High! Come along and sing a song And join the jamboree! M-I-C-K-E-Y M-O-U-S-E M-I-C-K-E-Y M-O-U-S-E M-I-C-K-E-Y M-O-U-S-E

145


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

146

let me see your eyeeess trough the fresh widow then i'll hang my north fix the steps and start the dance let us be our charm about you is the more that i've been known about you is that i'm here trying to see your glowing eyes next side of our fresh widow then let us be our charm in the move if all move then is no time which stars will bright tonight after the sun burns out? wich words will compose the cinema trip? who will be driven all night trough your glowing eyes? your pretty fresh widow eyes smile next to me be my charm be my pretty loved elephant girl teach me about the north about you is the most i've been known before before the charm of this timelet me see your eyeeess trough the fresh widow then i'll hang my north fix the steps and start the dance let me see your eyeeess trough the fresh widow then i'll hang my north fix the steps and start the dance then let us be our charm in the move if all move then is no time


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

<?xml version="1.0" encoding="iso-8859-1"?> <blobworld width="400" height="200"> <blobs> <blob isHole="false" area="15332.0" circumference="1295.1412" > <bounding_rect x="1" y="52" width="220" height="141" /> <centroid x="116" y="135" /> <points> <point x="34" y="52" /> <point x="34" y="55" /> <point x="33" y="56" /> <point x="34" y="57" /> <point x="32" y="59" /> <point x="32" y="61" /> <point x="30" y="63" /> <point x="30" y="64" /> <point x="29" y="65" /> <point x="29" y="66" /> <point x="28" y="67" /> <point x="28" y="74" /> <point x="30" y="74" /> <point x="31" y="75" /> <point x="31" y="76" /> <point x="36" y="81" /> <point x="36" y="82" /> <point x="37" y="83" /> <point x="37" y="84" /> <point x="39" y="86" /> <point x="39" y="87" /> <point x="40" y="88" /> <point x="40" y="90" /> <point x="38" y="92" /> <point x="37" y="92" /> <point x="36" y="91" /> <point x="36" y="90" /> <point x="35" y="89" /> <point x="30" y="89" /> <point x="29" y="88" /> <point x="27" y="88" /> <point x="27" y="89" /> <point x="28" y="89" /> <point x="29" y="90" /> <point x="28" y="91" /> <point x="29" y="92" /> <point x="32" y="92" /> <point x="33" y="91" /> <point x="34" y="92" /> <point x="34" y="93" /> <point x="33" y="94" /> <point x="30" y="94" /> <point x="28" y="96" /> <point x="27" y="95" /> <point x="27" y="94" /> <point x="25" y="92" /> <point x="25" y="91" /> <point x="23" y="91" /> <point x="21" y="89" /> <point x="21" y="87" /> <point x="19" y="87" /> <point x="18" y="88" /> <point x="18" y="90" /> <point x="17" y="91" /> <point x="17" y="92" /> <point x="21" y="92" /> <point x="22" y="93" /> <point x="21" y="94" /> <point x="21" y="97" /> <point x="22" y="97" /> <point x="22" y="94" /> <point x="23" y="93" /> <point x="24" y="94" /> <point x="25" y="94" /> <point x="26" y="95" /> <point x="26" y="96" /> <point x="27" y="97" /> <point x="26" y="98" /> <point x="29" y="98" /> <point x="30" y="99" /> <point x="31" y="99" /> <point x="32" y="100" /> <point x="33" y="100" /> <point x="34" y="99" /> <point x="35" y="100" /> <point x="36" y="100" /> <point x="36" y="99" /> <point x="37" y="98" /> <point x="38" y="99" /> <point x="38" y="100" /> <point x="39" y="101" /> <point x="40" y="100" /> <point x="41" y="100" /> <point x="42" y="99" /> <point x="44" y="99" /> <point x="45" y="100" /> <point x="47" y="100" /> <point x="48" y="101" /> <point x="52" y="101" /> <point x="53" y="102" /> <point x="55" y="102" /> <point x="56" y="103" /> <point x="55" y="104" /> <point x="56" y="104" /> <point x="59" y="107" /> <point x="58" y="108" /> <point x="58" y="111" /> <point x="59" y="112" /> <point x="59" y="115" /> <point x="60" y="116" /> <point x="60" y="117" /> <point x="62" y="117" /> <point x="63" y="118" />

147


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

148

<point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point

x="63" y="125" /> x="64" y="126" /> x="62" y="128" /> x="59" y="128" /> x="59" y="129" /> x="58" y="130" /> x="56" y="130" /> x="55" y="131" /> x="54" y="130" /> x="54" y="128" /> x="52" y="128" /> x="52" y="130" /> x="54" y="130" /> x="55" y="131" /> x="54" y="132" /> x="54" y="133" /> x="53" y="134" /> x="53" y="135" /> x="50" y="138" /> x="47" y="138" /> x="46" y="139" /> x="45" y="139" /> x="44" y="138" /> x="44" y="137" /> x="43" y="136" /> x="44" y="135" /> x="44" y="134" /> x="43" y="134" /> x="42" y="133" /> x="43" y="132" /> x="43" y="131" /> x="42" y="130" /> x="42" y="129" /> x="43" y="128" /> x="41" y="128" /> x="41" y="129" /> x="40" y="130" /> x="40" y="132" /> x="42" y="134" /> x="42" y="135" /> x="43" y="136" /> x="43" y="139" /> x="42" y="140" /> x="42" y="143" /> x="40" y="145" /> x="41" y="146" /> x="41" y="147" /> x="40" y="148" /> x="39" y="147" /> x="39" y="148" /> x="38" y="149" /> x="36" y="149" /> x="34" y="151" /> x="32" y="151" /> x="30" y="153" /> x="29" y="153" /> x="25" y="157" /> x="24" y="157" /> x="20" y="161" /> x="19" y="161" /> x="17" y="163" /> x="17" y="166" /> x="16" y="167" /> x="13" y="167" /> x="12" y="168" /> x="11" y="168" /> x="10" y="167" /> x="9" y="167" /> x="8" y="168" /> x="7" y="168" /> x="6" y="169" /> x="5" y="169" /> x="4" y="170" /> x="1" y="170" /> x="1" y="179" /> x="7" y="179" /> x="8" y="180" /> x="10" y="180" /> x="11" y="179" /> x="17" y="179" /> x="18" y="180" /> x="19" y="180" /> x="20" y="181" /> x="21" y="180" /> x="22" y="181" /> x="26" y="181" /> x="27" y="180" /> x="29" y="180" /> x="30" y="181" /> x="31" y="181" /> x="32" y="182" /> x="38" y="182" /> x="39" y="183" /> x="38" y="184" /> x="31" y="184" /> x="31" y="185" /> x="32" y="186" /> x="32" y="187" /> x="34" y="187" /> x="34" y="186" /> x="35" y="185" /> x="36" y="186" /> x="49" y="186" /> x="49" y="183" /> x="50" y="182" /> x="51" y="182" /> x="53" y="180" /> x="55" y="182" /> x="55" y="183" /> x="59" y="183" />


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

<point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point

x="60" y="184" /> x="61" y="184" /> x="62" y="183" /> x="69" y="183" /> x="70" y="184" /> x="71" y="184" /> x="73" y="186" /> x="73" y="187" /> x="78" y="187" /> x="79" y="188" /> x="79" y="189" /> x="82" y="189" /> x="83" y="190" /> x="86" y="190" /> x="87" y="189" /> x="88" y="190" /> x="89" y="190" /> x="91" y="192" /> x="96" y="192" /> x="98" y="190" /> x="98" y="189" /> x="99" y="188" /> x="100" y="188" /> x="101" y="187" /> x="100" y="186" /> x="101" y="185" /> x="104" y="185" /> x="105" y="184" /> x="106" y="185" /> x="106" y="186" /> x="109" y="186" /> x="109" y="185" /> x="110" y="184" /> x="111" y="185" /> x="112" y="185" /> x="112" y="184" /> x="113" y="183" /> x="117" y="183" /> x="118" y="182" /> x="119" y="183" /> x="122" y="183" /> x="124" y="181" /> x="125" y="181" /> x="127" y="179" /> x="133" y="179" /> x="134" y="180" /> x="136" y="180" /> x="137" y="181" /> x="136" y="182" /> x="135" y="182" /> x="133" y="184" /> x="130" y="184" /> x="129" y="185" /> x="123" y="185" /> x="122" y="186" /> x="123" y="187" /> x="127" y="187" /> x="128" y="186" /> x="135" y="186" /> x="136" y="185" /> x="137" y="185" /> x="138" y="184" /> x="139" y="184" /> x="141" y="182" /> x="142" y="182" /> x="142" y="180" /> x="140" y="180" /> x="139" y="179" /> x="140" y="178" /> x="143" y="178" /> x="144" y="179" /> x="145" y="179" /> x="147" y="177" /> x="148" y="178" /> x="152" y="178" /> x="151" y="177" /> x="151" y="176" /> x="152" y="175" /> x="154" y="177" /> x="156" y="177" /> x="157" y="178" /> x="159" y="178" /> x="160" y="179" /> x="164" y="179" /> x="165" y="180" /> x="167" y="180" /> x="168" y="181" /> x="169" y="181" /> x="170" y="180" /> x="171" y="181" /> x="172" y="180" /> x="178" y="180" /> x="179" y="179" /> x="180" y="179" /> x="181" y="178" /> x="184" y="178" /> x="185" y="177" /> x="186" y="177" /> x="186" y="176" /> x="185" y="175" /> x="187" y="173" /> x="188" y="173" /> x="189" y="172" /> x="191" y="172" /> x="192" y="171" /> x="194" y="171" /> x="194" y="166" /> x="193" y="166" /> x="191" y="164" /> x="191" y="163" />

149


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

150

<point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point

x="190" x="191" x="194" x="195" x="195" x="196" x="197" x="197" x="198" x="199" x="199" x="200" x="201" x="201" x="202" x="201" x="200" x="200" x="201" x="201" x="202" x="207" x="208" x="209" x="209" x="208" x="210" x="211" x="211" x="208" x="207" x="207" x="206" x="205" x="205" x="203" x="201" x="201" x="202" x="210" x="210" x="209" x="210" x="210" x="207" x="206" x="208" x="209" x="210" x="210" x="211" x="211" x="212" x="213" x="214" x="215" x="216" x="217" x="217" x="218" x="219" x="220" x="220" x="219" x="218" x="216" x="215" x="216" x="216" x="218" x="218" x="219" x="219" x="218" x="218" x="219" x="219" x="218" x="218" x="217" x="216" x="215" x="215" x="214" x="214" x="213" x="212" x="210" x="209" x="208" x="207" x="206" x="200" x="199" x="198" x="197" x="195" x="193" x="193" x="191" x="190" x="189" x="189" x="190" x="190" x="186" x="186" x="185" x="185" x="186"

y="162" /> y="161" /> y="161" /> y="160" /> y="159" /> y="158" /> y="159" /> y="160" /> y="160" /> y="161" /> y="162" /> y="162" /> y="163" /> y="165" /> y="166" /> y="167" /> y="167" /> y="169" /> y="169" /> y="168" /> y="167" /> y="167" /> y="166" /> y="166" /> y="165" /> y="164" /> y="162" /> y="162" /> y="158" /> y="158" /> y="157" /> y="156" /> y="156" /> y="155" /> y="154" /> y="154" /> y="152" /> y="151" /> y="150" /> y="150" /> y="148" /> y="147" /> y="146" /> y="142" /> y="142" /> y="141" /> y="139" /> y="139" /> y="138" /> y="137" /> y="136" /> y="134" /> y="133" /> y="133" /> y="134" /> y="134" /> y="133" /> y="134" /> y="135" /> y="135" /> y="134" /> y="134" /> y="131" /> y="131" /> y="132" /> y="132" /> y="131" /> y="130" /> y="129" /> y="127" /> y="126" /> y="125" /> y="124" /> y="123" /> y="119" /> y="118" /> y="117" /> y="116" /> y="114" /> y="113" /> y="113" /> y="112" /> y="111" /> y="110" /> y="109" /> y="108" /> y="108" /> y="106" /> y="106" /> y="105" /> y="105" /> y="106" /> y="106" /> y="107" /> y="107" /> y="108" /> y="108" /> y="106" /> y="105" /> y="105" /> y="106" /> y="105" /> y="102" /> y="101" /> y="99" /> y="95" /> y="93" /> y="92" /> y="87" /> y="86" />


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

<point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point

x="186" x="187" x="187" x="185" x="185" x="184" x="184" x="183" x="183" x="182" x="182" x="180" x="180" x="179" x="179" x="175" x="174" x="169" x="163" x="163" x="162" x="162" x="161" x="160" x="160" x="159" x="159" x="160" x="160" x="159" x="158" x="156" x="155" x="154" x="154" x="155" x="155" x="153" x="153" x="149" x="148" x="145" x="145" x="144" x="144" x="142" x="142" x="141" x="138" x="138" x="140" x="141" x="143" x="144" x="142" x="141" x="139" x="137" x="135" x="134" x="134" x="133" x="133" x="132" x="134" x="133" x="126" x="123" x="123" x="122" x="120" x="119" x="119" x="118" x="118" x="117" x="117" x="118" x="119" x="120" x="120" x="118" x="118" x="119" x="119" x="118" x="118" x="117" x="117" x="116" x="115" x="115" x="114" x="114" x="112" x="111" x="111" x="110" x="109" x="108" x="108" x="110" x="110" x="109" x="110" x="108" x="107" x="107" x="106" x="105"

y="84" /> y="83" /> y="81" /> y="79" /> y="78" /> y="77" /> y="74" /> y="73" /> y="71" /> y="70" /> y="69" /> y="67" /> y="64" /> y="63" /> y="62" /> y="62" /> y="63" /> y="63" /> y="69" /> y="70" /> y="71" /> y="72" /> y="73" /> y="73" /> y="74" /> y="75" /> y="76" /> y="77" /> y="79" /> y="80" /> y="80" /> y="82" /> y="82" /> y="83" /> y="90" /> y="91" /> y="96" /> y="98" /> y="99" /> y="103" /> y="103" /> y="106" /> y="107" /> y="108" /> y="109" /> y="111" /> y="113" /> y="114" /> y="114" /> y="116" /> y="116" /> y="115" /> y="115" /> y="116" /> y="118" /> y="118" /> y="120" /> y="120" /> y="122" /> y="122" /> y="123" /> y="124" /> y="125" /> y="126" /> y="128" /> y="129" /> y="129" /> y="126" /> y="125" /> y="124" /> y="124" /> y="123" /> y="122" /> y="121" /> y="118" /> y="117" /> y="116" /> y="115" /> y="115" /> y="114" /> y="113" /> y="111" /> y="110" /> y="109" /> y="104" /> y="103" /> y="100" /> y="100" /> y="113" /> y="114" /> y="113" /> y="112" /> y="111" /> y="110" /> y="110" /> y="109" /> y="108" /> y="107" /> y="107" /> y="108" /> y="111" /> y="113" /> y="115" /> y="116" /> y="117" /> y="119" /> y="119" /> y="120" /> y="121" /> y="121" />

151


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 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

152

<point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point

x="101" y="125" /> x="98" y="125" /> x="95" y="122" /> x="95" y="118" /> x="96" y="117" /> x="96" y="116" /> x="97" y="115" /> x="97" y="111" /> x="96" y="110" /> x="96" y="109" /> x="93" y="106" /> x="93" y="103" /> x="92" y="103" /> x="91" y="102" /> x="91" y="101" /> x="90" y="100" /> x="90" y="99" /> x="88" y="97" /> x="86" y="97" /> x="85" y="96" /> x="86" y="95" /> x="86" y="94" /> x="85" y="94" /> x="84" y="95" /> x="81" y="92" /> x="77" y="92" /> x="76" y="91" /> x="68" y="91" /> x="66" y="89" /> x="60" y="89" /> x="59" y="90" /> x="58" y="90" /> x="56" y="92" /> x="55" y="92" /> x="54" y="91" /> x="53" y="91" /> x="52" y="92" /> x="52" y="93" /> x="51" y="94" /> x="50" y="93" /> x="49" y="93" /> x="49" y="94" /> x="48" y="95" /> x="47" y="95" /> x="46" y="94" /> x="46" y="92" /> x="47" y="91" /> x="43" y="91" /> x="42" y="90" /> x="42" y="83" /> x="43" y="82" /> x="44" y="83" /> x="46" y="83" /> x="47" y="84" /> x="47" y="89" /> x="48" y="89" /> x="49" y="88" /> x="50" y="88" /> x="51" y="89" /> x="55" y="89" /> x="55" y="88" /> x="54" y="87" /> x="56" y="85" /> x="57" y="86" /> x="59" y="86" /> x="60" y="85" /> x="61" y="85" /> x="64" y="82" /> x="64" y="81" /> x="66" y="79" /> x="68" y="79" /> x="69" y="78" /> x="70" y="78" /> x="71" y="79" /> x="72" y="79" /> x="72" y="78" /> x="73" y="77" /> x="73" y="75" /> x="74" y="74" /> x="74" y="72" /> x="73" y="71" /> x="73" y="69" /> x="72" y="68" /> x="72" y="67" /> x="71" y="66" /> x="71" y="65" /> x="72" y="64" /> x="72" y="63" /> x="71" y="62" /> x="70" y="62" /> x="69" y="61" /> x="68" y="61" /> x="66" y="63" /> x="61" y="63" /> x="60" y="64" /> x="59" y="64" /> x="58" y="65" /> x="51" y="65" /> x="49" y="63" /> x="49" y="62" /> x="48" y="62" /> x="47" y="61" /> x="46" y="61" /> x="43" y="58" /> x="41" y="58" /> x="39" y="56" /> x="39" y="55" /> x="38" y="54" /> x="38" y="53" /> x="37" y="52" />


661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 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 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

</points> </blob> <blob isHole="false" area="8291.5" circumference="920.7077" > <bounding_rect x="213" y="38" width="186" height="157" /> <centroid x="293" y="142" /> <points> <point x="274" y="38" /> <point x="273" y="39" /> <point x="271" y="39" /> <point x="270" y="40" /> <point x="270" y="41" /> <point x="274" y="41" /> <point x="275" y="42" /> <point x="275" y="43" /> <point x="276" y="44" /> <point x="272" y="48" /> <point x="272" y="49" /> <point x="273" y="49" /> <point x="274" y="50" /> <point x="273" y="51" /> <point x="272" y="51" /> <point x="272" y="52" /> <point x="271" y="53" /> <point x="270" y="53" /> <point x="270" y="54" /> <point x="267" y="57" /> <point x="265" y="57" /> <point x="264" y="58" /> <point x="263" y="58" /> <point x="263" y="59" /> <point x="262" y="60" /> <point x="263" y="61" /> <point x="262" y="62" /> <point x="259" y="62" /> <point x="258" y="63" /> <point x="258" y="64" /> <point x="253" y="69" /> <point x="253" y="72" /> <point x="251" y="74" /> <point x="249" y="74" /> <point x="248" y="75" /> <point x="246" y="75" /> <point x="245" y="76" /> <point x="245" y="77" /> <point x="243" y="79" /> <point x="243" y="81" /> <point x="242" y="82" /> <point x="242" y="86" /> <point x="241" y="87" /> <point x="241" y="88" /> <point x="238" y="91" /> <point x="238" y="96" /> <point x="241" y="96" /> <point x="243" y="98" /> <point x="246" y="98" /> <point x="247" y="99" /> <point x="248" y="99" /> <point x="249" y="100" /> <point x="250" y="100" /> <point x="251" y="101" /> <point x="254" y="101" /> <point x="255" y="102" /> <point x="255" y="104" /> <point x="256" y="105" /> <point x="256" y="106" /> <point x="257" y="107" /> <point x="258" y="107" /> <point x="259" y="108" /> <point x="263" y="108" /> <point x="267" y="112" /> <point x="267" y="113" /> <point x="265" y="115" /> <point x="265" y="116" /> <point x="266" y="116" /> <point x="267" y="117" /> <point x="267" y="119" /> <point x="268" y="120" /> <point x="268" y="121" /> <point x="269" y="122" /> <point x="275" y="122" /> <point x="276" y="123" /> <point x="277" y="123" /> <point x="279" y="125" /> <point x="279" y="126" /> <point x="280" y="126" /> <point x="286" y="132" /> <point x="287" y="131" /> <point x="288" y="131" /> <point x="289" y="132" /> <point x="289" y="134" /> <point x="290" y="135" /> <point x="287" y="138" /> <point x="286" y="138" /> <point x="285" y="139" /> <point x="284" y="139" /> <point x="283" y="140" /> <point x="283" y="143" /> <point x="282" y="144" /> <point x="282" y="145" /> <point x="281" y="146" /> <point x="277" y="146" /> <point x="277" y="147" /> <point x="278" y="148" /> <point x="276" y="150" /> <point x="274" y="150" /> <point x="273" y="149" /> <point x="271" y="149" /> <point x="270" y="150" /> <point x="269" y="150" /> <point x="268" y="151" />

153


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 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880

154

<point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point

x="267" x="267" x="266" x="265" x="266" x="266" x="265" x="260" x="259" x="258" x="258" x="259" x="259" x="260" x="261" x="261" x="263" x="264" x="265" x="267" x="268" x="268" x="270" x="270" x="271" x="271" x="269" x="268" x="267" x="267" x="270" x="271" x="272" x="273" x="273" x="275" x="276" x="278" x="279" x="282" x="283" x="284" x="285" x="287" x="288" x="285" x="284" x="284" x="283" x="282" x="281" x="281" x="280" x="279" x="277" x="276" x="266" x="264" x="263" x="262" x="262" x="261" x="261" x="259" x="260" x="260" x="258" x="258" x="257" x="256" x="256" x="255" x="254" x="253" x="251" x="250" x="247" x="247" x="246" x="246" x="244" x="244" x="243" x="238" x="236" x="233" x="232" x="227" x="226" x="225" x="224" x="223" x="223" x="221" x="220" x="219" x="219" x="220" x="218" x="218" x="216" x="213" x="213" x="214" x="219" x="220" x="222" x="223" x="223" x="252"

y="150" y="149" y="149" y="150" y="151" y="152" y="153" y="153" y="152" y="152" y="155" y="156" y="157" y="157" y="158" y="160" y="162" y="162" y="163" y="163" y="164" y="165" y="167" y="168" y="169" y="172" y="174" y="174" y="175" y="176" y="176" y="177" y="177" y="178" y="179" y="179" y="180" y="180" y="181" y="181" y="182" y="182" y="183" y="183" y="184" y="187" y="187" y="188" y="189" y="189" y="188" y="187" y="187" y="186" y="186" y="185" y="185" y="183" y="183" y="182" y="181" y="180" y="179" y="177" y="176" y="175" y="173" y="172" y="172" y="171" y="170" y="169" y="169" y="168" y="168" y="167" y="167" y="168" y="169" y="170" y="172" y="173" y="174" y="174" y="176" y="176" y="177" y="177" y="178" y="178" y="179" y="179" y="181" y="183" y="183" y="184" y="185" y="186" y="188" y="189" y="191" y="191" y="192" y="193" y="193" y="192" y="192" y="193" y="194" y="194"

/> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> />


881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990

<point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point

x="253" x="269" x="270" x="289" x="290" x="301" x="302" x="305" x="305" x="307" x="308" x="310" x="311" x="311" x="312" x="313" x="314" x="315" x="317" x="318" x="318" x="319" x="320" x="321" x="321" x="326" x="327" x="332" x="333" x="336" x="337" x="337" x="338" x="339" x="338" x="339" x="340" x="340" x="341" x="346" x="347" x="348" x="349" x="353" x="354" x="361" x="362" x="372" x="373" x="375" x="376" x="380" x="382" x="385" x="385" x="384" x="385" x="388" x="389" x="392" x="393" x="396" x="397" x="398" x="398" x="397" x="393" x="392" x="391" x="390" x="389" x="389" x="388" x="387" x="387" x="386" x="384" x="385" x="385" x="382" x="381" x="380" x="380" x="378" x="377" x="378" x="380" x="381" x="382" x="383" x="385" x="386" x="387" x="388" x="393" x="394" x="395" x="396" x="398" x="398" x="394" x="393" x="392" x="391" x="390" x="387" x="386" x="384" x="383" x="380"

y="193" y="193" y="194" y="194" y="193" y="193" y="192" y="192" y="191" y="189" y="189" y="191" y="191" y="190" y="189" y="189" y="190" y="190" y="188" y="188" y="187" y="186" y="186" y="187" y="189" y="189" y="188" y="188" y="187" y="187" y="186" y="185" y="184" y="184" y="183" y="182" y="182" y="181" y="180" y="180" y="179" y="179" y="178" y="178" y="179" y="179" y="180" y="180" y="181" y="181" y="180" y="180" y="178" y="178" y="177" y="176" y="175" y="175" y="176" y="176" y="177" y="177" y="178" y="178" y="174" y="173" y="173" y="172" y="172" y="173" y="172" y="171" y="170" y="170" y="172" y="173" y="171" y="170" y="167" y="167" y="168" y="167" y="166" y="166" y="165" y="164" y="164" y="163" y="163" y="162" y="162" y="161" y="161" y="160" y="160" y="159" y="160" y="159" y="159" y="158" y="158" y="159" y="158" y="158" y="159" y="159" y="160" y="160" y="161" y="161"

/> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> />

155


991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100

156

<point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point

x="379" x="377" x="376" x="375" x="374" x="373" x="371" x="367" x="366" x="365" x="364" x="363" x="362" x="361" x="360" x="355" x="354" x="353" x="350" x="349" x="348" x="348" x="347" x="346" x="345" x="344" x="343" x="342" x="342" x="338" x="338" x="339" x="339" x="338" x="338" x="335" x="335" x="333" x="333" x="331" x="329" x="329" x="328" x="329" x="328" x="325" x="325" x="324" x="323" x="323" x="321" x="321" x="320" x="319" x="319" x="317" x="317" x="316" x="315" x="314" x="313" x="312" x="311" x="309" x="308" x="306" x="305" x="303" x="302" x="301" x="300" x="299" x="297" x="296" x="296" x="293" x="292" x="291" x="291" x="290" x="288" x="286" x="286" x="289" x="289" x="290" x="290" x="291" x="290" x="290" x="288" x="288" x="287" x="287" x="285" x="285" x="283" x="282" x="281" x="280" x="278" x="278" x="279" x="279" x="280" x="280" x="282" x="282" x="283" x="283"

y="162" /> y="162" /> y="163" /> y="163" /> y="164" /> y="163" /> y="163" /> y="167" /> y="167" /> y="168" /> y="167" /> y="167" /> y="168" /> y="168" /> y="167" /> y="167" /> y="166" /> y="166" /> y="163" /> y="163" /> y="162" /> y="160" /> y="159" /> y="159" /> y="160" /> y="159" /> y="159" /> y="158" /> y="157" /> y="153" /> y="150" /> y="149" /> y="148" /> y="147" /> y="144" /> y="141" /> y="140" /> y="138" /> y="137" /> y="137" /> y="135" /> y="134" /> y="133" /> y="132" /> y="132" /> y="129" /> y="128" /> y="128" /> y="127" /> y="126" /> y="126" /> y="127" /> y="128" /> y="127" /> y="125" /> y="123" /> y="122" /> y="122" /> y="121" /> y="121" /> y="120" /> y="120" /> y="119" /> y="119" /> y="118" /> y="118" /> y="119" /> y="117" /> y="117" /> y="116" /> y="116" /> y="115" /> y="115" /> y="114" /> y="113" /> y="110" /> y="110" /> y="109" /> y="108" /> y="108" /> y="110" /> y="108" /> y="105" /> y="102" /> y="101" /> y="100" /> y="97" /> y="96" /> y="95" /> y="94" /> y="92" /> y="91" /> y="90" /> y="89" /> y="87" /> y="85" /> y="83" /> y="83" /> y="82" /> y="82" /> y="80" /> y="75" /> y="74" /> y="68" /> y="67" /> y="62" /> y="60" /> y="55" /> y="54" /> y="51" />


1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210

<point x="284" y="50" /> <point x="284" y="42" /> <point x="283" y="42" /> <point x="281" y="40" /> <point x="280" y="40" /> <point x="279" y="39" /> <point x="277" y="39" /> <point x="276" y="38" /> </points> </blob> <blob isHole="false" area="7970.0" circumference="1010.8183" > <bounding_rect x="1" y="1" width="398" height="34" /> <centroid x="179" y="12" /> <points> <point x="1" y="1" /> <point x="1" y="8" /> <point x="7" y="8" /> <point x="8" y="9" /> <point x="13" y="9" /> <point x="14" y="10" /> <point x="17" y="10" /> <point x="18" y="11" /> <point x="19" y="11" /> <point x="20" y="12" /> <point x="19" y="13" /> <point x="13" y="13" /> <point x="13" y="16" /> <point x="14" y="16" /> <point x="15" y="17" /> <point x="15" y="18" /> <point x="14" y="19" /> <point x="10" y="19" /> <point x="9" y="20" /> <point x="9" y="22" /> <point x="11" y="22" /> <point x="12" y="23" /> <point x="19" y="23" /> <point x="20" y="24" /> <point x="21" y="24" /> <point x="22" y="25" /> <point x="33" y="25" /> <point x="34" y="26" /> <point x="36" y="26" /> <point x="37" y="27" /> <point x="43" y="27" /> <point x="44" y="28" /> <point x="55" y="28" /> <point x="56" y="27" /> <point x="57" y="27" /> <point x="58" y="28" /> <point x="59" y="28" /> <point x="60" y="27" /> <point x="61" y="28" /> <point x="62" y="27" /> <point x="63" y="28" /> <point x="64" y="28" /> <point x="65" y="27" /> <point x="68" y="27" /> <point x="69" y="28" /> <point x="76" y="28" /> <point x="77" y="27" /> <point x="79" y="27" /> <point x="80" y="28" /> <point x="83" y="28" /> <point x="84" y="29" /> <point x="87" y="29" /> <point x="88" y="28" /> <point x="89" y="28" /> <point x="90" y="27" /> <point x="91" y="28" /> <point x="94" y="28" /> <point x="95" y="27" /> <point x="99" y="27" /> <point x="100" y="28" /> <point x="102" y="28" /> <point x="103" y="27" /> <point x="108" y="27" /> <point x="109" y="26" /> <point x="111" y="26" /> <point x="112" y="25" /> <point x="113" y="25" /> <point x="114" y="24" /> <point x="119" y="24" /> <point x="120" y="23" /> <point x="121" y="24" /> <point x="121" y="26" /> <point x="130" y="26" /> <point x="131" y="27" /> <point x="136" y="27" /> <point x="137" y="28" /> <point x="143" y="28" /> <point x="144" y="27" /> <point x="148" y="27" /> <point x="149" y="26" /> <point x="152" y="26" /> <point x="153" y="25" /> <point x="155" y="25" /> <point x="156" y="24" /> <point x="159" y="24" /> <point x="160" y="25" /> <point x="162" y="25" /> <point x="163" y="24" /> <point x="168" y="24" /> <point x="169" y="23" /> <point x="177" y="23" /> <point x="178" y="24" /> <point x="182" y="24" /> <point x="183" y="23" /> <point x="184" y="24" /> <point x="185" y="24" />

157


1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320

158

<point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point

x="186" x="188" x="189" x="191" x="192" x="196" x="197" x="201" x="202" x="202" x="203" x="203" x="204" x="205" x="206" x="207" x="208" x="209" x="210" x="211" x="212" x="213" x="214" x="215" x="216" x="218" x="220" x="225" x="226" x="231" x="232" x="235" x="236" x="239" x="239" x="240" x="241" x="241" x="245" x="246" x="248" x="249" x="249" x="254" x="255" x="258" x="259" x="260" x="261" x="261" x="263" x="264" x="266" x="266" x="265" x="267" x="268" x="273" x="274" x="274" x="279" x="280" x="279" x="272" x="271" x="269" x="268" x="267" x="267" x="266" x="266" x="267" x="267" x="266" x="268" x="269" x="271" x="270" x="267" x="266" x="265" x="264" x="262" x="261" x="261" x="260" x="259" x="259" x="262" x="262" x="261" x="262" x="263" x="264" x="264" x="265" x="266" x="268" x="268" x="269" x="271" x="272" x="273" x="275" x="276" x="278" x="279" x="280" x="281" x="282"

y="23" /> y="23" /> y="24" /> y="24" /> y="23" /> y="23" /> y="22" /> y="22" /> y="23" /> y="24" /> y="24" /> y="23" /> y="22" /> y="22" /> y="23" /> y="23" /> y="22" /> y="22" /> y="23" /> y="23" /> y="22" /> y="22" /> y="21" /> y="21" /> y="20" /> y="20" /> y="18" /> y="18" /> y="17" /> y="17" /> y="16" /> y="16" /> y="15" /> y="15" /> y="13" /> y="12" /> y="13" /> y="14" /> y="14" /> y="15" /> y="13" /> y="14" /> y="15" /> y="15" /> y="14" /> y="14" /> y="13" /> y="13" /> y="12" /> y="11" /> y="9" /> y="9" /> y="11" /> y="12" /> y="13" /> y="13" /> y="12" /> y="12" /> y="13" /> y="14" /> y="14" /> y="15" /> y="16" /> y="16" /> y="17" /> y="17" /> y="18" /> y="18" /> y="19" /> y="20" /> y="21" /> y="22" /> y="24" /> y="25" /> y="25" /> y="24" /> y="26" /> y="27" /> y="27" /> y="28" /> y="28" /> y="29" /> y="29" /> y="30" /> y="31" /> y="32" /> y="32" /> y="34" /> y="34" /> y="33" /> y="32" /> y="31" /> y="31" /> y="32" /> y="33" /> y="33" /> y="32" /> y="32" /> y="31" /> y="30" /> y="30" /> y="29" /> y="29" /> y="27" /> y="27" /> y="25" /> y="25" /> y="24" /> y="24" /> y="23" />


1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430

<point x="283" y="24" /> <point x="285" y="24" /> <point x="285" y="22" /> <point x="287" y="20" /> <point x="289" y="20" /> <point x="290" y="19" /> <point x="291" y="20" /> <point x="297" y="20" /> <point x="298" y="21" /> <point x="301" y="21" /> <point x="302" y="20" /> <point x="305" y="20" /> <point x="306" y="21" /> <point x="307" y="21" /> <point x="308" y="22" /> <point x="314" y="22" /> <point x="316" y="20" /> <point x="317" y="20" /> <point x="317" y="19" /> <point x="318" y="18" /> <point x="319" y="19" /> <point x="320" y="19" /> <point x="321" y="18" /> <point x="322" y="19" /> <point x="335" y="19" /> <point x="336" y="18" /> <point x="344" y="18" /> <point x="345" y="19" /> <point x="346" y="19" /> <point x="347" y="18" /> <point x="348" y="18" /> <point x="349" y="19" /> <point x="351" y="19" /> <point x="352" y="18" /> <point x="358" y="18" /> <point x="359" y="17" /> <point x="365" y="17" /> <point x="366" y="16" /> <point x="368" y="16" /> <point x="369" y="15" /> <point x="370" y="16" /> <point x="376" y="16" /> <point x="376" y="14" /> <point x="377" y="13" /> <point x="378" y="14" /> <point x="379" y="14" /> <point x="379" y="12" /> <point x="377" y="12" /> <point x="377" y="13" /> <point x="376" y="14" /> <point x="375" y="14" /> <point x="374" y="13" /> <point x="371" y="13" /> <point x="370" y="12" /> <point x="371" y="11" /> <point x="374" y="11" /> <point x="374" y="10" /> <point x="373" y="10" /> <point x="371" y="8" /> <point x="372" y="7" /> <point x="389" y="7" /> <point x="390" y="8" /> <point x="398" y="8" /> <point x="398" y="1" /> </points> </blob> <blob isHole="true" area="225.5" circumference="112.81118" > <bounding_rect x="64" y="104" width="25" height="24" /> <centroid x="74" y="114" /> <points> <point x="75" y="105" /> <point x="76" y="104" /> <point x="77" y="104" /> <point x="78" y="105" /> <point x="78" y="106" /> <point x="80" y="106" /> <point x="82" y="104" /> <point x="83" y="105" /> <point x="83" y="106" /> <point x="87" y="110" /> <point x="87" y="112" /> <point x="88" y="113" /> <point x="88" y="114" /> <point x="87" y="115" /> <point x="83" y="111" /> <point x="83" y="110" /> <point x="80" y="110" /> <point x="80" y="111" /> <point x="79" y="112" /> <point x="77" y="112" /> <point x="77" y="117" /> <point x="76" y="118" /> <point x="75" y="118" /> <point x="74" y="119" /> <point x="73" y="119" /> <point x="73" y="120" /> <point x="75" y="122" /> <point x="75" y="124" /> <point x="74" y="125" /> <point x="72" y="125" /> <point x="71" y="126" /> <point x="70" y="126" /> <point x="69" y="125" /> <point x="70" y="124" /> <point x="70" y="123" /> <point x="68" y="123" /> <point x="68" y="125" /> <point x="69" y="126" /> <point x="68" y="127" /> <point x="67" y="127" />

159


1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540

160

<point x="64" y="124" /> <point x="65" y="123" /> <point x="65" y="122" /> <point x="66" y="121" /> <point x="66" y="114" /> <point x="69" y="111" /> <point x="70" y="112" /> <point x="72" y="112" /> <point x="73" y="111" /> <point x="74" y="111" /> <point x="74" y="109" /> <point x="73" y="109" /> <point x="73" y="110" /> <point x="72" y="111" /> <point x="70" y="111" /> <point x="69" y="110" /> <point x="74" y="105" /> </points> </blob> <blob isHole="true" area="188.0" circumference="67.1127" > <bounding_rect x="25" y="151" width="21" height="17" /> <centroid x="33" y="160" /> <points> <point x="35" y="152" /> <point x="36" y="151" /> <point x="38" y="151" /> <point x="39" y="152" /> <point x="39" y="154" /> <point x="38" y="155" /> <point x="37" y="155" /> <point x="38" y="156" /> <point x="38" y="157" /> <point x="39" y="158" /> <point x="39" y="162" /> <point x="41" y="162" /> <point x="42" y="161" /> <point x="43" y="162" /> <point x="44" y="162" /> <point x="45" y="163" /> <point x="43" y="165" /> <point x="42" y="165" /> <point x="40" y="167" /> <point x="36" y="167" /> <point x="35" y="166" /> <point x="33" y="166" /> <point x="32" y="167" /> <point x="31" y="166" /> <point x="26" y="166" /> <point x="25" y="165" /> <point x="26" y="164" /> <point x="26" y="158" /> <point x="27" y="157" /> <point x="28" y="157" /> <point x="28" y="156" /> <point x="31" y="153" /> <point x="32" y="153" /> <point x="33" y="152" /> </points> </blob> <blob isHole="true" area="173.0" circumference="71.941124" > <bounding_rect x="288" y="120" width="21" height="15" /> <centroid x="298" y="127" /> <points> <point x="294" y="121" /> <point x="295" y="120" /> <point x="296" y="121" /> <point x="296" y="125" /> <point x="297" y="126" /> <point x="298" y="126" /> <point x="299" y="125" /> <point x="300" y="125" /> <point x="301" y="124" /> <point x="301" y="123" /> <point x="302" y="122" /> <point x="305" y="122" /> <point x="308" y="125" /> <point x="308" y="129" /> <point x="307" y="130" /> <point x="307" y="131" /> <point x="304" y="134" /> <point x="302" y="134" /> <point x="301" y="133" /> <point x="299" y="133" /> <point x="298" y="134" /> <point x="293" y="134" /> <point x="292" y="133" /> <point x="292" y="131" /> <point x="291" y="130" /> <point x="291" y="128" /> <point x="292" y="127" /> <point x="293" y="127" /> <point x="294" y="126" /> <point x="294" y="125" /> <point x="293" y="125" /> <point x="292" y="126" /> <point x="291" y="126" /> <point x="290" y="125" /> <point x="289" y="125" /> <point x="288" y="124" /> <point x="289" y="123" /> <point x="291" y="123" /> <point x="291" y="122" /> <point x="292" y="121" /> </points> </blob> <blob isHole="true" area="162.0" circumference="73.59798" > <bounding_rect x="268" y="111" width="26" height="13" /> <centroid x="281" y="117" /> <points> <point x="284" y="112" />


1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650

<point x="285" y="111" /> <point x="286" y="112" /> <point x="289" y="112" /> <point x="290" y="111" /> <point x="292" y="113" /> <point x="292" y="114" /> <point x="291" y="115" /> <point x="290" y="115" /> <point x="289" y="116" /> <point x="290" y="116" /> <point x="293" y="119" /> <point x="292" y="120" /> <point x="292" y="121" /> <point x="291" y="122" /> <point x="289" y="122" /> <point x="288" y="123" /> <point x="287" y="122" /> <point x="287" y="121" /> <point x="286" y="120" /> <point x="284" y="120" /> <point x="283" y="121" /> <point x="281" y="121" /> <point x="280" y="120" /> <point x="278" y="120" /> <point x="277" y="121" /> <point x="275" y="121" /> <point x="274" y="120" /> <point x="272" y="120" /> <point x="271" y="121" /> <point x="268" y="118" /> <point x="268" y="116" /> <point x="270" y="114" /> <point x="271" y="115" /> <point x="280" y="115" /> <point x="281" y="114" /> <point x="283" y="114" /> <point x="284" y="113" /> </points> </blob> <blob isHole="true" area="115.5" circumference="54.870056" > <bounding_rect x="286" y="160" width="20" height="13" /> <centroid x="294" y="166" /> <points> <point x="288" y="161" /> <point x="289" y="160" /> <point x="290" y="160" /> <point x="291" y="161" /> <point x="291" y="163" /> <point x="295" y="163" /> <point x="296" y="164" /> <point x="297" y="164" /> <point x="298" y="165" /> <point x="301" y="165" /> <point x="303" y="167" /> <point x="304" y="167" /> <point x="305" y="168" /> <point x="303" y="170" /> <point x="301" y="170" /> <point x="299" y="172" /> <point x="298" y="172" /> <point x="297" y="171" /> <point x="292" y="171" /> <point x="291" y="170" /> <point x="290" y="171" /> <point x="289" y="170" /> <point x="289" y="169" /> <point x="288" y="169" /> <point x="287" y="168" /> <point x="287" y="166" /> <point x="286" y="165" /> <point x="287" y="164" /> <point x="289" y="164" /> <point x="289" y="162" /> </points> </blob> <blob isHole="true" area="106.5" circumference="70.18376" > <bounding_rect x="161" y="135" width="27" height="11" /> <centroid x="174" y="139" /> <points> <point x="177" y="136" /> <point x="178" y="135" /> <point x="179" y="136" /> <point x="181" y="136" /> <point x="183" y="138" /> <point x="185" y="138" /> <point x="186" y="139" /> <point x="186" y="140" /> <point x="187" y="141" /> <point x="186" y="142" /> <point x="185" y="142" /> <point x="184" y="141" /> <point x="184" y="140" /> <point x="183" y="140" /> <point x="182" y="141" /> <point x="182" y="142" /> <point x="179" y="145" /> <point x="178" y="145" /> <point x="177" y="144" /> <point x="177" y="143" /> <point x="176" y="142" /> <point x="175" y="142" /> <point x="173" y="140" /> <point x="172" y="140" /> <point x="171" y="139" /> <point x="170" y="139" /> <point x="169" y="140" /> <point x="168" y="140" /> <point x="167" y="141" /> <point x="165" y="141" /> <point x="163" y="139" />

161


1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760

162

<point x="162" y="139" /> <point x="161" y="138" /> <point x="161" y="137" /> <point x="162" y="136" /> <point x="163" y="136" /> <point x="164" y="137" /> <point x="165" y="137" /> <point x="166" y="136" /> <point x="168" y="136" /> <point x="169" y="137" /> <point x="172" y="137" /> <point x="173" y="138" /> <point x="177" y="138" /> </points> </blob> <blob isHole="false" area="89.5" circumference="56.870056" > <bounding_rect x="143" y="72" width="10" height="18" /> <centroid x="147" y="80" /> <points> <point x="148" y="72" /> <point x="147" y="73" /> <point x="146" y="73" /> <point x="146" y="75" /> <point x="145" y="76" /> <point x="145" y="78" /> <point x="144" y="79" /> <point x="144" y="81" /> <point x="143" y="82" /> <point x="143" y="87" /> <point x="144" y="88" /> <point x="145" y="88" /> <point x="145" y="87" /> <point x="147" y="85" /> <point x="148" y="86" /> <point x="148" y="87" /> <point x="149" y="88" /> <point x="150" y="88" /> <point x="151" y="89" /> <point x="152" y="89" /> <point x="152" y="88" /> <point x="150" y="86" /> <point x="148" y="86" /> <point x="147" y="85" /> <point x="148" y="84" /> <point x="149" y="84" /> <point x="151" y="82" /> <point x="151" y="81" /> <point x="150" y="80" /> <point x="150" y="79" /> <point x="151" y="78" /> <point x="151" y="73" /> <point x="150" y="72" /> </points> </blob> <blob isHole="true" area="88.5" circumference="45.213203" > <bounding_rect x="55" y="129" width="11" height="15" /> <centroid x="60" y="135" /> <points> <point x="59" y="130" /> <point x="60" y="129" /> <point x="64" y="129" /> <point x="65" y="130" /> <point x="65" y="131" /> <point x="63" y="133" /> <point x="63" y="136" /> <point x="64" y="137" /> <point x="64" y="139" /> <point x="65" y="140" /> <point x="63" y="142" /> <point x="62" y="142" /> <point x="61" y="143" /> <point x="59" y="143" /> <point x="58" y="142" /> <point x="59" y="141" /> <point x="59" y="138" /> <point x="58" y="138" /> <point x="57" y="137" /> <point x="56" y="137" /> <point x="55" y="136" /> <point x="55" y="134" /> <point x="56" y="133" /> <point x="56" y="132" /> <point x="57" y="131" /> <point x="59" y="131" /> </points> </blob> <blob isHole="false" area="79.0" circumference="67.79899" > <bounding_rect x="166" y="183" width="23" height="9" /> <centroid x="177" y="188" /> <points> <point x="177" y="183" /> <point x="177" y="185" /> <point x="179" y="185" /> <point x="180" y="186" /> <point x="179" y="187" /> <point x="178" y="187" /> <point x="177" y="188" /> <point x="176" y="188" /> <point x="175" y="187" /> <point x="175" y="186" /> <point x="174" y="186" /> <point x="173" y="187" /> <point x="172" y="186" /> <point x="172" y="185" /> <point x="171" y="185" /> <point x="170" y="186" /> <point x="170" y="187" /> <point x="169" y="188" /> <point x="166" y="188" /> <point x="166" y="190" />


1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870

<point x="168" y="190" /> <point x="169" y="189" /> <point x="170" y="189" /> <point x="171" y="190" /> <point x="171" y="191" /> <point x="181" y="191" /> <point x="182" y="190" /> <point x="188" y="190" /> <point x="188" y="188" /> <point x="185" y="188" /> <point x="183" y="186" /> <point x="180" y="186" /> <point x="179" y="185" /> <point x="179" y="183" /> </points> </blob> <blob isHole="false" area="78.0" circumference="90.769554" > <bounding_rect x="349" y="75" width="24" height="12" /> <centroid x="359" y="81" /> <points> <point x="349" y="75" /> <point x="349" y="76" /> <point x="350" y="77" /> <point x="350" y="78" /> <point x="353" y="78" /> <point x="354" y="79" /> <point x="354" y="80" /> <point x="353" y="81" /> <point x="352" y="80" /> <point x="351" y="80" /> <point x="351" y="81" /> <point x="352" y="81" /> <point x="353" y="82" /> <point x="354" y="82" /> <point x="355" y="83" /> <point x="355" y="84" /> <point x="356" y="85" /> <point x="356" y="86" /> <point x="358" y="86" /> <point x="358" y="85" /> <point x="359" y="84" /> <point x="360" y="84" /> <point x="361" y="85" /> <point x="361" y="86" /> <point x="363" y="86" /> <point x="364" y="85" /> <point x="366" y="85" /> <point x="365" y="84" /> <point x="366" y="83" /> <point x="370" y="83" /> <point x="371" y="84" /> <point x="372" y="84" /> <point x="372" y="82" /> <point x="369" y="82" /> <point x="368" y="81" /> <point x="365" y="81" /> <point x="365" y="82" /> <point x="364" y="83" /> <point x="363" y="83" /> <point x="362" y="82" /> <point x="362" y="81" /> <point x="361" y="80" /> <point x="362" y="79" /> <point x="362" y="78" /> <point x="360" y="78" /> <point x="360" y="79" /> <point x="361" y="80" /> <point x="360" y="81" /> <point x="359" y="81" /> <point x="358" y="80" /> <point x="356" y="80" /> <point x="355" y="79" /> <point x="355" y="78" /> <point x="356" y="77" /> <point x="357" y="77" /> <point x="357" y="76" /> <point x="354" y="76" /> <point x="354" y="77" /> <point x="353" y="78" /> <point x="352" y="77" /> <point x="352" y="76" /> <point x="351" y="76" /> <point x="350" y="75" /> </points> </blob> <blob isHole="true" area="75.5" circumference="43.698483" > <bounding_rect x="42" y="141" width="15" height="13" /> <centroid x="48" y="146" /> <points> <point x="49" y="141" /> <point x="50" y="142" /> <point x="52" y="142" /> <point x="53" y="143" /> <point x="55" y="143" /> <point x="56" y="144" /> <point x="56" y="145" /> <point x="55" y="146" /> <point x="54" y="146" /> <point x="54" y="147" /> <point x="52" y="149" /> <point x="51" y="148" /> <point x="49" y="148" /> <point x="48" y="149" /> <point x="48" y="150" /> <point x="47" y="151" /> <point x="46" y="151" /> <point x="44" y="153" /> <point x="42" y="151" /> <point x="45" y="148" /> <point x="44" y="147" />

163


1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980

164

<point x="44" y="145" /> <point x="45" y="144" /> <point x="46" y="144" /> </points> </blob> <blob isHole="false" area="68.5" circumference="56.526913" > <bounding_rect x="1" y="47" width="15" height="18" /> <centroid x="7" y="54" /> <points> <point x="13" y="47" /> <point x="11" y="49" /> <point x="9" y="49" /> <point x="9" y="50" /> <point x="7" y="52" /> <point x="6" y="52" /> <point x="6" y="53" /> <point x="5" y="54" /> <point x="3" y="54" /> <point x="3" y="55" /> <point x="1" y="57" /> <point x="1" y="60" /> <point x="2" y="59" /> <point x="3" y="60" /> <point x="3" y="61" /> <point x="4" y="61" /> <point x="7" y="64" /> <point x="8" y="64" /> <point x="8" y="63" /> <point x="6" y="61" /> <point x="6" y="60" /> <point x="5" y="59" /> <point x="6" y="58" /> <point x="6" y="57" /> <point x="7" y="56" /> <point x="8" y="56" /> <point x="8" y="55" /> <point x="10" y="53" /> <point x="11" y="53" /> <point x="12" y="52" /> <point x="13" y="52" /> <point x="14" y="51" /> <point x="14" y="49" /> <point x="15" y="48" /> <point x="14" y="47" /> </points> </blob> <blob isHole="false" area="51.5" circumference="56.384777" > <bounding_rect x="126" y="189" width="25" height="5" /> <centroid x="136" y="190" /> <points> <point x="133" y="189" /> <point x="131" y="191" /> <point x="130" y="190" /> <point x="126" y="190" /> <point x="126" y="192" /> <point x="127" y="192" /> <point x="128" y="193" /> <point x="130" y="193" /> <point x="131" y="192" /> <point x="132" y="193" /> <point x="135" y="193" /> <point x="136" y="192" /> <point x="139" y="192" /> <point x="140" y="191" /> <point x="145" y="191" /> <point x="146" y="192" /> <point x="147" y="192" /> <point x="148" y="191" /> <point x="150" y="191" /> <point x="150" y="190" /> <point x="145" y="190" /> <point x="144" y="189" /> <point x="142" y="189" /> <point x="141" y="190" /> <point x="136" y="190" /> <point x="135" y="189" /> </points> </blob> <blob isHole="false" area="43.5" circumference="32.72792" > <bounding_rect x="214" y="171" width="14" height="6" /> <centroid x="220" y="173" /> <points> <point x="219" y="171" /> <point x="218" y="172" /> <point x="216" y="172" /> <point x="215" y="173" /> <point x="214" y="173" /> <point x="214" y="174" /> <point x="215" y="175" /> <point x="216" y="175" /> <point x="217" y="176" /> <point x="218" y="176" /> <point x="219" y="175" /> <point x="223" y="175" /> <point x="224" y="176" /> <point x="225" y="176" /> <point x="226" y="175" /> <point x="227" y="175" /> <point x="227" y="173" /> <point x="226" y="173" /> <point x="225" y="172" /> <point x="223" y="172" /> <point x="222" y="171" /> </points> </blob> <blob isHole="true" area="42.5" circumference="36.384777" > <bounding_rect x="153" y="147" width="16" height="6" /> <centroid x="161" y="149" /> <points> <point x="153" y="148" />


1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090

<point x="154" y="147" /> <point x="158" y="147" /> <point x="159" y="148" /> <point x="164" y="148" /> <point x="165" y="147" /> <point x="167" y="147" /> <point x="168" y="148" /> <point x="167" y="149" /> <point x="167" y="150" /> <point x="165" y="152" /> <point x="164" y="152" /> <point x="162" y="150" /> <point x="161" y="150" /> <point x="160" y="151" /> <point x="158" y="151" /> <point x="157" y="150" /> <point x="156" y="150" /> <point x="155" y="149" /> <point x="154" y="149" /> </points> </blob> <blob isHole="false" area="41.0" circumference="52.28427" > <bounding_rect x="9" y="75" width="9" height="17" /> <centroid x="12" y="81" /> <points> <point x="12" y="75" /> <point x="11" y="76" /> <point x="11" y="77" /> <point x="10" y="78" /> <point x="9" y="78" /> <point x="9" y="79" /> <point x="11" y="81" /> <point x="11" y="84" /> <point x="12" y="85" /> <point x="12" y="86" /> <point x="13" y="87" /> <point x="13" y="89" /> <point x="12" y="90" /> <point x="13" y="91" /> <point x="14" y="91" /> <point x="14" y="90" /> <point x="15" y="89" /> <point x="15" y="88" /> <point x="14" y="87" /> <point x="14" y="84" /> <point x="13" y="83" /> <point x="13" y="82" /> <point x="11" y="80" /> <point x="11" y="79" /> <point x="12" y="78" /> <point x="13" y="79" /> <point x="14" y="79" /> <point x="15" y="78" /> <point x="16" y="79" /> <point x="16" y="80" /> <point x="17" y="80" /> <point x="17" y="78" /> <point x="15" y="76" /> <point x="14" y="76" /> <point x="13" y="75" /> </points> </blob> <blob isHole="true" area="39.0" circumference="30.142136" > <bounding_rect x="89" y="107" width="7" height="13" /> <centroid x="92" y="112" /> <points> <point x="89" y="108" /> <point x="90" y="107" /> <point x="91" y="107" /> <point x="92" y="108" /> <point x="93" y="108" /> <point x="94" y="109" /> <point x="94" y="111" /> <point x="95" y="112" /> <point x="95" y="113" /> <point x="94" y="114" /> <point x="94" y="117" /> <point x="92" y="119" /> <point x="91" y="118" /> <point x="91" y="112" /> <point x="90" y="111" /> <point x="90" y="110" /> <point x="89" y="109" /> </points> </blob> <blob isHole="false" area="35.5" circumference="42.384777" > <bounding_rect x="7" y="106" width="10" height="10" /> <centroid x="11" y="110" /> <points> <point x="11" y="106" /> <point x="10" y="107" /> <point x="10" y="108" /> <point x="9" y="109" /> <point x="8" y="108" /> <point x="8" y="107" /> <point x="7" y="107" /> <point x="7" y="110" /> <point x="9" y="112" /> <point x="9" y="114" /> <point x="10" y="114" /> <point x="10" y="111" /> <point x="11" y="110" /> <point x="12" y="111" /> <point x="12" y="114" /> <point x="13" y="114" /> <point x="14" y="115" /> <point x="16" y="115" /> <point x="16" y="114" /> <point x="15" y="113" /> <point x="15" y="111" />

165


2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200

166

<point x="14" y="111" /> <point x="12" y="109" /> <point x="13" y="108" /> <point x="12" y="107" /> <point x="12" y="106" /> </points> </blob> <blob isHole="true" area="32.5" circumference="25.556349" > <bounding_rect x="283" y="171" width="10" height="8" /> <centroid x="287" y="175" /> <points> <point x="287" y="172" /> <point x="288" y="171" /> <point x="290" y="173" /> <point x="291" y="173" /> <point x="292" y="174" /> <point x="291" y="175" /> <point x="290" y="175" /> <point x="290" y="177" /> <point x="289" y="178" /> <point x="286" y="178" /> <point x="283" y="175" /> <point x="284" y="174" /> <point x="286" y="174" /> <point x="287" y="173" /> </points> </blob> <blob isHole="true" area="31.0" circumference="24.142136" > <bounding_rect x="60" y="102" width="9" height="8" /> <centroid x="63" y="105" /> <points> <point x="65" y="103" /> <point x="66" y="102" /> <point x="67" y="103" /> <point x="67" y="104" /> <point x="68" y="105" /> <point x="67" y="106" /> <point x="66" y="106" /> <point x="65" y="107" /> <point x="64" y="107" /> <point x="62" y="109" /> <point x="61" y="108" /> <point x="61" y="107" /> <point x="60" y="106" /> <point x="60" y="104" /> <point x="61" y="103" /> </points> </blob> <blob isHole="true" area="29.0" circumference="28.142136" > <bounding_rect x="52" y="93" width="11" height="6" /> <centroid x="57" y="95" /> <points> <point x="52" y="94" /> <point x="53" y="93" /> <point x="54" y="93" /> <point x="55" y="94" /> <point x="57" y="94" /> <point x="58" y="93" /> <point x="60" y="93" /> <point x="61" y="94" /> <point x="61" y="95" /> <point x="62" y="96" /> <point x="62" y="97" /> <point x="61" y="98" /> <point x="60" y="98" /> <point x="59" y="97" /> <point x="59" y="96" /> <point x="56" y="96" /> <point x="55" y="97" /> <point x="54" y="96" /> <point x="53" y="96" /> <point x="52" y="95" /> </points> </blob> <blob isHole="true" area="28.0" circumference="26.970562" > <bounding_rect x="140" y="142" width="7" height="11" /> <centroid x="142" y="146" /> <points> <point x="140" y="143" /> <point x="141" y="142" /> <point x="142" y="142" /> <point x="144" y="144" /> <point x="144" y="145" /> <point x="143" y="146" /> <point x="143" y="147" /> <point x="144" y="147" /> <point x="146" y="149" /> <point x="146" y="151" /> <point x="145" y="152" /> <point x="141" y="148" /> <point x="141" y="145" /> <point x="140" y="144" /> </points> </blob> <blob isHole="true" area="27.0" circumference="27.31371" > <bounding_rect x="65" y="92" width="9" height="9" /> <centroid x="68" y="95" /> <points> <point x="65" y="93" /> <point x="66" y="92" /> <point x="69" y="92" /> <point x="70" y="93" /> <point x="70" y="94" /> <point x="72" y="94" /> <point x="73" y="95" /> <point x="72" y="96" /> <point x="69" y="96" /> <point x="69" y="99" /> <point x="68" y="100" /> <point x="67" y="99" />


2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310

<point x="67" y="95" /> </points> </blob> <blob isHole="true" area="21.5" circumference="20.727922" > <bounding_rect x="190" y="143" width="7" height="7" /> <centroid x="192" y="145" /> <points> <point x="190" y="144" /> <point x="191" y="143" /> <point x="194" y="143" /> <point x="195" y="144" /> <point x="194" y="145" /> <point x="194" y="146" /> <point x="195" y="146" /> <point x="196" y="147" /> <point x="194" y="149" /> <point x="193" y="148" /> <point x="192" y="148" /> <point x="191" y="147" /> <point x="191" y="146" /> <point x="190" y="145" /> </points> </blob> <blob isHole="false" area="18.0" circumference="42.62742" > <bounding_rect x="22" y="106" width="13" height="7" /> <centroid x="29" y="108" /> <points> <point x="27" y="106" /> <point x="27" y="107" /> <point x="28" y="108" /> <point x="27" y="109" /> <point x="26" y="109" /> <point x="25" y="108" /> <point x="25" y="107" /> <point x="24" y="107" /> <point x="23" y="108" /> <point x="22" y="108" /> <point x="22" y="109" /> <point x="24" y="109" /> <point x="25" y="108" /> <point x="26" y="109" /> <point x="26" y="110" /> <point x="27" y="110" /> <point x="27" y="109" /> <point x="28" y="108" /> <point x="32" y="112" /> <point x="33" y="112" /> <point x="33" y="110" /> <point x="34" y="109" /> <point x="33" y="108" /> <point x="32" y="108" /> <point x="31" y="109" /> <point x="29" y="109" /> <point x="28" y="108" /> <point x="29" y="107" /> <point x="29" y="106" /> </points> </blob> <blob isHole="true" area="18.0" circumference="19.31371" > <bounding_rect x="182" y="143" width="8" height="6" /> <centroid x="185" y="145" /> <points> <point x="186" y="144" /> <point x="187" y="143" /> <point x="188" y="143" /> <point x="189" y="144" /> <point x="188" y="145" /> <point x="188" y="147" /> <point x="187" y="148" /> <point x="186" y="147" /> <point x="185" y="147" /> <point x="184" y="146" /> <point x="183" y="146" /> <point x="182" y="145" /> <point x="183" y="144" /> </points> </blob> <blob isHole="false" area="17.0" circumference="31.31371" > <bounding_rect x="372" y="122" width="13" height="7" /> <centroid x="377" y="125" /> <points> <point x="372" y="122" /> <point x="372" y="123" /> <point x="373" y="124" /> <point x="373" y="125" /> <point x="374" y="125" /> <point x="375" y="126" /> <point x="378" y="126" /> <point x="379" y="127" /> <point x="381" y="127" /> <point x="382" y="128" /> <point x="384" y="128" /> <point x="384" y="127" /> <point x="382" y="127" /> <point x="381" y="126" /> <point x="380" y="126" /> <point x="379" y="125" /> <point x="376" y="125" /> <point x="374" y="123" /> <point x="374" y="122" /> </points> </blob> <blob isHole="true" area="16.0" circumference="15.656855" > <bounding_rect x="93" y="186" width="7" height="4" /> <centroid x="96" y="187" /> <points> <point x="93" y="187" /> <point x="94" y="186" /> <point x="98" y="186" /> <point x="99" y="187" />

167


2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420

168

<point x="99" y="188" /> <point x="98" y="189" /> <point x="94" y="189" /> <point x="93" y="188" /> </points> </blob> <blob isHole="true" area="15.0" circumference="16.485281" > <bounding_rect x="74" y="94" width="8" height="4" /> <centroid x="77" y="95" /> <points> <point x="74" y="95" /> <point x="75" y="94" /> <point x="78" y="94" /> <point x="79" y="95" /> <point x="80" y="95" /> <point x="81" y="96" /> <point x="80" y="97" /> <point x="76" y="97" /> </points> </blob> <blob isHole="true" area="14.5" circumference="15.899495" > <bounding_rect x="78" y="99" width="5" height="6" /> <centroid x="80" y="101" /> <points> <point x="78" y="100" /> <point x="79" y="99" /> <point x="80" y="99" /> <point x="82" y="101" /> <point x="82" y="103" /> <point x="81" y="104" /> <point x="79" y="104" /> <point x="78" y="103" /> <point x="79" y="102" /> <point x="79" y="101" /> </points> </blob> <blob isHole="false" area="14.0" circumference="15.656855" > <bounding_rect x="352" y="89" width="6" height="5" /> <centroid x="354" y="91" /> <points> <point x="352" y="89" /> <point x="352" y="90" /> <point x="353" y="91" /> <point x="353" y="92" /> <point x="354" y="93" /> <point x="357" y="93" /> <point x="357" y="92" /> <point x="356" y="91" /> <point x="356" y="90" /> <point x="355" y="89" /> </points> </blob> <blob isHole="false" area="13.5" circumference="21.899494" > <bounding_rect x="2" y="97" width="6" height="9" /> <centroid x="4" y="100" /> <points> <point x="2" y="97" /> <point x="2" y="100" /> <point x="3" y="100" /> <point x="6" y="103" /> <point x="6" y="105" /> <point x="7" y="105" /> <point x="7" y="102" /> <point x="5" y="100" /> <point x="5" y="99" /> <point x="4" y="98" /> <point x="3" y="98" /> </points> </blob> <blob isHole="false" area="13.5" circumference="23.071068" > <bounding_rect x="36" y="115" width="4" height="10" /> <centroid x="37" y="119" /> <points> <point x="37" y="115" /> <point x="37" y="117" /> <point x="36" y="118" /> <point x="36" y="122" /> <point x="37" y="123" /> <point x="37" y="124" /> <point x="38" y="124" /> <point x="38" y="122" /> <point x="37" y="121" /> <point x="37" y="120" /> <point x="38" y="119" /> <point x="38" y="117" /> <point x="39" y="116" /> <point x="39" y="115" /> </points> </blob> <blob isHole="true" area="12.5" circumference="15.071068" > <bounding_rect x="44" y="181" width="7" height="4" /> <centroid x="46" y="182" /> <points> <point x="44" y="182" /> <point x="45" y="181" /> <point x="49" y="181" /> <point x="50" y="182" /> <point x="49" y="183" /> <point x="47" y="183" /> <point x="46" y="184" /> <point x="45" y="184" /> <point x="44" y="183" /> </points> </blob> <blob isHole="false" area="12.5" circumference="18.242641" > <bounding_rect x="363" y="74" width="8" height="4" /> <centroid x="366" y="75" /> <points> <point x="363" y="74" /> <point x="363" y="75" />


2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530

<point x="364" y="75" /> <point x="365" y="76" /> <point x="366" y="76" /> <point x="367" y="77" /> <point x="370" y="77" /> <point x="370" y="75" /> <point x="367" y="75" /> <point x="366" y="74" /> </points> </blob> <blob isHole="true" area="12.5" circumference="13.899495" > <bounding_rect x="63" y="108" width="6" height="5" /> <centroid x="65" y="110" /> <points> <point x="64" y="109" /> <point x="65" y="108" /> <point x="66" y="108" /> <point x="68" y="110" /> <point x="66" y="112" /> <point x="64" y="112" /> <point x="63" y="111" /> <point x="64" y="110" /> </points> </blob> <blob isHole="false" area="12.0" circumference="16.485281" > <bounding_rect x="374" y="76" width="5" height="6" /> <centroid x="376" y="78" /> <points> <point x="375" y="76" /> <point x="375" y="77" /> <point x="374" y="78" /> <point x="374" y="79" /> <point x="375" y="79" /> <point x="377" y="81" /> <point x="378" y="81" /> <point x="378" y="80" /> <point x="377" y="79" /> <point x="378" y="78" /> <point x="378" y="77" /> <point x="377" y="77" /> <point x="376" y="76" /> </points> </blob> <blob isHole="true" area="12.0" circumference="15.313708" > <bounding_rect x="153" y="118" width="5" height="7" /> <centroid x="154" y="121" /> <points> <point x="153" y="119" /> <point x="154" y="118" /> <point x="155" y="119" /> <point x="155" y="120" /> <point x="157" y="122" /> <point x="157" y="123" /> <point x="156" y="124" /> <point x="153" y="121" /> </points> </blob> <blob isHole="true" area="11.5" circumference="15.071068" > <bounding_rect x="176" y="162" width="6" height="5" /> <centroid x="178" y="163" /> <points> <point x="176" y="163" /> <point x="177" y="162" /> <point x="180" y="162" /> <point x="181" y="163" /> <point x="180" y="164" /> <point x="178" y="164" /> <point x="178" y="165" /> <point x="177" y="166" /> <point x="176" y="165" /> </points> </blob> <blob isHole="false" area="11.0" circumference="25.313707" > <bounding_rect x="394" y="78" width="5" height="10" /> <centroid x="396" y="81" /> <points> <point x="397" y="78" /> <point x="396" y="79" /> <point x="396" y="81" /> <point x="398" y="83" /> <point x="395" y="86" /> <point x="394" y="86" /> <point x="394" y="87" /> <point x="395" y="87" /> <point x="396" y="86" /> <point x="397" y="86" /> <point x="397" y="84" /> <point x="398" y="83" /> <point x="398" y="78" /> </points> </blob> <blob isHole="false" area="10.5" circumference="14.2426405" > <bounding_rect x="224" y="117" width="5" height="5" /> <centroid x="226" y="118" /> <points> <point x="225" y="117" /> <point x="225" y="118" /> <point x="224" y="119" /> <point x="224" y="120" /> <point x="226" y="120" /> <point x="227" y="121" /> <point x="228" y="121" /> <point x="228" y="119" /> <point x="227" y="118" /> <point x="227" y="117" /> </points> </blob> <blob isHole="false" area="10.5" circumference="15.071068" > <bounding_rect x="228" y="34" width="4" height="6" /> <centroid x="229" y="36" />

169


2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640

170

<points> <point x="229" y="34" /> <point x="228" y="35" /> <point x="228" y="37" /> <point x="230" y="39" /> <point x="231" y="39" /> <point x="231" y="38" /> <point x="230" y="37" /> <point x="230" y="36" /> <point x="231" y="35" /> <point x="231" y="34" /> </points> </blob> <blob isHole="false" area="10.0" circumference="14.828427" > <bounding_rect x="227" y="142" width="6" height="4" /> <centroid x="229" y="143" /> <points> <point x="227" y="142" /> <point x="227" y="144" /> <point x="228" y="144" /> <point x="229" y="145" /> <point x="232" y="145" /> <point x="232" y="143" /> <point x="229" y="143" /> <point x="228" y="142" /> </points> </blob> <blob isHole="true" area="10.0" circumference="12.485281" > <bounding_rect x="21" y="166" width="6" height="4" /> <centroid x="23" y="167" /> <points> <point x="23" y="166" /> <point x="25" y="166" /> <point x="26" y="167" /> <point x="24" y="169" /> <point x="22" y="169" /> <point x="21" y="168" /> </points> </blob> <blob isHole="true" area="10.0" circumference="13.656855" > <bounding_rect x="241" y="11" width="7" height="3" /> <centroid x="244" y="12" /> <points> <point x="241" y="12" /> <point x="242" y="11" /> <point x="246" y="11" /> <point x="247" y="12" /> <point x="246" y="13" /> <point x="242" y="13" /> </points> </blob> <blob isHole="true" area="9.0" circumference="12.485281" > <bounding_rect x="321" y="185" width="6" height="4" /> <centroid x="323" y="186" /> <points> <point x="321" y="186" /> <point x="322" y="185" /> <point x="323" y="185" /> <point x="324" y="186" /> <point x="325" y="186" /> <point x="326" y="187" /> <point x="325" y="188" /> <point x="323" y="188" /> </points> </blob> <blob isHole="false" area="9.0" circumference="11.656855" > <bounding_rect x="388" y="95" width="4" height="5" /> <centroid x="389" y="96" /> <points> <point x="389" y="95" /> <point x="388" y="96" /> <point x="388" y="98" /> <point x="389" y="99" /> <point x="390" y="99" /> <point x="390" y="98" /> <point x="391" y="97" /> <point x="391" y="96" /> <point x="390" y="95" /> </points> </blob> <blob isHole="false" area="9.0" circumference="11.656855" > <bounding_rect x="298" y="99" width="5" height="4" /> <centroid x="300" y="100" /> <points> <point x="299" y="99" /> <point x="298" y="100" /> <point x="298" y="101" /> <point x="299" y="101" /> <point x="300" y="102" /> <point x="301" y="102" /> <point x="302" y="101" /> <point x="302" y="100" /> <point x="301" y="99" /> </points> </blob> <blob isHole="false" area="8.5" circumference="13.414213" > <bounding_rect x="263" y="42" width="6" height="3" /> <centroid x="265" y="43" /> <points> <point x="265" y="42" /> <point x="264" y="43" /> <point x="263" y="43" /> <point x="263" y="44" /> <point x="268" y="44" /> <point x="268" y="42" /> </points> </blob> <blob isHole="false" area="8.5" circumference="17.071068" > <bounding_rect x="374" y="102" width="6" height="6" /> <centroid x="376" y="104" />


2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750

<points> <point x="374" y="102" /> <point x="374" y="104" /> <point x="375" y="104" /> <point x="376" y="105" /> <point x="376" y="106" /> <point x="377" y="106" /> <point x="378" y="107" /> <point x="379" y="107" /> <point x="379" y="106" /> <point x="378" y="105" /> <point x="377" y="105" /> <point x="376" y="104" /> <point x="376" y="103" /> <point x="375" y="102" /> </points> </blob> <blob isHole="false" area="8.0" circumference="13.656855" > <bounding_rect x="386" y="84" width="6" height="4" /> <centroid x="388" y="85" /> <points> <point x="388" y="84" /> <point x="387" y="85" /> <point x="386" y="85" /> <point x="387" y="86" /> <point x="389" y="86" /> <point x="390" y="87" /> <point x="391" y="87" /> <point x="391" y="85" /> <point x="390" y="85" /> <point x="389" y="84" /> </points> </blob> <blob isHole="true" area="8.0" circumference="11.656855" > <bounding_rect x="33" y="96" width="6" height="3" /> <centroid x="35" y="97" /> <points> <point x="33" y="97" /> <point x="34" y="96" /> <point x="37" y="96" /> <point x="38" y="97" /> <point x="37" y="98" /> <point x="34" y="98" /> </points> </blob> <blob isHole="true" area="8.0" circumference="11.656855" > <bounding_rect x="143" y="114" width="6" height="3" /> <centroid x="145" y="115" /> <points> <point x="143" y="115" /> <point x="144" y="114" /> <point x="147" y="114" /> <point x="148" y="115" /> <point x="147" y="116" /> <point x="144" y="116" /> </points> </blob> <blob isHole="false" area="7.5" circumference="13.071068" > <bounding_rect x="118" y="92" width="4" height="5" /> <centroid x="119" y="94" /> <points> <point x="118" y="92" /> <point x="118" y="93" /> <point x="119" y="94" /> <point x="118" y="95" /> <point x="118" y="96" /> <point x="120" y="96" /> <point x="120" y="95" /> <point x="121" y="94" /> <point x="119" y="92" /> </points> </blob> <blob isHole="true" area="7.5" circumference="11.071068" > <bounding_rect x="280" y="11" width="5" height="4" /> <centroid x="281" y="12" /> <points> <point x="280" y="12" /> <point x="281" y="11" /> <point x="282" y="12" /> <point x="283" y="12" /> <point x="284" y="13" /> <point x="283" y="14" /> <point x="281" y="14" /> <point x="280" y="13" /> </points> </blob> <blob isHole="false" area="7.5" circumference="12.2426405" > <bounding_rect x="15" y="25" width="5" height="4" /> <centroid x="16" y="26" /> <points> <point x="15" y="25" /> <point x="15" y="27" /> <point x="16" y="27" /> <point x="17" y="28" /> <point x="19" y="28" /> <point x="19" y="27" /> <point x="18" y="26" /> <point x="17" y="26" /> <point x="16" y="25" /> </points> </blob> <blob isHole="false" area="7.5" circumference="14.2426405" > <bounding_rect x="110" y="189" width="6" height="4" /> <centroid x="112" y="190" /> <points> <point x="112" y="189" /> <point x="110" y="191" /> <point x="110" y="192" /> <point x="112" y="192" /> <point x="112" y="191" />

171


2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860

172

<point x="113" y="190" /> <point x="115" y="190" /> <point x="115" y="189" /> </points> </blob> <blob isHole="true" area="7.5" circumference="11.071068" > <bounding_rect x="41" y="152" width="4" height="5" /> <centroid x="42" y="153" /> <points> <point x="41" y="153" /> <point x="42" y="152" /> <point x="43" y="152" /> <point x="44" y="153" /> <point x="43" y="154" /> <point x="43" y="155" /> <point x="42" y="156" /> <point x="41" y="155" /> </points> </blob> <blob isHole="true" area="7.0" circumference="10.485281" > <bounding_rect x="58" y="99" width="4" height="5" /> <centroid x="59" y="101" /> <points> <point x="58" y="100" /> <point x="59" y="99" /> <point x="61" y="101" /> <point x="59" y="103" /> <point x="58" y="102" /> </points> </blob> <blob isHole="false" area="7.0" circumference="15.656855" > <bounding_rect x="366" y="88" width="5" height="4" /> <centroid x="368" y="89" /> <points> <point x="368" y="88" /> <point x="367" y="89" /> <point x="366" y="89" /> <point x="366" y="91" /> <point x="367" y="91" /> <point x="367" y="90" /> <point x="368" y="89" /> <point x="369" y="90" /> <point x="369" y="91" /> <point x="370" y="91" /> <point x="370" y="89" /> <point x="369" y="88" /> </points> </blob> <blob isHole="true" area="7.0" circumference="10.485281" > <bounding_rect x="176" y="168" width="4" height="5" /> <centroid x="177" y="170" /> <points> <point x="178" y="168" /> <point x="179" y="169" /> <point x="179" y="170" /> <point x="177" y="172" /> <point x="176" y="171" /> <point x="176" y="170" /> </points> </blob> <blob isHole="true" area="7.0" circumference="10.485281" > <bounding_rect x="75" y="118" width="5" height="4" /> <centroid x="77" y="119" /> <points> <point x="77" y="118" /> <point x="79" y="120" /> <point x="78" y="121" /> <point x="76" y="121" /> <point x="75" y="120" /> </points> </blob> <blob isHole="false" area="6.5" circumference="12.2426405" > <bounding_rect x="391" y="77" width="4" height="5" /> <centroid x="392" y="79" /> <points> <point x="393" y="77" /> <point x="393" y="78" /> <point x="391" y="80" /> <point x="391" y="81" /> <point x="393" y="81" /> <point x="393" y="80" /> <point x="394" y="79" /> <point x="394" y="77" /> </points> </blob> <blob isHole="false" area="6.5" circumference="14.2426405" > <bounding_rect x="49" y="106" width="5" height="5" /> <centroid x="50" y="107" /> <points> <point x="51" y="106" /> <point x="51" y="107" /> <point x="50" y="108" /> <point x="49" y="108" /> <point x="49" y="110" /> <point x="50" y="110" /> <point x="50" y="109" /> <point x="51" y="108" /> <point x="52" y="108" /> <point x="53" y="107" /> <point x="53" y="106" /> </points> </blob> <blob isHole="true" area="6.0" circumference="9.656855" > <bounding_rect x="156" y="123" width="3" height="5" /> <centroid x="157" y="125" /> <points> <point x="156" y="124" /> <point x="157" y="123" /> <point x="158" y="124" /> <point x="158" y="126" />


2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970

<point x="157" y="127" /> <point x="156" y="126" /> </points> </blob> <blob isHole="true" area="6.0" circumference="9.656855" <bounding_rect x="320" y="182" width="5" height="3" /> <centroid x="322" y="183" /> <points> <point x="320" y="183" /> <point x="321" y="182" /> <point x="323" y="182" /> <point x="324" y="183" /> <point x="323" y="184" /> <point x="321" y="184" /> </points> </blob> <blob isHole="true" area="6.0" circumference="9.656855" <bounding_rect x="314" y="180" width="3" height="5" /> <centroid x="315" y="182" /> <points> <point x="314" y="181" /> <point x="315" y="180" /> <point x="316" y="181" /> <point x="316" y="183" /> <point x="315" y="184" /> <point x="314" y="183" /> </points> </blob> <blob isHole="true" area="6.0" circumference="9.656855" <bounding_rect x="273" y="11" width="5" height="3" /> <centroid x="275" y="12" /> <points> <point x="273" y="12" /> <point x="274" y="11" /> <point x="276" y="11" /> <point x="277" y="12" /> <point x="276" y="13" /> <point x="274" y="13" /> </points> </blob> <blob isHole="true" area="6.0" circumference="9.656855" <bounding_rect x="386" y="172" width="5" height="3" /> <centroid x="388" y="173" /> <points> <point x="386" y="173" /> <point x="387" y="172" /> <point x="389" y="172" /> <point x="390" y="173" /> <point x="389" y="174" /> <point x="387" y="174" /> </points> </blob> <blob isHole="true" area="6.0" circumference="9.656855" <bounding_rect x="147" y="113" width="5" height="3" /> <centroid x="149" y="114" /> <points> <point x="147" y="114" /> <point x="148" y="113" /> <point x="150" y="113" /> <point x="151" y="114" /> <point x="150" y="115" /> <point x="148" y="115" /> </points> </blob> <blob isHole="true" area="6.0" circumference="9.656855" <bounding_rect x="196" y="142" width="5" height="3" /> <centroid x="198" y="143" /> <points> <point x="196" y="143" /> <point x="197" y="142" /> <point x="199" y="142" /> <point x="200" y="143" /> <point x="199" y="144" /> <point x="197" y="144" /> </points> </blob> <blob isHole="true" area="5.5" circumference="9.071068" <bounding_rect x="52" y="139" width="4" height="4" /> <centroid x="53" y="140" /> <points> <point x="54" y="139" /> <point x="55" y="140" /> <point x="55" y="141" /> <point x="54" y="142" /> <point x="53" y="142" /> <point x="52" y="141" /> </points> </blob> <blob isHole="true" area="5.5" circumference="9.071068" <bounding_rect x="138" y="128" width="4" height="4" /> <centroid x="139" y="129" /> <points> <point x="138" y="129" /> <point x="139" y="128" /> <point x="140" y="128" /> <point x="141" y="129" /> <point x="141" y="130" /> <point x="140" y="131" /> </points> </blob> <blob isHole="true" area="5.5" circumference="9.071068" <bounding_rect x="14" y="14" width="4" height="4" /> <centroid x="15" y="15" /> <points> <point x="14" y="15" /> <point x="15" y="14" /> <point x="17" y="16" /> <point x="16" y="17" /> <point x="15" y="17" /> <point x="14" y="16" />

>

>

>

>

>

>

>

>

>

173


2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080

174

</points> </blob> <blob isHole="true" area="5.5" circumference="9.071068" > <bounding_rect x="265" y="154" width="4" height="4" /> <centroid x="266" y="155" /> <points> <point x="267" y="154" /> <point x="268" y="155" /> <point x="268" y="156" /> <point x="267" y="157" /> <point x="266" y="157" /> <point x="265" y="156" /> </points> </blob> <blob isHole="false" area="5.5" circumference="11.414213" > <bounding_rect x="1" y="79" width="3" height="5" /> <centroid x="1" y="81" /> <points> <point x="1" y="79" /> <point x="1" y="83" /> <point x="3" y="83" /> <point x="3" y="82" /> <point x="2" y="81" /> <point x="2" y="79" /> </points> </blob> <blob isHole="true" area="5.5" circumference="9.071068" > <bounding_rect x="300" y="179" width="4" height="4" /> <centroid x="301" y="180" /> <points> <point x="300" y="180" /> <point x="301" y="179" /> <point x="302" y="179" /> <point x="303" y="180" /> <point x="301" y="182" /> <point x="300" y="181" /> </points> </blob> <blob isHole="false" area="5.5" circumference="10.2426405" > <bounding_rect x="342" y="72" width="4" height="4" /> <centroid x="343" y="73" /> <points> <point x="344" y="72" /> <point x="343" y="73" /> <point x="342" y="73" /> <point x="342" y="74" /> <point x="343" y="75" /> <point x="344" y="74" /> <point x="345" y="74" /> <point x="345" y="72" /> </points> </blob> <blob isHole="true" area="5.5" circumference="9.071068" > <bounding_rect x="305" y="183" width="4" height="4" /> <centroid x="306" y="184" /> <points> <point x="305" y="184" /> <point x="306" y="183" /> <point x="307" y="183" /> <point x="308" y="184" /> <point x="308" y="185" /> <point x="307" y="186" /> </points> </blob> <blob isHole="false" area="5.0" circumference="11.656855" > <bounding_rect x="389" y="129" width="5" height="3" /> <centroid x="391" y="130" /> <points> <point x="389" y="129" /> <point x="389" y="130" /> <point x="390" y="130" /> <point x="391" y="131" /> <point x="393" y="131" /> <point x="393" y="130" /> <point x="392" y="129" /> <point x="391" y="130" /> <point x="390" y="129" /> </points> </blob> <blob isHole="false" area="5.0" circumference="10.828427" > <bounding_rect x="36" y="108" width="5" height="3" /> <centroid x="38" y="109" /> <points> <point x="39" y="108" /> <point x="38" y="109" /> <point x="36" y="109" /> <point x="36" y="110" /> <point x="39" y="110" /> <point x="40" y="109" /> <point x="40" y="108" /> </points> </blob> <blob isHole="false" area="5.0" circumference="10.828427" > <bounding_rect x="11" y="161" width="5" height="3" /> <centroid x="12" y="161" /> <points> <point x="11" y="161" /> <point x="11" y="162" /> <point x="12" y="162" /> <point x="13" y="163" /> <point x="15" y="163" /> <point x="14" y="162" /> <point x="14" y="161" /> </points> </blob> <blob isHole="false" area="4.5" circumference="9.414213" > <bounding_rect x="239" y="40" width="4" height="3" /> <centroid x="240" y="40" /> <points> <point x="239" y="40" />


3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190

<point x="239" y="41" /> <point x="240" y="41" /> <point x="241" y="42" /> <point x="242" y="42" /> <point x="242" y="40" /> </points> </blob> <blob isHole="false" area="4.5" circumference="10.2426405" > <bounding_rect x="396" y="65" width="3" height="5" /> <centroid x="397" y="67" /> <points> <point x="398" y="65" /> <point x="397" y="66" /> <point x="397" y="67" /> <point x="396" y="68" /> <point x="396" y="69" /> <point x="397" y="69" /> <point x="398" y="68" /> </points> </blob> <blob isHole="false" area="4.5" circumference="8.2426405" > <bounding_rect x="112" y="57" width="3" height="4" /> <centroid x="113" y="58" /> <points> <point x="113" y="57" /> <point x="112" y="58" /> <point x="112" y="59" /> <point x="113" y="60" /> <point x="114" y="59" /> <point x="114" y="57" /> </points> </blob> <blob isHole="false" area="4.5" circumference="8.2426405" > <bounding_rect x="386" y="163" width="4" height="3" /> <centroid x="387" y="164" /> <points> <point x="387" y="163" /> <point x="386" y="164" /> <point x="387" y="165" /> <point x="389" y="165" /> <point x="389" y="164" /> <point x="388" y="163" /> </points> </blob> <blob isHole="true" area="4.0" circumference="7.656854" > <bounding_rect x="60" y="143" width="4" height="3" /> <centroid x="61" y="144" /> <points> <point x="60" y="144" /> <point x="61" y="143" /> <point x="62" y="143" /> <point x="63" y="144" /> <point x="62" y="145" /> <point x="61" y="145" /> </points> </blob> <blob isHole="true" area="4.0" circumference="7.656854" > <bounding_rect x="269" y="153" width="3" height="4" /> <centroid x="270" y="154" /> <points> <point x="269" y="154" /> <point x="270" y="153" /> <point x="271" y="154" /> <point x="271" y="155" /> <point x="270" y="156" /> <point x="269" y="155" /> </points> </blob> <blob isHole="true" area="4.0" circumference="7.656854" > <bounding_rect x="205" y="157" width="4" height="3" /> <centroid x="206" y="158" /> <points> <point x="205" y="158" /> <point x="206" y="157" /> <point x="207" y="157" /> <point x="208" y="158" /> <point x="207" y="159" /> <point x="206" y="159" /> </points> </blob> <blob isHole="false" area="4.0" circumference="10.828427" > <bounding_rect x="134" y="77" width="5" height="3" /> <centroid x="136" y="78" /> <points> <point x="137" y="77" /> <point x="136" y="78" /> <point x="134" y="78" /> <point x="134" y="79" /> <point x="136" y="79" /> <point x="137" y="78" /> <point x="138" y="78" /> <point x="138" y="77" /> </points> </blob> <blob isHole="true" area="4.0" circumference="7.656854" > <bounding_rect x="174" y="165" width="4" height="3" /> <centroid x="175" y="166" /> <points> <point x="174" y="166" /> <point x="175" y="165" /> <point x="176" y="165" /> <point x="177" y="166" /> <point x="176" y="167" /> <point x="175" y="167" /> </points> </blob> <blob isHole="true" area="4.0" circumference="7.656854" > <bounding_rect x="272" y="167" width="3" height="4" /> <centroid x="273" y="168" /> <points>

175


3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260

176

<point x="272" y="168" /> <point x="273" y="167" /> <point x="274" y="168" /> <point x="274" y="169" /> <point x="273" y="170" /> <point x="272" y="169" /> </points> </blob> <blob isHole="false" area="4.0" circumference="10.0" > <bounding_rect x="286" y="63" width="5" height="2" /> <centroid x="288" y="63" /> <points> <point x="286" y="63" /> <point x="286" y="64" /> <point x="290" y="64" /> <point x="290" y="63" /> </points> </blob> <blob isHole="false" area="4.0" circumference="8.828427" > <bounding_rect x="388" y="90" width="4" height="3" /> <centroid x="389" y="90" /> <points> <point x="388" y="90" /> <point x="388" y="91" /> <point x="389" y="91" /> <point x="390" y="92" /> <point x="391" y="92" /> <point x="391" y="91" /> <point x="390" y="90" /> </points> </blob> <blob isHole="true" area="4.0" circumference="7.656854" > <bounding_rect x="338" y="179" width="4" height="3" /> <centroid x="339" y="180" /> <points> <point x="338" y="180" /> <point x="339" y="179" /> <point x="340" y="179" /> <point x="341" y="180" /> <point x="340" y="181" /> <point x="339" y="181" /> </points> </blob> <blob isHole="false" area="4.0" circumference="8.0" > <bounding_rect x="322" y="121" width="3" height="3" /> <centroid x="323" y="122" /> <points> <point x="322" y="121" /> <point x="322" y="123" /> <point x="324" y="123" /> <point x="324" y="121" /> </points> </blob> <blob isHole="false" area="4.0" circumference="10.828427" > <bounding_rect x="136" y="93" width="3" height="5" /> <centroid x="137" y="95" /> <points> <point x="136" y="93" /> <point x="136" y="94" /> <point x="137" y="95" /> <point x="137" y="97" /> <point x="138" y="97" /> <point x="138" y="95" /> <point x="137" y="94" /> <point x="137" y="93" /> </points> </blob> </blobs> </blobworld>


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

<?xml version="1.0" encoding="iso-8859-1"?> <vshape name="keymi" width="400" height="400"> <blobs> <blob isHole="true" area="58215.0" circumference="1161.8865" > <bounding_rect x="40" y="63" width="321" height="278" /> <centroid x="200" y="187" /> <points> <point x="100" y="64" /> <point x="101" y="63" /> <point x="119" y="63" /> <point x="120" y="64" /> <point x="125" y="64" /> <point x="126" y="65" /> <point x="129" y="65" /> <point x="130" y="66" /> <point x="132" y="66" /> <point x="133" y="67" /> <point x="135" y="67" /> <point x="136" y="68" /> <point x="137" y="68" /> <point x="138" y="69" /> <point x="139" y="69" /> <point x="140" y="70" /> <point x="141" y="70" /> <point x="142" y="71" /> <point x="143" y="71" /> <point x="144" y="72" /> <point x="145" y="72" /> <point x="147" y="74" /> <point x="148" y="74" /> <point x="150" y="76" /> <point x="151" y="76" /> <point x="154" y="79" /> <point x="155" y="79" /> <point x="163" y="87" /> <point x="163" y="88" /> <point x="167" y="92" /> <point x="167" y="93" /> <point x="169" y="95" /> <point x="169" y="96" /> <point x="171" y="98" /> <point x="171" y="99" /> <point x="172" y="100" /> <point x="172" y="101" /> <point x="173" y="102" /> <point x="173" y="103" /> <point x="174" y="104" /> <point x="174" y="105" /> <point x="175" y="106" /> <point x="175" y="108" /> <point x="176" y="109" /> <point x="176" y="111" /> <point x="177" y="112" /> <point x="177" y="114" /> <point x="178" y="115" /> <point x="178" y="118" /> <point x="179" y="119" /> <point x="179" y="124" /> <point x="180" y="125" /> <point x="180" y="140" /> <point x="179" y="141" /> <point x="179" y="142" /> <point x="183" y="142" /> <point x="184" y="141" /> <point x="190" y="141" /> <point x="191" y="140" /> <point x="209" y="140" /> <point x="210" y="141" /> <point x="216" y="141" /> <point x="217" y="142" /> <point x="221" y="142" /> <point x="221" y="141" /> <point x="220" y="140" /> <point x="220" y="125" /> <point x="221" y="124" /> <point x="221" y="119" /> <point x="222" y="118" /> <point x="222" y="115" /> <point x="223" y="114" /> <point x="223" y="112" /> <point x="224" y="111" /> <point x="224" y="109" /> <point x="225" y="108" /> <point x="225" y="106" /> <point x="226" y="105" /> <point x="226" y="104" /> <point x="227" y="103" /> <point x="227" y="102" /> <point x="228" y="101" /> <point x="228" y="100" /> <point x="229" y="99" /> <point x="229" y="98" /> <point x="231" y="96" /> <point x="231" y="95" /> <point x="233" y="93" /> <point x="233" y="92" /> <point x="237" y="88" /> <point x="237" y="87" /> <point x="245" y="79" /> <point x="246" y="79" /> <point x="249" y="76" /> <point x="250" y="76" /> <point x="252" y="74" /> <point x="253" y="74" /> <point x="255" y="72" /> <point x="256" y="72" /> <point x="257" y="71" /> <point x="258" y="71" /> <point x="259" y="70" /> <point x="260" y="70" />

177


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

178

<point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point

x="261" x="262" x="263" x="264" x="265" x="267" x="268" x="270" x="271" x="274" x="275" x="280" x="281" x="299" x="300" x="305" x="306" x="309" x="310" x="312" x="313" x="314" x="315" x="317" x="318" x="319" x="320" x="321" x="322" x="323" x="324" x="325" x="327" x="328" x="330" x="331" x="335" x="336" x="343" x="343" x="347" x="347" x="349" x="349" x="351" x="351" x="352" x="352" x="353" x="353" x="354" x="354" x="355" x="355" x="356" x="356" x="357" x="357" x="358" x="358" x="359" x="359" x="360" x="360" x="359" x="359" x="358" x="358" x="357" x="357" x="356" x="356" x="355" x="355" x="354" x="354" x="353" x="353" x="352" x="352" x="351" x="351" x="350" x="350" x="348" x="348" x="345" x="345" x="333" x="332" x="329" x="328" x="326" x="325" x="324" x="323" x="322" x="321" x="320" x="319" x="318" x="317" x="316" x="314" x="313" x="311" x="310" x="308" x="307" x="303"

y="69" /> y="69" /> y="68" /> y="68" /> y="67" /> y="67" /> y="66" /> y="66" /> y="65" /> y="65" /> y="64" /> y="64" /> y="63" /> y="63" /> y="64" /> y="64" /> y="65" /> y="65" /> y="66" /> y="66" /> y="67" /> y="67" /> y="68" /> y="68" /> y="69" /> y="69" /> y="70" /> y="70" /> y="71" /> y="71" /> y="72" /> y="72" /> y="74" /> y="74" /> y="76" /> y="76" /> y="80" /> y="80" /> y="87" /> y="88" /> y="92" /> y="93" /> y="95" /> y="96" /> y="98" /> y="99" /> y="100" /> y="101" /> y="102" /> y="103" /> y="104" /> y="105" /> y="106" /> y="108" /> y="109" /> y="111" /> y="112" /> y="114" /> y="115" /> y="118" /> y="119" /> y="124" /> y="125" /> y="140" /> y="141" /> y="146" /> y="147" /> y="150" /> y="151" /> y="154" /> y="155" /> y="157" /> y="158" /> y="159" /> y="160" /> y="161" /> y="162" /> y="163" /> y="164" /> y="165" /> y="166" /> y="167" /> y="168" /> y="169" /> y="171" /> y="172" /> y="175" /> y="176" /> y="188" /> y="188" /> y="191" /> y="191" /> y="193" /> y="193" /> y="194" /> y="194" /> y="195" /> y="195" /> y="196" /> y="196" /> y="197" /> y="197" /> y="198" /> y="198" /> y="199" /> y="199" /> y="200" /> y="200" /> y="201" /> y="201" />


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

<point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point

x="302" x="296" x="295" x="293" x="293" x="294" x="294" x="295" x="295" x="296" x="296" x="297" x="297" x="298" x="298" x="299" x="299" x="300" x="300" x="299" x="299" x="298" x="298" x="297" x="297" x="296" x="296" x="295" x="295" x="294" x="294" x="293" x="293" x="292" x="292" x="291" x="291" x="290" x="290" x="289" x="289" x="288" x="288" x="286" x="286" x="285" x="285" x="283" x="283" x="280" x="280" x="276" x="276" x="265" x="264" x="260" x="259" x="256" x="255" x="253" x="252" x="251" x="250" x="248" x="247" x="246" x="245" x="244" x="243" x="242" x="240" x="239" x="238" x="237" x="236" x="235" x="233" x="232" x="230" x="229" x="226" x="225" x="222" x="221" x="217" x="216" x="210" x="209" x="191" x="190" x="184" x="183" x="179" x="178" x="175" x="174" x="171" x="170" x="168" x="167" x="165" x="164" x="163" x="162" x="161" x="160" x="158" x="157" x="156" x="155"

y="202" y="202" y="203" y="203" y="204" y="205" y="207" y="208" y="210" y="211" y="214" y="215" y="218" y="219" y="223" y="224" y="230" y="231" y="249" y="250" y="256" y="257" y="261" y="262" y="265" y="266" y="269" y="270" y="272" y="273" y="275" y="276" y="277" y="278" y="279" y="280" y="282" y="283" y="284" y="285" y="286" y="287" y="288" y="290" y="291" y="292" y="293" y="295" y="296" y="299" y="300" y="304" y="305" y="316" y="316" y="320" y="320" y="323" y="323" y="325" y="325" y="326" y="326" y="328" y="328" y="329" y="329" y="330" y="330" y="331" y="331" y="332" y="332" y="333" y="333" y="334" y="334" y="335" y="335" y="336" y="336" y="337" y="337" y="338" y="338" y="339" y="339" y="340" y="340" y="339" y="339" y="338" y="338" y="337" y="337" y="336" y="336" y="335" y="335" y="334" y="334" y="333" y="333" y="332" y="332" y="331" y="331" y="330" y="330" y="329"

/> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> />

179


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

180

<point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point

x="154" y="329" /> x="153" y="328" /> x="152" y="328" /> x="150" y="326" /> x="149" y="326" /> x="148" y="325" /> x="147" y="325" /> x="145" y="323" /> x="144" y="323" /> x="141" y="320" /> x="140" y="320" /> x="136" y="316" /> x="135" y="316" /> x="124" y="305" /> x="124" y="304" /> x="120" y="300" /> x="120" y="299" /> x="117" y="296" /> x="117" y="295" /> x="115" y="293" /> x="115" y="292" /> x="114" y="291" /> x="114" y="290" /> x="112" y="288" /> x="112" y="287" /> x="111" y="286" /> x="111" y="285" /> x="110" y="284" /> x="110" y="283" /> x="109" y="282" /> x="109" y="280" /> x="108" y="279" /> x="108" y="278" /> x="107" y="277" /> x="107" y="276" /> x="106" y="275" /> x="106" y="273" /> x="105" y="272" /> x="105" y="270" /> x="104" y="269" /> x="104" y="266" /> x="103" y="265" /> x="103" y="262" /> x="102" y="261" /> x="102" y="257" /> x="101" y="256" /> x="101" y="250" /> x="100" y="249" /> x="100" y="231" /> x="101" y="230" /> x="101" y="224" /> x="102" y="223" /> x="102" y="219" /> x="103" y="218" /> x="103" y="215" /> x="104" y="214" /> x="104" y="211" /> x="105" y="210" /> x="105" y="208" /> x="106" y="207" /> x="106" y="205" /> x="107" y="204" /> x="107" y="203" /> x="105" y="203" /> x="104" y="202" /> x="98" y="202" /> x="97" y="201" /> x="93" y="201" /> x="92" y="200" /> x="90" y="200" /> x="89" y="199" /> x="87" y="199" /> x="86" y="198" /> x="84" y="198" /> x="83" y="197" /> x="82" y="197" /> x="81" y="196" /> x="80" y="196" /> x="79" y="195" /> x="78" y="195" /> x="77" y="194" /> x="76" y="194" /> x="75" y="193" /> x="74" y="193" /> x="72" y="191" /> x="71" y="191" /> x="68" y="188" /> x="67" y="188" /> x="55" y="176" /> x="55" y="175" /> x="52" y="172" /> x="52" y="171" /> x="50" y="169" /> x="50" y="168" /> x="49" y="167" /> x="49" y="166" /> x="48" y="165" /> x="48" y="164" /> x="47" y="163" /> x="47" y="162" /> x="46" y="161" /> x="46" y="160" /> x="45" y="159" /> x="45" y="158" /> x="44" y="157" /> x="44" y="155" /> x="43" y="154" /> x="43" y="151" /> x="42" y="150" /> x="42" y="147" />


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

<point x="41" <point x="41" <point x="40" <point x="40" <point x="41" <point x="41" <point x="42" <point x="42" <point x="43" <point x="43" <point x="44" <point x="44" <point x="45" <point x="45" <point x="46" <point x="46" <point x="47" <point x="47" <point x="48" <point x="48" <point x="49" <point x="49" <point x="51" <point x="51" <point x="53" <point x="53" <point x="57" <point x="57" <point x="64" <point x="65" <point x="69" <point x="70" <point x="72" <point x="73" <point x="75" <point x="76" <point x="77" <point x="78" <point x="79" <point x="80" <point x="81" <point x="82" <point x="83" <point x="85" <point x="86" <point x="87" <point x="88" <point x="90" <point x="91" <point x="94" <point x="95" </points> </blob> </blobs> </vshape>

y="146" /> y="141" /> y="140" /> y="125" /> y="124" /> y="119" /> y="118" /> y="115" /> y="114" /> y="112" /> y="111" /> y="109" /> y="108" /> y="106" /> y="105" /> y="104" /> y="103" /> y="102" /> y="101" /> y="100" /> y="99" /> y="98" /> y="96" /> y="95" /> y="93" /> y="92" /> y="88" /> y="87" /> y="80" /> y="80" /> y="76" /> y="76" /> y="74" /> y="74" /> y="72" /> y="72" /> y="71" /> y="71" /> y="70" /> y="70" /> y="69" /> y="69" /> y="68" /> y="68" /> y="67" /> y="67" /> y="66" /> y="66" /> y="65" /> y="65" /> y="64" />

496

181


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

182

<?xml version="1.0" encoding="iso-8859-1"?> <vshape name="kuernos" width="400" height="400"> <blobs> <blob isHole="true" area="5674.0" circumference="368.4752" > <bounding_rect x="90" y="68" width="76" height="134" /> <centroid x="121" y="143" /> <points> <point x="151" y="69" /> <point x="152" y="68" /> <point x="154" y="68" /> <point x="155" y="69" /> <point x="152" y="72" /> <point x="152" y="73" /> <point x="148" y="77" /> <point x="148" y="78" /> <point x="146" y="80" /> <point x="146" y="81" /> <point x="145" y="82" /> <point x="145" y="83" /> <point x="143" y="85" /> <point x="143" y="86" /> <point x="142" y="87" /> <point x="142" y="88" /> <point x="141" y="89" /> <point x="141" y="91" /> <point x="140" y="92" /> <point x="140" y="93" /> <point x="139" y="94" /> <point x="139" y="97" /> <point x="138" y="98" /> <point x="138" y="101" /> <point x="137" y="102" /> <point x="137" y="107" /> <point x="136" y="108" /> <point x="136" y="117" /> <point x="137" y="118" /> <point x="137" y="124" /> <point x="138" y="125" /> <point x="138" y="128" /> <point x="139" y="129" /> <point x="139" y="131" /> <point x="140" y="132" /> <point x="140" y="133" /> <point x="141" y="134" /> <point x="141" y="135" /> <point x="142" y="136" /> <point x="142" y="137" /> <point x="143" y="138" /> <point x="143" y="139" /> <point x="144" y="140" /> <point x="144" y="141" /> <point x="146" y="143" /> <point x="146" y="144" /> <point x="159" y="157" /> <point x="160" y="157" /> <point x="162" y="159" /> <point x="163" y="159" /> <point x="165" y="161" /> <point x="165" y="162" /> <point x="163" y="164" /> <point x="163" y="165" /> <point x="161" y="167" /> <point x="161" y="168" /> <point x="156" y="173" /> <point x="156" y="174" /> <point x="148" y="182" /> <point x="147" y="182" /> <point x="143" y="186" /> <point x="142" y="186" /> <point x="139" y="189" /> <point x="138" y="189" /> <point x="136" y="191" /> <point x="135" y="191" /> <point x="134" y="192" /> <point x="133" y="192" /> <point x="131" y="194" /> <point x="130" y="194" /> <point x="129" y="195" /> <point x="127" y="195" /> <point x="126" y="196" /> <point x="125" y="196" /> <point x="124" y="197" /> <point x="123" y="197" /> <point x="122" y="198" /> <point x="120" y="198" /> <point x="119" y="199" /> <point x="117" y="199" /> <point x="116" y="200" /> <point x="113" y="200" /> <point x="112" y="201" /> <point x="107" y="201" /> <point x="104" y="198" /> <point x="104" y="197" /> <point x="102" y="195" /> <point x="102" y="194" /> <point x="100" y="192" /> <point x="100" y="191" /> <point x="99" y="190" /> <point x="99" y="189" /> <point x="98" y="188" /> <point x="98" y="187" /> <point x="97" y="186" /> <point x="97" y="184" /> <point x="96" y="183" /> <point x="96" y="182" /> <point x="95" y="181" /> <point x="95" y="179" /> <point x="94" y="178" /> <point x="94" y="176" /> <point x="93" y="175" />


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

<point x="93" y="173" /> <point x="92" y="172" /> <point x="92" y="169" /> <point x="91" y="168" /> <point x="91" y="163" /> <point x="90" y="162" /> <point x="90" y="138" /> <point x="91" y="137" /> <point x="91" y="132" /> <point x="92" y="131" /> <point x="92" y="128" /> <point x="93" y="127" /> <point x="93" y="124" /> <point x="94" y="123" /> <point x="94" y="121" /> <point x="95" y="120" /> <point x="95" y="119" /> <point x="96" y="118" /> <point x="96" y="116" /> <point x="97" y="115" /> <point x="97" y="114" /> <point x="98" y="113" /> <point x="98" y="112" /> <point x="99" y="111" /> <point x="99" y="110" /> <point x="100" y="109" /> <point x="100" y="108" /> <point x="101" y="107" /> <point x="101" y="106" /> <point x="103" y="104" /> <point x="103" y="103" /> <point x="105" y="101" /> <point x="105" y="100" /> <point x="109" y="96" /> <point x="109" y="95" /> <point x="117" y="87" /> <point x="118" y="87" /> <point x="122" y="83" /> <point x="123" y="83" /> <point x="126" y="80" /> <point x="127" y="80" /> <point x="128" y="79" /> <point x="129" y="79" /> <point x="131" y="77" /> <point x="132" y="77" /> <point x="133" y="76" /> <point x="134" y="76" /> <point x="135" y="75" /> <point x="136" y="75" /> <point x="137" y="74" /> <point x="138" y="74" /> <point x="139" y="73" /> <point x="140" y="73" /> <point x="141" y="72" /> <point x="143" y="72" /> <point x="144" y="71" /> <point x="145" y="71" /> <point x="146" y="70" /> <point x="148" y="70" /> <point x="149" y="69" /> </points> </blob> <blob isHole="true" area="5674.0" circumference="368.4752" > <bounding_rect x="234" y="68" width="76" height="134" /> <centroid x="277" y="143" /> <points> <point x="244" y="69" /> <point x="245" y="68" /> <point x="247" y="68" /> <point x="248" y="69" /> <point x="250" y="69" /> <point x="251" y="70" /> <point x="253" y="70" /> <point x="254" y="71" /> <point x="255" y="71" /> <point x="256" y="72" /> <point x="258" y="72" /> <point x="259" y="73" /> <point x="260" y="73" /> <point x="261" y="74" /> <point x="262" y="74" /> <point x="263" y="75" /> <point x="264" y="75" /> <point x="265" y="76" /> <point x="266" y="76" /> <point x="267" y="77" /> <point x="268" y="77" /> <point x="270" y="79" /> <point x="271" y="79" /> <point x="272" y="80" /> <point x="273" y="80" /> <point x="276" y="83" /> <point x="277" y="83" /> <point x="281" y="87" /> <point x="282" y="87" /> <point x="290" y="95" /> <point x="290" y="96" /> <point x="294" y="100" /> <point x="294" y="101" /> <point x="296" y="103" /> <point x="296" y="104" /> <point x="298" y="106" /> <point x="298" y="107" /> <point x="299" y="108" /> <point x="299" y="109" /> <point x="300" y="110" /> <point x="300" y="111" /> <point x="301" y="112" /> <point x="301" y="113" /> <point x="302" y="114" />

183


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

184

<point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point

x="302" x="303" x="303" x="304" x="304" x="305" x="305" x="306" x="306" x="307" x="307" x="308" x="308" x="309" x="309" x="308" x="308" x="307" x="307" x="306" x="306" x="305" x="305" x="304" x="304" x="303" x="303" x="302" x="302" x="301" x="301" x="300" x="300" x="299" x="299" x="297" x="297" x="295" x="295" x="292" x="287" x="286" x="283" x="282" x="280" x="279" x="277" x="276" x="275" x="274" x="273" x="272" x="270" x="269" x="268" x="266" x="265" x="264" x="263" x="261" x="260" x="257" x="256" x="252" x="251" x="243" x="243" x="238" x="238" x="236" x="236" x="234" x="234" x="236" x="237" x="239" x="240" x="253" x="253" x="255" x="255" x="256" x="256" x="257" x="257" x="258" x="258" x="259" x="259" x="260" x="260" x="261" x="261" x="262" x="262" x="263" x="263" x="262" x="262" x="261" x="261" x="260" x="260" x="259" x="259" x="258" x="258" x="257" x="257" x="256"

y="115" /> y="116" /> y="118" /> y="119" /> y="120" /> y="121" /> y="123" /> y="124" /> y="127" /> y="128" /> y="131" /> y="132" /> y="137" /> y="138" /> y="162" /> y="163" /> y="168" /> y="169" /> y="172" /> y="173" /> y="175" /> y="176" /> y="178" /> y="179" /> y="181" /> y="182" /> y="183" /> y="184" /> y="186" /> y="187" /> y="188" /> y="189" /> y="190" /> y="191" /> y="192" /> y="194" /> y="195" /> y="197" /> y="198" /> y="201" /> y="201" /> y="200" /> y="200" /> y="199" /> y="199" /> y="198" /> y="198" /> y="197" /> y="197" /> y="196" /> y="196" /> y="195" /> y="195" /> y="194" /> y="194" /> y="192" /> y="192" /> y="191" /> y="191" /> y="189" /> y="189" /> y="186" /> y="186" /> y="182" /> y="182" /> y="174" /> y="173" /> y="168" /> y="167" /> y="165" /> y="164" /> y="162" /> y="161" /> y="159" /> y="159" /> y="157" /> y="157" /> y="144" /> y="143" /> y="141" /> y="140" /> y="139" /> y="138" /> y="137" /> y="136" /> y="135" /> y="134" /> y="133" /> y="132" /> y="131" /> y="129" /> y="128" /> y="125" /> y="124" /> y="118" /> y="117" /> y="108" /> y="107" /> y="102" /> y="101" /> y="98" /> y="97" /> y="94" /> y="93" /> y="92" /> y="91" /> y="89" /> y="88" /> y="87" /> y="86" />


331 332 333 334 335 336 337 338 339 340 341 342 343

<point x="256" <point x="254" <point x="254" <point x="253" <point x="253" <point x="251" <point x="251" <point x="247" <point x="247" </points> </blob> </blobs> </vshape>

y="85" y="83" y="82" y="81" y="80" y="78" y="77" y="73" y="72"

/> /> /> /> /> /> /> /> />

344

185


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

186

<?xml version="1.0" encoding="iso-8859-1"?> <vshape name="loogoo" width="720" height="480"> <blobs> <blob isHole="true" area="6573.0" circumference="586.8183" > <bounding_rect x="147" y="157" width="202" height="99" /> <centroid x="231" y="195" /> <points> <point x="259" y="157" /> <point x="341" y="157" /> <point x="343" y="159" /> <point x="343" y="160" /> <point x="344" y="161" /> <point x="344" y="162" /> <point x="345" y="163" /> <point x="345" y="164" /> <point x="346" y="165" /> <point x="346" y="166" /> <point x="347" y="167" /> <point x="347" y="168" /> <point x="348" y="169" /> <point x="348" y="171" /> <point x="346" y="173" /> <point x="277" y="173" /> <point x="276" y="174" /> <point x="276" y="175" /> <point x="275" y="176" /> <point x="275" y="177" /> <point x="274" y="178" /> <point x="274" y="179" /> <point x="273" y="180" /> <point x="273" y="181" /> <point x="272" y="182" /> <point x="272" y="183" /> <point x="271" y="184" /> <point x="271" y="185" /> <point x="270" y="186" /> <point x="270" y="187" /> <point x="269" y="188" /> <point x="269" y="189" /> <point x="268" y="190" /> <point x="268" y="191" /> <point x="267" y="192" /> <point x="267" y="193" /> <point x="266" y="194" /> <point x="266" y="195" /> <point x="265" y="196" /> <point x="265" y="197" /> <point x="264" y="198" /> <point x="264" y="199" /> <point x="263" y="200" /> <point x="263" y="201" /> <point x="262" y="202" /> <point x="262" y="203" /> <point x="261" y="204" /> <point x="261" y="205" /> <point x="260" y="206" /> <point x="260" y="207" /> <point x="259" y="208" /> <point x="259" y="209" /> <point x="258" y="210" /> <point x="258" y="211" /> <point x="257" y="212" /> <point x="257" y="213" /> <point x="256" y="214" /> <point x="256" y="215" /> <point x="255" y="216" /> <point x="255" y="217" /> <point x="254" y="218" /> <point x="254" y="219" /> <point x="253" y="220" /> <point x="253" y="221" /> <point x="252" y="222" /> <point x="252" y="223" /> <point x="251" y="224" /> <point x="251" y="225" /> <point x="250" y="226" /> <point x="250" y="227" /> <point x="249" y="228" /> <point x="249" y="229" /> <point x="248" y="230" /> <point x="248" y="231" /> <point x="247" y="232" /> <point x="247" y="233" /> <point x="246" y="234" /> <point x="246" y="235" /> <point x="245" y="236" /> <point x="245" y="237" /> <point x="244" y="238" /> <point x="244" y="239" /> <point x="243" y="240" /> <point x="243" y="241" /> <point x="241" y="243" /> <point x="238" y="243" /> <point x="237" y="244" /> <point x="237" y="245" /> <point x="236" y="246" /> <point x="236" y="247" /> <point x="235" y="248" /> <point x="235" y="249" /> <point x="234" y="250" /> <point x="234" y="251" /> <point x="233" y="252" /> <point x="233" y="253" /> <point x="231" y="255" /> <point x="229" y="255" /> <point x="227" y="253" /> <point x="227" y="252" /> <point x="226" y="251" /> <point x="226" y="250" /> <point x="225" y="249" />


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

<point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point

x="225" x="224" x="224" x="223" x="223" x="222" x="219" x="217" x="217" x="216" x="216" x="215" x="215" x="214" x="214" x="213" x="213" x="212" x="212" x="211" x="211" x="210" x="210" x="209" x="209" x="208" x="169" x="167" x="167" x="166" x="166" x="165" x="165" x="164" x="164" x="163" x="163" x="162" x="162" x="161" x="161" x="160" x="160" x="159" x="159" x="158" x="158" x="157" x="157" x="156" x="156" x="155" x="155" x="154" x="154" x="153" x="153" x="152" x="152" x="151" x="151" x="150" x="150" x="149" x="149" x="148" x="148" x="147" x="147" x="149" x="211" x="213" x="213" x="214" x="214" x="215" x="215" x="216" x="216" x="217" x="217" x="218" x="218" x="219" x="219" x="220" x="220" x="221" x="221" x="222" x="222" x="223" x="223" x="224" x="224" x="225" x="225" x="226" x="226" x="227" x="227" x="228" x="228" x="229" x="229" x="230" x="231" x="231" x="232" x="232"

y="248" y="247" y="246" y="245" y="244" y="243" y="243" y="241" y="240" y="239" y="238" y="237" y="236" y="235" y="234" y="233" y="232" y="231" y="230" y="229" y="228" y="227" y="226" y="225" y="224" y="223" y="223" y="221" y="220" y="219" y="218" y="217" y="216" y="215" y="214" y="213" y="212" y="211" y="210" y="209" y="208" y="207" y="206" y="205" y="204" y="203" y="202" y="201" y="200" y="199" y="198" y="197" y="196" y="195" y="194" y="193" y="192" y="191" y="190" y="189" y="188" y="187" y="186" y="185" y="184" y="183" y="182" y="181" y="179" y="177" y="177" y="179" y="180" y="181" y="182" y="183" y="184" y="185" y="186" y="187" y="188" y="189" y="190" y="191" y="192" y="193" y="194" y="195" y="196" y="197" y="198" y="199" y="200" y="201" y="202" y="203" y="204" y="205" y="206" y="207" y="208" y="209" y="210" y="211" y="212" y="213" y="212" y="211" y="210" y="209"

/> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> />

187


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

188

<point x="233" y="208" /> <point x="233" y="207" /> <point x="234" y="206" /> <point x="234" y="205" /> <point x="235" y="204" /> <point x="235" y="203" /> <point x="236" y="202" /> <point x="236" y="201" /> <point x="237" y="200" /> <point x="237" y="199" /> <point x="238" y="198" /> <point x="238" y="197" /> <point x="239" y="196" /> <point x="239" y="195" /> <point x="240" y="194" /> <point x="240" y="193" /> <point x="241" y="192" /> <point x="241" y="191" /> <point x="242" y="190" /> <point x="242" y="189" /> <point x="243" y="188" /> <point x="243" y="187" /> <point x="244" y="186" /> <point x="244" y="185" /> <point x="245" y="184" /> <point x="245" y="183" /> <point x="246" y="182" /> <point x="246" y="181" /> <point x="247" y="180" /> <point x="247" y="179" /> <point x="248" y="178" /> <point x="248" y="177" /> <point x="249" y="176" /> <point x="249" y="175" /> <point x="250" y="174" /> <point x="250" y="173" /> <point x="251" y="172" /> <point x="251" y="171" /> <point x="252" y="170" /> <point x="252" y="169" /> <point x="253" y="168" /> <point x="253" y="167" /> <point x="254" y="166" /> <point x="254" y="165" /> <point x="255" y="164" /> <point x="255" y="163" /> <point x="256" y="162" /> <point x="256" y="161" /> <point x="257" y="160" /> <point x="257" y="159" /> </points> </blob> <blob isHole="true" area="5561.0" circumference="328.2498" > <bounding_rect x="347" y="157" width="97" height="99" /> <centroid x="397" y="193" /> <points> <point x="349" y="157" /> <point x="431" y="157" /> <point x="433" y="159" /> <point x="433" y="160" /> <point x="434" y="161" /> <point x="434" y="162" /> <point x="435" y="163" /> <point x="435" y="164" /> <point x="436" y="165" /> <point x="436" y="166" /> <point x="437" y="167" /> <point x="437" y="168" /> <point x="438" y="169" /> <point x="438" y="170" /> <point x="439" y="171" /> <point x="439" y="172" /> <point x="440" y="173" /> <point x="440" y="174" /> <point x="441" y="175" /> <point x="441" y="176" /> <point x="442" y="177" /> <point x="442" y="178" /> <point x="443" y="179" /> <point x="443" y="181" /> <point x="442" y="182" /> <point x="442" y="183" /> <point x="441" y="184" /> <point x="441" y="185" /> <point x="440" y="186" /> <point x="440" y="187" /> <point x="439" y="188" /> <point x="439" y="189" /> <point x="438" y="190" /> <point x="438" y="191" /> <point x="437" y="192" /> <point x="437" y="193" /> <point x="436" y="194" /> <point x="436" y="195" /> <point x="435" y="196" /> <point x="435" y="197" /> <point x="434" y="198" /> <point x="434" y="199" /> <point x="433" y="200" /> <point x="433" y="201" /> <point x="432" y="202" /> <point x="432" y="203" /> <point x="431" y="204" /> <point x="431" y="205" /> <point x="430" y="206" /> <point x="430" y="207" /> <point x="429" y="208" /> <point x="429" y="209" /> <point x="428" y="210" /> <point x="428" y="211" />


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

<point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point

x="427" x="427" x="426" x="426" x="425" x="425" x="424" x="424" x="423" x="423" x="422" x="422" x="421" x="421" x="420" x="420" x="419" x="419" x="418" x="418" x="417" x="417" x="416" x="416" x="415" x="415" x="414" x="414" x="413" x="413" x="411" x="408" x="407" x="407" x="406" x="406" x="405" x="405" x="404" x="404" x="403" x="403" x="401" x="399" x="397" x="397" x="396" x="396" x="395" x="395" x="394" x="394" x="393" x="393" x="392" x="389" x="387" x="387" x="386" x="386" x="385" x="385" x="384" x="384" x="383" x="383" x="382" x="382" x="381" x="381" x="380" x="380" x="379" x="379" x="378" x="378" x="377" x="377" x="376" x="376" x="375" x="375" x="374" x="374" x="373" x="373" x="372" x="372" x="371" x="371" x="370" x="370" x="369" x="369" x="368" x="368" x="367" x="367" x="366" x="366" x="365" x="365" x="364" x="364" x="363" x="363" x="362" x="362" x="361" x="361"

y="212" y="213" y="214" y="215" y="216" y="217" y="218" y="219" y="220" y="221" y="222" y="223" y="224" y="225" y="226" y="227" y="228" y="229" y="230" y="231" y="232" y="233" y="234" y="235" y="236" y="237" y="238" y="239" y="240" y="241" y="243" y="243" y="244" y="245" y="246" y="247" y="248" y="249" y="250" y="251" y="252" y="253" y="255" y="255" y="253" y="252" y="251" y="250" y="249" y="248" y="247" y="246" y="245" y="244" y="243" y="243" y="241" y="240" y="239" y="238" y="237" y="236" y="235" y="234" y="233" y="232" y="231" y="230" y="229" y="228" y="227" y="226" y="225" y="224" y="223" y="222" y="221" y="220" y="219" y="218" y="217" y="216" y="215" y="214" y="213" y="212" y="211" y="210" y="209" y="208" y="207" y="206" y="205" y="204" y="203" y="202" y="201" y="200" y="199" y="198" y="197" y="196" y="195" y="194" y="193" y="192" y="191" y="190" y="189" y="188"

/> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> />

189


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

190

<point x="360" y="187" /> <point x="360" y="186" /> <point x="359" y="185" /> <point x="359" y="184" /> <point x="358" y="183" /> <point x="358" y="182" /> <point x="357" y="181" /> <point x="357" y="180" /> <point x="356" y="179" /> <point x="356" y="178" /> <point x="355" y="177" /> <point x="355" y="176" /> <point x="354" y="175" /> <point x="354" y="174" /> <point x="353" y="173" /> <point x="353" y="172" /> <point x="352" y="171" /> <point x="352" y="170" /> <point x="351" y="169" /> <point x="351" y="168" /> <point x="350" y="167" /> <point x="350" y="166" /> <point x="349" y="165" /> <point x="349" y="164" /> <point x="348" y="163" /> <point x="348" y="162" /> <point x="347" y="161" /> <point x="347" y="159" /> </points> </blob> <blob isHole="true" area="5561.0" circumference="328.2498" > <bounding_rect x="407" y="267" width="97" height="99" /> <centroid x="457" y="303" /> <points> <point x="409" y="267" /> <point x="491" y="267" /> <point x="493" y="269" /> <point x="493" y="270" /> <point x="494" y="271" /> <point x="494" y="272" /> <point x="495" y="273" /> <point x="495" y="274" /> <point x="496" y="275" /> <point x="496" y="276" /> <point x="497" y="277" /> <point x="497" y="278" /> <point x="498" y="279" /> <point x="498" y="280" /> <point x="499" y="281" /> <point x="499" y="282" /> <point x="500" y="283" /> <point x="500" y="284" /> <point x="501" y="285" /> <point x="501" y="286" /> <point x="502" y="287" /> <point x="502" y="288" /> <point x="503" y="289" /> <point x="503" y="291" /> <point x="502" y="292" /> <point x="502" y="293" /> <point x="501" y="294" /> <point x="501" y="295" /> <point x="500" y="296" /> <point x="500" y="297" /> <point x="499" y="298" /> <point x="499" y="299" /> <point x="498" y="300" /> <point x="498" y="301" /> <point x="497" y="302" /> <point x="497" y="303" /> <point x="496" y="304" /> <point x="496" y="305" /> <point x="495" y="306" /> <point x="495" y="307" /> <point x="494" y="308" /> <point x="494" y="309" /> <point x="493" y="310" /> <point x="493" y="311" /> <point x="492" y="312" /> <point x="492" y="313" /> <point x="491" y="314" /> <point x="491" y="315" /> <point x="490" y="316" /> <point x="490" y="317" /> <point x="489" y="318" /> <point x="489" y="319" /> <point x="488" y="320" /> <point x="488" y="321" /> <point x="487" y="322" /> <point x="487" y="323" /> <point x="486" y="324" /> <point x="486" y="325" /> <point x="485" y="326" /> <point x="485" y="327" /> <point x="484" y="328" /> <point x="484" y="329" /> <point x="483" y="330" /> <point x="483" y="331" /> <point x="482" y="332" /> <point x="482" y="333" /> <point x="481" y="334" /> <point x="481" y="335" /> <point x="480" y="336" /> <point x="480" y="337" /> <point x="479" y="338" /> <point x="479" y="339" /> <point x="478" y="340" /> <point x="478" y="341" /> <point x="477" y="342" /> <point x="477" y="343" />


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 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

<point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point

x="476" x="476" x="475" x="475" x="474" x="474" x="473" x="473" x="471" x="468" x="467" x="467" x="466" x="466" x="465" x="465" x="464" x="464" x="463" x="463" x="461" x="459" x="457" x="457" x="456" x="456" x="455" x="455" x="454" x="454" x="453" x="453" x="452" x="449" x="447" x="447" x="446" x="446" x="445" x="445" x="444" x="444" x="443" x="443" x="442" x="442" x="441" x="441" x="440" x="440" x="439" x="439" x="438" x="438" x="437" x="437" x="436" x="436" x="435" x="435" x="434" x="434" x="433" x="433" x="432" x="432" x="431" x="431" x="430" x="430" x="429" x="429" x="428" x="428" x="427" x="427" x="426" x="426" x="425" x="425" x="424" x="424" x="423" x="423" x="422" x="422" x="421" x="421" x="420" x="420" x="419" x="419" x="418" x="418" x="417" x="417" x="416" x="416" x="415" x="415" x="414" x="414" x="413" x="413" x="412" x="412" x="411" x="411" x="410" x="410"

y="344" y="345" y="346" y="347" y="348" y="349" y="350" y="351" y="353" y="353" y="354" y="355" y="356" y="357" y="358" y="359" y="360" y="361" y="362" y="363" y="365" y="365" y="363" y="362" y="361" y="360" y="359" y="358" y="357" y="356" y="355" y="354" y="353" y="353" y="351" y="350" y="349" y="348" y="347" y="346" y="345" y="344" y="343" y="342" y="341" y="340" y="339" y="338" y="337" y="336" y="335" y="334" y="333" y="332" y="331" y="330" y="329" y="328" y="327" y="326" y="325" y="324" y="323" y="322" y="321" y="320" y="319" y="318" y="317" y="316" y="315" y="314" y="313" y="312" y="311" y="310" y="309" y="308" y="307" y="306" y="305" y="304" y="303" y="302" y="301" y="300" y="299" y="298" y="297" y="296" y="295" y="294" y="293" y="292" y="291" y="290" y="289" y="288" y="287" y="286" y="285" y="284" y="283" y="282" y="281" y="280" y="279" y="278" y="277" y="276"

/> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> />

191


661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 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 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

192

<point x="409" y="275" /> <point x="409" y="274" /> <point x="408" y="273" /> <point x="408" y="272" /> <point x="407" y="271" /> <point x="407" y="269" /> </points> </blob> <blob isHole="true" area="5065.0" circumference="431.3625" > <bounding_rect x="237" y="267" width="97" height="99" /> <centroid x="281" y="301" /> <points> <point x="249" y="267" /> <point x="331" y="267" /> <point x="333" y="269" /> <point x="333" y="271" /> <point x="332" y="272" /> <point x="332" y="273" /> <point x="331" y="274" /> <point x="331" y="275" /> <point x="330" y="276" /> <point x="330" y="277" /> <point x="329" y="278" /> <point x="329" y="279" /> <point x="328" y="280" /> <point x="328" y="281" /> <point x="327" y="282" /> <point x="327" y="283" /> <point x="326" y="284" /> <point x="326" y="285" /> <point x="325" y="286" /> <point x="325" y="287" /> <point x="324" y="288" /> <point x="324" y="289" /> <point x="323" y="290" /> <point x="323" y="291" /> <point x="322" y="292" /> <point x="322" y="293" /> <point x="321" y="294" /> <point x="321" y="295" /> <point x="320" y="296" /> <point x="320" y="297" /> <point x="319" y="298" /> <point x="319" y="299" /> <point x="318" y="300" /> <point x="318" y="301" /> <point x="317" y="302" /> <point x="317" y="303" /> <point x="316" y="304" /> <point x="316" y="305" /> <point x="315" y="306" /> <point x="315" y="307" /> <point x="314" y="308" /> <point x="314" y="309" /> <point x="313" y="310" /> <point x="313" y="311" /> <point x="311" y="313" /> <point x="279" y="313" /> <point x="277" y="311" /> <point x="277" y="310" /> <point x="276" y="309" /> <point x="276" y="308" /> <point x="275" y="307" /> <point x="275" y="306" /> <point x="274" y="305" /> <point x="274" y="304" /> <point x="273" y="303" /> <point x="273" y="302" /> <point x="272" y="301" /> <point x="272" y="300" /> <point x="271" y="299" /> <point x="271" y="298" /> <point x="270" y="297" /> <point x="270" y="296" /> <point x="269" y="295" /> <point x="269" y="294" /> <point x="268" y="293" /> <point x="265" y="293" /> <point x="265" y="294" /> <point x="266" y="295" /> <point x="266" y="296" /> <point x="267" y="297" /> <point x="267" y="298" /> <point x="268" y="299" /> <point x="268" y="300" /> <point x="269" y="301" /> <point x="269" y="302" /> <point x="270" y="303" /> <point x="270" y="304" /> <point x="271" y="305" /> <point x="271" y="306" /> <point x="272" y="307" /> <point x="272" y="308" /> <point x="273" y="309" /> <point x="273" y="310" /> <point x="274" y="311" /> <point x="274" y="312" /> <point x="275" y="313" /> <point x="275" y="314" /> <point x="276" y="315" /> <point x="276" y="316" /> <point x="277" y="317" /> <point x="277" y="318" /> <point x="278" y="319" /> <point x="278" y="320" /> <point x="279" y="321" /> <point x="279" y="322" /> <point x="280" y="323" /> <point x="280" y="324" /> <point x="281" y="325" />


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 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880

<point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point

x="281" x="282" x="301" x="303" x="303" x="302" x="302" x="301" x="301" x="300" x="300" x="299" x="299" x="298" x="298" x="297" x="297" x="296" x="296" x="295" x="295" x="294" x="294" x="293" x="293" x="291" x="288" x="287" x="287" x="286" x="286" x="285" x="285" x="284" x="284" x="283" x="283" x="281" x="279" x="277" x="277" x="276" x="276" x="275" x="275" x="274" x="274" x="273" x="273" x="272" x="269" x="267" x="267" x="266" x="266" x="265" x="265" x="264" x="264" x="263" x="263" x="262" x="262" x="261" x="261" x="260" x="260" x="259" x="259" x="258" x="258" x="257" x="257" x="256" x="256" x="255" x="255" x="254" x="254" x="253" x="253" x="252" x="252" x="251" x="251" x="250" x="250" x="249" x="249" x="248" x="248" x="247" x="247" x="246" x="246" x="245" x="245" x="244" x="244" x="243" x="243" x="242" x="242" x="241" x="241" x="240" x="240" x="239" x="239" x="238"

y="326" y="327" y="327" y="329" y="331" y="332" y="333" y="334" y="335" y="336" y="337" y="338" y="339" y="340" y="341" y="342" y="343" y="344" y="345" y="346" y="347" y="348" y="349" y="350" y="351" y="353" y="353" y="354" y="355" y="356" y="357" y="358" y="359" y="360" y="361" y="362" y="363" y="365" y="365" y="363" y="362" y="361" y="360" y="359" y="358" y="357" y="356" y="355" y="354" y="353" y="353" y="351" y="350" y="349" y="348" y="347" y="346" y="345" y="344" y="343" y="342" y="341" y="340" y="339" y="338" y="337" y="336" y="335" y="334" y="333" y="332" y="331" y="330" y="329" y="328" y="327" y="326" y="325" y="324" y="323" y="322" y="321" y="320" y="319" y="318" y="317" y="316" y="315" y="314" y="313" y="312" y="311" y="310" y="309" y="308" y="307" y="306" y="305" y="304" y="303" y="302" y="301" y="300" y="299" y="298" y="297" y="296" y="295" y="294" y="293"

/> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> />

193


881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990

194

<point x="238" y="292" /> <point x="237" y="291" /> <point x="237" y="289" /> <point x="238" y="288" /> <point x="238" y="287" /> <point x="239" y="286" /> <point x="239" y="285" /> <point x="240" y="284" /> <point x="240" y="283" /> <point x="241" y="282" /> <point x="241" y="281" /> <point x="242" y="280" /> <point x="242" y="279" /> <point x="243" y="278" /> <point x="243" y="277" /> <point x="244" y="276" /> <point x="244" y="275" /> <point x="245" y="274" /> <point x="245" y="273" /> <point x="246" y="272" /> <point x="246" y="271" /> <point x="247" y="270" /> <point x="247" y="269" /> </points> </blob> <blob isHole="true" area="4627.0" circumference="448.13202" > <bounding_rect x="287" y="287" width="97" height="87" /> <centroid x="334" y="330" /> <points> <point x="329" y="287" /> <point x="351" y="287" /> <point x="353" y="289" /> <point x="353" y="291" /> <point x="352" y="292" /> <point x="352" y="293" /> <point x="351" y="294" /> <point x="351" y="295" /> <point x="350" y="296" /> <point x="350" y="297" /> <point x="349" y="298" /> <point x="349" y="299" /> <point x="348" y="300" /> <point x="348" y="301" /> <point x="347" y="302" /> <point x="347" y="303" /> <point x="346" y="304" /> <point x="346" y="305" /> <point x="345" y="306" /> <point x="345" y="307" /> <point x="344" y="308" /> <point x="344" y="309" /> <point x="343" y="310" /> <point x="343" y="311" /> <point x="342" y="312" /> <point x="342" y="313" /> <point x="341" y="314" /> <point x="341" y="315" /> <point x="340" y="316" /> <point x="340" y="317" /> <point x="339" y="318" /> <point x="339" y="319" /> <point x="338" y="320" /> <point x="338" y="321" /> <point x="337" y="322" /> <point x="337" y="323" /> <point x="336" y="324" /> <point x="336" y="325" /> <point x="335" y="326" /> <point x="335" y="327" /> <point x="338" y="327" /> <point x="339" y="326" /> <point x="339" y="325" /> <point x="340" y="324" /> <point x="340" y="323" /> <point x="341" y="322" /> <point x="341" y="321" /> <point x="342" y="320" /> <point x="342" y="319" /> <point x="343" y="318" /> <point x="343" y="317" /> <point x="344" y="316" /> <point x="344" y="315" /> <point x="345" y="314" /> <point x="345" y="313" /> <point x="346" y="312" /> <point x="346" y="311" /> <point x="347" y="310" /> <point x="347" y="309" /> <point x="348" y="308" /> <point x="348" y="307" /> <point x="349" y="306" /> <point x="349" y="305" /> <point x="350" y="304" /> <point x="350" y="303" /> <point x="351" y="302" /> <point x="351" y="301" /> <point x="352" y="300" /> <point x="352" y="299" /> <point x="353" y="298" /> <point x="353" y="297" /> <point x="354" y="296" /> <point x="354" y="295" /> <point x="355" y="294" /> <point x="355" y="293" /> <point x="356" y="292" /> <point x="356" y="291" /> <point x="357" y="290" /> <point x="357" y="289" /> <point x="359" y="287" /> <point x="381" y="287" />


991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100

<point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point

x="383" x="383" x="382" x="382" x="381" x="381" x="380" x="380" x="379" x="379" x="378" x="378" x="377" x="377" x="376" x="376" x="375" x="375" x="374" x="374" x="373" x="373" x="372" x="372" x="371" x="371" x="370" x="370" x="369" x="369" x="368" x="368" x="367" x="367" x="366" x="366" x="365" x="365" x="364" x="364" x="363" x="363" x="362" x="362" x="361" x="361" x="360" x="360" x="359" x="359" x="358" x="358" x="357" x="357" x="356" x="356" x="355" x="355" x="354" x="354" x="353" x="353" x="352" x="352" x="351" x="351" x="350" x="350" x="349" x="349" x="348" x="348" x="347" x="347" x="346" x="346" x="345" x="345" x="344" x="344" x="343" x="343" x="341" x="319" x="317" x="317" x="318" x="318" x="319" x="319" x="320" x="320" x="321" x="321" x="322" x="322" x="323" x="323" x="324" x="324" x="325" x="325" x="322" x="321" x="321" x="320" x="320" x="319" x="319" x="318"

y="289" y="291" y="292" y="293" y="294" y="295" y="296" y="297" y="298" y="299" y="300" y="301" y="302" y="303" y="304" y="305" y="306" y="307" y="308" y="309" y="310" y="311" y="312" y="313" y="314" y="315" y="316" y="317" y="318" y="319" y="320" y="321" y="322" y="323" y="324" y="325" y="326" y="327" y="328" y="329" y="330" y="331" y="332" y="333" y="334" y="335" y="336" y="337" y="338" y="339" y="340" y="341" y="342" y="343" y="344" y="345" y="346" y="347" y="348" y="349" y="350" y="351" y="352" y="353" y="354" y="355" y="356" y="357" y="358" y="359" y="360" y="361" y="362" y="363" y="364" y="365" y="366" y="367" y="368" y="369" y="370" y="371" y="373" y="373" y="371" y="369" y="368" y="367" y="366" y="365" y="364" y="363" y="362" y="361" y="360" y="359" y="358" y="357" y="356" y="355" y="354" y="353" y="353" y="354" y="355" y="356" y="357" y="358" y="359" y="360"

/> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> />

195


1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210

196

<point x="318" y="361" /> <point x="317" y="362" /> <point x="317" y="363" /> <point x="316" y="364" /> <point x="316" y="365" /> <point x="315" y="366" /> <point x="315" y="367" /> <point x="314" y="368" /> <point x="314" y="369" /> <point x="313" y="370" /> <point x="313" y="371" /> <point x="311" y="373" /> <point x="289" y="373" /> <point x="287" y="371" /> <point x="287" y="369" /> <point x="288" y="368" /> <point x="288" y="367" /> <point x="289" y="366" /> <point x="289" y="365" /> <point x="290" y="364" /> <point x="290" y="363" /> <point x="291" y="362" /> <point x="291" y="361" /> <point x="292" y="360" /> <point x="292" y="359" /> <point x="293" y="358" /> <point x="293" y="357" /> <point x="294" y="356" /> <point x="294" y="355" /> <point x="295" y="354" /> <point x="295" y="353" /> <point x="296" y="352" /> <point x="296" y="351" /> <point x="297" y="350" /> <point x="297" y="349" /> <point x="298" y="348" /> <point x="298" y="347" /> <point x="299" y="346" /> <point x="299" y="345" /> <point x="300" y="344" /> <point x="300" y="343" /> <point x="301" y="342" /> <point x="301" y="341" /> <point x="302" y="340" /> <point x="302" y="339" /> <point x="303" y="338" /> <point x="303" y="337" /> <point x="304" y="336" /> <point x="304" y="335" /> <point x="305" y="334" /> <point x="305" y="333" /> <point x="306" y="332" /> <point x="306" y="331" /> <point x="307" y="330" /> <point x="307" y="329" /> <point x="308" y="328" /> <point x="308" y="327" /> <point x="309" y="326" /> <point x="309" y="325" /> <point x="310" y="324" /> <point x="310" y="323" /> <point x="311" y="322" /> <point x="311" y="321" /> <point x="312" y="320" /> <point x="312" y="319" /> <point x="313" y="318" /> <point x="313" y="317" /> <point x="314" y="316" /> <point x="314" y="315" /> <point x="315" y="314" /> <point x="315" y="313" /> <point x="316" y="312" /> <point x="316" y="311" /> <point x="317" y="310" /> <point x="317" y="309" /> <point x="318" y="308" /> <point x="318" y="307" /> <point x="319" y="306" /> <point x="319" y="305" /> <point x="320" y="304" /> <point x="320" y="303" /> <point x="321" y="302" /> <point x="321" y="301" /> <point x="322" y="300" /> <point x="322" y="299" /> <point x="323" y="298" /> <point x="323" y="297" /> <point x="324" y="296" /> <point x="324" y="295" /> <point x="325" y="294" /> <point x="325" y="293" /> <point x="326" y="292" /> <point x="326" y="291" /> <point x="327" y="290" /> <point x="327" y="289" /> </points> </blob> <blob isHole="true" area="3410.5" circumference="339.865" > <bounding_rect x="353" y="287" width="81" height="87" /> <centroid x="389" y="339" /> <points> <point x="389" y="287" /> <point x="411" y="287" /> <point x="413" y="289" /> <point x="413" y="291" /> <point x="412" y="292" /> <point x="412" y="293" /> <point x="411" y="294" /> <point x="411" y="295" /> <point x="410" y="296" />


1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320

<point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point

x="410" x="409" x="409" x="408" x="408" x="407" x="407" x="406" x="406" x="405" x="405" x="404" x="404" x="403" x="403" x="402" x="402" x="401" x="401" x="400" x="400" x="399" x="399" x="398" x="398" x="397" x="397" x="396" x="396" x="395" x="395" x="394" x="394" x="393" x="393" x="392" x="392" x="391" x="391" x="390" x="390" x="389" x="389" x="388" x="388" x="387" x="387" x="386" x="386" x="385" x="385" x="431" x="433" x="433" x="432" x="432" x="431" x="431" x="430" x="430" x="429" x="429" x="428" x="428" x="427" x="427" x="426" x="426" x="425" x="425" x="424" x="424" x="423" x="423" x="421" x="369" x="367" x="367" x="366" x="355" x="353" x="353" x="354" x="354" x="355" x="355" x="356" x="356" x="357" x="357" x="358" x="358" x="359" x="358" x="358" x="357" x="357" x="358" x="358" x="359" x="359" x="360" x="360" x="361" x="361" x="362" x="362" x="363" x="363" x="364"

y="297" y="298" y="299" y="300" y="301" y="302" y="303" y="304" y="305" y="306" y="307" y="308" y="309" y="310" y="311" y="312" y="313" y="314" y="315" y="316" y="317" y="318" y="319" y="320" y="321" y="322" y="323" y="324" y="325" y="326" y="327" y="328" y="329" y="330" y="331" y="332" y="333" y="334" y="335" y="336" y="337" y="338" y="339" y="340" y="341" y="342" y="343" y="344" y="345" y="346" y="347" y="347" y="349" y="351" y="352" y="353" y="354" y="355" y="356" y="357" y="358" y="359" y="360" y="361" y="362" y="363" y="364" y="365" y="366" y="367" y="368" y="369" y="370" y="371" y="373" y="373" y="371" y="370" y="369" y="369" y="367" y="365" y="364" y="363" y="362" y="361" y="360" y="359" y="358" y="357" y="356" y="355" y="354" y="353" y="352" y="351" y="349" y="348" y="347" y="346" y="345" y="344" y="343" y="342" y="341" y="340" y="339" y="338" y="337" y="336"

/> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> />

197


1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430

198

<point x="364" y="335" /> <point x="365" y="334" /> <point x="365" y="333" /> <point x="366" y="332" /> <point x="366" y="331" /> <point x="367" y="330" /> <point x="367" y="329" /> <point x="368" y="328" /> <point x="368" y="327" /> <point x="369" y="326" /> <point x="369" y="325" /> <point x="370" y="324" /> <point x="370" y="323" /> <point x="371" y="322" /> <point x="371" y="321" /> <point x="372" y="320" /> <point x="372" y="319" /> <point x="373" y="318" /> <point x="373" y="317" /> <point x="374" y="316" /> <point x="374" y="315" /> <point x="375" y="314" /> <point x="375" y="313" /> <point x="376" y="312" /> <point x="376" y="311" /> <point x="377" y="310" /> <point x="377" y="309" /> <point x="378" y="308" /> <point x="378" y="307" /> <point x="379" y="306" /> <point x="379" y="305" /> <point x="380" y="304" /> <point x="380" y="303" /> <point x="381" y="302" /> <point x="381" y="301" /> <point x="382" y="300" /> <point x="382" y="299" /> <point x="383" y="298" /> <point x="383" y="297" /> <point x="384" y="296" /> <point x="384" y="295" /> <point x="385" y="294" /> <point x="385" y="293" /> <point x="386" y="292" /> <point x="386" y="291" /> <point x="387" y="290" /> <point x="387" y="289" /> </points> </blob> <blob isHole="true" area="3311.0" circumference="239.96552" > <bounding_rect x="317" y="185" width="67" height="79" /> <centroid x="350" y="231" /> <points> <point x="349" y="185" /> <point x="351" y="185" /> <point x="353" y="187" /> <point x="353" y="188" /> <point x="354" y="189" /> <point x="354" y="190" /> <point x="355" y="191" /> <point x="355" y="192" /> <point x="356" y="193" /> <point x="356" y="194" /> <point x="357" y="195" /> <point x="357" y="196" /> <point x="358" y="197" /> <point x="361" y="197" /> <point x="363" y="199" /> <point x="363" y="200" /> <point x="364" y="201" /> <point x="364" y="202" /> <point x="365" y="203" /> <point x="365" y="204" /> <point x="366" y="205" /> <point x="366" y="206" /> <point x="367" y="207" /> <point x="367" y="208" /> <point x="368" y="209" /> <point x="368" y="210" /> <point x="369" y="211" /> <point x="369" y="212" /> <point x="370" y="213" /> <point x="370" y="214" /> <point x="371" y="215" /> <point x="371" y="216" /> <point x="372" y="217" /> <point x="372" y="218" /> <point x="373" y="219" /> <point x="373" y="220" /> <point x="374" y="221" /> <point x="374" y="222" /> <point x="375" y="223" /> <point x="375" y="224" /> <point x="376" y="225" /> <point x="376" y="226" /> <point x="377" y="227" /> <point x="377" y="228" /> <point x="378" y="229" /> <point x="378" y="230" /> <point x="379" y="231" /> <point x="379" y="232" /> <point x="380" y="233" /> <point x="380" y="234" /> <point x="381" y="235" /> <point x="381" y="236" /> <point x="382" y="237" /> <point x="382" y="238" /> <point x="383" y="239" /> <point x="383" y="241" /> <point x="382" y="242" />


1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540

<point x="382" y="243" /> <point x="381" y="244" /> <point x="381" y="245" /> <point x="380" y="246" /> <point x="380" y="247" /> <point x="379" y="248" /> <point x="379" y="249" /> <point x="378" y="250" /> <point x="378" y="251" /> <point x="377" y="252" /> <point x="377" y="253" /> <point x="376" y="254" /> <point x="376" y="255" /> <point x="375" y="256" /> <point x="375" y="257" /> <point x="374" y="258" /> <point x="374" y="259" /> <point x="373" y="260" /> <point x="373" y="261" /> <point x="371" y="263" /> <point x="329" y="263" /> <point x="327" y="261" /> <point x="327" y="260" /> <point x="326" y="259" /> <point x="326" y="258" /> <point x="325" y="257" /> <point x="325" y="256" /> <point x="324" y="255" /> <point x="324" y="254" /> <point x="323" y="253" /> <point x="323" y="252" /> <point x="322" y="251" /> <point x="322" y="250" /> <point x="321" y="249" /> <point x="321" y="248" /> <point x="320" y="247" /> <point x="320" y="246" /> <point x="319" y="245" /> <point x="319" y="244" /> <point x="318" y="243" /> <point x="318" y="242" /> <point x="317" y="241" /> <point x="317" y="239" /> <point x="318" y="238" /> <point x="318" y="237" /> <point x="319" y="236" /> <point x="319" y="235" /> <point x="320" y="234" /> <point x="320" y="233" /> <point x="321" y="232" /> <point x="321" y="231" /> <point x="322" y="230" /> <point x="322" y="229" /> <point x="323" y="228" /> <point x="323" y="227" /> <point x="324" y="226" /> <point x="324" y="225" /> <point x="325" y="224" /> <point x="325" y="223" /> <point x="326" y="222" /> <point x="326" y="221" /> <point x="327" y="220" /> <point x="327" y="219" /> <point x="328" y="218" /> <point x="328" y="217" /> <point x="329" y="216" /> <point x="329" y="215" /> <point x="330" y="214" /> <point x="330" y="213" /> <point x="331" y="212" /> <point x="331" y="211" /> <point x="332" y="210" /> <point x="332" y="209" /> <point x="333" y="208" /> <point x="333" y="207" /> <point x="334" y="206" /> <point x="334" y="205" /> <point x="335" y="204" /> <point x="335" y="203" /> <point x="336" y="202" /> <point x="336" y="201" /> <point x="337" y="200" /> <point x="337" y="199" /> <point x="339" y="197" /> <point x="342" y="197" /> <point x="343" y="196" /> <point x="343" y="195" /> <point x="344" y="194" /> <point x="344" y="193" /> <point x="345" y="192" /> <point x="345" y="191" /> <point x="346" y="190" /> <point x="346" y="189" /> <point x="347" y="188" /> <point x="347" y="187" /> </points> </blob> <blob isHole="true" area="3311.0" circumference="239.96552" > <bounding_rect x="417" y="185" width="67" height="79" /> <centroid x="450" y="231" /> <points> <point x="449" y="185" /> <point x="451" y="185" /> <point x="453" y="187" /> <point x="453" y="188" /> <point x="454" y="189" /> <point x="454" y="190" /> <point x="455" y="191" /> <point x="455" y="192" /> <point x="456" y="193" />

199


1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650

200

<point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point

x="456" x="457" x="457" x="458" x="461" x="463" x="463" x="464" x="464" x="465" x="465" x="466" x="466" x="467" x="467" x="468" x="468" x="469" x="469" x="470" x="470" x="471" x="471" x="472" x="472" x="473" x="473" x="474" x="474" x="475" x="475" x="476" x="476" x="477" x="477" x="478" x="478" x="479" x="479" x="480" x="480" x="481" x="481" x="482" x="482" x="483" x="483" x="482" x="482" x="481" x="481" x="480" x="480" x="479" x="479" x="478" x="478" x="477" x="477" x="476" x="476" x="475" x="475" x="474" x="474" x="473" x="473" x="471" x="429" x="427" x="427" x="426" x="426" x="425" x="425" x="424" x="424" x="423" x="423" x="422" x="422" x="421" x="421" x="420" x="420" x="419" x="419" x="418" x="418" x="417" x="417" x="418" x="418" x="419" x="419" x="420" x="420" x="421" x="421" x="422" x="422" x="423" x="423" x="424" x="424" x="425" x="425" x="426" x="426" x="427"

y="194" y="195" y="196" y="197" y="197" y="199" y="200" y="201" y="202" y="203" y="204" y="205" y="206" y="207" y="208" y="209" y="210" y="211" y="212" y="213" y="214" y="215" y="216" y="217" y="218" y="219" y="220" y="221" y="222" y="223" y="224" y="225" y="226" y="227" y="228" y="229" y="230" y="231" y="232" y="233" y="234" y="235" y="236" y="237" y="238" y="239" y="241" y="242" y="243" y="244" y="245" y="246" y="247" y="248" y="249" y="250" y="251" y="252" y="253" y="254" y="255" y="256" y="257" y="258" y="259" y="260" y="261" y="263" y="263" y="261" y="260" y="259" y="258" y="257" y="256" y="255" y="254" y="253" y="252" y="251" y="250" y="249" y="248" y="247" y="246" y="245" y="244" y="243" y="242" y="241" y="239" y="238" y="237" y="236" y="235" y="234" y="233" y="232" y="231" y="230" y="229" y="228" y="227" y="226" y="225" y="224" y="223" y="222" y="221" y="220"

/> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> />


1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760

<point x="427" y="219" /> <point x="428" y="218" /> <point x="428" y="217" /> <point x="429" y="216" /> <point x="429" y="215" /> <point x="430" y="214" /> <point x="430" y="213" /> <point x="431" y="212" /> <point x="431" y="211" /> <point x="432" y="210" /> <point x="432" y="209" /> <point x="433" y="208" /> <point x="433" y="207" /> <point x="434" y="206" /> <point x="434" y="205" /> <point x="435" y="204" /> <point x="435" y="203" /> <point x="436" y="202" /> <point x="436" y="201" /> <point x="437" y="200" /> <point x="437" y="199" /> <point x="439" y="197" /> <point x="442" y="197" /> <point x="443" y="196" /> <point x="443" y="195" /> <point x="444" y="194" /> <point x="444" y="193" /> <point x="445" y="192" /> <point x="445" y="191" /> <point x="446" y="190" /> <point x="446" y="189" /> <point x="447" y="188" /> <point x="447" y="187" /> </points> </blob> <blob isHole="true" area="3311.0" circumference="239.96552" > <bounding_rect x="467" y="177" width="67" height="79" /> <centroid x="500" y="208" /> <points> <point x="479" y="177" /> <point x="521" y="177" /> <point x="523" y="179" /> <point x="523" y="180" /> <point x="524" y="181" /> <point x="524" y="182" /> <point x="525" y="183" /> <point x="525" y="184" /> <point x="526" y="185" /> <point x="526" y="186" /> <point x="527" y="187" /> <point x="527" y="188" /> <point x="528" y="189" /> <point x="528" y="190" /> <point x="529" y="191" /> <point x="529" y="192" /> <point x="530" y="193" /> <point x="530" y="194" /> <point x="531" y="195" /> <point x="531" y="196" /> <point x="532" y="197" /> <point x="532" y="198" /> <point x="533" y="199" /> <point x="533" y="201" /> <point x="532" y="202" /> <point x="532" y="203" /> <point x="531" y="204" /> <point x="531" y="205" /> <point x="530" y="206" /> <point x="530" y="207" /> <point x="529" y="208" /> <point x="529" y="209" /> <point x="528" y="210" /> <point x="528" y="211" /> <point x="527" y="212" /> <point x="527" y="213" /> <point x="526" y="214" /> <point x="526" y="215" /> <point x="525" y="216" /> <point x="525" y="217" /> <point x="524" y="218" /> <point x="524" y="219" /> <point x="523" y="220" /> <point x="523" y="221" /> <point x="522" y="222" /> <point x="522" y="223" /> <point x="521" y="224" /> <point x="521" y="225" /> <point x="520" y="226" /> <point x="520" y="227" /> <point x="519" y="228" /> <point x="519" y="229" /> <point x="518" y="230" /> <point x="518" y="231" /> <point x="517" y="232" /> <point x="517" y="233" /> <point x="516" y="234" /> <point x="516" y="235" /> <point x="515" y="236" /> <point x="515" y="237" /> <point x="514" y="238" /> <point x="514" y="239" /> <point x="513" y="240" /> <point x="513" y="241" /> <point x="511" y="243" /> <point x="508" y="243" /> <point x="507" y="244" /> <point x="507" y="245" /> <point x="506" y="246" /> <point x="506" y="247" /> <point x="505" y="248" />

201


1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870

202

<point x="505" y="249" /> <point x="504" y="250" /> <point x="504" y="251" /> <point x="503" y="252" /> <point x="503" y="253" /> <point x="501" y="255" /> <point x="499" y="255" /> <point x="497" y="253" /> <point x="497" y="252" /> <point x="496" y="251" /> <point x="496" y="250" /> <point x="495" y="249" /> <point x="495" y="248" /> <point x="494" y="247" /> <point x="494" y="246" /> <point x="493" y="245" /> <point x="493" y="244" /> <point x="492" y="243" /> <point x="489" y="243" /> <point x="487" y="241" /> <point x="487" y="240" /> <point x="486" y="239" /> <point x="486" y="238" /> <point x="485" y="237" /> <point x="485" y="236" /> <point x="484" y="235" /> <point x="484" y="234" /> <point x="483" y="233" /> <point x="483" y="232" /> <point x="482" y="231" /> <point x="482" y="230" /> <point x="481" y="229" /> <point x="481" y="228" /> <point x="480" y="227" /> <point x="480" y="226" /> <point x="479" y="225" /> <point x="479" y="224" /> <point x="478" y="223" /> <point x="478" y="222" /> <point x="477" y="221" /> <point x="477" y="220" /> <point x="476" y="219" /> <point x="476" y="218" /> <point x="475" y="217" /> <point x="475" y="216" /> <point x="474" y="215" /> <point x="474" y="214" /> <point x="473" y="213" /> <point x="473" y="212" /> <point x="472" y="211" /> <point x="472" y="210" /> <point x="471" y="209" /> <point x="471" y="208" /> <point x="470" y="207" /> <point x="470" y="206" /> <point x="469" y="205" /> <point x="469" y="204" /> <point x="468" y="203" /> <point x="468" y="202" /> <point x="467" y="201" /> <point x="467" y="199" /> <point x="468" y="198" /> <point x="468" y="197" /> <point x="469" y="196" /> <point x="469" y="195" /> <point x="470" y="194" /> <point x="470" y="193" /> <point x="471" y="192" /> <point x="471" y="191" /> <point x="472" y="190" /> <point x="472" y="189" /> <point x="473" y="188" /> <point x="473" y="187" /> <point x="474" y="186" /> <point x="474" y="185" /> <point x="475" y="184" /> <point x="475" y="183" /> <point x="476" y="182" /> <point x="476" y="181" /> <point x="477" y="180" /> <point x="477" y="179" /> </points> </blob> <blob isHole="true" area="3311.0" circumference="239.96552" > <bounding_rect x="267" y="177" width="67" height="79" /> <centroid x="300" y="208" /> <points> <point x="279" y="177" /> <point x="321" y="177" /> <point x="323" y="179" /> <point x="323" y="180" /> <point x="324" y="181" /> <point x="324" y="182" /> <point x="325" y="183" /> <point x="325" y="184" /> <point x="326" y="185" /> <point x="326" y="186" /> <point x="327" y="187" /> <point x="327" y="188" /> <point x="328" y="189" /> <point x="328" y="190" /> <point x="329" y="191" /> <point x="329" y="192" /> <point x="330" y="193" /> <point x="330" y="194" /> <point x="331" y="195" /> <point x="331" y="196" /> <point x="332" y="197" /> <point x="332" y="198" /> <point x="333" y="199" />


1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980

<point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point <point

x="333" x="332" x="332" x="331" x="331" x="330" x="330" x="329" x="329" x="328" x="328" x="327" x="327" x="326" x="326" x="325" x="325" x="324" x="324" x="323" x="323" x="322" x="322" x="321" x="321" x="320" x="320" x="319" x="319" x="318" x="318" x="317" x="317" x="316" x="316" x="315" x="315" x="314" x="314" x="313" x="313" x="311" x="308" x="307" x="307" x="306" x="306" x="305" x="305" x="304" x="304" x="303" x="303" x="301" x="299" x="297" x="297" x="296" x="296" x="295" x="295" x="294" x="294" x="293" x="293" x="292" x="289" x="287" x="287" x="286" x="286" x="285" x="285" x="284" x="284" x="283" x="283" x="282" x="282" x="281" x="281" x="280" x="280" x="279" x="279" x="278" x="278" x="277" x="277" x="276" x="276" x="275" x="275" x="274" x="274" x="273" x="273" x="272" x="272" x="271" x="271" x="270" x="270" x="269" x="269" x="268" x="268" x="267" x="267" x="268"

y="201" y="202" y="203" y="204" y="205" y="206" y="207" y="208" y="209" y="210" y="211" y="212" y="213" y="214" y="215" y="216" y="217" y="218" y="219" y="220" y="221" y="222" y="223" y="224" y="225" y="226" y="227" y="228" y="229" y="230" y="231" y="232" y="233" y="234" y="235" y="236" y="237" y="238" y="239" y="240" y="241" y="243" y="243" y="244" y="245" y="246" y="247" y="248" y="249" y="250" y="251" y="252" y="253" y="255" y="255" y="253" y="252" y="251" y="250" y="249" y="248" y="247" y="246" y="245" y="244" y="243" y="243" y="241" y="240" y="239" y="238" y="237" y="236" y="235" y="234" y="233" y="232" y="231" y="230" y="229" y="228" y="227" y="226" y="225" y="224" y="223" y="222" y="221" y="220" y="219" y="218" y="217" y="216" y="215" y="214" y="213" y="212" y="211" y="210" y="209" y="208" y="207" y="206" y="205" y="204" y="203" y="202" y="201" y="199" y="198"

/> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> /> />

203


1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090

204

<point x="268" y="197" /> <point x="269" y="196" /> <point x="269" y="195" /> <point x="270" y="194" /> <point x="270" y="193" /> <point x="271" y="192" /> <point x="271" y="191" /> <point x="272" y="190" /> <point x="272" y="189" /> <point x="273" y="188" /> <point x="273" y="187" /> <point x="274" y="186" /> <point x="274" y="185" /> <point x="275" y="184" /> <point x="275" y="183" /> <point x="276" y="182" /> <point x="276" y="181" /> <point x="277" y="180" /> <point x="277" y="179" /> </points> </blob> <blob isHole="true" area="893.0" circumference="143.45584" > <bounding_rect x="332" y="267" width="62" height="17" /> <centroid x="362" y="275" /> <points> <point x="339" y="267" /> <point x="391" y="267" /> <point x="393" y="269" /> <point x="393" y="271" /> <point x="392" y="272" /> <point x="392" y="273" /> <point x="391" y="274" /> <point x="391" y="275" /> <point x="390" y="276" /> <point x="390" y="277" /> <point x="389" y="278" /> <point x="389" y="279" /> <point x="388" y="280" /> <point x="388" y="281" /> <point x="386" y="283" /> <point x="334" y="283" /> <point x="332" y="281" /> <point x="332" y="279" /> <point x="333" y="278" /> <point x="333" y="277" /> <point x="334" y="276" /> <point x="334" y="275" /> <point x="335" y="274" /> <point x="335" y="273" /> <point x="336" y="272" /> <point x="336" y="271" /> <point x="337" y="270" /> <point x="337" y="269" /> </points> </blob> <blob isHole="false" area="171.0" circumference="61.455845" > <bounding_rect x="491" y="203" width="19" height="19" /> <centroid x="500" y="209" /> <points> <point x="491" y="203" /> <point x="491" y="204" /> <point x="492" y="205" /> <point x="492" y="206" /> <point x="493" y="207" /> <point x="493" y="208" /> <point x="494" y="209" /> <point x="494" y="210" /> <point x="495" y="211" /> <point x="495" y="212" /> <point x="496" y="213" /> <point x="496" y="214" /> <point x="497" y="215" /> <point x="497" y="216" /> <point x="498" y="217" /> <point x="498" y="218" /> <point x="499" y="219" /> <point x="499" y="220" /> <point x="500" y="221" /> <point x="501" y="220" /> <point x="501" y="219" /> <point x="502" y="218" /> <point x="502" y="217" /> <point x="503" y="216" /> <point x="503" y="215" /> <point x="504" y="214" /> <point x="504" y="213" /> <point x="505" y="212" /> <point x="505" y="211" /> <point x="506" y="210" /> <point x="506" y="209" /> <point x="507" y="208" /> <point x="507" y="207" /> <point x="508" y="206" /> <point x="508" y="205" /> <point x="509" y="204" /> <point x="509" y="203" /> </points> </blob> <blob isHole="false" area="171.0" circumference="61.455845" > <bounding_rect x="441" y="219" width="19" height="19" /> <centroid x="450" y="230" /> <points> <point x="450" y="219" /> <point x="449" y="220" /> <point x="449" y="221" /> <point x="448" y="222" /> <point x="448" y="223" /> <point x="447" y="224" /> <point x="447" y="225" /> <point x="446" y="226" />


2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200

<point x="446" y="227" /> <point x="445" y="228" /> <point x="445" y="229" /> <point x="444" y="230" /> <point x="444" y="231" /> <point x="443" y="232" /> <point x="443" y="233" /> <point x="442" y="234" /> <point x="442" y="235" /> <point x="441" y="236" /> <point x="441" y="237" /> <point x="459" y="237" /> <point x="459" y="236" /> <point x="458" y="235" /> <point x="458" y="234" /> <point x="457" y="233" /> <point x="457" y="232" /> <point x="456" y="231" /> <point x="456" y="230" /> <point x="455" y="229" /> <point x="455" y="228" /> <point x="454" y="227" /> <point x="454" y="226" /> <point x="453" y="225" /> <point x="453" y="224" /> <point x="452" y="223" /> <point x="452" y="222" /> <point x="451" y="221" /> <point x="451" y="220" /> </points> </blob> <blob isHole="false" area="171.0" circumference="61.455845" > <bounding_rect x="341" y="219" width="19" height="19" /> <centroid x="350" y="230" /> <points> <point x="350" y="219" /> <point x="349" y="220" /> <point x="349" y="221" /> <point x="348" y="222" /> <point x="348" y="223" /> <point x="347" y="224" /> <point x="347" y="225" /> <point x="346" y="226" /> <point x="346" y="227" /> <point x="345" y="228" /> <point x="345" y="229" /> <point x="344" y="230" /> <point x="344" y="231" /> <point x="343" y="232" /> <point x="343" y="233" /> <point x="342" y="234" /> <point x="342" y="235" /> <point x="341" y="236" /> <point x="341" y="237" /> <point x="359" y="237" /> <point x="359" y="236" /> <point x="358" y="235" /> <point x="358" y="234" /> <point x="357" y="233" /> <point x="357" y="232" /> <point x="356" y="231" /> <point x="356" y="230" /> <point x="355" y="229" /> <point x="355" y="228" /> <point x="354" y="227" /> <point x="354" y="226" /> <point x="353" y="225" /> <point x="353" y="224" /> <point x="352" y="223" /> <point x="352" y="222" /> <point x="351" y="221" /> <point x="351" y="220" /> </points> </blob> <blob isHole="false" area="171.0" circumference="61.455845" > <bounding_rect x="451" y="313" width="19" height="19" /> <centroid x="460" y="319" /> <points> <point x="451" y="313" /> <point x="451" y="314" /> <point x="452" y="315" /> <point x="452" y="316" /> <point x="453" y="317" /> <point x="453" y="318" /> <point x="454" y="319" /> <point x="454" y="320" /> <point x="455" y="321" /> <point x="455" y="322" /> <point x="456" y="323" /> <point x="456" y="324" /> <point x="457" y="325" /> <point x="457" y="326" /> <point x="458" y="327" /> <point x="458" y="328" /> <point x="459" y="329" /> <point x="459" y="330" /> <point x="460" y="331" /> <point x="461" y="330" /> <point x="461" y="329" /> <point x="462" y="328" /> <point x="462" y="327" /> <point x="463" y="326" /> <point x="463" y="325" /> <point x="464" y="324" /> <point x="464" y="323" /> <point x="465" y="322" /> <point x="465" y="321" /> <point x="466" y="320" /> <point x="466" y="319" /> <point x="467" y="318" />

205


2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296

206

<point x="467" y="317" /> <point x="468" y="316" /> <point x="468" y="315" /> <point x="469" y="314" /> <point x="469" y="313" /> </points> </blob> <blob isHole="false" area="171.0" circumference="61.455845" > <bounding_rect x="391" y="203" width="19" height="19" /> <centroid x="400" y="209" /> <points> <point x="391" y="203" /> <point x="391" y="204" /> <point x="392" y="205" /> <point x="392" y="206" /> <point x="393" y="207" /> <point x="393" y="208" /> <point x="394" y="209" /> <point x="394" y="210" /> <point x="395" y="211" /> <point x="395" y="212" /> <point x="396" y="213" /> <point x="396" y="214" /> <point x="397" y="215" /> <point x="397" y="216" /> <point x="398" y="217" /> <point x="398" y="218" /> <point x="399" y="219" /> <point x="399" y="220" /> <point x="400" y="221" /> <point x="401" y="220" /> <point x="401" y="219" /> <point x="402" y="218" /> <point x="402" y="217" /> <point x="403" y="216" /> <point x="403" y="215" /> <point x="404" y="214" /> <point x="404" y="213" /> <point x="405" y="212" /> <point x="405" y="211" /> <point x="406" y="210" /> <point x="406" y="209" /> <point x="407" y="208" /> <point x="407" y="207" /> <point x="408" y="206" /> <point x="408" y="205" /> <point x="409" y="204" /> <point x="409" y="203" /> </points> </blob> <blob isHole="false" area="171.0" circumference="61.455845" > <bounding_rect x="291" y="203" width="19" height="19" /> <centroid x="300" y="209" /> <points> <point x="291" y="203" /> <point x="291" y="204" /> <point x="292" y="205" /> <point x="292" y="206" /> <point x="293" y="207" /> <point x="293" y="208" /> <point x="294" y="209" /> <point x="294" y="210" /> <point x="295" y="211" /> <point x="295" y="212" /> <point x="296" y="213" /> <point x="296" y="214" /> <point x="297" y="215" /> <point x="297" y="216" /> <point x="298" y="217" /> <point x="298" y="218" /> <point x="299" y="219" /> <point x="299" y="220" /> <point x="300" y="221" /> <point x="301" y="220" /> <point x="301" y="219" /> <point x="302" y="218" /> <point x="302" y="217" /> <point x="303" y="216" /> <point x="303" y="215" /> <point x="304" y="214" /> <point x="304" y="213" /> <point x="305" y="212" /> <point x="305" y="211" /> <point x="306" y="210" /> <point x="306" y="209" /> <point x="307" y="208" /> <point x="307" y="207" /> <point x="308" y="206" /> <point x="308" y="205" /> <point x="309" y="204" /> <point x="309" y="203" /> </points> </blob> </blobs> </vshape>


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

<?xml version="1.0" encoding="iso-8859-1"?> <song name="aHardPlace"> <settings> <tempo>170</tempo> <loopeable>false</loopeable> <levels> <mainlevel>127</mainlevel> <drumlevel>127</drumlevel> <basslevel>127</basslevel> <guitarlevel>52</guitarlevel> </levels> <instruments> <bassinstrument>2</bassinstrument> <guitarinstrument>25</guitarinstrument> </instruments> </settings> <patterns> <drumpatterns> <drumpattern> <pad name="rimshot" id="37" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="37" >F---F---F---F---</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---F---F---F---</pad> <pad name="snaredrum" id="38" >----F-------F---</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---F---F---F---</pad> <pad name="snaredrum" id="38" >----F-----F-F-F-</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---------------</pad> <pad name="snaredrum" id="38" >F---------------</pad> <pad name="charles" id="49" >F---------------</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---F---F---F---</pad> <pad name="snaredrum" id="38" >--FFF-F---FFF-F-</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---F---F---F---</pad> <pad name="snaredrum" id="38" >F---F---F---F---</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---F---F---F---</pad> <pad name="snaredrum" id="38" >F---F---F-FFF-F-</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> </drumpattern> </drumpatterns> <basspatterns> <basspattern> <pattern>----------------</pattern> </basspattern> <basspattern> <pattern>0-0-0-0-0-0-0-0-</pattern> </basspattern> <basspattern> <pattern>0-C-0-C-0-C-0-C-</pattern> </basspattern> <basspattern> <pattern>0-CC0-CC0-CC0-CC</pattern> </basspattern> <basspattern> <pattern>0-0-000-0-0-000-</pattern> </basspattern> <basspattern> <pattern>X---------------</pattern> </basspattern> <basspattern> <pattern>0-0-------------</pattern> </basspattern> </basspatterns> <guitarpatterns> <guitarpattern> <pattern>----------------</pattern> </guitarpattern> <guitarpattern> <pattern>0-0-0-0-0-0-0-0-</pattern> <pattern>7-7-7-7-7-7-7-7-</pattern> </guitarpattern> <guitarpattern> <pattern>0-C-0-C-0-C-0-C-</pattern> </guitarpattern> <guitarpattern> <pattern>0-CC0-CC0-CC0-CC</pattern> </guitarpattern> <guitarpattern> <pattern>0-0-000-0-0-000-</pattern> </guitarpattern> <guitarpattern> <pattern>0---------------</pattern> </guitarpattern> <guitarpattern> <pattern>0-0-------------</pattern> </guitarpattern> </guitarpatterns> </patterns> <tonepatterns> <notes>0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12</notes> <notes>0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14</notes> <notes>0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0</notes> <notes>3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3</notes> <notes>2,2,2,2,2,2,3,3,3,3,2,2,2,2,2,2</notes> <notes>0,0,0,0,0,0,3,3,3,3,3,3,2,2,2,2</notes>

207


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

208

<notes>-4,-4,-4,-4,-4,-4,5,5,5,5,5,5,5,5,5,5</notes> <notes>0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12</notes> </tonepatterns> <compose> <part id="pre"> <phrase></phrase> <phrase></phrase> <phrase></phrase> <phrase> <bar kind="0">1</bar> <bar kind="3" frame="8">no es comodo este lugar; tiendo a pensar q esta reunion es anacronica o q mi mirada sobre ella lo es; mi mirada sin duda lo es; ggggtttt; de lo q habia q sakar lecciones no </phrase> </part> <part id="intro1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="intro2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="intro3"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="intro4"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="intro5"> <phrase>


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

<bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="intro6"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="intro7"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="intro8"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="verse1.1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes>

209


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

210

<rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="verse1.2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="verse1.3"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> </phrase>


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

<phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="verse1.4"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="chorus1.1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="chorus1.2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="chorus1.3"> <phrase> <bar kind="0">2</bar> <bar kind="1">

211


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 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

212

<notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="chorus1.4"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="verse2.1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="verse2.2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes>


661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 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 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

<rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="verse2.3"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="verse2.4"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>4</notes>

213


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 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880

214

<rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="bridge1.1"> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>5</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>6</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>6</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="bridge1.2"> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>5</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>6</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>6</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="bridge1.3"> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>5</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>6</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>6</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="bridge1.4"> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>5</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>6</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>6</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="chorus2.1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm>


881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990

</bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="chorus2.2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="chorus2.3"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="chorus2.4"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="verse3.1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes>

215


991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100

216

<rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="verse3.2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="verse3.3"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>4</notes>


1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210

<rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="verse3.4"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="bridge2.1"> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>5</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>6</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>6</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="bridge2.2"> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>5</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>6</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>6</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="bridge2.3"> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>5</notes> <rhytm>3</rhytm> </bar> <bar kind="2">

217


1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320

218

<notes>5</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>6</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>6</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="bridge2.4"> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>5</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>6</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>6</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="outro1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="outro2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="outro3"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar>


1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430

</phrase> </part> <part id="outro4"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="outro5"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="outro6"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="outro7"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="outro8"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase>

219


1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462

220

<phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="last"> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes> <rhytm>5</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase></phrase> <phrase></phrase> <phrase></phrase> <phrase></phrase> <phrase></phrase> </part> </compose> </song>

<phrase></phrase> <phrase></phrase>


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

<?xml version="1.0" encoding="iso-8859-1"?> <song name="anemicKover3"> <settings> <tempo>117</tempo> <loopeable>false</loopeable> <levels> <mainlevel>127</mainlevel> <drumlevel>127</drumlevel> <basslevel>127</basslevel> <guitarlevel>52</guitarlevel> </levels> <instruments> <bassinstrument>72</bassinstrument> <guitarinstrument>29</guitarinstrument> </instruments> </settings> <patterns> <drumpatterns> <drumpattern> <pad name="rimshot" id="37" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="37" >F---F---F---F---</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---F---F---F---</pad> <pad name="snaredrum" id="38" >----F-------F---</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---F---F---F---</pad> <pad name="snaredrum" id="38" >88AAF8AA88FAF8FA</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---------------</pad> <pad name="snaredrum" id="38" >F---------------</pad> <pad name="charles" id="49" >F---------------</pad> </drumpattern> </drumpatterns> <basspatterns> <basspattern> <pattern>----------------</pattern> </basspattern> <basspattern> <pattern>0-0-0-0-0-0-0-0-</pattern> </basspattern> <basspattern> <pattern>0-C-0-C-0-C-0-C-</pattern> </basspattern> <basspattern> <pattern>0-CC0-CC0-CC0-CC</pattern> </basspattern> <basspattern> <pattern>0-0-000-0-0-000-</pattern> </basspattern> <basspattern> <pattern>X---------------</pattern> </basspattern> <basspattern> <pattern>0-0-------------</pattern> </basspattern> </basspatterns> <guitarpatterns> <guitarpattern> <pattern>----------------</pattern> </guitarpattern> <guitarpattern> <pattern>7-7-7-7-7-7-7-7-</pattern> <pattern>0-CC0-CC0-CC0-CC</pattern> </guitarpattern> <guitarpattern> <pattern>0-C-0-C-0-C-0-C-</pattern> </guitarpattern> <guitarpattern> <pattern>0-CC0-CC0-CC0-CC</pattern> </guitarpattern> <guitarpattern> <pattern>0-0-000-0-0-000-</pattern> </guitarpattern> <guitarpattern> <pattern>0---------------</pattern> </guitarpattern> <guitarpattern> <pattern>0-0-------------</pattern> </guitarpattern> </guitarpatterns> </patterns> <tonepatterns> <notes>7,7,7,7,9,9,9,9,9,9,9,9,9,9,9,9</notes> <notes>7,7,7,7,4,4,4,4,4,4,4,4,4,4,4,4</notes> </tonepatterns> <compose> <part id="pre"> <phrase></phrase> <phrase></phrase> <phrase></phrase> <phrase> <bar kind="0">1</bar> </phrase> </part> <part id="intro1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes>

221


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

222

<rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="intro2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="verse1.1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">bains de gros the pour grains</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">le beaute sans trop de bengue</bar> </phrase> <phrase> <bar kind="0">2</bar>


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

<bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">l enfant qui tete est</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">un souffleur de chair</bar> </phrase> </part> <part id="verse1.2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">chaude et naime pas</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">le chou-fleur de serre chaude</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">si je te donne un sou</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">me donneras tu une paire de ciseaux?</bar> </phrase> </part> <part id="bridge1.1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1">

223


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

224

<notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="bridge1.2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="verse2.1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">on demande des moustiques domestiques (demi-stock)</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">pour la cure dazote sur la cote dazur.</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">inceste ou passion de famille,</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">a coups trop tires.</bar> </phrase> </part> <part id="verse2.2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes>


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

<rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">esquivons les ecchymosses</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">des esquimaux aux mots exquis.</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">avez vous deja mis la moelle de lepee</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">dans le poele de laimee?</bar> </phrase> </part> <part id="bridge2.1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="bridge2.2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2">

225


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 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

226

<notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="verse3.1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">parmi nos articles de quincallerie</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">paresseuse, nous recommandons</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">le robinet qui sarrete de couler</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">quand on ne lecoute pas.</bar> </phrase> </part> <part id="verse3.2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">laspirant habite javel</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">et moi javais lhabite en spirale.</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes>


661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 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 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

<rhytm>1</rhytm> </bar> <bar kind="3" frame="8">laspirant habite javel</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">et moi javais lhabite en spirale.</bar> </phrase> </part> <part id="outro1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="outro2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="outro3">

227


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 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880

228

<phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="outro4"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">esquivons les ecchymosses</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">des esquimaux aux mots exquis.</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">laspirant habite javel</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="12">et moi javais lhabite en spirale.</bar> </phrase> </part> <part id="last"> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes> <rhytm>5</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase></phrase> <phrase></phrase> <phrase></phrase> <phrase></phrase>


881 882 883 884 885

<phrase></phrase> <phrase></phrase> </part> </compose> </song>

<phrase></phrase>

229


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

230

<?xml version="1.0" encoding="iso-8859-1"?> <song name="antarctic"> <settings> <tempo>130</tempo> <loopeable>false</loopeable> <levels> <mainlevel>127</mainlevel> <drumlevel>127</drumlevel> <basslevel>127</basslevel> <guitarlevel>96</guitarlevel> </levels> <instruments> <bassinstrument>0</bassinstrument> <guitarinstrument>67</guitarinstrument> </instruments> </settings> <patterns> <drumpatterns> <drumpattern> <pad name="rimshot" id="37" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="37" >F---F---F---F---</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >FFFFFFFF-FF-F-FF</pad> <pad name="snaredrum" id="38" >----F-------F---</pad> <pad name="LowTom" id="46" >B---B---B---B---</pad> <pad name="MidTom" id="47" >--A---A---A---A-</pad> <pad name="HiTom" id="48" >-6-9-A-9-6-9-A-E</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---F-F-F-F-F---</pad> <pad name="snaredrum" id="38" >F---F---F-F-FFFF</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> <pad name="crash" id="49" >------------F---</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >FFFFFFFF--------</pad> <pad name="snaredrum" id="38" >----F-------F---</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >FFFFFFFF-FF-F-FF</pad> <pad name="snaredrum" id="38" >----F----F--F---</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> <pad name="crash" id="49" >--------------C-</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >FFFFFFFF--------</pad> <pad name="snaredrum" id="38" >----F-------F---</pad> <pad name="LowTom" id="46" >B---B---B---B---</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >FFFFFFFF-FF-F-FF</pad> <pad name="snaredrum" id="38" >----F----F--F---</pad> <pad name="LowTom" id="46" >B---B---B---B---</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> <pad name="crash" id="49" >--------------C-</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >FFFFFFFF--------</pad> <pad name="snaredrum" id="38" >----F-------F---</pad> <pad name="LowTom" id="46" >B---B---B---B---</pad> <pad name="MidTom" id="47" >--A---A---A---A-</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >FFFFFFFF-FF-F-FF</pad> <pad name="snaredrum" id="38" >----F----F--F---</pad> <pad name="LowTom" id="46" >B---B---B---B---</pad> <pad name="MidTom" id="47" >--A---A---A---A-</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> <pad name="crash" id="49" >--------------C-</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >FFFFFFFF--------</pad> <pad name="snaredrum" id="38" >----F-------F---</pad> <pad name="LowTom" id="46" >B---B---B---B---</pad> <pad name="MidTom" id="47" >--A---A---A---A-</pad> <pad name="HiTom" id="48" >-6-9-A-9-6-9-A-E</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---F-F-F-F-F---</pad> <pad name="snaredrum" id="38" >F---F---F-F-FFFF</pad> <pad name="LowTom" id="46" >B---B---B---B---</pad> <pad name="MidTom" id="47" >--C---C---C---C-</pad> <pad name="HiTom" id="48" >-6-9-A-9-6-9-A-E</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> <pad name="crash" id="49" >------------F---</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >FFFFFFFF-FF-F-FF</pad> <pad name="snaredrum" id="38" >F---F---F---F---</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> <pad name="crash" id="49" >F--------C--F---</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---F-F-F-F-F---</pad> <pad name="snaredrum" id="38" >FFFFFFFF-FF-F-FF</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> <pad name="crash" id="49" >F--------C--F---</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >FFFFFFFF-FF-F-FF</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> </drumpattern>


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

<drumpattern> <pad name="bassdrum" id="35" >FFFFFFFF-FF-F-FF</pad> <pad name="LowTom" id="46" >B---B---B---B---</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >FFFFFFFF-FF-F-FF</pad> <pad name="LowTom" id="46" >B---B---B---B---</pad> <pad name="MidTom" id="47" >--C---C---C---C-</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >FFFFFFFF-FF-F-FF</pad> <pad name="LowTom" id="46" >B---B---B---B---</pad> <pad name="MidTom" id="47" >--C---C---C---C-</pad> <pad name="HiTom" id="48" >-8-B-C-B-8-B-C-F</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---F-F-F-F-F---</pad> <pad name="snaredrum" id="38" >FFFFFFFF-FF-F-FF</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> <pad name="LowTom" id="46" >B---B---B---B---</pad> <pad name="MidTom" id="47" >--C---C---C---C-</pad> <pad name="HiTom" id="48" >-8-B-C-B-8-B-C-F</pad> <pad name="crash" id="49" >F--------C--F---</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---------------</pad> <pad name="snaredrum" id="38" >F---------------</pad> <pad name="crash" id="49" >F---------------</pad> </drumpattern> </drumpatterns> <basspatterns> <basspattern> <pattern>----------------</pattern> </basspattern> <basspattern> <pattern>00000000--------</pattern> </basspattern> <basspattern> <pattern>00000000-00-0-00</pattern> </basspattern> <basspattern> <pattern>0000000000000000</pattern> </basspattern> <basspattern> <pattern>X---------------</pattern> </basspattern> </basspatterns> <guitarpatterns> <guitarpattern> <pattern>----------------</pattern> </guitarpattern> <guitarpattern> <pattern>0---0---0---0---</pattern> </guitarpattern> <guitarpattern> <pattern>0---0---0---0---</pattern> <pattern>--CC--C---CC--C-</pattern> </guitarpattern> <guitarpattern> <pattern>0---0---0---0---</pattern> <pattern>--C---C---C---C-</pattern> <pattern>---C-----00-0-00</pattern> </guitarpattern> <guitarpattern> <pattern>CC--CC------0---</pattern> <pattern>---0--0---CC--0-</pattern> </guitarpattern> <guitarpattern> <pattern>0---------------</pattern> </guitarpattern> </guitarpatterns> </patterns> <tonepatterns> <notes>9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9</notes> <notes>9,9,9,9,9,9,9,9,11,11,11,11,12,12,12,12</notes> <notes>14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14</notes> </tonepatterns> <compose> <part id="pre"> <phrase></phrase> <phrase></phrase> <phrase></phrase> <phrase> <bar kind="0">1</bar> </phrase> </part> <part id="pre"> <phrase> <bar kind="0">14</bar> </phrase> <phrase> <bar kind="0">14</bar> </phrase> <phrase> <bar kind="0">14</bar> </phrase> <phrase> <bar kind="0">14</bar> </phrase> <phrase> <bar kind="0">15</bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase>

231


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

232

<bar kind="0">15</bar> </phrase> <phrase> <bar kind="0">15</bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">15</bar> </phrase> <phrase> <bar kind="0">16</bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">16</bar> </phrase> <phrase> <bar kind="0">16</bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">16</bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">17</bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">17</bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">17</bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="comonada"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase>


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

<phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="suspense"> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">8</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes>

233


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

234

<rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">8</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">8</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">9</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">10</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">10</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">10</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">11</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> </part> <part id="power"> <phrase> <bar kind="0">12</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">12</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">12</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">12</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase>


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 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

<phrase> <bar kind="0">12</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">12</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">12</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">13</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> </part> <part id="bridge"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">12</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">13</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">12</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar>

235


661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 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 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

236

</phrase> <phrase> <bar kind="0">13</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">12</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">13</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">12</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">11</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="comonada2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar>


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 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880

<bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="suspense2"> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar>

237


881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990

238

</phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">8</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">8</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">8</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">9</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">10</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">10</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">10</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">11</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> </part> <part id="power2"> <phrase> <bar kind="0">12</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">12</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">12</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar>


991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100

<bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">12</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">12</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">12</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">12</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">13</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> </part> <part id="power3"> <phrase> <bar kind="0">12</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">12</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">12</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">12</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">12</bar> <bar kind="1"> <notes>0</notes>

239


1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204

<rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">12</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">12</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">13</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> </part> <part id="end"> <phrase> <bar kind="0">18</bar> <bar kind="1"> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">18</bar> <bar kind="1"> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">18</bar> <bar kind="1"> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">18</bar> <bar kind="1"> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">19</bar> <bar kind="1"> <notes>0</notes> <rhytm>4</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase></phrase> <phrase></phrase> <phrase></phrase> <phrase></phrase> <phrase></phrase> <phrase></phrase> <phrase></phrase>

1205 1206 1207 1208

240

</part> </compose> </song>


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

<?xml version="1.0" encoding="iso-8859-1"?> <song name="b17"> <settings> <tempo>170</tempo> <loopeable>false</loopeable> <levels> <mainlevel>127</mainlevel> <drumlevel>127</drumlevel> <basslevel>127</basslevel> <guitarlevel>80</guitarlevel> </levels> <instruments> <bassinstrument>71</bassinstrument> <guitarinstrument>25</guitarinstrument> </instruments> </settings> <patterns> <drumpatterns> <drumpattern> <pad name="rimshot" id="37" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="37" >F---F---F---F---</pad> <pad name="crash" id="49" >--------------A-</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F---------</pad> <pad name="snaredrum" id="38" >----D-----F-----</pad> <pad name="charles" id="44" >8-8-8-8-8-8-8-8-</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F---------</pad> <pad name="snaredrum" id="38" >----D-----F---A-</pad> <pad name="charles" id="44" >8-8-8-8-8-8-8-8-</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F---------</pad> <pad name="snaredrum" id="38" >----D-----F---A-</pad> <pad name="charles" id="44" >8-8A8-8A8-8A8-8-</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F---------</pad> <pad name="snaredrum" id="38" >----D-----F---A-</pad> <pad name="charles" id="44" >8-8A8-8A8-8A8-8-</pad> <pad name="crash" id="57" >----------8-----</pad> <pad name="crash" id="49" >--------------A-</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---------------</pad> <pad name="snaredrum" id="38" >----------------</pad> <pad name="crash" id="49" >----------------</pad> </drumpattern> </drumpatterns> <basspatterns> <basspattern> <pattern>----------------</pattern> </basspattern> <basspattern> <pattern>00----CC--------</pattern> </basspattern> <basspattern> <pattern>88----77----8---</pattern> </basspattern> <basspattern> <pattern>X---------------</pattern> </basspattern> </basspatterns> <guitarpatterns> <guitarpattern> <pattern>----------------</pattern> </guitarpattern> <guitarpattern> <pattern>4-4-4-4-4-4-4-4-</pattern> </guitarpattern> <guitarpattern> <pattern>4-4-4-4-4-7-7-7-</pattern> </guitarpattern> <guitarpattern> <pattern>0-0-0-0-0-0-0-0-</pattern> </guitarpattern> <guitarpattern> <pattern>0-0-0-0-0-2-2-2-</pattern> </guitarpattern> <guitarpattern> <pattern>4---------------</pattern> </guitarpattern> <guitarpattern> <pattern>X---------------</pattern> </guitarpattern> </guitarpatterns> </patterns> <tonepatterns> <notes>-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1</notes> <notes>-17,-17,-17,-17,-17,-17,-17,-17,-17,-17,-17,-17,-17,-17,-17,-17</notes> </tonepatterns> <compose> <part id="pre"> <phrase></phrase> <phrase></phrase> <phrase></phrase> <phrase> <bar kind="0">1</bar> </phrase> </part> <part id="baseA1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar>

<notes>3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3</notes>

241


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

242

<bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> </part> <part id="baseA2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> </part> <part id="baseA3"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> </part> <part id="baseA4"> <phrase> <bar kind="0">2</bar>


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

<bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> </part> <part id="baseA5"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> </part> <part id="baseA6"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase>

243


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

244

</part> <part id="baseA7"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> </part> <part id="baseA8"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> </part> <part id="baseA9"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="2">


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

<notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> </part> <part id="baseA10"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> </part> <part id="baseA11"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> </part> <part id="baseA12"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar>

245


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 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

246

</phrase> <phrase> <bar kind="0">5</bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> </part> <part id="baseA13"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">b 17 twice, go out behind the clouds</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> </part> <part id="baseA14"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">b 17 two times, get all the beauty that u coldnt reach before</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> </part> <part id="baseA15"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">b 17 again, spread for me your pin-ups legs</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar>


661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 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 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

</phrase> <phrase> <bar kind="0">4</bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> </part> <part id="baseA16"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">b 17 with me, throw me your bombs oh flying fortress</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> </part> <part id="baseB1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>5</rhytm> </bar> </phrase> </part> <part id="baseB2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase>

247


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 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880

248

<bar kind="0">3</bar> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>5</rhytm> </bar> </phrase> </part> <part id="baseB3"> <phrase> <bar kind="0">2</bar> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>5</rhytm> </bar> </phrase> </part> <part id="baseB4"> <phrase> <bar kind="0">2</bar> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>1</notes>

<bar kind="1">

<bar kind="1">

<bar kind="1">

<bar kind="1">

<bar kind="1">

<bar kind="1">

<bar kind="1">

<bar kind="1">

<bar kind="1">

<bar kind="1">

<bar kind="1">


881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990

<rhytm>5</rhytm> </bar> </phrase> </part> <part id="baseC1"> <phrase> <bar kind="0">2</bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">b </phrase> <phrase> <bar kind="0">3</bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> </part> <part id="baseC2"> <phrase> <bar kind="0">2</bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">b </phrase> <phrase> <bar kind="0">3</bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> </part> <part id="baseC3"> <phrase> <bar kind="0">2</bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">b </phrase> <phrase> <bar kind="0">3</bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> </part> <part id="baseC4"> <phrase> <bar kind="0">2</bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">b </phrase> <phrase> <bar kind="0">3</bar> <bar kind="2"> <notes>1</notes>

17 slight, everything is clear from now</bar>

17 returning, when you are the half you have to live two times</bar>

17 commanding, now there is no cut or break that can stop you</bar>

17 and grow, this time we are like a flying fortress</bar>

249


991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100

250

<rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> </part> <part id="baseD1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> </phrase> <phrase> <bar kind="0">5</bar> </phrase> </part> <part id="baseD2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> </phrase> <phrase> <bar kind="0">5</bar> </phrase> </part> <part id="baseD3"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> </phrase> <phrase> <bar kind="0">5</bar> </phrase> </part> <part id="baseD4"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> </phrase> <phrase> <bar kind="0">5</bar> </phrase> </part> <part id="baseE1"> <phrase> <bar kind="0">2</bar> <bar kind="1">


1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210

<notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">b 17 twice and slight behind the clouds</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> </part> <part id="baseE2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">b 17 two times returning to live again</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> </part> <part id="baseE3"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">b 17 again commanding, spreading, cutting, breaking</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm>

251


1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269

</bar> </phrase> </part> <part id="baseE4"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">b 17 with me and grow, and fly and touch me</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> </part> <part id="last"> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>1</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>6</rhytm> </bar> <bar kind="3" frame="0">b 17</bar> </phrase> <phrase></phrase> <phrase></phrase> <phrase></phrase> <phrase></phrase> <phrase></phrase> <phrase></phrase> <phrase></phrase>

1270 1271 1272 1273

252

</part> </compose> </song>


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

<?xml version="1.0" encoding="iso-8859-1"?> <song name="charlottesometimes"> <settings> <tempo>130</tempo> <loopeable>false</loopeable> <levels> <mainlevel>127</mainlevel> <drumlevel>127</drumlevel> <basslevel>127</basslevel> <guitarlevel>72</guitarlevel> </levels> <instruments> <bassinstrument>91</bassinstrument> <guitarinstrument>44</guitarinstrument> </instruments> </settings> <patterns> <drumpatterns> <drumpattern> <pad name="rimshot" id="37" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="37" >F---F---F---F---</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---F---F---F---</pad> <pad name="snaredrum" id="38" >----C-------C---</pad> <pad name="charles" id="44" >66F366F366F366F3</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---F---F---F---</pad> <pad name="snaredrum" id="38" >----C-----C---F-</pad> <pad name="charles" id="44" >366F366F366F366F</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---F---F---F---</pad> <pad name="snaredrum" id="38" >----C-------C---</pad> <pad name="charles" id="44" >66F366F366F366F3</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---F---F---F---</pad> <pad name="snaredrum" id="38" >----C-----A-C-F-</pad> <pad name="charles" id="44" >366F366F366F366F</pad> <pad name="crash" id="49" >----------A---A-</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---------------</pad> <pad name="snaredrum" id="38" >F---------------</pad> <pad name="charles" id="49" >F---------------</pad> </drumpattern> </drumpatterns> <basspatterns> <basspattern> <pattern>----------------</pattern> </basspattern> <basspattern> <pattern>0-CC0-CC0-CC0-CC</pattern> </basspattern> <basspattern> <pattern>0-CC0-CC0-CC0-CC</pattern> </basspattern> <basspattern> <pattern>0---------------</pattern> </basspattern> </basspatterns> <guitarpatterns> <guitarpattern> <pattern>----------------</pattern> </guitarpattern> <guitarpattern> <pattern>--------5-7---8-</pattern> </guitarpattern> <guitarpattern> <pattern>----7-5---3-----</pattern> </guitarpattern> <guitarpattern> <pattern>5---3-0---------</pattern> </guitarpattern> <guitarpattern> <pattern>0---------------</pattern> </guitarpattern> </guitarpatterns> </patterns> <tonepatterns> <notes>21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21</notes> <notes>14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14</notes> <notes>16,16,16,16,16,16,16,16,17,17,17,17,19,19,19,19</notes> <notes>12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12</notes> <notes>10,10,10,10,10,10,10,10,5,5,5,5,7,7,7,7</notes> <notes>10,10,10,10,10,10,10,10,17,17,17,17,16,16,16,16</notes> <notes>9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9</notes> <notes>11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12</notes> <notes>11,11,11,11,11,11,11,11,17,17,17,17,16,16,16,16</notes> <notes>5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5</notes> <notes>5,5,5,5,5,5,5,5,17,17,17,17,16,16,16,16</notes> <notes>9,9,9,9,9,9,9,9,12,12,12,12,7,7,7,7</notes> <notes>7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7</notes> <notes>7,7,7,7,7,7,7,7,17,17,17,17,16,16,16,16</notes> </tonepatterns> <compose> <part id="pre"> <phrase></phrase> <phrase></phrase> <phrase></phrase> <phrase> <bar kind="0">1</bar> </phrase> </part> <part id="baseA1"> <phrase>

253


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

254

<bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="baseA2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="baseA3"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm>


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

</bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="baseA4"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="baseB1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="4">all the faces</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">all the voices blur</bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="baseB2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">change to one face</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">change to one voice</bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm>

255


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

256

</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="baseB3"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="4">prepare yourself for bed</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="3" frame="8">the light seems bright</bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="3" frame="8">and glares on white walls</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="baseB4"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">all the sounds of charlotte sometimes</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>8</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="baseC1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="4">into the night</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1">


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

<notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">with charlotte sometimes</bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="baseC2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="4">night after night she lay alone in bed</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="baseC3"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="4">her eyes so open to the dark</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="3" frame="8">the streets all looked so strange</bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="baseC4"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">they seemed so far away</bar> </phrase> <phrase> <bar kind="0">3</bar>

257


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 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

258

<bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="3" frame="8">but charlotte did not cry</bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>8</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="baseD1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>9</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">the people seemed so close</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>10</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">playing expressionless games</bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>11</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="baseD2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>9</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="4">the people seemed so close</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>10</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">so many other names...</bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>12</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="14">sometimes im dreaming</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>13</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="baseE1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="2">where all the other people dance</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1">


661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 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 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

<notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="3" frame="8">sometimes im dreaming</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="baseE2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="2">charlote sometimes</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="3" frame="8">sometimes im dreaming</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="baseE3"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="2">expressionless the trance</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="3" frame="8">sometimes im dreaming</bar> </phrase> <phrase> <bar kind="0">5</bar>

259


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 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880

260

<bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="baseED1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>9</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">so many different names</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>10</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">sometimes im dreaming</bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>11</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="baseED2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>9</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">the sounds all stay the same</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>10</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">sometimes im dreaming</bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>11</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="baseED3"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>9</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">she hopes to open shadowed eyes on a different world</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>10</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>12</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">come to me scared princess</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>13</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">charlotte sometimes</bar> </phrase> </part> <part id="baseF1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar>


881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990

<bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="2">on that bleak track</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="3" frame="8">see the sun is gone again</bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="baseF2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="4">the tears were pouring down her face</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">she was crying and crying</bar> </phrase> </part> <part id="baseF3"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="12">for a girl who died so many years before...</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm>

261


991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100

262

</bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">sometimes i dream</bar> </phrase> </part> <part id="baseFD1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>9</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">where all the other people dance</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>10</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">sometimes i dream</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>11</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="baseFD2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>9</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">charlotte sometimes</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>10</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">sometimes i dream</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>11</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="baseFD3"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>9</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">the sounds all stay the same</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>10</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">sometimes im dreaming</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>11</notes> <rhytm>1</rhytm> </bar> </phrase>


1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210

</part> <part id="baseFD4"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>9</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">there are </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>10</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>12</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">sometimes </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>13</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">sometimes </phrase> </part> <part id="baseG1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="4">charlotte </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="baseG2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="4">charlotte </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm>

so many different names</bar>

i dream</bar>

i dream...</bar>

sometimes crying for herself</bar>

sometimes dreams a wall around herself</bar>

263


1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320

264

</bar> <bar kind="3" frame="14">but it s always with love</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="baseG3"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">with so much love it looks like</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="3" frame="0">everything else</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="baseG4"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">of charlotte sometimes</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="3" frame="12">so far away, glass sealed and pretty</bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="4">chaaarlotte sometimes</bar> </phrase> </part> <part id="last"> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>1</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm>


1321 1322 1323 1324 1325 1326 1327 1328

</bar> </phrase> <phrase></phrase> <phrase></phrase> <phrase></phrase> </part> </compose> </song>

265


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

266

<?xml version="1.0" encoding="iso-8859-1"?> <song name="flag"> <settings> <tempo>120</tempo> <loopeable>true</loopeable> <levels> <mainlevel>100</mainlevel> <drumlevel>120</drumlevel> <basslevel>110</basslevel> <guitarlevel>80</guitarlevel> </levels> <instruments> <bassinstrument>38</bassinstrument> <guitarinstrument>25</guitarinstrument> </instruments> </settings> <patterns> <drumpatterns> <drumpattern> <pad name="rimshot" id="31" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="31" >F---F---F---F---</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F---F-----</pad> <pad name="snaredrum" id="38" >----F-------F---</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F---F-----</pad> <pad name="snaredrum" id="38" >----F-------F---</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> <pad name="openhihat" id="46" >-----------9-9--</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F---F-----</pad> <pad name="snaredrum" id="38" >----F-------F---</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F---F-----</pad> <pad name="snaredrum" id="38" >----F-------F---</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> <pad name="openhihat" id="46" >-----------9-9--</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F---F-----</pad> <pad name="snaredrum" id="38" >----F-------F---</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F---F-----</pad> <pad name="snaredrum" id="38" >----F-------F---</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> <pad name="openhihat" id="46" >-----------9-9--</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F---F-----</pad> <pad name="snaredrum" id="38" >----F-------F---</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F---F-----</pad> <pad name="snaredrum" id="38" >----F-------F---</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> <pad name="openhihat" id="46" >-----------9-9--</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F---F-----</pad> <pad name="snaredrum" id="38" >----F-------F---</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F---F-----</pad> <pad name="snaredrum" id="38" >----F-------F---</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> <pad name="openhihat" id="46" >-----------9-9--</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F---F-----</pad> <pad name="snaredrum" id="38" >----F-------F---</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F---F-----</pad> <pad name="snaredrum" id="38" >----F-------F---</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> <pad name="openhihat" id="46" >-----------9-9--</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---------------</pad> <pad name="snaredrum" id="38" >F---------------</pad> <pad name="crash" id="49" >F---------------</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---------------</pad> <pad name="snaredrum" id="38" >----------------</pad> <pad name="crash" id="49" >----------------</pad> </drumpattern> </drumpatterns> <basspatterns> <basspattern> <pattern>----------------</pattern> </basspattern> <basspattern> <pattern>0C0C0C0C0C0C0C0C</pattern> <pattern>--C---------C--0</pattern> </basspattern> <basspattern>


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

<pattern>0-CC0-CC0-CC0-CC</pattern> </basspattern> <basspattern> <pattern>0C0C0C0C0C0C0C0C</pattern> <pattern>-7----------2--7</pattern> </basspattern> <basspattern> <pattern>0---------------</pattern> </basspattern> </basspatterns> <guitarpatterns> <guitarpattern> <pattern>----------------</pattern> </guitarpattern> <guitarpattern> <pattern>0C0C0C0C0C0C0C0C</pattern> <pattern>--C---------C--0</pattern> </guitarpattern> <guitarpattern> <pattern>0-0-0-0-0-0-0-0-</pattern> <pattern>7C7C7C7C7C7C7C7C</pattern> </guitarpattern> <guitarpattern> <pattern>0-CC0-CC0-CC0-CC</pattern> <pattern>7-7-7-7-7-7-7-7-</pattern> </guitarpattern> <guitarpattern> <pattern>0-0C0-0-0C020-0-</pattern> </guitarpattern> <guitarpattern> <pattern>0---------------</pattern> </guitarpattern> </guitarpatterns> </patterns> <tonepatterns> <notes>9,9,9,9,9,9,9,9,12,12,12,12,12,12,12,12</notes> <notes>14,14,14,14,14,14,14,14,17,17,17,17,17,17,17,17</notes> <notes>7,7,7,7,7,7,7,7,11,11,11,11,11,11,11,11</notes> <notes>12,12,12,12,12,12,12,12,16,16,16,16,16,16,16,16</notes> <notes>16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16</notes> <notes>9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9</notes> <notes>9,9,9,9,9,9,12,12,16,16,17,17,16,16,16,16</notes> <notes>14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14</notes> <notes>9,9,9,9,9,9,9,9,12,12,12,12,12,12,12,12</notes> <notes>16,16,16,16,16,16,16,16,21,21,21,21,16,16,16,16</notes> <notes>14,14,14,14,14,14,14,14,17,17,17,17,17,17,17,17</notes> <notes>21,21,21,21,21,21,21,21,26,26,26,26,21,21,21,21</notes> </tonepatterns> <compose> <part id="pre"> <phrase></phrase> <phrase> <bar kind="0">1</bar> </phrase> </part> <part id="intro"> <phrase rem="0"> <bar kind="0">2</bar> <bar kind="1"> <notes>8</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>8</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>9</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>9</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>10</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>10</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>11</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>11</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase rem="1"> <bar kind="0">2</bar> <bar kind="1"> <notes>8</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>8</notes> <rhytm>2</rhytm> </bar>

267


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

268

</phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>9</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>9</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>10</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>10</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>11</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>11</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase rem="2"> <bar kind="0">2</bar> <bar kind="1"> <notes>8</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>8</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>9</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>9</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>10</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>10</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>11</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>11</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase rem="3"> <bar kind="0">2</bar> <bar kind="1"> <notes>8</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>8</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>9</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>9</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>10</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>10</notes> <rhytm>2</rhytm> </bar>


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

</phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>11</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>11</notes> <rhytm>2</rhytm> </bar> </phrase> </part> <part id="estrofa 1"> <phrase rem="0"> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">con la autoridad</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">que nos da el buen juicio</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="1"> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">y en pleno uso de nuestra raz贸n</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="2"> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm>

269


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

270

</bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">declaramos romper</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">de forma oficial</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="3"> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">los lazos q nos pudieron</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">atar alguna vez</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="4"> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">a una sola instituci贸n</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> </phrase>


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 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

<phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">o forma de representaci贸n</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="5"> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">que nos declare parte</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">de su total</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="estrofa 2"> <phrase rem="0"> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">con toda honestidad</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">y con la mente fr铆a</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>1</notes>

271


661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 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 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

272

<rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="1"> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">renegamos de cualquier patron</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="2"> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">ya todas las divisas</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">nos dan indiferencia</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="3"> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">renegamos de cualquier color</bar> </phrase>


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 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880

<phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="4"> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">ze llame religion</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">ze llame nacionalidad</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="5"> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">no queremos</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes>

273


881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990

274

<rhytm>1</rhytm> </bar> <bar kind="3" frame="0">reprezentatividad</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="shorus 1"> <phrase rem="0"> <bar kind="0">6</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>6</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">8</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">no necesitamos banderas</bar> </phrase> <phrase> <bar kind="0">9</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="1"> <bar kind="0">6</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>6</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">8</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">no reconocemos fronteras</bar> </phrase> <phrase> <bar kind="0">9</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="2"> <bar kind="0">6</bar> <bar kind="1">


991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100

<notes>5</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>6</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">8</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">no aceptaremos filiaciones</bar> </phrase> <phrase> <bar kind="0">9</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="3"> <bar kind="0">6</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>6</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">8</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">no escucharemos mas sermones</bar> </phrase> <phrase> <bar kind="0">9</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="4"> <bar kind="0">10</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">11</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> </part>

275


1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210

276

<part id="estrofa 3"> <phrase rem="0"> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">es facil vegetar</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">dejar que otros hablen</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="1"> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">y decir</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">ellos saben mรกs que yo</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="2"> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">ponerse una insignia</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm>


1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320

</bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">marchar detras de un lider</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="3"> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">y dejar que nos esgriman como razon</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="4"> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">no vamos a dejar</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">la idea nunca nos gusto</bar> </phrase> <phrase>

277


1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430

278

<bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="5"> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">ellos no estan haciendo</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">lo que al comienzo ze pacto</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="shorus 2"> <phrase rem="0"> <bar kind="0">6</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>6</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">8</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">no necesitamos banderas</bar> </phrase> <phrase> <bar kind="0">9</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="1"> <bar kind="0">6</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> <bar kind="2">


1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540

<notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>6</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">8</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">no reconocemos fronteras</bar> </phrase> <phrase> <bar kind="0">9</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="2"> <bar kind="0">6</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>6</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">8</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">no aceptaremos filiaciones</bar> </phrase> <phrase> <bar kind="0">9</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="3"> <bar kind="0">6</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>6</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">8</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm>

279


1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650

280

</bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">no escucharemos mas sermones</bar> </phrase> <phrase> <bar kind="0">9</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="4"> <bar kind="0">10</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">11</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="solo"> <phrase rem="0"> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="1"> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar>


1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760

<bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="2"> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="3"> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="4"> <bar kind="0">5</bar>

281


1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870

282

<bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="shorus 3"> <phrase rem="0"> <bar kind="0">6</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>6</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">8</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">no necesitamos banderas</bar> </phrase> <phrase> <bar kind="0">9</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="1"> <bar kind="0">6</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>6</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">8</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">no reconocemos fronteras</bar> </phrase> <phrase> <bar kind="0">9</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm>


1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980

</bar> </phrase> <phrase rem="2"> <bar kind="0">6</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>6</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">8</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">no aceptaremos filiaciones</bar> </phrase> <phrase> <bar kind="0">9</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="3"> <bar kind="0">6</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>6</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">8</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">no escucharemos mas sermones</bar> </phrase> <phrase> <bar kind="0">9</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="4"> <bar kind="0">10</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">11</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2">

283


1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090

284

<notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="shorus 4"> <phrase rem="0"> <bar kind="0">6</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>6</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">8</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">no necesitamos banderas</bar> </phrase> <phrase> <bar kind="0">9</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="1"> <bar kind="0">6</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>6</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">8</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">no reconocemos fronteras</bar> </phrase> <phrase> <bar kind="0">9</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="2"> <bar kind="0">6</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1">


2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191

<notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>6</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">8</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">no aceptaremos filiaciones</bar> </phrase> <phrase> <bar kind="0">9</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="3"> <bar kind="0">6</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>6</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">8</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">no escucharemos mas sermones</bar> </phrase> <phrase> <bar kind="0">9</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase rem="4"> <bar kind="0">10</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">11</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> </part> </compose> </song>

285


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

286

<?xml version="1.0" encoding="iso-8859-1"?> <song name="lostman"> <settings> <tempo>105</tempo> <loopeable>false</loopeable> <levels> <mainlevel>127</mainlevel> <drumlevel>127</drumlevel> <basslevel>127</basslevel> <guitarlevel>96</guitarlevel> </levels> <instruments> <bassinstrument>0</bassinstrument> <guitarinstrument>110</guitarinstrument> </instruments> </settings> <patterns> <drumpatterns> <drumpattern> <pad name="rimshot" id="37" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="37" >F---F---F---F---</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="31" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="31" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="31" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="31" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="31" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="31" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="31" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="31" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="31" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="31" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="31" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="31" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="31" >----------------</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F-----F---</pad> <pad name="rimshot" id="38" >----F-------F---</pad> <pad name="charles" id="44" >F-F-F-F-F-F-F-F-</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F-----F---</pad> <pad name="rimshot" id="38" >----F-----F-F-F-</pad> <pad name="charles" id="44" >F-F-F-F---------</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F-----F---</pad> <pad name="rimshot" id="38" >F---F---F---F---</pad> <pad name="charles" id="44" >F-F-F-F-F-F-F-F-</pad> <pad name="openHH" id="46" >--EE--EE--EE--EE</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F-----F---</pad> <pad name="rimshot" id="38" >F---F---F---F---</pad> <pad name="charles" id="44" >F-F-F-F-F-F-F-F-</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F-----F---</pad> <pad name="rimshot" id="38" >F---F---F---F---</pad> <pad name="charles" id="44" >F-F-F-F-F-F-F-F-</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F-----F---</pad> <pad name="rimshot" id="38" >F---F---F-F-F-F-</pad> <pad name="charles" id="44" >F-F-F-F---------</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---F---F---F---</pad> <pad name="rimshot" id="38" >----------------</pad> <pad name="charles" id="44" >F-F-F-F-F-F-F-F-</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---------------</pad> <pad name="rimshot" id="38" >F---------------</pad> <pad name="crash" id="49" >F---------------</pad> </drumpattern> </drumpatterns> <basspatterns> <basspattern> <pattern>0---0---7---0---</pattern> </basspattern> <basspattern>


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

<pattern>0---0---0---C---</pattern> </basspattern> <basspattern> <pattern>7---0---0---C---</pattern> </basspattern> <basspattern> <pattern>0-5-0-C-7-C-0-0-</pattern> </basspattern> <basspattern> <pattern>0-C-0-7-C-5-0-0-</pattern> </basspattern> <basspattern> <pattern>0-0-0-C-0-7-C-5-</pattern> </basspattern> <basspattern> <pattern>0---------------</pattern> </basspattern> <basspattern> <pattern>0-5-0-C-7-C-0-0-</pattern> </basspattern> <basspattern> <pattern>0-5-0-C-0-0-C-5-</pattern> </basspattern> <basspattern> <pattern>7-C-0-0-0-0-C-5-</pattern> </basspattern> <basspattern> <pattern>0-5-0-C-7-C-0-0-</pattern> </basspattern> <basspattern> <pattern>0-C-0-7-C-5-0-0-</pattern> </basspattern> <basspattern> <pattern>0-0-0-C-0-7-C-5-</pattern> </basspattern> <basspattern> <pattern>0-5---C-7-C---0-</pattern> <pattern>--0-0-C---7-C-5-</pattern> </basspattern> <basspattern> <pattern>0-5---C-----C-5-</pattern> </basspattern> <basspattern> <pattern>7-C---0-----C-5-</pattern> </basspattern> <basspattern> <pattern>0-5---C-7-C---0-</pattern> <pattern>--0-0-C---7-C-5-</pattern> </basspattern> <basspattern> <pattern>0-C---7-C-5---0-</pattern> <pattern>--0-0-C---7-C-5-</pattern> </basspattern> <basspattern> <pattern>--0-0-C---7-C-5-</pattern> </basspattern> </basspatterns> <guitarpatterns> <guitarpattern> <pattern>----------------</pattern> </guitarpattern> <guitarpattern> <pattern>0-5---C-----C-5-</pattern> </guitarpattern> <guitarpattern> <pattern>7-C---0-----C-5-</pattern> </guitarpattern> <guitarpattern> <pattern>0-5---C-7-C---0-</pattern> <pattern>--0-0-C---7-C-5-</pattern> </guitarpattern> <guitarpattern> <pattern>0-C---7-C-5---0-</pattern> <pattern>--0-0-C---7-C-5-</pattern> </guitarpattern> <guitarpattern> <pattern>--0-0-C---7-C-5-</pattern> </guitarpattern> <guitarpattern> <pattern>0-5---C-----C-5C</pattern> </guitarpattern> <guitarpattern> <pattern>0---------------</pattern> </guitarpattern> </guitarpatterns> </patterns> <tonepatterns> <notes>7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7</notes> <notes>7,7,7,7,7,7,7,7,7,7,4,4,5,5,7,7</notes> <notes>10,10,22,22,10,10,22,22,12,12,24,24,12,12,24,24</notes> <notes>7,7,7,7,7,7,7,7,7,17,17,17,17,17,17,17</notes> <notes>7,7,7,7,7,7,7,7,10,10,10,10,9,9,9,9</notes> <notes>12,12,12,12,12,12,12,12,10,10,9,9,10,10,10,10</notes> <notes>7,7,7,7,7,7,7,7,7,7,4,4,5,5,10,10</notes> <notes>10,10,10,10,10,10,10,10,10,10,9,9,7,7,12,12</notes> <notes>12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12</notes> </tonepatterns> <compose> <part id="pre"> <phrase></phrase> <phrase> <bar kind="0">1</bar> </phrase> </part> <part id="A1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm>

287


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

288

</bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="A2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1">


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

<notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="B1"> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase>

289


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

290

<bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>5</rhytm> </bar> </phrase> </part> <part id="B2"> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar>


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 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

</phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>5</rhytm> </bar> </phrase> </part> <part id="B1"> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes>

291


661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 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 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

292

<rhytm>5</rhytm> </bar> </phrase> </part> <part id="B2"> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>5</rhytm> </bar> </phrase> </part> <part id="A1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes>


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 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880

<rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="A2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar>

293


881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948

294

<bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>6</rhytm> </bar> </phrase> </part> <part id="jj"> <phrase> <bar kind="0">4</bar> <bar kind="2"> <notes>2</notes> <rhytm>7</rhytm> </bar> </phrase> <phrase></phrase> <phrase></phrase> <phrase></phrase> </part> </compose> </song>


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

<?xml version="1.0" encoding="iso-8859-1"?> <song name="loveedn"> <settings> <tempo>100</tempo> <loopeable>false</loopeable> <levels> <mainlevel>127</mainlevel> <drumlevel>127</drumlevel> <basslevel>127</basslevel> <guitarlevel>72</guitarlevel> </levels> <instruments> <bassinstrument>93</bassinstrument> <guitarinstrument>29</guitarinstrument> </instruments> </settings> <patterns> <drumpatterns> <drumpattern> <pad name="rimshot" id="37" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="37" >F---F---F---F---</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F---F-----</pad> <pad name="rimshot" id="31" >----F-------F---</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F---F-----</pad> <pad name="rimshot" id="31" >----F-------F---</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> <pad name="openhihat" id="46" >-----------9-9--</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F---F-----</pad> <pad name="snaredrum" id="38" >----F-------F---</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F---F-----</pad> <pad name="snaredrum" id="38" >----F-------F---</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> <pad name="openhihat" id="46" >-----------9-9--</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---------------</pad> <pad name="snaredrum" id="38" >F---------------</pad> <pad name="crash" id="49" >F---------------</pad> </drumpattern> </drumpatterns> <basspatterns> <basspattern> <pattern>----------------</pattern> </basspattern> <basspattern> <pattern>5-----5---0-3---</pattern> </basspattern> <basspattern> <pattern>5-----5---8-8-7-</pattern> </basspattern> <basspattern> <pattern>0---------------</pattern> </basspattern> <basspattern> <pattern>5-----5---7---5-</pattern> </basspattern> <basspattern> <pattern>4-----4---2---0-</pattern> </basspattern> <basspattern> <pattern>2---------------</pattern> </basspattern> <basspattern> <pattern>----------2---4-</pattern> </basspattern> <basspattern> <pattern>5-----5---7---8-</pattern> </basspattern> </basspatterns> <guitarpatterns> <guitarpattern> <pattern>----------------</pattern> </guitarpattern> <guitarpattern> <pattern>0-C---8-F-------</pattern> </guitarpattern> <guitarpattern> <pattern>7-E---C-0-A-A---</pattern> </guitarpattern> <guitarpattern> <pattern>7-E-------------</pattern> </guitarpattern> <guitarpattern> <pattern>5-5-------------</pattern> </guitarpattern> <guitarpattern> <pattern>8-F-7-E-5-5-3-B-</pattern> </guitarpattern> <guitarpattern> <pattern>0-CC0-CC0-CC0-CC</pattern> </guitarpattern> <guitarpattern> <pattern>--0-3-----0-3---</pattern> </guitarpattern> <guitarpattern> <pattern>--2-3-----2-3---</pattern> </guitarpattern> <guitarpattern>

295


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

296

<pattern>2-D-----2-D-----</pattern> </guitarpattern> <guitarpattern> <pattern>7-E-5-F-3-B-2-F-</pattern> </guitarpattern> <guitarpattern> <pattern>--0-2-----0-2---</pattern> </guitarpattern> <guitarpattern> <pattern>7-E---9-F-7-E---</pattern> </guitarpattern> <guitarpattern> <pattern>5-C-------7-E-5-</pattern> </guitarpattern> <guitarpattern> <pattern>4-B-------2-A-0-</pattern> </guitarpattern> <guitarpattern> <pattern>2-A-----2-A-----</pattern> </guitarpattern> <guitarpattern> <pattern>--2-A-4---2-A-4-</pattern> </guitarpattern> </guitarpatterns> </patterns> <tonepatterns> <notes>4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4</notes> <notes>9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9</notes> <notes>6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6</notes> <notes>7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7</notes> <notes>7,7,7,7,7,7,7,7,19,19,19,19,19,19,19,19</notes> <notes>19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19</notes> </tonepatterns> <compose> <part id="pre"> <phrase></phrase> <phrase></phrase> <phrase></phrase> <phrase> <bar kind="0">1</bar> </phrase> </part> <part id="melody0.1.1"> <phrase> <bar kind="0">2</bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="melody0.1.2"> <phrase> <bar kind="0">2</bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> <bar kind="3" frame="12">shinrin no fukai no; chiisa i joou niyotteha yume ga yume wo miru; kanojo no tonari; naka roujo oyobi inu. joou no niwa; kanojo niyotteha watashi no yume ga yume wo miru; w </phrase> </part> <part id="melody1.1.1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar>


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

<bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="melody1.1.2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="melody1.1.3"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar>

297


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

298

<bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="melody1.1.4"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="melody1.2.1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>6</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>7</rhytm>


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

</bar> </phrase> </part> <part id="melody1.2.2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>6</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>8</rhytm> </bar> </phrase> </part> <part id="melody1.3"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>9</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>10</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>8</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>6</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>11</rhytm> </bar> </phrase> </part> <part id="melody1.4"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>3</notes> <rhytm>4</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>13</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1">

299


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 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

300

<notes>3</notes> <rhytm>5</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>14</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>15</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="melody2.1.1"> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="melody2.1.2"> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1">


661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 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 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

<notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="melody2.1.3"> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="melody2.1.4"> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="melody2.2.1"> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes>

301


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 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880

302

<rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>6</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>7</rhytm> </bar> </phrase> </part> <part id="melody2.2.2"> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>6</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>8</rhytm> </bar> </phrase> </part> <part id="melody2.3"> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>9</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>10</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes>


881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990

<rhytm>8</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>6</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>11</rhytm> </bar> </phrase> </part> <part id="melody2.4"> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>3</notes> <rhytm>4</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>13</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>5</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>14</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>15</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>8</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>16</rhytm> </bar> </phrase> </part> <part id="melody2.4.kuatik"> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>3</notes> <rhytm>4</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>13</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>5</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>14</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>15</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="melody3.1.1"> <phrase> <bar kind="0">4</bar>

303


991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100

304

<bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="melody3.1.2"> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="melody3.1.3"> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm>


1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210

</bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="melody3.1.4"> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="melody3.4"> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>3</notes> <rhytm>4</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>13</rhytm> </bar> <bar kind="3" frame="4">soshite inu ha heya no chuukan nomusabori kuu; soshite shoku ganiyotte yume wo miru; soshite inu ha heya no chuukan nomusabori kuu; soshite. subetegakokoni kaika surunode;< </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>5</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>14</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>15</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes>

305


1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270

306

<rhytm>8</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>16</rhytm> </bar> </phrase> </part> <part id="melody3.4.kuatik"> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>3</notes> <rhytm>4</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>13</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>5</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>14</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>15</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>1</notes> <rhytm>3</rhytm> </bar> </phrase> </part> <part id="last"> <phrase></phrase> <phrase></phrase> <phrase></phrase> <phrase></phrase> </part> </compose> </song>


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

<?xml version="1.0" encoding="iso-8859-1"?> <song name="silverstein"> <settings> <tempo>150</tempo> <loopeable>false</loopeable> <levels> <mainlevel>127</mainlevel> <drumlevel>127</drumlevel> <basslevel>127</basslevel> <guitarlevel>102</guitarlevel> </levels> <instruments> <bassinstrument>71</bassinstrument> <guitarinstrument>76</guitarinstrument> </instruments> </settings> <patterns> <drumpatterns> <drumpattern> <pad name="rimshot" id="37" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="37" >F---F---F---F---</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---F---F---F---</pad> <pad name="snaredrum" id="38" >----F-------F---</pad> <pad name="pedalHH" id="44" >--F---F---F---F-</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F----F--F----F--</pad> <pad name="snaredrum" id="38" >----F-------F---</pad> <pad name="pedalHH" id="44" >--F---F---F---F-</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---F---F--F-F--</pad> <pad name="snaredrum" id="38" >----F-------F---</pad> <pad name="pedalHH" id="44" >--F---F---F-9EFE</pad> <pad name="openHH" id="46" >--8---8---A---8-</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F--F--F--F-F-F-F</pad> <pad name="snaredrum" id="38" >----F-------F---</pad> <pad name="pedalHH" id="44" >---F---F---F---F</pad> <pad name="openHH" id="46" >C-8-B-8-A-8-D-F-</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---F---F---F---</pad> <pad name="snaredrum" id="38" >----F-------F---</pad> <pad name="pedalHH" id="44" >99FF99FF99FF99FF</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F----F--F----F--</pad> <pad name="snaredrum" id="38" >----F-------F---</pad> <pad name="pedalHH" id="44" >99FF99FF99FF99FF</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---F---F--F-F--</pad> <pad name="snaredrum" id="38" >F---F---F---F---</pad> <pad name="pedalHH" id="44" >99FF99FF99FF99FF</pad> <pad name="openHH" id="46" >--8---8---A---8-</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---F---F--F-F--</pad> <pad name="snaredrum" id="38" >F---F---F---F---</pad> <pad name="pedalHH" id="44" >-9-F-9-F-9--99-F</pad> <pad name="openHH" id="46" >C-8---8-6-C---F-</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---F---F---F---</pad> <pad name="snaredrum" id="38" >F---F---F---F---</pad> <pad name="pedalHH" id="44" >99FF99FF99FF99FF</pad> <pad name="openHH" id="46" >--8---8---A---8-</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F--F--F--F--F---</pad> <pad name="snaredrum" id="38" >F---F---F---F---</pad> <pad name="pedalHH" id="44" >-9-F-9-F-9--99-F</pad> <pad name="openHH" id="46" >C-8---8-6-C---F-</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F--F--F--F--F---</pad> <pad name="snaredrum" id="38" >FFFFFFFFFFFFFFFF</pad> <pad name="pedalHH" id="44" >9-F-9-F-9-9-9-F-</pad> <pad name="openHH" id="46" >----------C-A-F-</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---F---F---F---</pad> <pad name="snaredrum" id="38" >----------------</pad> <pad name="pedalHH" id="44" >9---9---9--9---</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---------------</pad> <pad name="snaredrum" id="38" >F---------------</pad> <pad name="crash" id="49" >F---------------</pad> </drumpattern> </drumpatterns> <basspatterns> <basspattern> <pattern>----------------</pattern> </basspattern> <basspattern> <pattern>0-0-0-0-0-0-0-0-</pattern> </basspattern> <basspattern> <pattern>X---------------</pattern> </basspattern> </basspatterns> <guitarpatterns> <guitarpattern>

307


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

308

<pattern>----------------</pattern> </guitarpattern> <guitarpattern> <pattern>0-0-0-0-0-0-0-0-</pattern> <pattern>7-7-7-7-7-7-7-7-</pattern> </guitarpattern> </guitarpatterns> </patterns> <tonepatterns> <notes>11,11,13,13,13,13,11,11,13,13,13,13,11,11,13,13</notes> <notes>11,11,11,13,13,11,13,13,14,14,14,14,14,14,14,14</notes> <notes>11,11,13,13,13,13,11,11,13,13,13,13,11,11,13,13</notes> <notes>14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14</notes> <notes>11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11</notes> <notes>7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7</notes> <notes>9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9</notes> <notes>17,17,17,17,17,17,17,17,16,16,16,16,16,16,16,16</notes> </tonepatterns> <compose> <part id="pre"> <phrase></phrase> <phrase></phrase> <phrase></phrase> <phrase> <bar kind="0">1</bar> </phrase> </part> <part id="A1.1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="A1.2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="A1.3"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase>


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

<bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="A1.4"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">11</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">lo q no c usa c cae, loco</bar> </phrase> </part> <part id="B1.1"> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">el hambre modela el caracter</bar> </phrase> <phrase> <bar kind="0">8</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">9</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">lo q no c come c pudre</bar> </phrase> </part> <part id="B1.2"> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">conduce tu apetito</bar> </phrase> <phrase> <bar kind="0">8</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">9</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">lo q no c caga envenena</bar> </phrase> </part> <part id="B1.3"> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase>

309


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

310

<phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">hay q pelar el ajo a veces</bar> </phrase> <phrase> <bar kind="0">8</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">9</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">lo q no c juega c pierde</bar> </phrase> </part> <part id="B1.4"> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">avispate con tus talentos</bar> </phrase> <phrase> <bar kind="0">13</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">12</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="A2.1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">muestra tu silverstein, loco</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">sakale punta al lapiz, como el sapo livingstone</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="A2.2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">remueve esa frustracion de mierda</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">eris luz, loco</bar>


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

</phrase> <phrase> <bar kind="0">11</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="C1.1"> <phrase> <bar kind="0">10</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="4">oooooh yabadabaaaaa</bar> </phrase> <phrase> <bar kind="0">11</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="C1.2"> <phrase> <bar kind="0">10</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="4">oooooh yabadabaaaaa</bar> </phrase> <phrase> <bar kind="0">11</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="C1.3"> <phrase> <bar kind="0">10</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="4">oooooh yabadabaaaaa</bar> </phrase> <phrase> <bar kind="0">11</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="C1.4"> <phrase> <bar kind="0">10</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="4">oooooh yabadabaaaaa, duuu</bar> </phrase> <phrase> <bar kind="0">11</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="B2.1"> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">cansado de gritar q nunka nada es suficiente</bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">8</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">9</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">me tiro sobre el pasto y miro como giro al frente</bar> </phrase> </part> <part id="B2.2">

311


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 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

312

<phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">8</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">9</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">yo kiero q estes bien aunkestes lejos y yo solo</bar> </phrase> </part> <part id="B2.3"> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">8</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">9</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">no me preocupa el tiempo</bar> </phrase> </part> <part id="B2.4"> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">porque</bar> </phrase> <phrase> <bar kind="0">13</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">soy</bar> </phrase> <phrase> <bar kind="0">12</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="A3.1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">muestra tu silverstein, loco</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase>


661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 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 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

<bar kind="0">4</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">sakale punta al lapiz, como el sapo livingstone</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="A3.2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">remueve esa frustracion de mierda</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">eris luz, loco</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="A3.3"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="A3.4"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">11</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="C2.1"> <phrase> <bar kind="0">10</bar>

313


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 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880

314

<bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="4">oooooh yabadabaaaaa</bar> </phrase> <phrase> <bar kind="0">11</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="C2.2"> <phrase> <bar kind="0">10</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="4">oooooh yabadabaaaaa</bar> </phrase> <phrase> <bar kind="0">11</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="C2.3"> <phrase> <bar kind="0">10</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="4">oooooh yabadabaaaaa</bar> </phrase> <phrase> <bar kind="0">11</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="C2.4"> <phrase> <bar kind="0">10</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="4">oooooh yabadabaaaaa, duuu</bar> </phrase> <phrase> <bar kind="0">11</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="C2.5"> <phrase> <bar kind="0">12</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="4">muestra tu silverstein, locooo</bar> </phrase> <phrase> <bar kind="0">12</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="C2.6"> <phrase> <bar kind="0">13</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">sakale punta al lapiz, como el sapo livingstone</bar> </phrase> <phrase> <bar kind="0">12</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="last"> <phrase> <bar kind="0">14</bar> <bar kind="1"> <notes>4</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase></phrase> <phrase></phrase> <phrase></phrase> <phrase></phrase>


881 882

<phrase></phrase> <phrase></phrase>

<phrase></phrase>

883 884 885 886

</part> </compose> </song>

315


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

316

<?xml version="1.0" encoding="iso-8859-1"?> <song name="slowlybittingU"> <settings> <tempo>110</tempo> <loopeable>false</loopeable> <levels> <mainlevel>127</mainlevel> <drumlevel>127</drumlevel> <basslevel>127</basslevel> <guitarlevel>64</guitarlevel> </levels> <instruments> <bassinstrument>91</bassinstrument> <guitarinstrument>76</guitarinstrument> </instruments> </settings> <patterns> <drumpatterns> <drumpattern> <pad name="rimshot" id="37" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="37" >F---F---F---F---</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >FF----FF-FF-FFF-</pad> <pad name="snaredrum" id="38" >----F-------F---</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >FF----FF-FF-FFF-</pad> <pad name="snaredrum" id="38" >--F-F---C--FF-9-</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---F---F---F---</pad> <pad name="snaredrum" id="38" >----F-------F---</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---------------</pad> <pad name="snaredrum" id="38" >F---------------</pad> <pad name="crash" id="49" >F---------------</pad> </drumpattern> </drumpatterns> <basspatterns> <basspattern> <pattern>----------------</pattern> </basspattern> <basspattern> <pattern>00----CC-57-BBC-</pattern> </basspattern> <basspattern> <pattern>0-C-0-C-0-C-0-C-</pattern> </basspattern> <basspattern> <pattern>00----00-00-000-</pattern> </basspattern> <basspattern> <pattern>0---------------</pattern> </basspattern> </basspatterns> <guitarpatterns> <guitarpattern> <pattern>----------------</pattern> </guitarpattern> <guitarpattern> <pattern>0---7-5---7---C-</pattern> </guitarpattern> <guitarpattern> <pattern>F---E-F---E---C-</pattern> </guitarpattern> <guitarpattern> <pattern>E---------------</pattern> </guitarpattern> <guitarpattern> <pattern>F---------------</pattern> </guitarpattern> <guitarpattern> <pattern>0---C-A---C---F-</pattern> </guitarpattern> <guitarpattern> <pattern>--E---F---E-C---</pattern> </guitarpattern> <guitarpattern> <pattern>------------C---</pattern> </guitarpattern> <guitarpattern> <pattern>0---------------</pattern> </guitarpattern> </guitarpatterns> </patterns> <tonepatterns> <notes>9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9</notes> <notes>14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14</notes> <notes>14,14,14,14,12,12,12,12,11,11,11,11,7,7,7,7</notes> <notes>14,14,14,14,14,14,14,14,5,5,5,5,5,5,5,5</notes> <notes>9,9,9,9,11,11,11,11,12,12,12,12,13,13,13,13</notes> <notes>5,5,5,5,5,5,5,5,7,7,7,7,7,7,7,7</notes> </tonepatterns> <compose> <part id="pre"> <phrase></phrase> <phrase></phrase> <phrase></phrase> <phrase> <bar kind="0">1</bar> </phrase> </part> <part id="intro1.1">


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

<phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>5</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>0</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>5</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>0</rhytm> </bar> </phrase> </part> <part id="intro1.2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>5</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>0</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>5</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>0</rhytm> </bar> </phrase> </part> <part id="verse1.1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="3" frame="0">here we are</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar>

317


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

318

<bar kind="2"> <notes>0</notes> <rhytm>7</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>4</rhytm> </bar> <bar kind="3" frame="0">melted and undressed</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>2</rhytm> </bar> </phrase> </part> <part id="verse1.2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="3" frame="0">dancing in blue</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>7</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>4</rhytm> </bar> <bar kind="3" frame="0">i think we were this way, everytime</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>2</rhytm> </bar> </phrase> </part> <part id="chorus1.1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">slowly bitting you</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>0</rhytm> </bar> <bar kind="3" frame="0">there is no time at your skin</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="3" frame="0">while the singing birds are flowering</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes>


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

<rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>0</rhytm> </bar> <bar kind="3" frame="8">oh yeah!</bar> </phrase> </part> <part id="chorus1.2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">slowly bitting you</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>0</rhytm> </bar> <bar kind="3" frame="0">im mouth and moove and rock</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="3" frame="0">you are my sweet bird and flower</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>0</rhytm> </bar> <bar kind="3" frame="0">im slowly bitting you</bar> </phrase> </part> <part id="verse2.1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="3" frame="0">we know</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>7</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>4</rhytm> </bar> <bar kind="3" frame="0">this naked time we are spinning</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>2</rhytm> </bar> </phrase> </part> <part id="verse2.2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar>

319


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

320

<bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="3" frame="0">and turn and dancing in blue</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>7</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>4</rhytm> </bar> <bar kind="3" frame="0">in this frame, everytime</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>2</rhytm> </bar> </phrase> </part> <part id="bridge1.1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>3</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>5</rhytm> </bar> <bar kind="3" frame="0">no c q tienen tus ojitos q me vuelven loko</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>4</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>6</rhytm> </bar> <bar kind="3" frame="12">cuando me miran muy pokito, muy pokito a poko</bar> </phrase> </part> <part id="bridge1.2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>3</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>4</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>6</rhytm> </bar> </phrase> </part> <part id="bridge1.3"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>3</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>5</rhytm> </bar> <bar kind="3" frame="0">no c q tienen tus ojitos q me vuelven loko</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>4</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>6</rhytm> </bar>


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 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

<bar kind="3" frame="14">cuando me miran muy pokito, muy pokito a poko</bar> </phrase> </part> <part id="bridge1.4"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>3</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>4</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>6</rhytm> </bar> </phrase> </part> <part id="filltro1.1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>5</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>0</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>5</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>0</rhytm> </bar> </phrase> </part> <part id="filltro1.2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>5</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>0</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1">

321


661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 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 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

322

<notes>5</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>0</rhytm> </bar> </phrase> </part> <part id="bridge2.1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>3</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>4</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>6</rhytm> </bar> </phrase> </part> <part id="bridge2.2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>3</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>4</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>6</rhytm> </bar> </phrase> </part> <part id="bridge2.3"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>3</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>4</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>6</rhytm> </bar> </phrase> </part> <part id="bridge2.4"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>3</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>4</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>6</rhytm> </bar> </phrase> </part> <part id="verse3.1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes>


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 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880

<rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="3" frame="0">here we are</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>7</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>4</rhytm> </bar> <bar kind="3" frame="0">melted and naked</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>2</rhytm> </bar> </phrase> </part> <part id="verse3.2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> <bar kind="3" frame="0">breathing and dreaming this blue</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>7</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>4</rhytm> </bar> <bar kind="3" frame="0">i like we moving this way, everytime</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>2</rhytm> </bar> </phrase> </part> <part id="chorus2.1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">slowly bitting you</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>0</rhytm> </bar> <bar kind="3" frame="0">there is no time at your skin</bar> </phrase> <phrase> <bar kind="0">2</bar>

323


881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990

324

<bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="3" frame="0">while the singing birds are flowering</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>0</rhytm> </bar> <bar kind="3" frame="8">oh yeah!</bar> </phrase> </part> <part id="chorus2.2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">slowly bitting you</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>0</rhytm> </bar> <bar kind="3" frame="0">im mouth and moove and rock</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="3" frame="0">you are my sweet bird and flower</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>0</rhytm> </bar> <bar kind="3" frame="0">im slowly bitting you</bar> </phrase> </part> <part id="bridge3.1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>3</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>5</rhytm> </bar> <bar kind="3" frame="0">no c q tienen tus ojitos q me vuelven loko</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>4</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>6</rhytm> </bar> <bar kind="3" frame="12">cuando me miran muy pokito, muy pokito a poko</bar> </phrase> </part> <part id="bridge3.2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>3</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>5</rhytm> </bar>


991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071

</phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>4</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>6</rhytm> </bar> </phrase> </part> <part id="bridge3.3"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>3</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>5</rhytm> </bar> <bar kind="3" frame="0">no c q tienen tus ojitos q me vuelven loko</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>4</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>6</rhytm> </bar> <bar kind="3" frame="14">cuando me miran muy pokito, muy pokito a poko</bar> </phrase> </part> <part id="bridge3.4"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>3</notes> <rhytm>3</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>4</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>6</rhytm> </bar> </phrase> </part> <part id="last"> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>1</notes> <rhytm>4</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>8</rhytm> </bar> </phrase> <phrase></phrase> <phrase></phrase> <phrase></phrase> </part> </compose> </song>

325


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

326

<?xml version="1.0" encoding="iso-8859-1"?> <song name="songzero"> <settings> <tempo>160</tempo> <loopeable>false</loopeable> <levels> <mainlevel>127</mainlevel> <drumlevel>127</drumlevel> <basslevel>127</basslevel> <guitarlevel>76</guitarlevel> </levels> <instruments> <bassinstrument>0</bassinstrument> <guitarinstrument>76</guitarinstrument> </instruments> </settings> <patterns> <drumpatterns> <drumpattern> <pad name="rimshot" id="37" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="37" >F---F---F---F---</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---F---F---F---</pad> <pad name="snaredrum" id="38" >----F-------F---</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---F---F---F---</pad> <pad name="snaredrum" id="38" >----F-----F-F-F-</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---------------</pad> <pad name="snaredrum" id="38" >F---------------</pad> <pad name="crash" id="49" >F---------------</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >-F-F-F---F-F-F--</pad> <pad name="snaredrum" id="38" >F---F---F---F---</pad> <pad name="charles" id="44" >--F---F---F-9-F-</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >-F-F-F---F-F-F--</pad> <pad name="snaredrum" id="38" >F---F---F---F---</pad> <pad name="charles" id="44" >99FF99FF99FF99FF</pad> </drumpattern> </drumpatterns> <basspatterns> <basspattern> <pattern>----------------</pattern> </basspattern> <basspattern> <pattern>0-C-0-C-0-C-0-C-</pattern> </basspattern> <basspattern> <pattern>0-0-0-0-0-0-0-0-</pattern> </basspattern> <basspattern> <pattern>0-CC0-CC0-CC0-CC</pattern> </basspattern> <basspattern> <pattern>0-0-000-0-0-000-</pattern> </basspattern> <basspattern> <pattern>X---------------</pattern> </basspattern> <basspattern> <pattern>0-0-------------</pattern> </basspattern> </basspatterns> <guitarpatterns> <guitarpattern> <pattern>----------------</pattern> </guitarpattern> <guitarpattern> <pattern>0-0-0-0-0-0-0-0-</pattern> <pattern>7-7-7-7-7-7-7-7-</pattern> </guitarpattern> <guitarpattern> <pattern>0-C-0-C-0-C-0-C-</pattern> </guitarpattern> <guitarpattern> <pattern>0-CC0-CC0-CC0-CC</pattern> </guitarpattern> <guitarpattern> <pattern>0-0-000-0-0-000-</pattern> </guitarpattern> <guitarpattern> <pattern>0---------------</pattern> </guitarpattern> <guitarpattern> <pattern>0-0-------------</pattern> </guitarpattern> </guitarpatterns> </patterns> <tonepatterns> <notes>11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11</notes> <notes>11,11,11,11,11,11,11,14,14,14,14,14,14,14,14,14</notes> <notes>17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17</notes> <notes>5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5</notes> <notes>11,11,11,11,11,11,11,11,11,11,14,14,14,14,14,14</notes> <notes>9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9</notes> <notes>11,11,11,11,11,11,11,11,11,11,11,12,13,14,14,14</notes> <notes>14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14</notes> <notes>17,17,17,17,17,17,17,17,17,17,19,19,19,19,19,19</notes> </tonepatterns> <compose>


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

<part id="pre"> <phrase></phrase> <phrase></phrase> <phrase></phrase> <phrase> <bar kind="0">1</bar> </phrase> </part> <part id="intro1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="intro2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="intro3"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm>

327


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

328

</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="intro4"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="verse1.1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">PLEASE STOP!</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>4</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="7">STOP HURTING ME</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1">


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

<notes>5</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>5</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">I HAVE SUFFERED ENOUGH</bar> </phrase> </part> <part id="verse1.2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>6</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">DETENTE Y VETE</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>7</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>7</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="verse1.3"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">I HAVE DONE WHAT IS mine</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>4</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">I DID IT MY HALF</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>5</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>5</notes> <rhytm>2</rhytm> </bar>

329


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

330

<bar kind="2"> <notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="verse1.4"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">HOW MUCH HARDER?</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>6</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>6</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>7</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">HOW MUCH HARDER?</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>8</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>8</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="chorus1.1"> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">IM TRYING TO LIVE</bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">AND SING, OH NO!</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">OH YEAH!</bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>2</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="chorus1.2"> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar>


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 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

<bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">IM TRYING TO LIVE</bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">AND SING, OH NO!</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">OH YEAH!</bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>2</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="chorus1.3"> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">IM TRYING TO LIVE</bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">AND SING, OH NO!</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">OH YEAH!</bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>2</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="chorus1.4"> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">IM TRYING TO LIVE</bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar>

331


661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 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 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

332

<bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">AND SING, OH NO!</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">OH YEAH!</bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>2</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="verse2.1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">PONTE SOBRE ME Y NO EN MEE CONTRA. ACCEPT ME</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>4</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>5</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>5</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="verse2.2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">IM A LUCKY MAN</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>6</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>6</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>7</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm>


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 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880

</bar> <bar kind="3" frame="0">ALWAYS SAD, DESIRING BE BLESSED</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>7</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="verse2.3"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">IM INCREASING POWER</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>4</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="15">IM INCREASING POWER</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>5</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>5</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="verse2.4"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">IM A LUCKY MAN</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>6</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>6</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>7</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">ALWAYS SAD, DESIRING BE BLESSED</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>8</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>8</notes> <rhytm>1</rhytm> </bar> </phrase>

333


881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990

334

</part> <part id="chorus2.1"> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">IM TRYING TO LIVE</bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">AND SING, OH NO!</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">OH YEAH!</bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>2</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="chorus2.2"> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">IM TRYING TO LIVE</bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">AND SING, OH NO!</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">OH YEAH!</bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>2</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="chorus2.3"> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar>


991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100

<bar kind="3" frame="0">IM TRYING TO LIVE</bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">AND SING, OH NO!</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">OH YEAH!</bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>2</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="chorus2.4"> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">IM TRYING TO LIVE</bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">AND SING, OH NO!</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">OH YEAH!</bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>2</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="vacila1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase>

335


1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210

336

<phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="vacila2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="vacila3"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>2</rhytm> </bar> <bar kind="2">


1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320

<notes>2</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="vacila4"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="outro1.1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">IM A LUCKY MAN</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">OH YEAH!</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="4">IM INCREASING POWER</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="outro1.2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm>

337


1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430

338

</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">ALWAYS SAD, DESIRING BE BLESSED</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>3</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="outro2.1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">IM A LUCKY MAN</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">OH YEAH!</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="4">IM INCREASING POWER</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>2</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="outro2.2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase>


1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540

<bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">ALWAYS SAD, DESIRING BE BLESSED</bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>3</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="outro3.1"> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">IM A LUCKY MAN</bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">OH YEAH!</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="4">IM INCREASING POWER</bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>2</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="outro3.2"> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">ALWAYS SAD, DESIRING BE BLESSED</bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1">

339


1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650

340

<notes>3</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="outro4.1"> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">IM A LUCKY MAN</bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="8">OH YEAH!</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="4">IM INCREASING POWER</bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>2</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="outro4.2"> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="0">ALWAYS SAD, DESIRING BE BLESSED</bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>3</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="last"> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>0</notes>


1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667

<rhytm>5</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase></phrase> <phrase></phrase> <phrase></phrase> <phrase></phrase> <phrase></phrase> <phrase></phrase> <phrase></phrase> </part> </compose> </song>

341


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

342

<?xml version="1.0" encoding="iso-8859-1"?> <song name="SUNLIGHT"> <settings> <tempo>155</tempo> <loopeable>false</loopeable> <levels> <mainlevel>127</mainlevel> <drumlevel>127</drumlevel> <basslevel>117</basslevel> <guitarlevel>48</guitarlevel> </levels> <instruments> <bassinstrument>0</bassinstrument> <guitarinstrument>41</guitarinstrument> </instruments> </settings> <patterns> <drumpatterns> <drumpattern> <pad name="rimshot" id="31" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="31" >F---F---F---F---</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F-----F---</pad> <pad name="rimshot" id="38" >----F-------F---</pad> <pad name="charles" id="44" >F-F-F-F-F-F-F-F-</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F-----F---</pad> <pad name="rimshot" id="38" >----F-----F-F-F-</pad> <pad name="charles" id="44" >F-F-F-F---------</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F-----F---</pad> <pad name="rimshot" id="38" >F---F---F---F---</pad> <pad name="charles" id="44" >F-F-F-F-F-F-F-F-</pad> <pad name="openHH" id="46" >--EE--EE--EE--EE</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F-----F---</pad> <pad name="rimshot" id="38" >F---F---F---F---</pad> <pad name="charles" id="44" >F-F-F-F-F-F-F-F-</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F-----F---</pad> <pad name="rimshot" id="38" >F---F---F---F---</pad> <pad name="charles" id="44" >F-F-F-F-F-F-F-F-</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F-----F-----F---</pad> <pad name="rimshot" id="38" >F---F---F-F-F-F-</pad> <pad name="charles" id="44" >F-F-F-F---------</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---F---F---F---</pad> <pad name="rimshot" id="38" >----------------</pad> <pad name="charles" id="44" >F-F-F-F-F-F-F-F-</pad> </drumpattern> <drumpattern> <pad name="bassdrum" id="35" >F---------------</pad> <pad name="rimshot" id="38" >F---------------</pad> <pad name="crash" id="49" >F---------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="31" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="31" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="31" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="31" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="31" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="31" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="31" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="31" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="31" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="31" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="31" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="31" >----------------</pad> </drumpattern> <drumpattern> <pad name="rimshot" id="31" >----------------</pad> </drumpattern> </drumpatterns> <basspatterns> <basspattern> <pattern>----------------</pattern> </basspattern> <basspattern>


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

<pattern>0-0-0-0-0-0-0-0-</pattern> </basspattern> <basspattern> <pattern>0---------------</pattern> </basspattern> </basspatterns> <guitarpatterns> <guitarpattern> <pattern>----------------</pattern> </guitarpattern> <guitarpattern> <pattern>0-5---C-----C-5-</pattern> </guitarpattern> <guitarpattern> <pattern>7-C---0-----C-5-</pattern> </guitarpattern> <guitarpattern> <pattern>0-5---C-7-C---0-</pattern> <pattern>--0-0-C---7-C-5-</pattern> </guitarpattern> <guitarpattern> <pattern>0-C---7-C-5---0-</pattern> <pattern>--0-0-C---7-C-5-</pattern> </guitarpattern> <guitarpattern> <pattern>--0-0-C---7-C-5-</pattern> </guitarpattern> </guitarpatterns> </patterns> <tonepatterns> <notes>7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7</notes> <notes>7,7,7,7,7,7,7,7,7,7,4,4,5,5,7,7</notes> <notes>10,10,22,22,10,10,22,22,12,12,24,24,12,12,24,24</notes> <notes>7,7,7,7,7,7,7,7,7,17,17,17,17,17,17,17</notes> <notes>7,7,7,7,7,7,7,7,10,10,10,10,9,9,9,9</notes> <notes>12,12,12,12,12,12,12,12,10,10,9,9,10,10,10,10</notes> <notes>7,7,7,7,7,7,7,7,7,7,4,4,5,5,10,10</notes> <notes>10,10,10,10,10,10,10,10,10,10,9,9,7,7,12,12</notes> <notes>12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12</notes> </tonepatterns> <compose> <part id="pre"> <phrase></phrase> <phrase></phrase> <phrase></phrase> <phrase> <bar kind="0">1</bar> </phrase> </part> <part id="A1"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm>

343


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

344

</bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> </phrase> </part> <part id="A2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1">


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

<notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="14">feel the green smell, breathing deep into yor blood, oh yeah</bar> </phrase> </part> <part id="A3"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="3" frame="14">feel your skin smell, moving slowly into the light, oh yeah</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="14">creatures are growing and moving on, slowly trough your arms and fingers, oh i like this</bar> </phrase> </part> <part id="A4"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2">

345


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

346

<notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>2</rhytm> </bar> <bar kind="3" frame="14">this time you are being slighty approaching, you will like this, oh yeah</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">3</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">4</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="14">delight in me, oh, delight in U</bar> </phrase> </part> <part id="B1"> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> <bar kind="3" frame="14">the light are we, oh take delight in me</bar> </phrase> <phrase> <bar kind="0">5</bar>


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 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

<bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>5</rhytm> </bar> <bar kind="3" frame="14">delight in me, oh, delight in U</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> <bar kind="3" frame="14">the light are we, oh take delight in me</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>5</rhytm> </bar> <bar kind="3" frame="14">delight in me, oh, delight in U</bar> </phrase> </part> <part id="B2"> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> <bar kind="3" frame="14">the light are we, oh take delight in me</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2">

347


661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 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 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

348

<notes>3</notes> <rhytm>5</rhytm> </bar> <bar kind="3" frame="14">delight in me, oh, delight in U</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> <bar kind="3" frame="14">the light are we, oh take delight in me</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>5</rhytm> </bar> </phrase> </part> <part id="D"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="14">oh babe, people say u have some rythmic skills, can u show me this morning?</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>8</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="14">then i draw with your smell, giant plants in my dreams, then i draw on your face</bar> </phrase>


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 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880

<phrase id="ww"> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="3" frame="12">and you smile while i stroke, and you came, and i stare, and we fall!</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>6</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">8</bar> <bar kind="1"> <notes>8</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>8</notes> <rhytm>2</rhytm> </bar> <bar kind="3" frame="14">delight in me, oh, delight in U</bar> </phrase> </part> <part id="B3"> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2">

349


881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990

350

<notes>3</notes> <rhytm>3</rhytm> </bar> <bar kind="3" frame="14">the light are we, oh take delight in me</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>5</rhytm> </bar> <bar kind="3" frame="14">delight in me, oh, delight in U</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> <bar kind="3" frame="14">the light are we, oh take delight in me</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>5</rhytm> </bar> <bar kind="3" frame="14">delight in me, oh, delight in U</bar> </phrase> </part> <part id="B4"> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> <bar kind="3" frame="14">the light are we, oh take delight in me</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>4</rhytm> </bar> </phrase>


991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008

<phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>5</rhytm> </bar> <bar kind="3" frame="14">delight in me, oh, delight in U</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar>

1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100

<bar kind="2"> <notes>3</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> <bar kind="3" frame="14">the light are we, oh take delight in me</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>5</rhytm> </bar> </phrase> </part> <part id="D2"> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="14">oh babe, people say i have some rythmic skills, i wanna show you this morning</bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase>

351


1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210

352

<phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>8</notes> <rhytm>1</rhytm> </bar> <bar kind="3" frame="14">and you take me in your arms, like the plants in my dreams, and your draw me in your moves</bar> </phrase> <phrase id="ww"> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">2</bar> <bar kind="1"> <notes>1</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="3" frame="14">and i smile while you stroke, and i came, and you stare, and we fall!</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>0</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>0</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>6</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>6</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>7</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>7</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">8</bar> <bar kind="1"> <notes>8</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>8</notes> <rhytm>2</rhytm> </bar> <bar kind="3" frame="14">delight in me, oh, delight in U</bar> </phrase> </part> <part id="B3"> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>2</rhytm> </bar>


1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320

</phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> <bar kind="3" frame="14">the light are we, oh take delight in me</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>5</rhytm> </bar> <bar kind="3" frame="14">delight in me, oh, delight in U</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> <bar kind="3" frame="14">the light are we, oh take delight in me</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>5</rhytm> </bar> <bar kind="3" frame="14">delight in me, oh, delight in U</bar> </phrase> </part> <part id="B4"> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> <bar kind="3" frame="14">the light are we, oh take delight in me</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1">

353


1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430

354

<notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>5</rhytm> </bar> <bar kind="3" frame="14">delight in me, oh, delight in U</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> <bar kind="3" frame="14">the light are we, oh take delight in me</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>5</rhytm> </bar> </phrase> </part> <part id="B5"> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>5</rhytm> </bar>


1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475

</phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>5</rhytm> </bar> </phrase>

1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540

</part> <part id="B6"> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>5</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2">

355


1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568

<notes>3</notes> <rhytm>3</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>2</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>4</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>3</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>3</notes> <rhytm>5</rhytm> </bar> <bar kind="3" frame="14">this sun light, will melt us, oh yeah!</bar> </phrase> </part>

1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650

356

<part id="C3"> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>2</rhytm> </bar> <bar kind="3" frame="14">this sun light, will make us strongest</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar>


1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760

<bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>2</rhytm> </bar> <bar kind="3" frame="14">this sun light, will melt us, oh yeah!</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>2</rhytm> </bar> <bar kind="3" frame="14">this sun light, will make us strongest</bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">6</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>2</rhytm> </bar> </phrase> <phrase> <bar kind="0">5</bar> <bar kind="1"> <notes>4</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>4</notes> <rhytm>1</rhytm> </bar> </phrase> <phrase> <bar kind="0">7</bar> <bar kind="1"> <notes>5</notes> <rhytm>1</rhytm> </bar> <bar kind="2"> <notes>5</notes> <rhytm>2</rhytm> </bar> <bar kind="3" frame="14">this sun light, will melt us, oh yeah!</bar> </phrase> </part> <part id="last"> <phrase> <bar kind="0">9</bar> <bar kind="1"> <notes>0</notes> <rhytm>2</rhytm> </bar> <bar kind="2"> <notes>0</notes>

357


1761 1762 1763 1764 1765 1766 1767 1768 1769

358

<rhytm>0</rhytm> </bar> </phrase> <phrase></phrase> <phrase></phrase> <phrase></phrase> </part> </compose> </song>


1 2

import rita.*; import hypermedia.net.*;

3 4

UDP udp;

5 6 7 8 9 10

PApplet p = this; Donmiguel donmiguel; void setup(){ udp = new UDP( this, 6000, "224.0.0.1" ); udp.listen( true );

11 12 13 14 15 16 17 18 19 20 21 22 23

donmiguel = new Donmiguel(); } void draw(){ } void mousePressed(){ donmiguel.sing("ideologically "); } void receive( byte[] data, String ip, int port ){ String message = new String( data ); donmiguel.sing(message); udp.send( "", ip, port ); }

24

359


1 2 3 4

class Donmiguel{ private RiSpeech[] speech; private int cspeech; String lastlyric = "";

5

Donmiguel(){ speech = new RiSpeech[2]; for(int i=0; i<speech.length; i++){ speech[i] = new RiSpeech(p); //speech[i].setVoice("kevin"); speech[i].useMacTTS(); speech[i].setVoice("Kathy"); /*"Victoria", "Agnes", "Kathy", "Princess", "Vicki", "Bruce", "Fred", "Junior", "Ralph", "Albert", "Bad News", "Bahh", "Bells", "Boing", "Bubbles", "Cellos", "Deranged", "Good News", "Hysterical", "Pipe Organ", "Trinoids", "Whisper", "Zarvox"*/

6 7 8 9 10 11 12 13 14 15 16 17 18

} } void sing(String $1){ try{ if(random(2)>1){speech[cspeech].setVoice("Fred");}else{speech[cspeech].setVoice("Kathy");} speech[cspeech].speak($1); cspeech++; cspeech%=speech.length; lastlyric = $1;

19 20 21 22 23 24 25 26 27 28

}

29

catch(Exception e){

30

}

31

}

32 33 34

360

}




Turn static files into dynamic content formats.

Create a flipbook
Issuu converts static files into: digital portfolios, online yearbooks, online catalogs, digital photo albums and more. Sign up and create your flipbook.