Changes In Branch master Through [4ab39b23ec] Excluding Merge-Ins
This is equivalent to a diff from aa88358397 to 4ab39b23ec
2010-11-30
| ||
06:22 | Added a timbre instrument, doubled the length of the piece, added intros and outro check-in: de7c009e4d user: spiffytech@gmail.com tags: master | |
2010-11-29
| ||
07:15 | Chords now respect octaves check-in: 4ab39b23ec user: spiffytech@gmail.com tags: master | |
2010-11-18
| ||
19:01 | Presented this piece in class check-in: 01b7d73285 user: spiffytech@gmail.com tags: master | |
2010-11-17
| ||
07:42 | csound score lines are no longer hardcoded, but are stored with each instrument check-in: b8d35587a4 user: spiffytech@gmail.com tags: master | |
07:34 | WIP on tld: 4b95fed Added support for rest notes Leaf check-in: ec61af8387 user: spiffytech@gmail.com tags: stash | |
07:34 | index on tld: 4b95fed Added support for rest notes check-in: ef35a8e9e0 user: spiffytech@gmail.com tags: stash | |
07:30 | Added support for rest notes Closed-Leaf check-in: aa88358397 user: spiffytech@gmail.com tags: tld | |
06:57 | Note duration is now counted as fraction of a whole note, as measured based on BPM check-in: 5a35ffdd27 user: spiffytech@gmail.com tags: tld | |
Modified cfg.py from [08a2f25157] to [3046d9915b].
1 2 3 4 5 6 7 8 9 10 11 12 | #!/usr/bin/env python from __future__ import division import os import random import sys import time random.seed(time.time()) import parse def main(): key = "A" | | < | > | > | > > > > > | > > > > > > > > > > > > > > > > < | > > > > | | | > > > > > > > > > > | < | | | > | > | > > > > > > > > > > > > > > > > > > > > > > | | > | | > | | < | | | | | > | | < < | > > > > > > > > > < | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 | #!/usr/bin/env python from __future__ import division import os import random import sys import time random.seed(time.time()) import parse def main(): key = "A" bps = 60/60 tempo = 1/bps max_duration = 1 composition = { "a": { # Movement block 'a' for reuse throughout the piece # "melody": { # Instrument 'melody' # "score_line": "i2 %(time)f %(duration)f 7000 %(octave)d.%(note)s 2", # "octave": 8, # "duration": 40, # "grammars": { # Notes for this instrument to use in this piece # "u": ["I V/2 V/2 V/2 I VII, IV' x u", "I IV w w", "I VII IV u u"], # "w": ['VII I IV V VI u', 'w w'], # "x": ['VI/4 III/4 II/4 I/4 w', 'x x'], # }, # "score": "u", # }, # "rhythm": { # "score_line": "i1 %(time)f %(duration)f 7000 %(octave)d.%(note)s %(octave)d.%(note)s 0 6", # "octave": 7, # "duration": 50, # "grammars": { # "u": ['"I" "ii"/4 "ii"/4 "IV"/2 "V"2 "IV" "ii" x u', '"I" "vii" "III" y u', '"I" "v" "IV" u u'], # "w": ['"i" "VII"2 "VI"/4 "V"/4 "i"/4 "VII"2 "VI" "V" w u'], # "x": ['"III/2" "VI"/2 "III"/2 "vii"2 "i"2 "V" u'], # "y": ['"I" "vi"2 "IV" "V" y y u'], # }, # "score": "u x u y x w u", # }, "timbre": { "score_line": "i3 %(time)f %(duration)f 5000 %(octave)d.%(note)s 2 3 5 3", "octave": 5, "duration": 40, "grammars": { # Notes for this instrument to use in this piece "u": ['I2 I2 V VI I/2 IV/2 "V"2 "I"2'] }, "score": "u u u u u", }, }, "b": { # Movement block 'a' for reuse throughout the piece "melody": { # Instrument 'melody' "score_line": "i2 %(time)f %(duration)f 7000 %(octave)d.%(note)s 2", "octave": 8, "duration": 20, "grammars": { # Notes for this instrument to use in this piece "u": ['I VII V III u', "y"], "w": ['VII I IV V VI u', 'w w'], "x": ['VI/4 III/4 II/4 I/4 w', 'x x'], "y": ["III/4 VI/4 II/4 V/4 VI/4 IV/4 VII2"], }, "score": "w w x x w", }, "rhythm": { "score_line": "i1 %(time)f %(duration)f 7000 %(octave)d.%(note)s %(octave)d.%(note)s 0 6", "octave": 7, "duration": 24, "grammars": { "u": ['"I" "V" "vi" "iii" "IV" "I" "IV" "V" u u', "y"], "y": ['"I" "vi"2 "IV" "V" y y u'], }, "score": "u u y y u", }, }, "c": { # Movement block 'a' for reuse throughout the piece "melody": { # Instrument 'melody' "score_line": "i2 %(time)f %(duration)f 7000 %(octave)d.%(note)s 2", "octave": 8, "duration": 20, "grammars": { # Notes for this instrument to use in this piece "u": ['I VI/2 VI/2 IV/2 u', "y"], "w": ['VII/2 I/2 II/2 V/2 u', 'w w'], "x": ['VI/4 III/4 II/4 I/4 w', 'x x'], "y": ["III/4 VI/4 II/4 V/4 VI/4 IV/4 VII2"], }, "score": "w w x x w", }, "rhythm": { "score_line": "i1 %(time)f %(duration)f 7000 %(octave)d.%(note)s %(octave)d.%(note)s 0 6", "octave": 7, "duration": 20, "grammars": { "u": ['"I"/2 "V"/2 "vi"/2 "iii"/2 "IV"/2 "I"/2 "IV"/2 "V"/2 u u', "y"], "y": ['"I"/2 "vi" "IV"/2 "V"/2 y y u'], }, "score": "u u y y u", }, }, "d": { # Movement block 'a' for reuse throughout the piece "melody": { # Instrument 'melody' "score_line": "i2 %(time)f %(duration)f 7000 %(octave)d.%(note)s 2", "octave": 8, "duration": 20, "grammars": { # Notes for this instrument to use in this piece "u": ['I VII V III u', "y"], "w": ['VII I IV V VI u', 'w w'], "x": ['VI/4 III/4 II/4 I/4 w', 'x x'], "y": ["III/4 VI/4 II/4 V/4 VI/4 IV/4 VII2"], }, "score": "w w x x w", }, "rhythm": { "score_line": "i1 %(time)f %(duration)f 7000 %(octave)d.%(note)s %(octave)d.%(note)s 0 6", "octave": 7, "duration": 24, "grammars": { "u": ['"I" "V" "vi" "iii" "IV" "I" "IV" "V" u u', "y"], "y": ['"I" "vi"2 "IV" "V" y y u'], }, "score": "u u y y u", }, }, } max_t = 0 # max time encountered so far. Used for movement timing progression = "a b c d" for comp_name in progression.split(): comp_start_time = max_t for instr_name, instr in composition[comp_name].iteritems(): generated_score = generate_score(instr["score"], instr["grammars"]) # Fill in the scores by generating them based on the grammars # print generated_score score = parse.parse(generated_score, default_octave=instr["octave"]) # Return Node/Chord objects # Generate timestamps for the notes t = comp_start_time for note in range(len(score)): score[note].time = t score[note].duration *= tempo t += score[note].duration # print "time difference =", t-comp_start_time # print "instrument duration =",composition[comp_name][instr_name]["duration"] if (t-comp_start_time) > float(composition[comp_name][instr_name]["duration"]): # print "here" score = score[:note] break max_t = t if t > max_t else max_t composition[comp_name][instr_name]["score"] = score # Must be done after all note times keyed in, else you can't coordinate melodies with the rhythm chords print '''f1 0 512 10 1 f2 0 8192 10 .24 .64 .88 .76 .06 .5 .34 .08 f3 0 1025 10 1 ''' for comp_name in progression.split(): for instr_name, instr in composition[comp_name].iteritems(): composition[comp_name][instr_name]["score"] = transliterate_score(composition[comp_name][instr_name]["score"], key) # print "\nMovement %s instrument %s" % (comp_name, instr_name) # print composition[comp_name][instr_name]["score"] final_score = generate_csound_score(composition[comp_name][instr_name]["score"], composition[comp_name][instr_name]["score_line"]) for line in final_score: print line def make_scale(key): notes = ["A", "A#", "B", "C", "C#", "D", "D#", "E", "F", "F#", "G", "G#"] scale = [key] |
︙ | ︙ | |||
111 112 113 114 115 116 117 | while 1: found_substitution = False for key,value in grammars.iteritems(): if score.find(key) != -1: found_substitution = True while score.find(key) != -1: score = score.replace(key, random.choice(grammars[key]), 1) | > | > | < | 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 | while 1: found_substitution = False for key,value in grammars.iteritems(): if score.find(key) != -1: found_substitution = True while score.find(key) != -1: score = score.replace(key, random.choice(grammars[key]), 1) # print scoe if len(score.split()) > 2000: for k in grammars.keys(): score = score.replace(k, "") return score if found_substitution is False: break return score def transliterate_score(score, key): scale = make_scale(key) |
︙ | ︙ | |||
139 140 141 142 143 144 145 | for i in range(len(score)): if isinstance(score[i], parse.Note): score[i].value = scale[scale_conversion[score[i].value]-1] elif isinstance(score[i], parse.Chord): chord = [] root_note_index = scale.index(key) + scale_conversion[score[i].value] chord.append(scale[root_note_index]) | > | | < | | | | | 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 | for i in range(len(score)): if isinstance(score[i], parse.Note): score[i].value = scale[scale_conversion[score[i].value]-1] elif isinstance(score[i], parse.Chord): chord = [] root_note_index = scale.index(key) + scale_conversion[score[i].value] chord.append(scale[root_note_index]) chord.append(scale[(root_note_index+3) % 8]) if score[i].chord_type == "m": # Minor chords, flat the 5th chord.append(scale[(root_note_index+4) % 8]) else: chord.append(scale[(root_note_index+5) % 8]) score[i].chord = chord elif isinstance(score[i], parse.Rest): pass return score def generate_csound_score(score, score_line): csound_note_values = { "C": "00", "C#": "01", "D": "02", "D#": "03", "E": "04", "F": "05", "F#": "06", "G": "07", "G#": "08", "A": "09", "A#": "10", "B": "11", } csound_score = [] for token in score: if isinstance(token, parse.Chord): # Chords for note in token.chord: note = csound_note_values[note] csound_score.append(score_line % {"time": token.time, "octave": token.octave, "note": note, "duration": token.duration}) elif isinstance(token, parse.Note): # Individual notes note = csound_note_values[token.value] csound_score.append(score_line % {"time": token.time, "octave": token.octave, "note": note, "duration": token.duration}) return csound_score if __name__ == "__main__": main() |
Modified parse.py from [3a88b8ab43] to [9c47a4ff24].
1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/usr/bin/env python from ply import lex, yacc class Note(): def __init__(self, value, duration=.25, octave=8): self.value = value self.duration = duration self.octave = octave self.accidental = None def __repr__(self): return "Note %s %s %s" % (self.value, self.duration, self.octave) class Chord(): | | > | | | 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 | #!/usr/bin/env python from ply import lex, yacc class Note(): def __init__(self, value, duration=.25, octave=8): self.value = value self.duration = duration self.octave = octave self.accidental = None def __repr__(self): return "Note %s %s %s" % (self.value, self.duration, self.octave) class Chord(): def __init__(self, value, duration=.5, chord_type="major", octave=5): self.value = value self.duration = duration self.chord_type = chord_type self.octave = octave def __repr__(self): return "Chord %s %s %s" % (self.value, self.duration, self.chord_type, self.octave) class Rest(): def __init__(self, duration=.25): self.duration = duration def __repr__(self): return "Rest node %s" % self.duration def parse(score, default_octave=8): # Tokenize (lex) tokens = ( "NOTE_LENGTH", "BASENOTE", "ACCIDENTAL", "REST", "OCTAVE", |
︙ | ︙ | |||
111 112 113 114 115 116 117 | def p_chord(p): '''chord : QUOTE pitch QUOTE | QUOTE pitch CHORD_TYPE QUOTE ''' pitch = p[2].value pitch = pitch.upper() | | | | | < | | | 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 | def p_chord(p): '''chord : QUOTE pitch QUOTE | QUOTE pitch CHORD_TYPE QUOTE ''' pitch = p[2].value pitch = pitch.upper() p[0] = Chord(value=pitch, octave=default_octave) if len(p) > 3: p[0].chord_type = p[3] def p_accidental(p): '''pitch : ACCIDENTAL pitch ''' p[2].accidental = p[1] p[0] = p[2] def p_pitch_octave(p): '''pitch : pitch OCTAVE ''' count = len(p[2]) increment_or_decrement = 1 if p[2].startswith("'") else -1 p[1].octave += (count * increment_or_decrement) p[0] = p[1] def p_pitch(p): '''pitch : BASENOTE ''' p[0] = Note(p[1], octave=default_octave) def p_rest(p): ''' rest : REST | REST NOTE_LENGTH ''' p[0] = Rest() if len(p) > 2: p[0].duration = p[2] def p_error(p): raise Exception("Syntax error at '%s' of element type %s" % (p.value, p.type)) yacc.yacc() #print yacc.parse("GFG B'AB,, | g/2fg gab | GFG BAB | d2A AFD") return yacc.parse(score) |
Deleted test.orc version [a26a1f1a08].
|
| < < < < < < < < < < < < < < < < |
Modified test.sco from [dabc4744e4] to [1e615f9807].
|
| < | < < < < < < | | | < | < | < < < | < < < | < < < | < | | | < < < | < | < | < < < | < | < | < < < | < < < | < | < | | | < | < | < | < | < | < | < | < < < < | | < | | | < | < | < | < | < | < | < | < < < | < | < | | | | | | | < | | < < < | | < < < < < | < < < | < < | < < | < < < < < | < < < | < < < < < < < < < < < < < | < | < < | | | | < < | | < < < < < | < < < < | | | < < < < < < | | | | | | | < < | < < < < < | | < < < | | < | | < | < < < | < < < < < < < < | | | < < < < | < < < < < < < < < < | | | < | < | | | < < < | < < < < < | | | < | < < | | | < | | | | < | < < < < < < < | < | | < | < < < | < < | | | < | < | < < | < < < < < | < < | | | | < | < | < < < < < < < < < | < < < | | | | | < < < < < < < < < < | < | | | < | | | < < < | | < < < < < < < < < < | < | | | | | | < | | < | | | < | < < < | < < < | | | | < | | < < < | < < < | < < < | | | < < < < < < < < < < < | | | < < < | < < < < < < | | < < < < < < < | < < < | | | | < < < | | < < < < < | | | | | < < < < | | | | | | | | | | | | < < < < < < < < < < < < | < < < < < | | < | | < | < < | | | < < < < < < < < < | | < < < < | < < < < < | < < < < < < | | < < < < < < | | | | | | < < < | | | < | < < | | < < < < < < < < < < < < < < | | | | < | < | | < < | | | < < < < | | | < < < | | | | < < < < < < < < < < < < | > | | | < < < < | < | | < < < < | < < | < < | < < | < < < | | < < < < < < | < | | | < | | | | | < < < < | < < < < < < < < < < < | < | | < < | < | < | < < < | | < < | < | < | < | | | | | < | < < | < < < | < < < < < | < < < | < < < < < | < | < < | < < < | < < < < < | < < < | < < < < | | | | < | < | | | < | < < | < | < < | < < | | | | | | | < < | | | < < < | < < < | < | | | < < < | | | | | < | | | < | | < < < < < < < < | < < < < < | < < < | < < | < < < < < < < < < | < < < < < < < < < < | < < < < < < < < < < < < < < | | | < < < | | | < < | | | | | > > | | < < < < < < < < < < < < < < < < < < | < < | < < | | < < < < | | | | | < | | > | | | | < < < < < < | < < | | | < < < < < < | | | < < | | | | < < < | | | | < < < < | < | | | | | < | < < < < | | < < < < | < | < < < | | < | | < | < < < < < < < < | < < | | | | | | < < < < < < | < < < < | < | | < < < < < < | < < | | | < < < < < < | < < < < | | | < | < < < < | | | | | < < < < < | | | < < < < < | < | < < < | < | | < < < < < < < < < < < < | | < < < | | | | | < < < < | < < | < < < | | | | | | | < < < < < < < | | | | < | < < < < | | | < < < < < < | | | < < | < < < < < < < < < < | | | < < | < < < | < < < < | | < | | | < < | < < < | | | | | | < < < | < < < < < < < < < | < < < | < < < < < < | | | | | | < < | | | < < < < | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 | f1 0 512 10 1 f2 0 8192 10 .24 .64 .88 .76 .06 .5 .34 .08 f3 0 1025 10 1 i3 0.000000 2.000000 5000 5.09 2 3 5 3 i3 2.000000 2.000000 5000 5.09 2 3 5 3 i3 4.000000 0.250000 5000 5.04 2 3 5 3 i3 4.250000 0.250000 5000 5.06 2 3 5 3 i3 4.500000 0.500000 5000 5.09 2 3 5 3 i3 5.000000 0.500000 5000 5.02 2 3 5 3 i3 5.500000 2.000000 5000 5.06 2 3 5 3 i3 5.500000 2.000000 5000 5.09 2 3 5 3 i3 5.500000 2.000000 5000 5.01 2 3 5 3 i3 7.500000 2.000000 5000 5.11 2 3 5 3 i3 7.500000 2.000000 5000 5.04 2 3 5 3 i3 7.500000 2.000000 5000 5.08 2 3 5 3 i3 9.500000 2.000000 5000 5.09 2 3 5 3 i3 11.500000 2.000000 5000 5.09 2 3 5 3 i3 13.500000 0.250000 5000 5.04 2 3 5 3 i3 13.750000 0.250000 5000 5.06 2 3 5 3 i3 14.000000 0.500000 5000 5.09 2 3 5 3 i3 14.500000 0.500000 5000 5.02 2 3 5 3 i3 15.000000 2.000000 5000 5.06 2 3 5 3 i3 15.000000 2.000000 5000 5.09 2 3 5 3 i3 15.000000 2.000000 5000 5.01 2 3 5 3 i3 17.000000 2.000000 5000 5.11 2 3 5 3 i3 17.000000 2.000000 5000 5.04 2 3 5 3 i3 17.000000 2.000000 5000 5.08 2 3 5 3 i3 19.000000 2.000000 5000 5.09 2 3 5 3 i3 21.000000 2.000000 5000 5.09 2 3 5 3 i3 23.000000 0.250000 5000 5.04 2 3 5 3 i3 23.250000 0.250000 5000 5.06 2 3 5 3 i3 23.500000 0.500000 5000 5.09 2 3 5 3 i3 24.000000 0.500000 5000 5.02 2 3 5 3 i3 24.500000 2.000000 5000 5.06 2 3 5 3 i3 24.500000 2.000000 5000 5.09 2 3 5 3 i3 24.500000 2.000000 5000 5.01 2 3 5 3 i3 26.500000 2.000000 5000 5.11 2 3 5 3 i3 26.500000 2.000000 5000 5.04 2 3 5 3 i3 26.500000 2.000000 5000 5.08 2 3 5 3 i3 28.500000 2.000000 5000 5.09 2 3 5 3 i3 30.500000 2.000000 5000 5.09 2 3 5 3 i3 32.500000 0.250000 5000 5.04 2 3 5 3 i3 32.750000 0.250000 5000 5.06 2 3 5 3 i3 33.000000 0.500000 5000 5.09 2 3 5 3 i3 33.500000 0.500000 5000 5.02 2 3 5 3 i3 34.000000 2.000000 5000 5.06 2 3 5 3 i3 34.000000 2.000000 5000 5.09 2 3 5 3 i3 34.000000 2.000000 5000 5.01 2 3 5 3 i3 36.000000 2.000000 5000 5.11 2 3 5 3 i3 36.000000 2.000000 5000 5.04 2 3 5 3 i3 36.000000 2.000000 5000 5.08 2 3 5 3 i3 38.000000 2.000000 5000 5.09 2 3 5 3 i2 40.000000 0.250000 7000 8.08 2 i2 40.250000 0.250000 7000 8.09 2 i2 40.500000 0.250000 7000 8.02 2 i2 40.750000 0.250000 7000 8.04 2 i2 41.000000 0.250000 7000 8.06 2 i2 41.250000 0.250000 7000 8.09 2 i2 41.500000 0.250000 7000 8.08 2 i2 41.750000 0.250000 7000 8.04 2 i2 42.000000 0.250000 7000 8.01 2 i2 42.250000 0.250000 7000 8.01 2 i2 42.500000 0.250000 7000 8.06 2 i2 42.750000 0.250000 7000 8.11 2 i2 43.000000 0.250000 7000 8.04 2 i2 43.250000 0.250000 7000 8.06 2 i2 43.500000 0.250000 7000 8.02 2 i2 43.750000 2.000000 7000 8.08 2 i2 45.750000 0.250000 7000 8.08 2 i2 46.000000 0.250000 7000 8.09 2 i2 46.250000 0.250000 7000 8.02 2 i2 46.500000 0.250000 7000 8.04 2 i2 46.750000 0.250000 7000 8.06 2 i2 47.000000 0.250000 7000 8.09 2 i2 47.250000 0.250000 7000 8.08 2 i2 47.500000 0.250000 7000 8.04 2 i2 47.750000 0.250000 7000 8.01 2 i2 48.000000 0.250000 7000 8.09 2 i2 48.250000 0.250000 7000 8.08 2 i2 48.500000 0.250000 7000 8.04 2 i2 48.750000 0.250000 7000 8.01 2 i2 49.000000 0.250000 7000 8.01 2 i2 49.250000 0.250000 7000 8.06 2 i2 49.500000 0.250000 7000 8.11 2 i2 49.750000 0.250000 7000 8.04 2 i2 50.000000 0.250000 7000 8.06 2 i2 50.250000 0.250000 7000 8.02 2 i2 50.500000 2.000000 7000 8.08 2 i2 52.500000 0.250000 7000 8.08 2 i2 52.750000 0.250000 7000 8.09 2 i2 53.000000 0.250000 7000 8.02 2 i2 53.250000 0.250000 7000 8.04 2 i2 53.500000 0.250000 7000 8.06 2 i2 53.750000 0.250000 7000 8.01 2 i2 54.000000 0.250000 7000 8.06 2 i2 54.250000 0.250000 7000 8.11 2 i2 54.500000 0.250000 7000 8.04 2 i2 54.750000 0.250000 7000 8.06 2 i2 55.000000 0.250000 7000 8.02 2 i2 55.250000 2.000000 7000 8.08 2 i2 57.250000 0.250000 7000 8.08 2 i2 57.500000 0.250000 7000 8.09 2 i2 57.750000 0.250000 7000 8.02 2 i2 58.000000 0.250000 7000 8.04 2 i2 58.250000 0.250000 7000 8.06 2 i2 58.500000 0.250000 7000 8.01 2 i2 58.750000 0.250000 7000 8.06 2 i2 59.000000 0.250000 7000 8.11 2 i2 59.250000 0.250000 7000 8.04 2 i2 59.500000 0.250000 7000 8.06 2 i2 59.750000 0.250000 7000 8.02 2 i1 40.000000 0.500000 7000 7.11 7.11 0 6 i1 40.000000 0.500000 7000 7.04 7.04 0 6 i1 40.000000 0.500000 7000 7.08 7.08 0 6 i1 40.500000 2.000000 7000 7.08 7.08 0 6 i1 40.500000 2.000000 7000 7.11 7.11 0 6 i1 40.500000 2.000000 7000 7.02 7.02 0 6 i1 42.500000 0.500000 7000 7.04 7.04 0 6 i1 42.500000 0.500000 7000 7.09 7.09 0 6 i1 42.500000 0.500000 7000 7.11 7.11 0 6 i1 43.000000 0.500000 7000 7.06 7.06 0 6 i1 43.000000 0.500000 7000 7.09 7.09 0 6 i1 43.000000 0.500000 7000 7.01 7.01 0 6 i1 43.500000 0.500000 7000 7.11 7.11 0 6 i1 43.500000 0.500000 7000 7.04 7.04 0 6 i1 43.500000 0.500000 7000 7.08 7.08 0 6 i1 44.000000 2.000000 7000 7.08 7.08 0 6 i1 44.000000 2.000000 7000 7.11 7.11 0 6 i1 44.000000 2.000000 7000 7.02 7.02 0 6 i1 46.000000 0.500000 7000 7.04 7.04 0 6 i1 46.000000 0.500000 7000 7.09 7.09 0 6 i1 46.000000 0.500000 7000 7.11 7.11 0 6 i1 46.500000 0.500000 7000 7.06 7.06 0 6 i1 46.500000 0.500000 7000 7.09 7.09 0 6 i1 46.500000 0.500000 7000 7.01 7.01 0 6 i1 47.000000 0.500000 7000 7.11 7.11 0 6 i1 47.000000 0.500000 7000 7.04 7.04 0 6 i1 47.000000 0.500000 7000 7.08 7.08 0 6 i1 47.500000 2.000000 7000 7.08 7.08 0 6 i1 47.500000 2.000000 7000 7.11 7.11 0 6 i1 47.500000 2.000000 7000 7.02 7.02 0 6 i1 49.500000 0.500000 7000 7.04 7.04 0 6 i1 49.500000 0.500000 7000 7.09 7.09 0 6 i1 49.500000 0.500000 7000 7.11 7.11 0 6 i1 50.000000 0.500000 7000 7.06 7.06 0 6 i1 50.000000 0.500000 7000 7.09 7.09 0 6 i1 50.000000 0.500000 7000 7.01 7.01 0 6 i1 50.500000 0.500000 7000 7.11 7.11 0 6 i1 50.500000 0.500000 7000 7.04 7.04 0 6 i1 50.500000 0.500000 7000 7.08 7.08 0 6 i1 51.000000 2.000000 7000 7.08 7.08 0 6 i1 51.000000 2.000000 7000 7.11 7.11 0 6 i1 51.000000 2.000000 7000 7.02 7.02 0 6 i1 53.000000 0.500000 7000 7.04 7.04 0 6 i1 53.000000 0.500000 7000 7.09 7.09 0 6 i1 53.000000 0.500000 7000 7.11 7.11 0 6 i1 53.500000 0.500000 7000 7.06 7.06 0 6 i1 53.500000 0.500000 7000 7.09 7.09 0 6 i1 53.500000 0.500000 7000 7.01 7.01 0 6 i1 54.000000 0.500000 7000 7.11 7.11 0 6 i1 54.000000 0.500000 7000 7.04 7.04 0 6 i1 54.000000 0.500000 7000 7.08 7.08 0 6 i1 54.500000 2.000000 7000 7.08 7.08 0 6 i1 54.500000 2.000000 7000 7.11 7.11 0 6 i1 54.500000 2.000000 7000 7.02 7.02 0 6 i1 56.500000 0.500000 7000 7.04 7.04 0 6 i1 56.500000 0.500000 7000 7.09 7.09 0 6 i1 56.500000 0.500000 7000 7.11 7.11 0 6 i1 57.000000 0.500000 7000 7.06 7.06 0 6 i1 57.000000 0.500000 7000 7.09 7.09 0 6 i1 57.000000 0.500000 7000 7.01 7.01 0 6 i1 57.500000 0.500000 7000 7.11 7.11 0 6 i1 57.500000 0.500000 7000 7.04 7.04 0 6 i1 57.500000 0.500000 7000 7.08 7.08 0 6 i1 58.000000 2.000000 7000 7.08 7.08 0 6 i1 58.000000 2.000000 7000 7.11 7.11 0 6 i1 58.000000 2.000000 7000 7.02 7.02 0 6 i1 60.000000 0.500000 7000 7.04 7.04 0 6 i1 60.000000 0.500000 7000 7.09 7.09 0 6 i1 60.000000 0.500000 7000 7.11 7.11 0 6 i1 60.500000 0.500000 7000 7.06 7.06 0 6 i1 60.500000 0.500000 7000 7.09 7.09 0 6 i1 60.500000 0.500000 7000 7.01 7.01 0 6 i1 61.000000 0.500000 7000 7.11 7.11 0 6 i1 61.000000 0.500000 7000 7.04 7.04 0 6 i1 61.000000 0.500000 7000 7.08 7.08 0 6 i1 61.500000 2.000000 7000 7.08 7.08 0 6 i1 61.500000 2.000000 7000 7.11 7.11 0 6 i1 61.500000 2.000000 7000 7.02 7.02 0 6 i1 63.500000 0.500000 7000 7.04 7.04 0 6 i1 63.500000 0.500000 7000 7.09 7.09 0 6 i1 63.500000 0.500000 7000 7.11 7.11 0 6 i2 64.000000 0.500000 7000 8.08 2 i2 64.500000 0.500000 7000 8.09 2 i2 65.000000 0.500000 7000 8.11 2 i2 65.500000 0.500000 7000 8.04 2 i2 66.000000 0.250000 7000 8.09 2 i2 66.250000 0.500000 7000 8.06 2 i2 66.750000 0.500000 7000 8.06 2 i2 67.250000 0.500000 7000 8.02 2 i2 67.750000 0.250000 7000 8.01 2 i2 68.000000 0.250000 7000 8.06 2 i2 68.250000 0.250000 7000 8.11 2 i2 68.500000 0.250000 7000 8.04 2 i2 68.750000 0.250000 7000 8.06 2 i2 69.000000 0.250000 7000 8.02 2 i2 69.250000 2.000000 7000 8.08 2 i2 71.250000 0.500000 7000 8.08 2 i2 71.750000 0.500000 7000 8.09 2 i2 72.250000 0.500000 7000 8.11 2 i2 72.750000 0.500000 7000 8.04 2 i2 73.250000 0.250000 7000 8.01 2 i2 73.500000 0.250000 7000 8.06 2 i2 73.750000 0.250000 7000 8.11 2 i2 74.000000 0.250000 7000 8.04 2 i2 74.250000 0.250000 7000 8.06 2 i2 74.500000 0.250000 7000 8.02 2 i2 74.750000 2.000000 7000 8.08 2 i2 76.750000 0.500000 7000 8.08 2 i2 77.250000 0.500000 7000 8.09 2 i2 77.750000 0.500000 7000 8.11 2 i2 78.250000 0.500000 7000 8.04 2 i2 78.750000 0.250000 7000 8.09 2 i2 79.000000 0.500000 7000 8.06 2 i2 79.500000 0.500000 7000 8.06 2 i2 80.000000 0.500000 7000 8.02 2 i2 80.500000 0.250000 7000 8.09 2 i2 80.750000 0.500000 7000 8.06 2 i2 81.250000 0.500000 7000 8.06 2 i2 81.750000 0.500000 7000 8.02 2 i2 82.250000 0.250000 7000 8.09 2 i2 82.500000 0.500000 7000 8.06 2 i2 83.000000 0.500000 7000 8.06 2 i2 83.500000 0.500000 7000 8.02 2 i1 64.000000 0.500000 7000 7.11 7.11 0 6 i1 64.000000 0.500000 7000 7.04 7.04 0 6 i1 64.000000 0.500000 7000 7.08 7.08 0 6 i1 64.500000 0.500000 7000 7.08 7.08 0 6 i1 64.500000 0.500000 7000 7.11 7.11 0 6 i1 64.500000 0.500000 7000 7.02 7.02 0 6 i1 65.000000 0.500000 7000 7.04 7.04 0 6 i1 65.000000 0.500000 7000 7.09 7.09 0 6 i1 65.000000 0.500000 7000 7.11 7.11 0 6 i1 65.500000 0.500000 7000 7.06 7.06 0 6 i1 65.500000 0.500000 7000 7.09 7.09 0 6 i1 65.500000 0.500000 7000 7.01 7.01 0 6 i1 66.000000 0.500000 7000 7.11 7.11 0 6 i1 66.000000 0.500000 7000 7.04 7.04 0 6 i1 66.000000 0.500000 7000 7.08 7.08 0 6 i1 66.500000 0.500000 7000 7.08 7.08 0 6 i1 66.500000 0.500000 7000 7.11 7.11 0 6 i1 66.500000 0.500000 7000 7.02 7.02 0 6 i1 67.000000 0.500000 7000 7.04 7.04 0 6 i1 67.000000 0.500000 7000 7.09 7.09 0 6 i1 67.000000 0.500000 7000 7.11 7.11 0 6 i1 67.500000 0.500000 7000 7.06 7.06 0 6 i1 67.500000 0.500000 7000 7.09 7.09 0 6 i1 67.500000 0.500000 7000 7.01 7.01 0 6 i1 68.000000 0.500000 7000 7.11 7.11 0 6 i1 68.000000 0.500000 7000 7.04 7.04 0 6 i1 68.000000 0.500000 7000 7.08 7.08 0 6 i1 68.500000 0.500000 7000 7.08 7.08 0 6 i1 68.500000 0.500000 7000 7.11 7.11 0 6 i1 68.500000 0.500000 7000 7.02 7.02 0 6 i1 69.000000 0.500000 7000 7.04 7.04 0 6 i1 69.000000 0.500000 7000 7.09 7.09 0 6 i1 69.000000 0.500000 7000 7.11 7.11 0 6 i1 69.500000 0.500000 7000 7.06 7.06 0 6 i1 69.500000 0.500000 7000 7.09 7.09 0 6 i1 69.500000 0.500000 7000 7.01 7.01 0 6 i1 70.000000 0.500000 7000 7.11 7.11 0 6 i1 70.000000 0.500000 7000 7.04 7.04 0 6 i1 70.000000 0.500000 7000 7.08 7.08 0 6 i1 70.500000 0.500000 7000 7.08 7.08 0 6 i1 70.500000 0.500000 7000 7.11 7.11 0 6 i1 70.500000 0.500000 7000 7.02 7.02 0 6 i1 71.000000 0.500000 7000 7.04 7.04 0 6 i1 71.000000 0.500000 7000 7.09 7.09 0 6 i1 71.000000 0.500000 7000 7.11 7.11 0 6 i1 71.500000 0.500000 7000 7.06 7.06 0 6 i1 71.500000 0.500000 7000 7.09 7.09 0 6 i1 71.500000 0.500000 7000 7.01 7.01 0 6 i1 72.000000 0.500000 7000 7.11 7.11 0 6 i1 72.000000 0.500000 7000 7.04 7.04 0 6 i1 72.000000 0.500000 7000 7.08 7.08 0 6 i1 72.500000 0.500000 7000 7.08 7.08 0 6 i1 72.500000 0.500000 7000 7.11 7.11 0 6 i1 72.500000 0.500000 7000 7.02 7.02 0 6 i1 73.000000 0.500000 7000 7.04 7.04 0 6 i1 73.000000 0.500000 7000 7.09 7.09 0 6 i1 73.000000 0.500000 7000 7.11 7.11 0 6 i1 73.500000 0.500000 7000 7.06 7.06 0 6 i1 73.500000 0.500000 7000 7.09 7.09 0 6 i1 73.500000 0.500000 7000 7.01 7.01 0 6 i1 74.000000 0.500000 7000 7.11 7.11 0 6 i1 74.000000 0.500000 7000 7.04 7.04 0 6 i1 74.000000 0.500000 7000 7.08 7.08 0 6 i1 74.500000 0.500000 7000 7.08 7.08 0 6 i1 74.500000 0.500000 7000 7.11 7.11 0 6 i1 74.500000 0.500000 7000 7.02 7.02 0 6 i1 75.000000 0.500000 7000 7.04 7.04 0 6 i1 75.000000 0.500000 7000 7.09 7.09 0 6 i1 75.000000 0.500000 7000 7.11 7.11 0 6 i1 75.500000 0.500000 7000 7.06 7.06 0 6 i1 75.500000 0.500000 7000 7.09 7.09 0 6 i1 75.500000 0.500000 7000 7.01 7.01 0 6 i1 76.000000 0.500000 7000 7.11 7.11 0 6 i1 76.000000 0.500000 7000 7.04 7.04 0 6 i1 76.000000 0.500000 7000 7.08 7.08 0 6 i1 76.500000 0.500000 7000 7.08 7.08 0 6 i1 76.500000 0.500000 7000 7.11 7.11 0 6 i1 76.500000 0.500000 7000 7.02 7.02 0 6 i1 77.000000 0.500000 7000 7.04 7.04 0 6 i1 77.000000 0.500000 7000 7.09 7.09 0 6 i1 77.000000 0.500000 7000 7.11 7.11 0 6 i1 77.500000 0.500000 7000 7.06 7.06 0 6 i1 77.500000 0.500000 7000 7.09 7.09 0 6 i1 77.500000 0.500000 7000 7.01 7.01 0 6 i1 78.000000 0.500000 7000 7.11 7.11 0 6 i1 78.000000 0.500000 7000 7.04 7.04 0 6 i1 78.000000 0.500000 7000 7.08 7.08 0 6 i1 78.500000 0.500000 7000 7.08 7.08 0 6 i1 78.500000 0.500000 7000 7.11 7.11 0 6 i1 78.500000 0.500000 7000 7.02 7.02 0 6 i1 79.000000 0.500000 7000 7.04 7.04 0 6 i1 79.000000 0.500000 7000 7.09 7.09 0 6 i1 79.000000 0.500000 7000 7.11 7.11 0 6 i1 79.500000 0.500000 7000 7.06 7.06 0 6 i1 79.500000 0.500000 7000 7.09 7.09 0 6 i1 79.500000 0.500000 7000 7.01 7.01 0 6 i1 80.000000 0.500000 7000 7.11 7.11 0 6 i1 80.000000 0.500000 7000 7.04 7.04 0 6 i1 80.000000 0.500000 7000 7.08 7.08 0 6 i1 80.500000 0.500000 7000 7.08 7.08 0 6 i1 80.500000 0.500000 7000 7.11 7.11 0 6 i1 80.500000 0.500000 7000 7.02 7.02 0 6 i1 81.000000 0.500000 7000 7.04 7.04 0 6 i1 81.000000 0.500000 7000 7.09 7.09 0 6 i1 81.000000 0.500000 7000 7.11 7.11 0 6 i1 81.500000 0.500000 7000 7.06 7.06 0 6 i1 81.500000 0.500000 7000 7.09 7.09 0 6 i1 81.500000 0.500000 7000 7.01 7.01 0 6 i1 82.000000 0.500000 7000 7.11 7.11 0 6 i1 82.000000 0.500000 7000 7.04 7.04 0 6 i1 82.000000 0.500000 7000 7.08 7.08 0 6 i1 82.500000 0.500000 7000 7.08 7.08 0 6 i1 82.500000 0.500000 7000 7.11 7.11 0 6 i1 82.500000 0.500000 7000 7.02 7.02 0 6 i1 83.000000 0.500000 7000 7.04 7.04 0 6 i1 83.000000 0.500000 7000 7.09 7.09 0 6 i1 83.000000 0.500000 7000 7.11 7.11 0 6 i1 83.500000 0.500000 7000 7.06 7.06 0 6 i1 83.500000 0.500000 7000 7.09 7.09 0 6 i1 83.500000 0.500000 7000 7.01 7.01 0 6 i2 84.000000 0.250000 7000 8.08 2 i2 84.250000 0.250000 7000 8.09 2 i2 84.500000 0.250000 7000 8.02 2 i2 84.750000 0.250000 7000 8.04 2 i2 85.000000 0.250000 7000 8.06 2 i2 85.250000 0.250000 7000 8.01 2 i2 85.500000 0.250000 7000 8.06 2 i2 85.750000 0.250000 7000 8.11 2 i2 86.000000 0.250000 7000 8.04 2 i2 86.250000 0.250000 7000 8.06 2 i2 86.500000 0.250000 7000 8.02 2 i2 86.750000 2.000000 7000 8.08 2 i2 88.750000 0.250000 7000 8.08 2 i2 89.000000 0.250000 7000 8.09 2 i2 89.250000 0.250000 7000 8.02 2 i2 89.500000 0.250000 7000 8.04 2 i2 89.750000 0.250000 7000 8.06 2 i2 90.000000 0.250000 7000 8.01 2 i2 90.250000 0.250000 7000 8.06 2 i2 90.500000 0.250000 7000 8.11 2 i2 90.750000 0.250000 7000 8.04 2 i2 91.000000 0.250000 7000 8.06 2 i2 91.250000 0.250000 7000 8.02 2 i2 91.500000 2.000000 7000 8.08 2 i2 93.500000 0.250000 7000 8.08 2 i2 93.750000 0.250000 7000 8.09 2 i2 94.000000 0.250000 7000 8.02 2 i2 94.250000 0.250000 7000 8.04 2 i2 94.500000 0.250000 7000 8.06 2 i2 94.750000 0.250000 7000 8.01 2 i2 95.000000 0.250000 7000 8.06 2 i2 95.250000 0.250000 7000 8.11 2 i2 95.500000 0.250000 7000 8.04 2 i2 95.750000 0.250000 7000 8.06 2 i2 96.000000 0.250000 7000 8.02 2 i2 96.250000 2.000000 7000 8.08 2 i2 98.250000 0.250000 7000 8.08 2 i2 98.500000 0.250000 7000 8.09 2 i2 98.750000 0.250000 7000 8.02 2 i2 99.000000 0.250000 7000 8.04 2 i2 99.250000 0.250000 7000 8.06 2 i2 99.500000 0.250000 7000 8.09 2 i2 99.750000 0.250000 7000 8.08 2 i2 100.000000 0.250000 7000 8.04 2 i2 100.250000 0.250000 7000 8.01 2 i2 100.500000 0.250000 7000 8.09 2 i2 100.750000 0.250000 7000 8.08 2 i2 101.000000 0.250000 7000 8.04 2 i2 101.250000 0.250000 7000 8.01 2 i2 101.500000 0.250000 7000 8.09 2 i2 101.750000 0.250000 7000 8.08 2 i2 102.000000 0.250000 7000 8.04 2 i2 102.250000 0.250000 7000 8.01 2 i2 102.500000 0.250000 7000 8.01 2 i2 102.750000 0.250000 7000 8.06 2 i2 103.000000 0.250000 7000 8.11 2 i2 103.250000 0.250000 7000 8.04 2 i2 103.500000 0.250000 7000 8.06 2 i2 103.750000 0.250000 7000 8.02 2 i1 84.000000 0.500000 7000 7.11 7.11 0 6 i1 84.000000 0.500000 7000 7.04 7.04 0 6 i1 84.000000 0.500000 7000 7.08 7.08 0 6 i1 84.500000 2.000000 7000 7.08 7.08 0 6 i1 84.500000 2.000000 7000 7.11 7.11 0 6 i1 84.500000 2.000000 7000 7.02 7.02 0 6 i1 86.500000 0.500000 7000 7.04 7.04 0 6 i1 86.500000 0.500000 7000 7.09 7.09 0 6 i1 86.500000 0.500000 7000 7.11 7.11 0 6 i1 87.000000 0.500000 7000 7.06 7.06 0 6 i1 87.000000 0.500000 7000 7.09 7.09 0 6 i1 87.000000 0.500000 7000 7.01 7.01 0 6 i1 87.500000 0.500000 7000 7.11 7.11 0 6 i1 87.500000 0.500000 7000 7.04 7.04 0 6 i1 87.500000 0.500000 7000 7.08 7.08 0 6 i1 88.000000 2.000000 7000 7.08 7.08 0 6 i1 88.000000 2.000000 7000 7.11 7.11 0 6 i1 88.000000 2.000000 7000 7.02 7.02 0 6 i1 90.000000 0.500000 7000 7.04 7.04 0 6 i1 90.000000 0.500000 7000 7.09 7.09 0 6 i1 90.000000 0.500000 7000 7.11 7.11 0 6 i1 90.500000 0.500000 7000 7.06 7.06 0 6 i1 90.500000 0.500000 7000 7.09 7.09 0 6 i1 90.500000 0.500000 7000 7.01 7.01 0 6 i1 91.000000 0.500000 7000 7.11 7.11 0 6 i1 91.000000 0.500000 7000 7.04 7.04 0 6 i1 91.000000 0.500000 7000 7.08 7.08 0 6 i1 91.500000 2.000000 7000 7.08 7.08 0 6 i1 91.500000 2.000000 7000 7.11 7.11 0 6 i1 91.500000 2.000000 7000 7.02 7.02 0 6 i1 93.500000 0.500000 7000 7.04 7.04 0 6 i1 93.500000 0.500000 7000 7.09 7.09 0 6 i1 93.500000 0.500000 7000 7.11 7.11 0 6 i1 94.000000 0.500000 7000 7.06 7.06 0 6 i1 94.000000 0.500000 7000 7.09 7.09 0 6 i1 94.000000 0.500000 7000 7.01 7.01 0 6 i1 94.500000 0.500000 7000 7.11 7.11 0 6 i1 94.500000 0.500000 7000 7.04 7.04 0 6 i1 94.500000 0.500000 7000 7.08 7.08 0 6 i1 95.000000 2.000000 7000 7.08 7.08 0 6 i1 95.000000 2.000000 7000 7.11 7.11 0 6 i1 95.000000 2.000000 7000 7.02 7.02 0 6 i1 97.000000 0.500000 7000 7.04 7.04 0 6 i1 97.000000 0.500000 7000 7.09 7.09 0 6 i1 97.000000 0.500000 7000 7.11 7.11 0 6 i1 97.500000 0.500000 7000 7.06 7.06 0 6 i1 97.500000 0.500000 7000 7.09 7.09 0 6 i1 97.500000 0.500000 7000 7.01 7.01 0 6 i1 98.000000 0.500000 7000 7.11 7.11 0 6 i1 98.000000 0.500000 7000 7.04 7.04 0 6 i1 98.000000 0.500000 7000 7.08 7.08 0 6 i1 98.500000 2.000000 7000 7.08 7.08 0 6 i1 98.500000 2.000000 7000 7.11 7.11 0 6 i1 98.500000 2.000000 7000 7.02 7.02 0 6 i1 100.500000 0.500000 7000 7.04 7.04 0 6 i1 100.500000 0.500000 7000 7.09 7.09 0 6 i1 100.500000 0.500000 7000 7.11 7.11 0 6 i1 101.000000 0.500000 7000 7.06 7.06 0 6 i1 101.000000 0.500000 7000 7.09 7.09 0 6 i1 101.000000 0.500000 7000 7.01 7.01 0 6 i1 101.500000 0.500000 7000 7.11 7.11 0 6 i1 101.500000 0.500000 7000 7.04 7.04 0 6 i1 101.500000 0.500000 7000 7.08 7.08 0 6 i1 102.000000 2.000000 7000 7.08 7.08 0 6 i1 102.000000 2.000000 7000 7.11 7.11 0 6 i1 102.000000 2.000000 7000 7.02 7.02 0 6 i1 104.000000 0.500000 7000 7.04 7.04 0 6 i1 104.000000 0.500000 7000 7.09 7.09 0 6 i1 104.000000 0.500000 7000 7.11 7.11 0 6 i1 104.500000 0.500000 7000 7.06 7.06 0 6 i1 104.500000 0.500000 7000 7.09 7.09 0 6 i1 104.500000 0.500000 7000 7.01 7.01 0 6 i1 105.000000 0.500000 7000 7.11 7.11 0 6 i1 105.000000 0.500000 7000 7.04 7.04 0 6 i1 105.000000 0.500000 7000 7.08 7.08 0 6 i1 105.500000 2.000000 7000 7.08 7.08 0 6 i1 105.500000 2.000000 7000 7.11 7.11 0 6 i1 105.500000 2.000000 7000 7.02 7.02 0 6 i1 107.500000 0.500000 7000 7.04 7.04 0 6 i1 107.500000 0.500000 7000 7.09 7.09 0 6 i1 107.500000 0.500000 7000 7.11 7.11 0 6 |
Modified todo.org from [109f37c970] to [7bca9c1190].
|
| | | | | | > > > > | | < | | | > > > > > | 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 | * Features [4/10] - [X] Top-down composition - [ ] Coordinate the melody and rhythm - [X] Set maximum song length of movement per instrument - [ ] Set minimum song length of movement per instrument - [ ] Need to support all chord types - [X] Doesn't handle rest notes - [ ] Handle full ABC BNF (yeah, right...) - [X] Set instrument octave in score file - [ ] Output score to separate file - [ ] Support parallel voices - ensure e.g. a certain chord progression is always accompanied by a certain melody * Bugs [5/5] - [X] TLD resets clock for each movement - [X] TLD doesn't accept an ordering for the movements - [X] Doesn't handle minor chords - [X] Calculated duration is absolute, not relative to BPM - [X] Chords don't respect octaves * Structure [1/4] - [ ] Chords should be composed of Notes, not ordinary arrays - [ ] Generate score with proper generation tools, not this string-replace nonsense - [X] Store csound score lines with instruments - [ ] Upgrade from simple string substitution for the score to something list-based (maybe). Idea is to keep musical phrases intact in the event of a truncation of the score. Also, if done right, no need for retroactive length parsing- a measure is has a specific length, which is known at generation-time, thus solving the length limit problem. |