Recent Changes - Search:

Main
Intro to PComp Home
Weekly Topics & Assignments
Wednesday Class Dates

Links:

Final Projects


Midterm Projects

PmWiki

edit SideBar

GroupFeelSound

Welcome to FeelSound! Apologies for the belated postings and updates. Despite the lack of reportage, we have been working hard getting our project ready.

First, here's the description we submitted for the 2006 Winter show:

FEELSOUND

The human hand contains more than 17,000 tactile receptors, and around 1,300 nerve endings per square inch. Fifteen thousand hair cells in the inner and outer cochlea transform sound waves into electrical signals fed into the 30,000 fibers that make up the auditory nerve. Yet the intricacies and details reported by this dense array of sense receptors and transmitters are too often overlooked or taken for granted.

With FeelSound, our goal is to create a space that diminishes the dominant sense of vision in order to emphasize tactile and auditory sensation. By creating a synaesthetic perceptual connection between touch and hearing, FeelSound both defamiliarizes and reinvigorates how we perceive with these two senses.


ALL DONE!!! Here's the FeelSound presentation:

PowerPoint overview:
http://www.itp.nyu.edu/~jnh251/pcomp/FinalProj/Media/FeelSound.mov

Video of Final Presentation:
http://omorphy.com/ITP/pcom/media/FeelSound%20PresentationSM.mov


Here are some photos of our progress:

Design Sketch:

Sketch 2:

Chul Testing

Within

Early Testing

Early Prototyping

Prototyping Container

Prototyping Container 2


Here's our final Arduino code, utilizing an MUX and midi data:

//Settup for MID output

  1. define controller 176 //controller on channel 1
  2. define controller 177 //controller on channel 2
  3. define sensor1 60 // This is still 'middle C' in the MIDI standard but we use it to encode 'sensor number'
  4. define middleVolume 64
  5. define offVolume 0
  6. define middleC 60
  7. define noteOff 128 //midi note off

int sensorValues[16];

char note1 = 0; int analogValue = 0; // value from the analog input, Analog to Digital Converter (ADC) int scaledValue = 0; // scaled value for MIDI transmission int lastNotePlayed = 0;

//************VARIABLES**************** int analog0 = 0; // ANALOG INPUT 0 FROM THE MUX

//Data Selects for Multiplexer 1 int a= 2; // SELECT PIN A0 GOING INTO PIN 2 int b= 3; // SELECT PIN A1 GOING INTO PIN 3 int c= 4; // SELECT PIN A2 GOING INTO PIN 4 int d= 5; // SELECT PIN A3 GOING INTO PIN 5

//Indecator pin int pin13 = 13; //INDICATOR PLUG int pin8 = 8; //LIGHT ME UP

int time;

//***********ARRAY TO STORE THE VALUES FROM THE MUX*********************

int val[] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};

//************DIGITAL VALUES TO CONTROL OUR 16 INPUTS FROM MULTIPLEXER 1******************* int d_bin[]={LOW,LOW,LOW,LOW,LOW,LOW,LOW,LOW,HIGH,HIGH,HIGH,HIGH,HIGH,HIGH,HIGH,HIGH}; int c_bin[]={LOW,LOW,LOW,LOW,HIGH,HIGH,HIGH,HIGH,LOW,LOW,LOW,LOW,HIGH,HIGH,HIGH,HIGH}; int b_bin[]={LOW,LOW,HIGH,HIGH,LOW,LOW,HIGH,HIGH,LOW,LOW,HIGH,HIGH,LOW,LOW,HIGH,HIGH}; int a_bin[]={LOW,HIGH,LOW,HIGH,LOW,HIGH,LOW,HIGH,LOW,HIGH,LOW,HIGH,LOW,HIGH,LOW,HIGH};

//aux int close=0; int open=0; // multiplexer 1 int a_val=0; int b_val=0; int c_val=0; int d_val=0;

//**************OPENS SERIAL*************** void setup() {

  //beginSerial(9600);
                               // Here we set MIDI baud rate,
  Serial.begin(31250);         // Note that midi is just regular serial with a specified
  blink(2);                    // protocol (transfer speed and message order)

  pinMode(analog0, INPUT);
  pinMode(a, OUTPUT);
  pinMode(b, OUTPUT);
  pinMode(c, OUTPUT);
  pinMode(d, OUTPUT);

  //LED indicator
  pinMode(pin13, OUTPUT);
  pinMode(pin8, OUTPUT);  

}

void loop() {

  for(open=0;open<=15;open++)
  {  
    //************SELECT MUX INPUT*************
    a_val=a_bin[open];
    b_val=b_bin[open];
    c_val=c_bin[open];
    d_val=d_bin[open];

    digitalWrite(a,a_val); 
    digitalWrite(b,b_val);
    digitalWrite(c,c_val);
    digitalWrite(d,d_val);

    //***************loop to get medean*******************
    analogValue = 0;
    for(int i = 0; i < 10; i++){
      val[open] = analogRead(analog0);
      analogValue = analogValue + val[open];
    }
    analogValue = analogValue/10;

    if(analogValue != sensorValues[open]){
       sensorValues[open] = analogValue;     
       int channel = 176 + open; //???sending same value, channels never change
       note(channel, 0, sensorValues[open]/8);
       digitalWrite(pin8, HIGH); // BRIGHT ME UP LED "Just for show"
     }
     else if ((val[0] == 0) && (val[1] == 0) && (val[2] == 0) && (val[3] == 0)
     && (val[4] == 0) && (val[5] == 0) && (val[6] == 0) && (val[7] == 0) 
     && (val[8] == 0) && (val[9] == 0) && (val[10] == 0) && (val[11] == 0) 
     && (val[12] == 0) && (val[13] == 0) && (val[14] == 0) && (val[15] == 0))
     {
     digitalWrite(pin8, LOW); 
     }
  }

}

/* //s Serial print data from multiplexer pins Serial.print("For pin "); Serial.print(open,DEC); Serial.print(" we are getting "); Serial.println(val[open]); //Serial.println(val2[open]); delay(300);

  • /

void note(char cmd, char data1, char data2) {

  Serial.print(cmd, BYTE);
  Serial.print(data1, BYTE);
  Serial.print(data2, BYTE);

}

void blink(int howManyTimes) {

  int i;
  for (i=0; i< howManyTimes; i++) {
    digitalWrite(pin13, HIGH);
    delay(100);
    digitalWrite(pin13, LOW);
    delay(100);
  }

}


Here's a screenshot of our max patch:

Copy / Paste code below to have full function of MAX Patch


  1. P button 89 173 15 0;
  2. P user gswitch 150 114 41 32 0 0;
  3. P hidden user gswitch 174 67 41 32 0 0;
  4. P user gswitch 116 65 41 32 0 0;
  5. P window setfont "Sans Serif" 9.;
  6. P number 417 42 35 9 9 16 3 3 0 0 0 255 92 174 222 222 222 0 0 0;
  7. P toggle 67 125 15 0;
  8. P window linecount 1;
  9. P message 67 98 14 196617 0;
  10. B color 4;
  11. P hidden flonum 67 70 35 9 0. 0. 3 3 0 0 0 221 221 221 222 222 222 0 0 0;
  12. P hidden message 1109 703 49 196617 \$1 2000;
  13. P hidden newex 1047 718 40 196617 change;
  14. P button 6 396 15 0;
  15. P hidden newex 1040 752 61 196617 delay 1500;
  16. P hidden button 928 772 15 0;
  17. P hidden number 758 726 35 9 0 0 0 3 0 0 0 221 221 221 222 222 222 0 0 0;
  18. P hidden toggle 1004 696 15 0;
  19. P hidden toggle 924 734 15 0;
  20. P hidden newex 951 678 30 196617 < 70;
  21. P hidden message 856 697 20 196617 64;
  22. P hidden number 899 656 35 9 0 0 0 3 0 0 0 221 221 221 222 222 222 0 0 0;
  23. P hidden user dial 856 733 40 40 128 1 0 0 223 270 1 1. 170 170 170 221 221 221 120 120 120 225 225 225 0 0 0 0 0 0;
  24. P hidden newex 959 753 51 196617 trigger 1;
  25. P newex 980 244 27 196617 * 2;
  26. P comment 1116 229 100 196617 scaled volume;
  27. P comment 974 229 100 196617 scaled volume;
  28. P comment 828 233 100 196617 scaled volume;
  29. P comment 672 229 100 196617 scaled volume;
  30. P comment 527 229 100 196617 scaled volume;
  31. P comment 390 229 100 196617 scaled volume;
  32. P comment 226 229 100 196617 scaled volume;
  33. P comment 83 229 100 196617 scaled volume;
  34. P window linecount 2;
  35. P comment 531 618 32 196617 pan L - R;
  36. P comment 118 35 100 196617 toggle between 1-8 & 9 -19;
  37. P window linecount 1;
  38. P comment 510 29 128 196617 value of inuts 0 - 127;
  39. P user number~ 100 355 139 370 9 3 3 2 0. 0. 0 0. 250 0. 0 0 0 221 221 221 222 222 222 0 0 0;
  40. P message 82 270 49 196617 \$1 2000;
  41. P newex 88 304 50 196617 line~ 0.5;
  42. P user dial 110 537 39 39 128 1 0 0 223 270 1 1. 170 170 170 221 221 221 120 120 120 225 225 225 0 0 0 0 0 0;
  43. P window setfont "Fixedwidth Serif" 10.;
  44. N vpatcher 94 299 460 630;
  45. P window setfont "Sans Serif" 9.;
  46. P window linecount 1;
  47. P newex 113 218 32 196617 *~;
  48. P window linecount 0;
  49. P newex 39 218 36 196617 *~;
  50. P inlet 56 43 15 0;
  51. P inlet 39 43 15 0;
  52. P window setfont Times 10.;
  53. P comment 104 261 37 1310730 R Gain;
  54. P comment 31 260 37 1310730 L Gain;
  55. N comlet (signal) right channel gain;
  56. P outlet 113 246 15 0;
  57. N comlet (signal) left channel gain;
  58. P outlet 39 245 15 0;
  59. N comlet (int) MIDI panning;
  60. P inlet 98 43 15 0;
  61. P window setfont "Fixedwidth Serif" 10.;
  62. P newex 65 173 43 1441802 cycle~;
  63. P flonum 98 107 67 10 0 0 128 22 0 0 0 221 221 221 222 222 222 0 0 0;
  64. P newex 98 61 68 1441802 split 0 64;
  65. P newex 98 144 74 1441802 line~ 0.125;
  66. P message 98 125 38 1441802 \$1 20;
  67. P newex 98 82 43 1441802 / 512.;
  68. P newex 168 170 50 1441802 +~ 0.75;
  69. P newex 135 195 43 1441802 cycle~;
  70. P newex 156 82 152 1441802 expr ($i1-64)/504.+0.125;
  71. P window setfont Times 10.;
  72. P comment 113 43 67 1310730 MIDI Panning;
  73. P connect 15 0 17 0;
  74. P connect 17 0 11 0;
  75. P connect 9 0 17 1;
  76. P connect 10 0 7 0;
  77. P connect 7 0 4 0;
  78. P fasten 1 0 8 0 161 103 103 103;
  79. P connect 4 0 8 0;
  80. P connect 8 0 5 0;
  81. P connect 5 0 6 0;
  82. P connect 6 0 9 1;
  83. P fasten 16 0 18 0 61 204 118 204;
  84. P connect 18 0 12 0;
  85. P connect 2 0 18 1;
  86. P connect 7 1 1 0;
  87. P fasten 6 0 3 0 103 165 173 165;
  88. P connect 3 0 2 1;
  89. P pop;
  90. P hidden newobj 39 596 77 1441802 p Balance~;
  91. P toggle 26 384 15 0;
  92. P window setfont "Sans Serif" 9.;
  93. P message 26 404 43 196617 loop \$1;
  94. P newex 25 351 51 196617 trigger 1;
  95. P newex 25 325 46 196617 select 1;
  96. P newex 25 296 40 196617 change;
  97. P flonum 47 229 35 9 0 0 0 3 0 0 0 221 221 221 222 222 222 0 0 0;
  98. P newex 47 211 87 196617 scale 0 127 0. 6.;
  99. P toggle 25 272 15 0;
  100. P newex 26 246 30 196617 > 10;
  101. P number 27 183 35 9 0 0 0 3 0 0 0 221 221 221 222 222 222 0 0 0;
  102. P hidden newex 39 557 35 196617 *~ 1.;
  103. P message 46 475 14 196617 1;
  104. B color 5;
  105. P hidden newex 107 456 48 196617 loadbang;
  106. N sfplay~ 2 120960 0 ;
  107. P newobj 39 509 53 196617 sfplay~ 2;
  108. P message 62 475 121 196617 open CricketsCalming.aif;
  109. P user number~ 1126 350 1165 365 9 3 3 2 0. 0. 0 0. 250 0. 0 0 0 221 221 221 222 222 222 0 0 0;
  110. P message 1108 265 49 196617 \$1 2000;
  111. P newex 1114 299 50 196617 line~ 0.5;
  112. P user number~ 988 350 1027 365 9 3 3 2 0. 0. 0 0. 250 0. 0 0 0 221 221 221 222 222 222 0 0 0;
  113. P message 972 264 49 196617 \$1 2000;
  114. P newex 976 299 50 196617 line~ 0.5;
  115. P user number~ 822 352 861 367 9 3 3 2 0. 0. 0 0. 250 0. 0 0 0 221 221 221 222 222 222 0 0 0;
  116. P message 804 267 49 196617 \$1 2000;
  117. P newex 810 301 50 196617 line~ 0.5;
  118. P user number~ 688 353 727 368 9 3 3 2 0. 0. 0 0. 250 0. 0 0 0 221 221 221 222 222 222 0 0 0;
  119. P message 670 268 49 196617 \$1 2000;
  120. P newex 676 302 50 196617 line~ 0.5;
  121. P user number~ 536 356 575 371 9 3 3 2 0. 0. 0 0. 250 0. 0 0 0 221 221 221 222 222 222 0 0 0;
  122. P message 518 271 49 196617 \$1 2000;
  123. P newex 524 305 50 196617 line~ 0.5;
  124. P user number~ 240 355 279 370 9 3 3 2 0. 0. 0 0. 250 0. 0 0 0 221 221 221 222 222 222 0 0 0;
  125. P message 222 270 49 196617 \$1 2000;
  126. P newex 228 304 50 196617 line~ 0.5;
  127. P user number~ 394 354 433 369 9 3 3 2 0. 0. 0 0. 250 0. 0 0 0 221 221 221 222 222 222 0 0 0;
  128. P message 376 269 49 196617 \$1 2000;
  129. P newex 382 303 50 196617 line~ 0.5;
  130. P user ezdac~ 527 761 571 794 0;
  131. P user dial 527 666 39 39 128 1 0 0 223 270 1 1. 170 170 170 221 221 221 120 120 120 225 225 225 0 0 0 0 0 0;
  132. P window setfont "Fixedwidth Serif" 10.;
  133. N vpatcher 94 299 460 630;
  134. P window setfont "Sans Serif" 9.;
  135. P window linecount 1;
  136. P newex 113 218 32 196617 *~;
  137. P window linecount 0;
  138. P newex 39 218 36 196617 *~;
  139. P inlet 56 43 15 0;
  140. P inlet 39 43 15 0;
  141. P window setfont Times 10.;
  142. P comment 104 261 37 1310730 R Gain;
  143. P comment 31 260 37 1310730 L Gain;
  144. N comlet (signal) right channel gain;
  145. P outlet 113 246 15 0;
  146. N comlet (signal) left channel gain;
  147. P outlet 39 245 15 0;
  148. N comlet (int) MIDI panning;
  149. P inlet 98 43 15 0;
  150. P window setfont "Fixedwidth Serif" 10.;
  151. P newex 65 173 43 1441802 cycle~;
  152. P flonum 98 107 67 10 0 0 128 22 0 0 0 221 221 221 222 222 222 0 0 0;
  153. P newex 98 61 68 1441802 split 0 64;
  154. P newex 98 144 74 1441802 line~ 0.125;
  155. P message 98 125 38 1441802 \$1 20;
  156. P newex 98 82 43 1441802 / 512.;
  157. P newex 168 170 50 1441802 +~ 0.75;
  158. P newex 135 195 43 1441802 cycle~;
  159. P newex 156 82 152 1441802 expr ($i1-64)/504.+0.125;
  160. P window setfont Times 10.;
  161. P comment 113 43 67 1310730 MIDI Panning;
  162. P connect 15 0 17 0;
  163. P connect 17 0 11 0;
  164. P connect 9 0 17 1;
  165. P connect 10 0 7 0;
  166. P connect 7 0 4 0;
  167. P connect 4 0 8 0;
  168. P fasten 1 0 8 0 161 103 103 103;
  169. P connect 8 0 5 0;
  170. P connect 5 0 6 0;
  171. P connect 6 0 9 1;
  172. P fasten 16 0 18 0 61 204 118 204;
  173. P connect 18 0 12 0;
  174. P connect 2 0 18 1;
  175. P connect 7 1 1 0;
  176. P fasten 6 0 3 0 103 165 173 165;
  177. P connect 3 0 2 1;
  178. P pop;
  179. P hidden newobj 511 721 77 1441802 p Balance~;
  180. P window setfont "Sans Serif" 9.;
  181. P hidden message 662 59 20 196617 64;
  182. P hidden button 643 59 15 0;
  183. P message 529 645 35 196617 center;
  184. B color 4;
  185. P hidden newex 642 41 45 196617 loadbang;
  186. P user dial 693 532 39 39 128 1 0 0 223 270 1 1. 170 170 170 221 221 221 120 120 120 225 225 225 0 0 0 0 0 0;
  187. P window setfont "Fixedwidth Serif" 10.;
  188. N vpatcher 94 299 460 630;
  189. P window setfont "Sans Serif" 9.;
  190. P window linecount 1;
  191. P newex 113 218 32 196617 *~;
  192. P window linecount 0;
  193. P newex 39 218 36 196617 *~;
  194. P inlet 56 43 15 0;
  195. P inlet 39 43 15 0;
  196. P window setfont Times 10.;
  197. P comment 104 261 37 1310730 R Gain;
  198. P comment 31 260 37 1310730 L Gain;
  199. N comlet (signal) right channel gain;
  200. P outlet 113 246 15 0;
  201. N comlet (signal) left channel gain;
  202. P outlet 39 245 15 0;
  203. N comlet (int) MIDI panning;
  204. P inlet 98 43 15 0;
  205. P window setfont "Fixedwidth Serif" 10.;
  206. P newex 65 173 43 1441802 cycle~;
  207. P flonum 98 107 67 10 0 0 128 22 0 0 0 221 221 221 222 222 222 0 0 0;
  208. P newex 98 61 68 1441802 split 0 64;
  209. P newex 98 144 74 1441802 line~ 0.125;
  210. P message 98 125 38 1441802 \$1 20;
  211. P newex 98 82 43 1441802 / 512.;
  212. P newex 168 170 50 1441802 +~ 0.75;
  213. P newex 135 195 43 1441802 cycle~;
  214. P newex 156 82 152 1441802 expr ($i1-64)/504.+0.125;
  215. P window setfont Times 10.;
  216. P comment 113 43 67 1310730 MIDI Panning;
  217. P connect 15 0 17 0;
  218. P connect 17 0 11 0;
  219. P connect 9 0 17 1;
  220. P connect 10 0 7 0;
  221. P connect 7 0 4 0;
  222. P connect 4 0 8 0;
  223. P fasten 1 0 8 0 161 103 103 103;
  224. P connect 8 0 5 0;
  225. P connect 5 0 6 0;
  226. P connect 6 0 9 1;
  227. P fasten 16 0 18 0 61 204 118 204;
  228. P connect 18 0 12 0;
  229. P connect 2 0 18 1;
  230. P connect 7 1 1 0;
  231. P fasten 6 0 3 0 103 165 173 165;
  232. P connect 3 0 2 1;
  233. P pop;
  234. P hidden newobj 622 596 77 1441802 p Balance~;
  235. P user dial 838 535 39 39 128 1 0 0 223 270 1 1. 170 170 170 221 221 221 120 120 120 225 225 225 0 0 0 0 0 0;
  236. N vpatcher 94 299 460 630;
  237. P window setfont "Sans Serif" 9.;
  238. P window linecount 1;
  239. P newex 113 218 32 196617 *~;
  240. P window linecount 0;
  241. P newex 39 218 36 196617 *~;
  242. P inlet 56 43 15 0;
  243. P inlet 39 43 15 0;
  244. P window setfont Times 10.;
  245. P comment 104 261 37 1310730 R Gain;
  246. P comment 31 260 37 1310730 L Gain;
  247. N comlet (signal) right channel gain;
  248. P outlet 113 246 15 0;
  249. N comlet (signal) left channel gain;
  250. P outlet 39 245 15 0;
  251. N comlet (int) MIDI panning;
  252. P inlet 98 43 15 0;
  253. P window setfont "Fixedwidth Serif" 10.;
  254. P newex 65 173 43 1441802 cycle~;
  255. P flonum 98 107 67 10 0 0 128 22 0 0 0 221 221 221 222 222 222 0 0 0;
  256. P newex 98 61 68 1441802 split 0 64;
  257. P newex 98 144 74 1441802 line~ 0.125;
  258. P message 98 125 38 1441802 \$1 20;
  259. P newex 98 82 43 1441802 / 512.;
  260. P newex 168 170 50 1441802 +~ 0.75;
  261. P newex 135 195 43 1441802 cycle~;
  262. P newex 156 82 152 1441802 expr ($i1-64)/504.+0.125;
  263. P window setfont Times 10.;
  264. P comment 113 43 67 1310730 MIDI Panning;
  265. P connect 15 0 17 0;
  266. P connect 17 0 11 0;
  267. P connect 9 0 17 1;
  268. P connect 10 0 7 0;
  269. P connect 7 0 4 0;
  270. P fasten 1 0 8 0 161 103 103 103;
  271. P connect 4 0 8 0;
  272. P connect 8 0 5 0;
  273. P connect 5 0 6 0;
  274. P connect 6 0 9 1;
  275. P fasten 16 0 18 0 61 204 118 204;
  276. P connect 18 0 12 0;
  277. P connect 2 0 18 1;
  278. P connect 7 1 1 0;
  279. P fasten 6 0 3 0 103 165 173 165;
  280. P connect 3 0 2 1;
  281. P pop;
  282. P hidden newobj 767 596 77 1441802 p Balance~;
  283. P user dial 1117 533 39 39 128 1 0 0 223 270 1 1. 170 170 170 221 221 221 120 120 120 225 225 225 0 0 0 0 0 0;
  284. N vpatcher 94 299 460 630;
  285. P window setfont "Sans Serif" 9.;
  286. P window linecount 1;
  287. P newex 113 218 32 196617 *~;
  288. P window linecount 0;
  289. P newex 39 218 36 196617 *~;
  290. P inlet 56 43 15 0;
  291. P inlet 39 43 15 0;
  292. P window setfont Times 10.;
  293. P comment 104 261 37 1310730 R Gain;
  294. P comment 31 260 37 1310730 L Gain;
  295. N comlet (signal) right channel gain;
  296. P outlet 113 246 15 0;
  297. N comlet (signal) left channel gain;
  298. P outlet 39 245 15 0;
  299. N comlet (int) MIDI panning;
  300. P inlet 98 43 15 0;
  301. P window setfont "Fixedwidth Serif" 10.;
  302. P newex 65 173 43 1441802 cycle~;
  303. P flonum 98 107 67 10 0 0 128 22 0 0 0 221 221 221 222 222 222 0 0 0;
  304. P newex 98 61 68 1441802 split 0 64;
  305. P newex 98 144 74 1441802 line~ 0.125;
  306. P message 98 125 38 1441802 \$1 20;
  307. P newex 98 82 43 1441802 / 512.;
  308. P newex 168 170 50 1441802 +~ 0.75;
  309. P newex 135 195 43 1441802 cycle~;
  310. P newex 156 82 152 1441802 expr ($i1-64)/504.+0.125;
  311. P window setfont Times 10.;
  312. P comment 113 43 67 1310730 MIDI Panning;
  313. P connect 15 0 17 0;
  314. P connect 17 0 11 0;
  315. P connect 9 0 17 1;
  316. P connect 10 0 7 0;
  317. P connect 7 0 4 0;
  318. P connect 4 0 8 0;
  319. P fasten 1 0 8 0 161 103 103 103;
  320. P connect 8 0 5 0;
  321. P connect 5 0 6 0;
  322. P connect 6 0 9 1;
  323. P fasten 16 0 18 0 61 204 118 204;
  324. P connect 18 0 12 0;
  325. P connect 2 0 18 1;
  326. P connect 7 1 1 0;
  327. P fasten 6 0 3 0 103 165 173 165;
  328. P connect 3 0 2 1;
  329. P pop;
  330. P hidden newobj 1048 596 77 1441802 p Balance~;
  331. P window setfont "Sans Serif" 9.;
  332. P hidden newex 915 555 35 196617 *~ 1.;
  333. P user dial 978 535 40 40 128 1 0 0 223 270 1 1. 170 170 170 221 221 221 120 120 120 225 225 225 0 0 0 0 0 0;
  334. P window setfont "Fixedwidth Serif" 10.;
  335. N vpatcher 94 299 460 630;
  336. P window setfont "Sans Serif" 9.;
  337. P window linecount 1;
  338. P newex 113 218 32 196617 *~;
  339. P window linecount 0;
  340. P newex 39 218 36 196617 *~;
  341. P inlet 56 43 15 0;
  342. P inlet 39 43 15 0;
  343. P window setfont Times 10.;
  344. P comment 104 261 37 1310730 R Gain;
  345. P comment 31 260 37 1310730 L Gain;
  346. N comlet (signal) right channel gain;
  347. P outlet 113 246 15 0;
  348. N comlet (signal) left channel gain;
  349. P outlet 39 245 15 0;
  350. N comlet (int) MIDI panning;
  351. P inlet 98 43 15 0;
  352. P window setfont "Fixedwidth Serif" 10.;
  353. P newex 65 173 43 1441802 cycle~;
  354. P flonum 98 107 67 10 0 0 128 22 0 0 0 221 221 221 222 222 222 0 0 0;
  355. P newex 98 61 68 1441802 split 0 64;
  356. P newex 98 144 74 1441802 line~ 0.125;
  357. P message 98 125 38 1441802 \$1 20;
  358. P newex 98 82 43 1441802 / 512.;
  359. P newex 168 170 50 1441802 +~ 0.75;
  360. P newex 135 195 43 1441802 cycle~;
  361. P newex 156 82 152 1441802 expr ($i1-64)/504.+0.125;
  362. P window setfont Times 10.;
  363. P comment 113 43 67 1310730 MIDI Panning;
  364. P connect 15 0 17 0;
  365. P connect 17 0 11 0;
  366. P connect 9 0 17 1;
  367. P connect 10 0 7 0;
  368. P connect 7 0 4 0;
  369. P fasten 1 0 8 0 161 103 103 103;
  370. P connect 4 0 8 0;
  371. P connect 8 0 5 0;
  372. P connect 5 0 6 0;
  373. P connect 6 0 9 1;
  374. P fasten 16 0 18 0 61 204 118 204;
  375. P connect 18 0 12 0;
  376. P connect 2 0 18 1;
  377. P connect 7 1 1 0;
  378. P fasten 6 0 3 0 103 165 173 165;
  379. P connect 3 0 2 1;
  380. P pop;
  381. P hidden newobj 907 596 77 1441802 p Balance~;
  382. P toggle 1055 379 15 0;
  383. P window setfont "Sans Serif" 9.;
  384. P message 1055 405 43 196617 loop \$1;
  385. P newex 1055 350 51 196617 trigger 1;
  386. P newex 1055 323 46 196617 select 1;
  387. P newex 1055 295 40 196617 change;
  388. P flonum 1080 229 35 9 0 0 0 3 0 0 0 221 221 221 222 222 222 0 0 0;
  389. P newex 1079 211 87 196617 scale 0 127 0. 6.;
  390. P toggle 1055 271 15 0;
  391. P newex 1055 247 30 196617 > 20;
  392. P number 1053 183 35 9 0 0 0 3 0 0 0 221 221 221 222 222 222 0 0 0;
  393. P toggle 915 378 15 0;
  394. P message 915 404 43 196617 loop \$1;
  395. P newex 915 349 51 196617 trigger 1;
  396. P newex 915 323 46 196617 select 1;
  397. P newex 915 294 40 196617 change;
  398. P flonum 937 229 35 9 0 0 0 3 0 0 0 221 221 221 222 222 222 0 0 0;
  399. P newex 937 211 87 196617 scale 0 127 0. 6.;
  400. P toggle 915 270 15 0;
  401. P newex 915 246 30 196617 > 20;
  402. P number 916 183 35 9 0 0 0 3 0 0 0 221 221 221 222 222 222 0 0 0;
  403. P toggle 754 382 15 0;
  404. P message 754 402 43 196617 loop \$1;
  405. P newex 754 347 51 196617 trigger 1;
  406. P newex 754 321 46 196617 select 1;
  407. P newex 754 292 40 196617 change;
  408. P flonum 776 229 35 9 0 0 0 3 0 0 0 221 221 221 222 222 222 0 0 0;
  409. P newex 775 211 87 196617 scale 0 127 0. 6.;
  410. P toggle 754 268 15 0;
  411. P newex 754 244 30 196617 > 20;
  412. P number 751 185 35 9 0 0 0 3 0 0 0 221 221 221 222 222 222 0 0 0;
  413. P toggle 619 375 15 0;
  414. P message 620 398 43 196617 loop \$1;
  415. P newex 620 345 51 196617 trigger 1;
  416. P newex 620 316 46 196617 select 1;
  417. P newex 620 288 40 196617 change;
  418. P flonum 636 229 35 9 0 0 0 3 0 0 0 221 221 221 222 222 222 0 0 0;
  419. P newex 636 211 87 196617 scale 0 127 0. 6.;
  420. P toggle 621 268 15 0;
  421. P newex 620 245 30 196617 > 20;
  422. P number 616 183 34 9 0 0 0 3 0 0 0 221 221 221 222 222 222 0 0 0;
  423. P hidden newex 1058 557 35 196617 *~ 1.;
  424. P hidden newex 767 555 35 196617 *~ 1.;
  425. P message 1051 475 14 196617 1;
  426. B color 5;
  427. P message 920 475 13 196617 1;
  428. B color 5;
  429. P message 774 475 14 196617 1;
  430. B color 5;
  431. P hidden newex 824 450 48 196617 loadbang;
  432. P message 621 475 14 196617 1;
  433. B color 5;
  434. N sfplay~ 2 120960 0 ;
  435. P newobj 1055 509 53 196617 sfplay~ 2;
  436. N sfplay~ 2 120960 0 ;
  437. P newobj 915 509 53 196617 sfplay~ 2;
  438. N sfplay~ 2 120960 0 ;
  439. P newobj 767 509 53 196617 sfplay~ 2;
  440. N sfplay~ 2 120960 0 ;
  441. P newobj 626 509 53 196617 sfplay~ 2;
  442. P hidden newex 622 559 35 196617 *~ 1.;
  443. P message 1068 475 95 196617 open 4thLayer2.aif;
  444. P message 937 475 90 196617 open 3rdLayer.aif;
  445. P message 797 475 90 196617 open 2ndLayer.aif;
  446. P message 637 475 90 196617 open SynthPad.aif;
  447. P user dial 250 537 39 39 128 1 0 0 223 270 1 1. 170 170 170 221 221 221 120 120 120 225 225 225 0 0 0 0 0 0;
  448. P window setfont "Fixedwidth Serif" 10.;
  449. N vpatcher 94 299 460 630;
  450. P window setfont "Sans Serif" 9.;
  451. P window linecount 1;
  452. P newex 113 218 32 196617 *~;
  453. P window linecount 0;
  454. P newex 39 218 36 196617 *~;
  455. P inlet 56 43 15 0;
  456. P inlet 39 43 15 0;
  457. P window setfont Times 10.;
  458. P comment 104 261 37 1310730 R Gain;
  459. P comment 31 260 37 1310730 L Gain;
  460. N comlet (signal) right channel gain;
  461. P outlet 113 246 15 0;
  462. N comlet (signal) left channel gain;
  463. P outlet 39 245 15 0;
  464. N comlet (int) MIDI panning;
  465. P inlet 98 43 15 0;
  466. P window setfont "Fixedwidth Serif" 10.;
  467. P newex 65 173 43 1441802 cycle~;
  468. P flonum 98 107 67 10 0 0 128 22 0 0 0 221 221 221 222 222 222 0 0 0;
  469. P newex 98 61 68 1441802 split 0 64;
  470. P newex 98 144 74 1441802 line~ 0.125;
  471. P message 98 125 38 1441802 \$1 20;
  472. P newex 98 82 43 1441802 / 512.;
  473. P newex 168 170 50 1441802 +~ 0.75;
  474. P newex 135 195 43 1441802 cycle~;
  475. P newex 156 82 152 1441802 expr ($i1-64)/504.+0.125;
  476. P window setfont Times 10.;
  477. P comment 113 43 67 1310730 MIDI Panning;
  478. P connect 15 0 17 0;
  479. P connect 17 0 11 0;
  480. P connect 9 0 17 1;
  481. P connect 10 0 7 0;
  482. P connect 7 0 4 0;
  483. P connect 4 0 8 0;
  484. P fasten 1 0 8 0 161 103 103 103;
  485. P connect 8 0 5 0;
  486. P connect 5 0 6 0;
  487. P connect 6 0 9 1;
  488. P fasten 16 0 18 0 61 204 118 204;
  489. P connect 18 0 12 0;
  490. P connect 2 0 18 1;
  491. P connect 7 1 1 0;
  492. P fasten 6 0 3 0 103 165 173 165;
  493. P connect 3 0 2 1;
  494. P pop;
  495. P hidden newobj 179 596 77 1441802 p Balance~;
  496. P user dial 531 535 39 39 128 1 0 0 223 270 1 1. 170 170 170 221 221 221 120 120 120 225 225 225 0 0 0 0 0 0;
  497. N vpatcher 94 299 460 630;
  498. P window setfont "Sans Serif" 9.;
  499. P window linecount 1;
  500. P newex 113 218 32 196617 *~;
  501. P window linecount 0;
  502. P newex 39 218 36 196617 *~;
  503. P inlet 56 43 15 0;
  504. P inlet 39 43 15 0;
  505. P window setfont Times 10.;
  506. P comment 104 261 37 1310730 R Gain;
  507. P comment 31 260 37 1310730 L Gain;
  508. N comlet (signal) right channel gain;
  509. P outlet 113 246 15 0;
  510. N comlet (signal) left channel gain;
  511. P outlet 39 245 15 0;
  512. N comlet (int) MIDI panning;
  513. P inlet 98 43 15 0;
  514. P window setfont "Fixedwidth Serif" 10.;
  515. P newex 65 173 43 1441802 cycle~;
  516. P flonum 98 107 67 10 0 0 128 22 0 0 0 221 221 221 222 222 222 0 0 0;
  517. P newex 98 61 68 1441802 split 0 64;
  518. P newex 98 144 74 1441802 line~ 0.125;
  519. P message 98 125 38 1441802 \$1 20;
  520. P newex 98 82 43 1441802 / 512.;
  521. P newex 168 170 50 1441802 +~ 0.75;
  522. P newex 135 195 43 1441802 cycle~;
  523. P newex 156 82 152 1441802 expr ($i1-64)/504.+0.125;
  524. P window setfont Times 10.;
  525. P comment 113 43 67 1310730 MIDI Panning;
  526. P connect 15 0 17 0;
  527. P connect 17 0 11 0;
  528. P connect 9 0 17 1;
  529. P connect 10 0 7 0;
  530. P connect 7 0 4 0;
  531. P fasten 1 0 8 0 161 103 103 103;
  532. P connect 4 0 8 0;
  533. P connect 8 0 5 0;
  534. P connect 5 0 6 0;
  535. P connect 6 0 9 1;
  536. P fasten 16 0 18 0 61 204 118 204;
  537. P connect 18 0 12 0;
  538. P connect 2 0 18 1;
  539. P connect 7 1 1 0;
  540. P fasten 6 0 3 0 103 165 173 165;
  541. P connect 3 0 2 1;
  542. P pop;
  543. P hidden newobj 457 596 77 1441802 p Balance~;
  544. P window setfont "Sans Serif" 9.;
  545. P hidden newex 327 557 35 196617 *~ 1.;
  546. P user dial 390 537 40 40 128 1 0 0 223 270 1 1. 170 170 170 221 221 221 120 120 120 225 225 225 0 0 0 0 0 0;
  547. P window setfont "Fixedwidth Serif" 10.;
  548. N vpatcher 94 299 460 630;
  549. P window setfont "Sans Serif" 9.;
  550. P window linecount 1;
  551. P newex 113 218 32 196617 *~;
  552. P window linecount 0;
  553. P newex 39 218 36 196617 *~;
  554. P inlet 56 43 15 0;
  555. P inlet 39 43 15 0;
  556. P window setfont Times 10.;
  557. P comment 104 261 37 1310730 R Gain;
  558. P comment 31 260 37 1310730 L Gain;
  559. N comlet (signal) right channel gain;
  560. P outlet 113 246 15 0;
  561. N comlet (signal) left channel gain;
  562. P outlet 39 245 15 0;
  563. N comlet (int) MIDI panning;
  564. P inlet 98 43 15 0;
  565. P window setfont "Fixedwidth Serif" 10.;
  566. P newex 65 173 43 1441802 cycle~;
  567. P flonum 98 107 67 10 0 0 128 22 0 0 0 221 221 221 222 222 222 0 0 0;
  568. P newex 98 61 68 1441802 split 0 64;
  569. P newex 98 144 74 1441802 line~ 0.125;
  570. P message 98 125 38 1441802 \$1 20;
  571. P newex 98 82 43 1441802 / 512.;
  572. P newex 168 170 50 1441802 +~ 0.75;
  573. P newex 135 195 43 1441802 cycle~;
  574. P newex 156 82 152 1441802 expr ($i1-64)/504.+0.125;
  575. P window setfont Times 10.;
  576. P comment 113 43 67 1310730 MIDI Panning;
  577. P connect 15 0 17 0;
  578. P connect 17 0 11 0;
  579. P connect 9 0 17 1;
  580. P connect 10 0 7 0;
  581. P connect 7 0 4 0;
  582. P connect 4 0 8 0;
  583. P fasten 1 0 8 0 161 103 103 103;
  584. P connect 8 0 5 0;
  585. P connect 5 0 6 0;
  586. P connect 6 0 9 1;
  587. P fasten 16 0 18 0 61 204 118 204;
  588. P connect 18 0 12 0;
  589. P connect 2 0 18 1;
  590. P connect 7 1 1 0;
  591. P fasten 6 0 3 0 103 165 173 165;
  592. P connect 3 0 2 1;
  593. P pop;
  594. P hidden newobj 319 596 77 1441802 p Balance~;
  595. P button 551 94 13 0;
  596. P button 564 94 13 0;
  597. P button 525 94 13 0;
  598. P button 538 94 13 0;
  599. P button 499 94 13 0;
  600. P button 514 94 13 0;
  601. P button 486 94 13 0;
  602. P button 368 94 13 0;
  603. P button 461 94 13 0;
  604. P button 473 94 13 0;
  605. P button 435 94 13 0;
  606. P button 448 94 13 0;
  607. P button 408 94 13 0;
  608. P button 422 94 13 0;
  609. P button 382 94 13 0;
  610. P toggle 467 381 15 0;
  611. P window setfont "Sans Serif" 9.;
  612. P message 467 410 43 196617 loop \$1;
  613. P newex 467 352 51 196617 trigger 1;
  614. P newex 467 325 46 196617 select 1;
  615. P newex 467 297 40 196617 change;
  616. P flonum 491 229 35 9 0 0 0 3 0 0 0 221 221 221 222 222 222 0 0 0;
  617. P newex 491 211 87 196617 scale 0 127 0. 6.;
  618. P toggle 467 273 15 0;
  619. P newex 467 249 30 196617 > 10;
  620. P number 465 183 35 9 0 0 0 3 0 0 0 221 221 221 222 222 222 0 0 0;
  621. P toggle 327 380 15 0;
  622. P message 317 411 43 196617 loop \$1;
  623. P newex 327 351 51 196617 trigger 1;
  624. P newex 327 325 46 196617 select 1;
  625. P newex 327 296 40 196617 change;
  626. P flonum 349 229 35 9 0 0 0 3 0 0 0 221 221 221 222 222 222 0 0 0;
  627. P newex 349 211 87 196617 scale 0 127 0. 6.;
  628. P toggle 327 272 15 0;
  629. P newex 327 248 30 196617 > 10;
  630. P number 328 183 35 9 0 0 0 3 0 0 0 221 221 221 222 222 222 0 0 0;
  631. P toggle 166 384 15 0;
  632. P message 166 404 43 196617 loop \$1;
  633. P newex 166 349 51 196617 trigger 1;
  634. P newex 166 323 46 196617 select 1;
  635. P newex 166 294 40 196617 change;
  636. P flonum 189 229 35 9 0 0 0 3 0 0 0 221 221 221 222 222 222 0 0 0;
  637. P newex 187 211 87 196617 scale 0 127 0. 6.;
  638. P toggle 166 270 15 0;
  639. P newex 166 246 30 196617 > 10;
  640. P number 166 183 35 9 0 0 0 3 0 0 0 221 221 221 222 222 222 0 0 0;
  641. P button 394 94 13 0;
  642. P hidden newex 195 708 92 196617 if $i1 < 50 then 1;
  643. P number 564 39 35 9 0 0 1 3 0 0 0 255 92 174 222 222 222 0 0 0;
  644. P hidden newex 470 559 35 196617 *~ 1.;
  645. P hidden newex 179 557 35 196617 *~ 1.;
  646. P message 459 475 14 196617 1;
  647. B color 5;
  648. P message 332 475 13 196617 1;
  649. B color 5;
  650. P message 190 475 14 196617 1;
  651. B color 5;
  652. P hidden newex 236 452 48 196617 loadbang;
  653. N sfplay~ 2 120960 0 ;
  654. P newobj 463 509 53 196617 sfplay~ 2;
  655. N sfplay~ 2 120960 0 ;
  656. P newobj 327 509 53 196617 sfplay~ 2;
  657. N sfplay~ 2 120960 0 ;
  658. P newobj 179 509 53 196617 sfplay~ 2;
  659. P newex 346 61 258 196617 gate 16;
  660. P number 345 42 35 9 1 8 3 3 0 0 0 255 92 174 222 222 222 0 0 0;
  661. P newex 252 42 50 196617 ctlin;
  662. B color 5;
  663. P message 479 475 129 196617 open RainforestAtNight.aif;
  664. P message 349 475 104 196617 open Kookaburras.aif;
  665. P message 206 475 110 196617 open Froggie_Night.aif;
  666. P comment 343 27 141 196617 inputs 1 thru 8 & 9 thru 16;
  667. P newex 815 248 35 196617 * 1.5;
  668. P hidden connect 162 0 87 1;
  669. P hidden connect 162 0 164 0;
  670. P hidden connect 140 0 181 0;
  671. P hidden connect 140 0 71 0;
  672. P hidden connect 140 0 66 0;
  673. P hidden connect 140 0 142 0;
  674. P hidden connect 140 0 69 0;
  675. P hidden connect 140 0 136 0;
  676. P hidden connect 140 0 134 0;
  677. P hidden connect 140 0 129 0;
  678. P hidden connect 140 0 132 0;
  679. P connect 7 12 62 0;
  680. P hidden connect 7 12 132 0;
  681. P hidden connect 132 0 131 2;
  682. P connect 163 0 162 0;
  683. P connect 122 0 163 0;
  684. P hidden connect 209 0 206 1;
  685. P hidden connect 87 0 131 0;
  686. P hidden connect 87 0 131 1;
  687. P connect 121 0 122 0;
  688. P connect 118 0 119 0;
  689. P connect 118 0 121 0;
  690. P hidden connect 82 0 72 0;
  691. P hidden connect 82 0 73 0;
  692. P hidden connect 82 0 74 0;
  693. P hidden connect 82 0 75 0;
  694. P hidden connect 80 1 87 0;
  695. P hidden connect 80 0 87 0;
  696. P hidden fasten 75 0 80 0 1073 497 1060 497;
  697. P hidden fasten 85 0 80 0 1056 496 1060 496;
  698. P hidden connect 126 0 80 0;
  699. P connect 127 0 126 0;
  700. P hidden connect 125 0 85 0;
  701. P connect 125 0 127 0;
  702. P connect 124 0 125 0;
  703. P connect 123 0 124 0;
  704. P connect 120 0 123 0;
  705. P connect 119 0 120 0;
  706. P hidden connect 212 0 170 0;
  707. P hidden connect 212 0 20 0;
  708. P hidden connect 212 0 30 0;
  709. P hidden connect 212 0 40 0;
  710. P hidden connect 212 0 88 0;
  711. P hidden connect 212 0 98 0;
  712. P hidden connect 212 0 108 0;
  713. P hidden connect 212 0 118 0;
  714. P connect 7 11 59 0;
  715. P hidden connect 7 11 118 0;
  716. P hidden connect 203 0 208 0;
  717. P hidden connect 208 0 206 0;
  718. P hidden connect 201 0 203 0;
  719. P hidden connect 159 0 130 1;
  720. P hidden connect 159 0 161 0;
  721. P connect 112 0 160 0;
  722. P connect 112 0 196 0;
  723. P connect 7 13 61 0;
  724. P hidden connect 7 13 198 0;
  725. P hidden connect 7 13 129 0;
  726. P connect 196 0 159 0;
  727. P connect 160 0 159 0;
  728. P hidden connect 129 0 128 2;
  729. P hidden connect 206 0 197 0;
  730. P hidden connect 199 0 201 0;
  731. P hidden connect 130 0 128 0;
  732. P hidden connect 130 0 128 1;
  733. P connect 111 0 112 0;
  734. P connect 108 0 109 0;
  735. P connect 108 0 111 0;
  736. P hidden connect 197 0 205 0;
  737. P hidden connect 197 0 202 0;
  738. P connect 115 0 117 0;
  739. P hidden connect 115 0 84 0;
  740. P connect 7 10 60 0;
  741. P hidden connect 7 10 199 0;
  742. P hidden connect 7 10 108 0;
  743. P hidden connect 79 1 130 0;
  744. P hidden connect 79 0 130 0;
  745. P hidden fasten 84 0 79 0 925 499 920 499;
  746. P hidden fasten 74 0 79 0 942 499 920 499;
  747. P hidden connect 116 0 79 0;
  748. P connect 117 0 116 0;
  749. P connect 114 0 115 0;
  750. P connect 113 0 114 0;
  751. P connect 110 0 113 0;
  752. P connect 109 0 110 0;
  753. P hidden connect 200 0 198 0;
  754. P hidden connect 204 0 198 0;
  755. P hidden connect 202 0 200 0;
  756. P connect 7 15 63 0;
  757. P hidden connect 7 15 134 0;
  758. P hidden connect 134 0 133 2;
  759. P hidden connect 156 0 86 1;
  760. P hidden connect 156 0 158 0;
  761. P connect 102 0 99 1;
  762. P connect 102 0 157 0;
  763. P connect 102 0 0 0;
  764. P connect 0 0 156 0;
  765. P connect 157 0 156 0;
  766. P hidden connect 86 0 133 0;
  767. P hidden connect 86 0 133 1;
  768. P connect 62 0 59 0;
  769. P hidden connect 62 0 73 0;
  770. P connect 101 0 102 0;
  771. P connect 98 0 99 0;
  772. P connect 98 0 101 0;
  773. P connect 105 0 107 0;
  774. P hidden connect 105 0 83 0;
  775. P hidden connect 78 1 86 0;
  776. P hidden connect 78 0 86 0;
  777. P hidden fasten 73 0 78 0 802 499 772 499;
  778. P hidden fasten 83 0 78 0 779 499 772 499;
  779. P hidden connect 106 0 78 0;
  780. P connect 107 0 106 0;
  781. P connect 104 0 105 0;
  782. P connect 103 0 104 0;
  783. P connect 100 0 103 0;
  784. P connect 99 0 100 0;
  785. P connect 7 9 58 0;
  786. P hidden connect 7 9 98 0;
  787. P connect 7 8 55 0;
  788. P hidden connect 7 8 136 0;
  789. P hidden connect 136 0 135 2;
  790. P hidden connect 153 0 76 1;
  791. P hidden connect 153 0 155 0;
  792. P connect 154 0 153 0;
  793. P connect 92 0 154 0;
  794. P hidden connect 139 0 140 0;
  795. P hidden connect 76 0 135 0;
  796. P hidden connect 76 0 135 1;
  797. P hidden connect 137 0 139 0;
  798. P hidden connect 138 0 139 0;
  799. P connect 91 0 92 0;
  800. P connect 88 0 89 0;
  801. P connect 88 0 91 0;
  802. P hidden fasten 72 0 77 0 642 499 631 499;
  803. P hidden fasten 81 0 77 0 626 499 631 499;
  804. P hidden connect 96 0 77 0;
  805. P hidden connect 77 1 76 0;
  806. P hidden connect 77 0 76 0;
  807. P connect 95 0 97 0;
  808. P hidden connect 95 0 81 0;
  809. P connect 89 0 90 0;
  810. P connect 97 0 96 0;
  811. P connect 94 0 95 0;
  812. P connect 93 0 94 0;
  813. P connect 90 0 93 0;
  814. P connect 7 14 64 0;
  815. P hidden connect 7 14 88 0;
  816. P hidden connect 17 0 7 1;
  817. P hidden connect 142 0 141 2;
  818. P hidden connect 180 1 141 2;
  819. P hidden connect 5 0 17 0;
  820. P lcolor 13;
  821. P hidden connect 141 1 143 1;
  822. P hidden connect 70 1 141 1;
  823. P hidden connect 65 1 141 1;
  824. P hidden connect 68 1 141 1;
  825. P hidden connect 135 1 141 1;
  826. P hidden connect 133 1 141 1;
  827. P hidden connect 128 1 141 1;
  828. P hidden connect 131 1 141 1;
  829. P hidden connect 150 0 16 1;
  830. P hidden connect 150 0 152 0;
  831. P connect 7 7 56 0;
  832. P hidden connect 7 7 69 0;
  833. P hidden connect 141 0 143 0;
  834. P connect 151 0 150 0;
  835. P hidden connect 69 0 68 2;
  836. P connect 44 0 151 0;
  837. P hidden connect 70 0 141 0;
  838. P hidden connect 65 0 141 0;
  839. P hidden connect 68 0 141 0;
  840. P hidden connect 135 0 141 0;
  841. P hidden connect 133 0 141 0;
  842. P hidden connect 128 0 141 0;
  843. P hidden connect 131 0 141 0;
  844. P hidden connect 180 0 141 0;
  845. P connect 43 0 44 0;
  846. P connect 40 0 41 0;
  847. P connect 40 0 43 0;
  848. P hidden connect 16 0 68 0;
  849. P hidden connect 16 0 68 1;
  850. P hidden connect 11 0 2 0;
  851. P hidden connect 11 0 3 0;
  852. P hidden connect 11 0 4 0;
  853. P hidden connect 10 0 16 0;
  854. P hidden connect 10 1 16 0;
  855. P connect 49 0 48 0;
  856. P hidden connect 47 0 14 0;
  857. P connect 47 0 49 0;
  858. P connect 46 0 47 0;
  859. P connect 45 0 46 0;
  860. P connect 42 0 45 0;
  861. P connect 41 0 42 0;
  862. P connect 7 3 52 0;
  863. P hidden connect 7 3 40 0;
  864. P hidden fasten 14 0 10 0 464 501 468 501;
  865. P hidden fasten 4 0 10 0 484 501 468 501;
  866. P hidden connect 48 0 10 0;
  867. P hidden connect 7 6 66 0;
  868. P connect 7 6 53 0;
  869. P hidden connect 7 5 71 0;
  870. P connect 7 5 54 0;
  871. P hidden connect 7 4 181 0;
  872. P connect 7 4 51 0;
  873. P hidden connect 5 2 6 0;
  874. P lcolor 13;
  875. P hidden connect 5 2 213 0;
  876. P hidden connect 144 0 67 1;
  877. P hidden connect 144 0 146 0;
  878. P hidden connect 7 2 30 0;
  879. P connect 7 2 19 0;
  880. P hidden connect 66 0 65 2;
  881. P connect 145 0 144 0;
  882. P hidden connect 7 1 20 0;
  883. P connect 7 1 50 0;
  884. P connect 34 0 145 0;
  885. P hidden connect 7 0 170 0;
  886. P connect 7 0 57 0;
  887. P hidden connect 67 0 65 0;
  888. P hidden connect 67 0 65 1;
  889. P connect 33 0 34 0;
  890. P connect 30 0 31 0;
  891. P connect 30 0 33 0;
  892. P hidden connect 216 0 7 0;
  893. P connect 37 0 39 0;
  894. P hidden connect 37 0 13 0;
  895. P hidden connect 9 0 67 0;
  896. P hidden connect 9 1 67 0;
  897. P hidden fasten 13 0 9 0 337 501 332 501;
  898. P hidden fasten 3 0 9 0 354 501 332 501;
  899. P hidden connect 38 0 9 0;
  900. P connect 36 0 37 0;
  901. P connect 35 0 36 0;
  902. P connect 32 0 35 0;
  903. P connect 31 0 32 0;
  904. P connect 39 0 38 0;
  905. P hidden connect 71 0 70 2;
  906. P hidden connect 147 0 15 1;
  907. P hidden connect 147 0 149 0;
  908. P connect 148 0 147 0;
  909. P connect 24 0 148 0;
  910. P hidden connect 15 0 70 0;
  911. P hidden connect 15 0 70 1;
  912. P hidden connect 6 0 214 1;
  913. P hidden connect 6 0 215 2;
  914. P connect 27 0 29 0;
  915. P hidden connect 27 0 12 0;
  916. P connect 23 0 24 0;
  917. P hidden connect 213 0 214 2;
  918. P hidden connect 213 0 215 1;
  919. P connect 20 0 21 0;
  920. P connect 20 0 23 0;
  921. P hidden connect 215 0 216 2;
  922. P hidden connect 8 0 15 0;
  923. P hidden connect 8 1 15 0;
  924. P hidden fasten 12 0 8 0 195 501 184 501;
  925. P hidden fasten 2 0 8 0 211 501 184 501;
  926. P hidden connect 28 0 8 0;
  927. P connect 29 0 28 0;
  928. P connect 26 0 27 0;
  929. P connect 25 0 26 0;
  930. P connect 22 0 25 0;
  931. P connect 21 0 22 0;
  932. P hidden connect 214 0 216 1;
  933. P hidden connect 181 0 180 2;
  934. P hidden connect 182 0 169 1;
  935. P hidden connect 182 0 184 0;
  936. P connect 183 0 182 0;
  937. P connect 174 0 183 0;
  938. P hidden connect 169 0 180 0;
  939. P hidden connect 169 0 180 1;
  940. P hidden connect 211 0 212 0;
  941. P hidden connect 210 0 211 0;
  942. P hidden connect 167 0 165 0;
  943. P connect 173 0 174 0;
  944. P connect 170 0 171 0;
  945. P connect 170 0 173 0;
  946. P connect 177 0 207 0;
  947. P connect 177 0 179 0;
  948. P hidden connect 177 0 168 0;
  949. P hidden connect 166 1 169 0;
  950. P hidden connect 166 0 169 0;
  951. P hidden connect 178 0 166 0;
  952. P hidden fasten 165 0 166 0 67 499 44 499;
  953. P hidden fasten 168 0 166 0 51 501 44 501;
  954. P connect 179 0 178 0;
  955. P connect 176 0 177 0;
  956. P connect 175 0 176 0;
  957. P connect 172 0 175 0;
  958. P connect 171 0 172 0;
  959. P window clipboard copycount 218;
Edit - History - Print - Recent Changes - Search
Page last modified on December 08, 2006, at 03:22 PM